diff --git a/rocolib/builders/boat/BoatWithServoStackBatteryBuilder.py b/rocolib/builders/boat/BoatWithServoStackBatteryBuilder.py
index 775b3f0047c97b166cd249487f6955ddfadd0421..ceb773ebaadfc0003129dfc144744b60c9ea4613 100644
--- a/rocolib/builders/boat/BoatWithServoStackBatteryBuilder.py
+++ b/rocolib/builders/boat/BoatWithServoStackBatteryBuilder.py
@@ -20,29 +20,27 @@ c.inheritAllInterfaces("servostack")
 c.addSubcomponent("batterymount", "BatteryMount")
 c.inheritAllInterfaces("batterymount")
 #
-c.addSubcomponent("portsplit0", "SplitEdge")
-c.inheritAllInterfaces("portsplit0")
-c.addConstConstraint(("portsplit0", "toplength"), (156,)) #156-61
-c.addConstConstraint(("portsplit0", "botlength"), (61, 10, 24, 61))
+c.addSubcomponent("portsplit", "SplitEdge")
+c.inheritAllInterfaces("portsplit")
+c.addConstConstraint(("portsplit", "toplength"), (156,)) #156-61
+c.addConstConstraint(("portsplit", "botlength"), (61, 10, 24, 61))
 
-c.addConnection(("portsplit0", "topedge0"), ("boat", "portedge"))
-#
-# c.addSubcomponent("portsplit1", "SplitEdge")
-# c.inheritAllInterfaces("portsplit1")
-# c.addConstConstraint(("portsplit1", "toplength"), (95,61)) #156-61
-# c.addConstConstraint(("portsplit1", "botlength"), (61, 10, 24, 61))
-#
-# c.addConnection(("portsplit0", "botedge0"), ("portsplit1", "topedge0"))
-# c.addConnection(("portsplit0", "botedge1"), ("portsplit1", "topedge1"))
+c.addConnection(("portsplit", "topedge0"), ("boat", "portedge"))
+
+c.addConnection(("portsplit", "botedge0"), ("servostack", "lstacksplit"))
+c.addConnection(("portsplit", "botedge2"), ("servostack", "lservosplit"))
+c.addConnection(("batterymount", "leftArmInterface"), ("portsplit", "botedge3"), tabWidth=10)
+
+c.addSubcomponent("starsplit", "SplitEdge")
+c.inheritAllInterfaces("starsplit")
+c.addConstConstraint(("starsplit", "toplength"), (156,))
+c.addConstConstraint(("starsplit", "botlength"), (61, 24, 10, 61))
 
-c.addConnection(("portsplit0", "botedge0"), ("servostack", "lstacksplit"))
-c.addConnection(("portsplit0", "botedge2"), ("servostack", "lservosplit"))
-c.addConnection(("batterymount", "leftArmInterface"), ("portsplit0", "botedge3"), tabWidth=10)
+c.addConnection(("starsplit", "topedge0"), ("boat", "staredge"))
 
-# c.addSubcomponent("starsplit", "SplitEdge")
-# c.inheritAllInterfaces("starsplit")
-# c.addConstConstraint(("starsplit", "toplength"), (169,))
-# c.addConstConstraint(("starsplit", "botlength"), (108, 61))
+c.addConnection(("starsplit", "botedge3"), ("servostack", "rstacksplit"))
+c.addConnection(("starsplit", "botedge1"), ("servostack", "rservosplit"))
+c.addConnection(("batterymount", "rightArmInterface"), ("starsplit", "botedge0"), tabWidth=10)
 #
 # c.addConnection(("portsplit", "topedge0"), ("boat", "portedge")) #both face the same direction
 # c.addConnection(("portsplit", "botedge1"), ("servostackbattery", "lservostackbatterysplit"))
diff --git a/rocolib/library/BoatPoint.py b/rocolib/library/BoatPoint.py
index 70872b2812ad72cb0c3ea2403f020697250ae696..6c0163c62fdd00bd595bcc18e6398ac486e871fe 100644
--- a/rocolib/library/BoatPoint.py
+++ b/rocolib/library/BoatPoint.py
@@ -63,8 +63,8 @@ class BoatPoint(FoldedComponent):
         self.attachEdge("rt.e0", fra, "e2", prefix="fra", angle=180)
         self.attachEdge("fra.e1", frb, "e1", prefix="frb", angle=-180)
 
-        self.addTab("flb.e0", "lt.e0", angle = -174, width=fx/3)
-        self.addTab("frb.e2", "rt.e3", angle = -174, width=fx/3)
+        self.addTab("flb.e0", "lt.e0", angle = -174, width=fx/7)
+        self.addTab("frb.e2", "rt.e3", angle = -174, width=fx/7)
 
         # To allow 0 degree attachments at base
         se = Face("", ((0,0), (w/2., 0), (-w/2., 0)))
@@ -79,4 +79,3 @@ class BoatPoint(FoldedComponent):
 
 if __name__ == "__main__":
     BoatPoint.test()
-
diff --git a/rocolib/library/BoatWithServoStackBattery.yaml b/rocolib/library/BoatWithServoStackBattery.yaml
index f4fac55bd15cf28b2906d0ed48f0c8f1880f2e4c..a4de5d09770511f106101b1b590d3b35987ffb0b 100644
--- a/rocolib/library/BoatWithServoStackBattery.yaml
+++ b/rocolib/library/BoatWithServoStackBattery.yaml
@@ -1,18 +1,18 @@
 connections:
   connection0:
-  - - portsplit0
+  - - portsplit
     - topedge0
   - - boat
     - portedge
   - {}
   connection1:
-  - - portsplit0
+  - - portsplit
     - botedge0
   - - servostack
     - lstacksplit
   - {}
   connection2:
-  - - portsplit0
+  - - portsplit
     - botedge2
   - - servostack
     - lservosplit
@@ -20,9 +20,33 @@ connections:
   connection3:
   - - batterymount
     - leftArmInterface
-  - - portsplit0
+  - - portsplit
     - botedge3
   - tabWidth: 10
+  connection4:
+  - - starsplit
+    - topedge0
+  - - boat
+    - staredge
+  - {}
+  connection5:
+  - - starsplit
+    - botedge3
+  - - servostack
+    - rstacksplit
+  - {}
+  connection6:
+  - - starsplit
+    - botedge1
+  - - servostack
+    - rservosplit
+  - {}
+  connection7:
+  - - batterymount
+    - rightArmInterface
+  - - starsplit
+    - botedge0
+  - tabWidth: 10
 interfaces:
   batterymount.leftArmInterface:
     interface: leftArmInterface
@@ -36,606 +60,606 @@ interfaces:
   boat.staredge:
     interface: staredge
     subcomponent: boat
-  portsplit0.botedge0:
+  portsplit.botedge0:
     interface: botedge0
-    subcomponent: portsplit0
-  portsplit0.botedge1:
+    subcomponent: portsplit
+  portsplit.botedge1:
     interface: botedge1
-    subcomponent: portsplit0
-  portsplit0.botedge10:
+    subcomponent: portsplit
+  portsplit.botedge10:
     interface: botedge10
-    subcomponent: portsplit0
-  portsplit0.botedge11:
+    subcomponent: portsplit
+  portsplit.botedge11:
     interface: botedge11
-    subcomponent: portsplit0
-  portsplit0.botedge12:
+    subcomponent: portsplit
+  portsplit.botedge12:
     interface: botedge12
-    subcomponent: portsplit0
-  portsplit0.botedge13:
+    subcomponent: portsplit
+  portsplit.botedge13:
     interface: botedge13
-    subcomponent: portsplit0
-  portsplit0.botedge14:
+    subcomponent: portsplit
+  portsplit.botedge14:
     interface: botedge14
-    subcomponent: portsplit0
-  portsplit0.botedge15:
+    subcomponent: portsplit
+  portsplit.botedge15:
     interface: botedge15
-    subcomponent: portsplit0
-  portsplit0.botedge16:
+    subcomponent: portsplit
+  portsplit.botedge16:
     interface: botedge16
-    subcomponent: portsplit0
-  portsplit0.botedge17:
+    subcomponent: portsplit
+  portsplit.botedge17:
     interface: botedge17
-    subcomponent: portsplit0
-  portsplit0.botedge18:
+    subcomponent: portsplit
+  portsplit.botedge18:
     interface: botedge18
-    subcomponent: portsplit0
-  portsplit0.botedge19:
+    subcomponent: portsplit
+  portsplit.botedge19:
     interface: botedge19
-    subcomponent: portsplit0
-  portsplit0.botedge2:
+    subcomponent: portsplit
+  portsplit.botedge2:
     interface: botedge2
-    subcomponent: portsplit0
-  portsplit0.botedge20:
+    subcomponent: portsplit
+  portsplit.botedge20:
     interface: botedge20
-    subcomponent: portsplit0
-  portsplit0.botedge21:
+    subcomponent: portsplit
+  portsplit.botedge21:
     interface: botedge21
-    subcomponent: portsplit0
-  portsplit0.botedge22:
+    subcomponent: portsplit
+  portsplit.botedge22:
     interface: botedge22
-    subcomponent: portsplit0
-  portsplit0.botedge23:
+    subcomponent: portsplit
+  portsplit.botedge23:
     interface: botedge23
-    subcomponent: portsplit0
-  portsplit0.botedge24:
+    subcomponent: portsplit
+  portsplit.botedge24:
     interface: botedge24
-    subcomponent: portsplit0
-  portsplit0.botedge25:
+    subcomponent: portsplit
+  portsplit.botedge25:
     interface: botedge25
-    subcomponent: portsplit0
-  portsplit0.botedge26:
+    subcomponent: portsplit
+  portsplit.botedge26:
     interface: botedge26
-    subcomponent: portsplit0
-  portsplit0.botedge27:
+    subcomponent: portsplit
+  portsplit.botedge27:
     interface: botedge27
-    subcomponent: portsplit0
-  portsplit0.botedge28:
+    subcomponent: portsplit
+  portsplit.botedge28:
     interface: botedge28
-    subcomponent: portsplit0
-  portsplit0.botedge29:
+    subcomponent: portsplit
+  portsplit.botedge29:
     interface: botedge29
-    subcomponent: portsplit0
-  portsplit0.botedge3:
+    subcomponent: portsplit
+  portsplit.botedge3:
     interface: botedge3
-    subcomponent: portsplit0
-  portsplit0.botedge30:
+    subcomponent: portsplit
+  portsplit.botedge30:
     interface: botedge30
-    subcomponent: portsplit0
-  portsplit0.botedge31:
+    subcomponent: portsplit
+  portsplit.botedge31:
     interface: botedge31
-    subcomponent: portsplit0
-  portsplit0.botedge32:
+    subcomponent: portsplit
+  portsplit.botedge32:
     interface: botedge32
-    subcomponent: portsplit0
-  portsplit0.botedge33:
+    subcomponent: portsplit
+  portsplit.botedge33:
     interface: botedge33
-    subcomponent: portsplit0
-  portsplit0.botedge34:
+    subcomponent: portsplit
+  portsplit.botedge34:
     interface: botedge34
-    subcomponent: portsplit0
-  portsplit0.botedge35:
+    subcomponent: portsplit
+  portsplit.botedge35:
     interface: botedge35
-    subcomponent: portsplit0
-  portsplit0.botedge36:
+    subcomponent: portsplit
+  portsplit.botedge36:
     interface: botedge36
-    subcomponent: portsplit0
-  portsplit0.botedge37:
+    subcomponent: portsplit
+  portsplit.botedge37:
     interface: botedge37
-    subcomponent: portsplit0
-  portsplit0.botedge38:
+    subcomponent: portsplit
+  portsplit.botedge38:
     interface: botedge38
-    subcomponent: portsplit0
-  portsplit0.botedge39:
+    subcomponent: portsplit
+  portsplit.botedge39:
     interface: botedge39
-    subcomponent: portsplit0
-  portsplit0.botedge4:
+    subcomponent: portsplit
+  portsplit.botedge4:
     interface: botedge4
-    subcomponent: portsplit0
-  portsplit0.botedge40:
+    subcomponent: portsplit
+  portsplit.botedge40:
     interface: botedge40
-    subcomponent: portsplit0
-  portsplit0.botedge41:
+    subcomponent: portsplit
+  portsplit.botedge41:
     interface: botedge41
-    subcomponent: portsplit0
-  portsplit0.botedge42:
+    subcomponent: portsplit
+  portsplit.botedge42:
     interface: botedge42
-    subcomponent: portsplit0
-  portsplit0.botedge43:
+    subcomponent: portsplit
+  portsplit.botedge43:
     interface: botedge43
-    subcomponent: portsplit0
-  portsplit0.botedge44:
+    subcomponent: portsplit
+  portsplit.botedge44:
     interface: botedge44
-    subcomponent: portsplit0
-  portsplit0.botedge45:
+    subcomponent: portsplit
+  portsplit.botedge45:
     interface: botedge45
-    subcomponent: portsplit0
-  portsplit0.botedge46:
+    subcomponent: portsplit
+  portsplit.botedge46:
     interface: botedge46
-    subcomponent: portsplit0
-  portsplit0.botedge47:
+    subcomponent: portsplit
+  portsplit.botedge47:
     interface: botedge47
-    subcomponent: portsplit0
-  portsplit0.botedge48:
+    subcomponent: portsplit
+  portsplit.botedge48:
     interface: botedge48
-    subcomponent: portsplit0
-  portsplit0.botedge49:
+    subcomponent: portsplit
+  portsplit.botedge49:
     interface: botedge49
-    subcomponent: portsplit0
-  portsplit0.botedge5:
+    subcomponent: portsplit
+  portsplit.botedge5:
     interface: botedge5
-    subcomponent: portsplit0
-  portsplit0.botedge50:
+    subcomponent: portsplit
+  portsplit.botedge50:
     interface: botedge50
-    subcomponent: portsplit0
-  portsplit0.botedge51:
+    subcomponent: portsplit
+  portsplit.botedge51:
     interface: botedge51
-    subcomponent: portsplit0
-  portsplit0.botedge52:
+    subcomponent: portsplit
+  portsplit.botedge52:
     interface: botedge52
-    subcomponent: portsplit0
-  portsplit0.botedge53:
+    subcomponent: portsplit
+  portsplit.botedge53:
     interface: botedge53
-    subcomponent: portsplit0
-  portsplit0.botedge54:
+    subcomponent: portsplit
+  portsplit.botedge54:
     interface: botedge54
-    subcomponent: portsplit0
-  portsplit0.botedge55:
+    subcomponent: portsplit
+  portsplit.botedge55:
     interface: botedge55
-    subcomponent: portsplit0
-  portsplit0.botedge56:
+    subcomponent: portsplit
+  portsplit.botedge56:
     interface: botedge56
-    subcomponent: portsplit0
-  portsplit0.botedge57:
+    subcomponent: portsplit
+  portsplit.botedge57:
     interface: botedge57
-    subcomponent: portsplit0
-  portsplit0.botedge58:
+    subcomponent: portsplit
+  portsplit.botedge58:
     interface: botedge58
-    subcomponent: portsplit0
-  portsplit0.botedge59:
+    subcomponent: portsplit
+  portsplit.botedge59:
     interface: botedge59
-    subcomponent: portsplit0
-  portsplit0.botedge6:
+    subcomponent: portsplit
+  portsplit.botedge6:
     interface: botedge6
-    subcomponent: portsplit0
-  portsplit0.botedge60:
+    subcomponent: portsplit
+  portsplit.botedge60:
     interface: botedge60
-    subcomponent: portsplit0
-  portsplit0.botedge61:
+    subcomponent: portsplit
+  portsplit.botedge61:
     interface: botedge61
-    subcomponent: portsplit0
-  portsplit0.botedge62:
+    subcomponent: portsplit
+  portsplit.botedge62:
     interface: botedge62
-    subcomponent: portsplit0
-  portsplit0.botedge63:
+    subcomponent: portsplit
+  portsplit.botedge63:
     interface: botedge63
-    subcomponent: portsplit0
-  portsplit0.botedge64:
+    subcomponent: portsplit
+  portsplit.botedge64:
     interface: botedge64
-    subcomponent: portsplit0
-  portsplit0.botedge65:
+    subcomponent: portsplit
+  portsplit.botedge65:
     interface: botedge65
-    subcomponent: portsplit0
-  portsplit0.botedge66:
+    subcomponent: portsplit
+  portsplit.botedge66:
     interface: botedge66
-    subcomponent: portsplit0
-  portsplit0.botedge67:
+    subcomponent: portsplit
+  portsplit.botedge67:
     interface: botedge67
-    subcomponent: portsplit0
-  portsplit0.botedge68:
+    subcomponent: portsplit
+  portsplit.botedge68:
     interface: botedge68
-    subcomponent: portsplit0
-  portsplit0.botedge69:
+    subcomponent: portsplit
+  portsplit.botedge69:
     interface: botedge69
-    subcomponent: portsplit0
-  portsplit0.botedge7:
+    subcomponent: portsplit
+  portsplit.botedge7:
     interface: botedge7
-    subcomponent: portsplit0
-  portsplit0.botedge70:
+    subcomponent: portsplit
+  portsplit.botedge70:
     interface: botedge70
-    subcomponent: portsplit0
-  portsplit0.botedge71:
+    subcomponent: portsplit
+  portsplit.botedge71:
     interface: botedge71
-    subcomponent: portsplit0
-  portsplit0.botedge72:
+    subcomponent: portsplit
+  portsplit.botedge72:
     interface: botedge72
-    subcomponent: portsplit0
-  portsplit0.botedge73:
+    subcomponent: portsplit
+  portsplit.botedge73:
     interface: botedge73
-    subcomponent: portsplit0
-  portsplit0.botedge74:
+    subcomponent: portsplit
+  portsplit.botedge74:
     interface: botedge74
-    subcomponent: portsplit0
-  portsplit0.botedge75:
+    subcomponent: portsplit
+  portsplit.botedge75:
     interface: botedge75
-    subcomponent: portsplit0
-  portsplit0.botedge76:
+    subcomponent: portsplit
+  portsplit.botedge76:
     interface: botedge76
-    subcomponent: portsplit0
-  portsplit0.botedge77:
+    subcomponent: portsplit
+  portsplit.botedge77:
     interface: botedge77
-    subcomponent: portsplit0
-  portsplit0.botedge78:
+    subcomponent: portsplit
+  portsplit.botedge78:
     interface: botedge78
-    subcomponent: portsplit0
-  portsplit0.botedge79:
+    subcomponent: portsplit
+  portsplit.botedge79:
     interface: botedge79
-    subcomponent: portsplit0
-  portsplit0.botedge8:
+    subcomponent: portsplit
+  portsplit.botedge8:
     interface: botedge8
-    subcomponent: portsplit0
-  portsplit0.botedge80:
+    subcomponent: portsplit
+  portsplit.botedge80:
     interface: botedge80
-    subcomponent: portsplit0
-  portsplit0.botedge81:
+    subcomponent: portsplit
+  portsplit.botedge81:
     interface: botedge81
-    subcomponent: portsplit0
-  portsplit0.botedge82:
+    subcomponent: portsplit
+  portsplit.botedge82:
     interface: botedge82
-    subcomponent: portsplit0
-  portsplit0.botedge83:
+    subcomponent: portsplit
+  portsplit.botedge83:
     interface: botedge83
-    subcomponent: portsplit0
-  portsplit0.botedge84:
+    subcomponent: portsplit
+  portsplit.botedge84:
     interface: botedge84
-    subcomponent: portsplit0
-  portsplit0.botedge85:
+    subcomponent: portsplit
+  portsplit.botedge85:
     interface: botedge85
-    subcomponent: portsplit0
-  portsplit0.botedge86:
+    subcomponent: portsplit
+  portsplit.botedge86:
     interface: botedge86
-    subcomponent: portsplit0
-  portsplit0.botedge87:
+    subcomponent: portsplit
+  portsplit.botedge87:
     interface: botedge87
-    subcomponent: portsplit0
-  portsplit0.botedge88:
+    subcomponent: portsplit
+  portsplit.botedge88:
     interface: botedge88
-    subcomponent: portsplit0
-  portsplit0.botedge89:
+    subcomponent: portsplit
+  portsplit.botedge89:
     interface: botedge89
-    subcomponent: portsplit0
-  portsplit0.botedge9:
+    subcomponent: portsplit
+  portsplit.botedge9:
     interface: botedge9
-    subcomponent: portsplit0
-  portsplit0.botedge90:
+    subcomponent: portsplit
+  portsplit.botedge90:
     interface: botedge90
-    subcomponent: portsplit0
-  portsplit0.botedge91:
+    subcomponent: portsplit
+  portsplit.botedge91:
     interface: botedge91
-    subcomponent: portsplit0
-  portsplit0.botedge92:
+    subcomponent: portsplit
+  portsplit.botedge92:
     interface: botedge92
-    subcomponent: portsplit0
-  portsplit0.botedge93:
+    subcomponent: portsplit
+  portsplit.botedge93:
     interface: botedge93
-    subcomponent: portsplit0
-  portsplit0.botedge94:
+    subcomponent: portsplit
+  portsplit.botedge94:
     interface: botedge94
-    subcomponent: portsplit0
-  portsplit0.botedge95:
+    subcomponent: portsplit
+  portsplit.botedge95:
     interface: botedge95
-    subcomponent: portsplit0
-  portsplit0.botedge96:
+    subcomponent: portsplit
+  portsplit.botedge96:
     interface: botedge96
-    subcomponent: portsplit0
-  portsplit0.botedge97:
+    subcomponent: portsplit
+  portsplit.botedge97:
     interface: botedge97
-    subcomponent: portsplit0
-  portsplit0.botedge98:
+    subcomponent: portsplit
+  portsplit.botedge98:
     interface: botedge98
-    subcomponent: portsplit0
-  portsplit0.botedge99:
+    subcomponent: portsplit
+  portsplit.botedge99:
     interface: botedge99
-    subcomponent: portsplit0
-  portsplit0.topedge0:
+    subcomponent: portsplit
+  portsplit.topedge0:
     interface: topedge0
-    subcomponent: portsplit0
-  portsplit0.topedge1:
+    subcomponent: portsplit
+  portsplit.topedge1:
     interface: topedge1
-    subcomponent: portsplit0
-  portsplit0.topedge10:
+    subcomponent: portsplit
+  portsplit.topedge10:
     interface: topedge10
-    subcomponent: portsplit0
-  portsplit0.topedge11:
+    subcomponent: portsplit
+  portsplit.topedge11:
     interface: topedge11
-    subcomponent: portsplit0
-  portsplit0.topedge12:
+    subcomponent: portsplit
+  portsplit.topedge12:
     interface: topedge12
-    subcomponent: portsplit0
-  portsplit0.topedge13:
+    subcomponent: portsplit
+  portsplit.topedge13:
     interface: topedge13
-    subcomponent: portsplit0
-  portsplit0.topedge14:
+    subcomponent: portsplit
+  portsplit.topedge14:
     interface: topedge14
-    subcomponent: portsplit0
-  portsplit0.topedge15:
+    subcomponent: portsplit
+  portsplit.topedge15:
     interface: topedge15
-    subcomponent: portsplit0
-  portsplit0.topedge16:
+    subcomponent: portsplit
+  portsplit.topedge16:
     interface: topedge16
-    subcomponent: portsplit0
-  portsplit0.topedge17:
+    subcomponent: portsplit
+  portsplit.topedge17:
     interface: topedge17
-    subcomponent: portsplit0
-  portsplit0.topedge18:
+    subcomponent: portsplit
+  portsplit.topedge18:
     interface: topedge18
-    subcomponent: portsplit0
-  portsplit0.topedge19:
+    subcomponent: portsplit
+  portsplit.topedge19:
     interface: topedge19
-    subcomponent: portsplit0
-  portsplit0.topedge2:
+    subcomponent: portsplit
+  portsplit.topedge2:
     interface: topedge2
-    subcomponent: portsplit0
-  portsplit0.topedge20:
+    subcomponent: portsplit
+  portsplit.topedge20:
     interface: topedge20
-    subcomponent: portsplit0
-  portsplit0.topedge21:
+    subcomponent: portsplit
+  portsplit.topedge21:
     interface: topedge21
-    subcomponent: portsplit0
-  portsplit0.topedge22:
+    subcomponent: portsplit
+  portsplit.topedge22:
     interface: topedge22
-    subcomponent: portsplit0
-  portsplit0.topedge23:
+    subcomponent: portsplit
+  portsplit.topedge23:
     interface: topedge23
-    subcomponent: portsplit0
-  portsplit0.topedge24:
+    subcomponent: portsplit
+  portsplit.topedge24:
     interface: topedge24
-    subcomponent: portsplit0
-  portsplit0.topedge25:
+    subcomponent: portsplit
+  portsplit.topedge25:
     interface: topedge25
-    subcomponent: portsplit0
-  portsplit0.topedge26:
+    subcomponent: portsplit
+  portsplit.topedge26:
     interface: topedge26
-    subcomponent: portsplit0
-  portsplit0.topedge27:
+    subcomponent: portsplit
+  portsplit.topedge27:
     interface: topedge27
-    subcomponent: portsplit0
-  portsplit0.topedge28:
+    subcomponent: portsplit
+  portsplit.topedge28:
     interface: topedge28
-    subcomponent: portsplit0
-  portsplit0.topedge29:
+    subcomponent: portsplit
+  portsplit.topedge29:
     interface: topedge29
-    subcomponent: portsplit0
-  portsplit0.topedge3:
+    subcomponent: portsplit
+  portsplit.topedge3:
     interface: topedge3
-    subcomponent: portsplit0
-  portsplit0.topedge30:
+    subcomponent: portsplit
+  portsplit.topedge30:
     interface: topedge30
-    subcomponent: portsplit0
-  portsplit0.topedge31:
+    subcomponent: portsplit
+  portsplit.topedge31:
     interface: topedge31
-    subcomponent: portsplit0
-  portsplit0.topedge32:
+    subcomponent: portsplit
+  portsplit.topedge32:
     interface: topedge32
-    subcomponent: portsplit0
-  portsplit0.topedge33:
+    subcomponent: portsplit
+  portsplit.topedge33:
     interface: topedge33
-    subcomponent: portsplit0
-  portsplit0.topedge34:
+    subcomponent: portsplit
+  portsplit.topedge34:
     interface: topedge34
-    subcomponent: portsplit0
-  portsplit0.topedge35:
+    subcomponent: portsplit
+  portsplit.topedge35:
     interface: topedge35
-    subcomponent: portsplit0
-  portsplit0.topedge36:
+    subcomponent: portsplit
+  portsplit.topedge36:
     interface: topedge36
-    subcomponent: portsplit0
-  portsplit0.topedge37:
+    subcomponent: portsplit
+  portsplit.topedge37:
     interface: topedge37
-    subcomponent: portsplit0
-  portsplit0.topedge38:
+    subcomponent: portsplit
+  portsplit.topedge38:
     interface: topedge38
-    subcomponent: portsplit0
-  portsplit0.topedge39:
+    subcomponent: portsplit
+  portsplit.topedge39:
     interface: topedge39
-    subcomponent: portsplit0
-  portsplit0.topedge4:
+    subcomponent: portsplit
+  portsplit.topedge4:
     interface: topedge4
-    subcomponent: portsplit0
-  portsplit0.topedge40:
+    subcomponent: portsplit
+  portsplit.topedge40:
     interface: topedge40
-    subcomponent: portsplit0
-  portsplit0.topedge41:
+    subcomponent: portsplit
+  portsplit.topedge41:
     interface: topedge41
-    subcomponent: portsplit0
-  portsplit0.topedge42:
+    subcomponent: portsplit
+  portsplit.topedge42:
     interface: topedge42
-    subcomponent: portsplit0
-  portsplit0.topedge43:
+    subcomponent: portsplit
+  portsplit.topedge43:
     interface: topedge43
-    subcomponent: portsplit0
-  portsplit0.topedge44:
+    subcomponent: portsplit
+  portsplit.topedge44:
     interface: topedge44
-    subcomponent: portsplit0
-  portsplit0.topedge45:
+    subcomponent: portsplit
+  portsplit.topedge45:
     interface: topedge45
-    subcomponent: portsplit0
-  portsplit0.topedge46:
+    subcomponent: portsplit
+  portsplit.topedge46:
     interface: topedge46
-    subcomponent: portsplit0
-  portsplit0.topedge47:
+    subcomponent: portsplit
+  portsplit.topedge47:
     interface: topedge47
-    subcomponent: portsplit0
-  portsplit0.topedge48:
+    subcomponent: portsplit
+  portsplit.topedge48:
     interface: topedge48
-    subcomponent: portsplit0
-  portsplit0.topedge49:
+    subcomponent: portsplit
+  portsplit.topedge49:
     interface: topedge49
-    subcomponent: portsplit0
-  portsplit0.topedge5:
+    subcomponent: portsplit
+  portsplit.topedge5:
     interface: topedge5
-    subcomponent: portsplit0
-  portsplit0.topedge50:
+    subcomponent: portsplit
+  portsplit.topedge50:
     interface: topedge50
-    subcomponent: portsplit0
-  portsplit0.topedge51:
+    subcomponent: portsplit
+  portsplit.topedge51:
     interface: topedge51
-    subcomponent: portsplit0
-  portsplit0.topedge52:
+    subcomponent: portsplit
+  portsplit.topedge52:
     interface: topedge52
-    subcomponent: portsplit0
-  portsplit0.topedge53:
+    subcomponent: portsplit
+  portsplit.topedge53:
     interface: topedge53
-    subcomponent: portsplit0
-  portsplit0.topedge54:
+    subcomponent: portsplit
+  portsplit.topedge54:
     interface: topedge54
-    subcomponent: portsplit0
-  portsplit0.topedge55:
+    subcomponent: portsplit
+  portsplit.topedge55:
     interface: topedge55
-    subcomponent: portsplit0
-  portsplit0.topedge56:
+    subcomponent: portsplit
+  portsplit.topedge56:
     interface: topedge56
-    subcomponent: portsplit0
-  portsplit0.topedge57:
+    subcomponent: portsplit
+  portsplit.topedge57:
     interface: topedge57
-    subcomponent: portsplit0
-  portsplit0.topedge58:
+    subcomponent: portsplit
+  portsplit.topedge58:
     interface: topedge58
-    subcomponent: portsplit0
-  portsplit0.topedge59:
+    subcomponent: portsplit
+  portsplit.topedge59:
     interface: topedge59
-    subcomponent: portsplit0
-  portsplit0.topedge6:
+    subcomponent: portsplit
+  portsplit.topedge6:
     interface: topedge6
-    subcomponent: portsplit0
-  portsplit0.topedge60:
+    subcomponent: portsplit
+  portsplit.topedge60:
     interface: topedge60
-    subcomponent: portsplit0
-  portsplit0.topedge61:
+    subcomponent: portsplit
+  portsplit.topedge61:
     interface: topedge61
-    subcomponent: portsplit0
-  portsplit0.topedge62:
+    subcomponent: portsplit
+  portsplit.topedge62:
     interface: topedge62
-    subcomponent: portsplit0
-  portsplit0.topedge63:
+    subcomponent: portsplit
+  portsplit.topedge63:
     interface: topedge63
-    subcomponent: portsplit0
-  portsplit0.topedge64:
+    subcomponent: portsplit
+  portsplit.topedge64:
     interface: topedge64
-    subcomponent: portsplit0
-  portsplit0.topedge65:
+    subcomponent: portsplit
+  portsplit.topedge65:
     interface: topedge65
-    subcomponent: portsplit0
-  portsplit0.topedge66:
+    subcomponent: portsplit
+  portsplit.topedge66:
     interface: topedge66
-    subcomponent: portsplit0
-  portsplit0.topedge67:
+    subcomponent: portsplit
+  portsplit.topedge67:
     interface: topedge67
-    subcomponent: portsplit0
-  portsplit0.topedge68:
+    subcomponent: portsplit
+  portsplit.topedge68:
     interface: topedge68
-    subcomponent: portsplit0
-  portsplit0.topedge69:
+    subcomponent: portsplit
+  portsplit.topedge69:
     interface: topedge69
-    subcomponent: portsplit0
-  portsplit0.topedge7:
+    subcomponent: portsplit
+  portsplit.topedge7:
     interface: topedge7
-    subcomponent: portsplit0
-  portsplit0.topedge70:
+    subcomponent: portsplit
+  portsplit.topedge70:
     interface: topedge70
-    subcomponent: portsplit0
-  portsplit0.topedge71:
+    subcomponent: portsplit
+  portsplit.topedge71:
     interface: topedge71
-    subcomponent: portsplit0
-  portsplit0.topedge72:
+    subcomponent: portsplit
+  portsplit.topedge72:
     interface: topedge72
-    subcomponent: portsplit0
-  portsplit0.topedge73:
+    subcomponent: portsplit
+  portsplit.topedge73:
     interface: topedge73
-    subcomponent: portsplit0
-  portsplit0.topedge74:
+    subcomponent: portsplit
+  portsplit.topedge74:
     interface: topedge74
-    subcomponent: portsplit0
-  portsplit0.topedge75:
+    subcomponent: portsplit
+  portsplit.topedge75:
     interface: topedge75
-    subcomponent: portsplit0
-  portsplit0.topedge76:
+    subcomponent: portsplit
+  portsplit.topedge76:
     interface: topedge76
-    subcomponent: portsplit0
-  portsplit0.topedge77:
+    subcomponent: portsplit
+  portsplit.topedge77:
     interface: topedge77
-    subcomponent: portsplit0
-  portsplit0.topedge78:
+    subcomponent: portsplit
+  portsplit.topedge78:
     interface: topedge78
-    subcomponent: portsplit0
-  portsplit0.topedge79:
+    subcomponent: portsplit
+  portsplit.topedge79:
     interface: topedge79
-    subcomponent: portsplit0
-  portsplit0.topedge8:
+    subcomponent: portsplit
+  portsplit.topedge8:
     interface: topedge8
-    subcomponent: portsplit0
-  portsplit0.topedge80:
+    subcomponent: portsplit
+  portsplit.topedge80:
     interface: topedge80
-    subcomponent: portsplit0
-  portsplit0.topedge81:
+    subcomponent: portsplit
+  portsplit.topedge81:
     interface: topedge81
-    subcomponent: portsplit0
-  portsplit0.topedge82:
+    subcomponent: portsplit
+  portsplit.topedge82:
     interface: topedge82
-    subcomponent: portsplit0
-  portsplit0.topedge83:
+    subcomponent: portsplit
+  portsplit.topedge83:
     interface: topedge83
-    subcomponent: portsplit0
-  portsplit0.topedge84:
+    subcomponent: portsplit
+  portsplit.topedge84:
     interface: topedge84
-    subcomponent: portsplit0
-  portsplit0.topedge85:
+    subcomponent: portsplit
+  portsplit.topedge85:
     interface: topedge85
-    subcomponent: portsplit0
-  portsplit0.topedge86:
+    subcomponent: portsplit
+  portsplit.topedge86:
     interface: topedge86
-    subcomponent: portsplit0
-  portsplit0.topedge87:
+    subcomponent: portsplit
+  portsplit.topedge87:
     interface: topedge87
-    subcomponent: portsplit0
-  portsplit0.topedge88:
+    subcomponent: portsplit
+  portsplit.topedge88:
     interface: topedge88
-    subcomponent: portsplit0
-  portsplit0.topedge89:
+    subcomponent: portsplit
+  portsplit.topedge89:
     interface: topedge89
-    subcomponent: portsplit0
-  portsplit0.topedge9:
+    subcomponent: portsplit
+  portsplit.topedge9:
     interface: topedge9
-    subcomponent: portsplit0
-  portsplit0.topedge90:
+    subcomponent: portsplit
+  portsplit.topedge90:
     interface: topedge90
-    subcomponent: portsplit0
-  portsplit0.topedge91:
+    subcomponent: portsplit
+  portsplit.topedge91:
     interface: topedge91
-    subcomponent: portsplit0
-  portsplit0.topedge92:
+    subcomponent: portsplit
+  portsplit.topedge92:
     interface: topedge92
-    subcomponent: portsplit0
-  portsplit0.topedge93:
+    subcomponent: portsplit
+  portsplit.topedge93:
     interface: topedge93
-    subcomponent: portsplit0
-  portsplit0.topedge94:
+    subcomponent: portsplit
+  portsplit.topedge94:
     interface: topedge94
-    subcomponent: portsplit0
-  portsplit0.topedge95:
+    subcomponent: portsplit
+  portsplit.topedge95:
     interface: topedge95
-    subcomponent: portsplit0
-  portsplit0.topedge96:
+    subcomponent: portsplit
+  portsplit.topedge96:
     interface: topedge96
-    subcomponent: portsplit0
-  portsplit0.topedge97:
+    subcomponent: portsplit
+  portsplit.topedge97:
     interface: topedge97
-    subcomponent: portsplit0
-  portsplit0.topedge98:
+    subcomponent: portsplit
+  portsplit.topedge98:
     interface: topedge98
-    subcomponent: portsplit0
-  portsplit0.topedge99:
+    subcomponent: portsplit
+  portsplit.topedge99:
     interface: topedge99
-    subcomponent: portsplit0
+    subcomponent: portsplit
   servostack.doubleServoMount.lServoInterface:
     interface: doubleServoMount.lServoInterface
     subcomponent: servostack
@@ -1872,6 +1896,606 @@ interfaces:
   servostack.starsplit.topedge99:
     interface: starsplit.topedge99
     subcomponent: servostack
+  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.depth:
     defaultValue: 20
@@ -1941,7 +2565,7 @@ subcomponents:
         parameter: bow.point
       stern.point:
         parameter: stern.point
-  portsplit0:
+  portsplit:
     classname: SplitEdge
     kwargs: {}
     parameters:
@@ -1950,9 +2574,19 @@ subcomponents:
       - 10
       - 24
       - 61
-      toplength:
+      toplength: &id001
       - 156
   servostack:
     classname: ServoStackMount
     kwargs: {}
     parameters: {}
+  starsplit:
+    classname: SplitEdge
+    kwargs: {}
+    parameters:
+      botlength:
+      - 61
+      - 24
+      - 10
+      - 61
+      toplength: *id001
diff --git a/rocolib/output/BoatWithServoStackBattery/graph-anim.svg b/rocolib/output/BoatWithServoStackBattery/graph-anim.svg
index c787dbb36e882ad838d6f755227cdcad78c3edfb..980c703e8122d08604f5195c6022ab7ad26636d2 100644
--- a/rocolib/output/BoatWithServoStackBattery/graph-anim.svg
+++ b/rocolib/output/BoatWithServoStackBattery/graph-anim.svg
@@ -1,638 +1,699 @@
 <?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="383.004790mm" version="1.1" viewBox="0.000000 0.000000 811.355061 383.004790" width="811.355061mm">
+<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 696.355061 480.500000" width="696.355061mm">
   <defs/>
-  <line stroke="#000000" x1="150.3085560697229" x2="88.65427803486146" y1="105.00000000000001" y2="105.00000000000001"/>
-  <line stroke="#000000" x1="88.65427803486146" x2="150.3085560697229" y1="166.0" y2="166.0"/>
-  <line opacity="0.25" stroke="#ff0000" x1="88.65427803486146" x2="88.65427803486146" y1="166.0" y2="105.00000000000001"/>
-  <line stroke="#000000" x1="160.30855606972293" x2="150.3085560697229" y1="105.00000000000001" y2="105.00000000000001"/>
-  <line stroke="#000000" x1="160.30855606972293" x2="160.30855606972293" y1="166.0" y2="105.00000000000001"/>
-  <line stroke="#000000" x1="150.3085560697229" x2="160.30855606972293" y1="166.0" y2="166.0"/>
-  <line stroke="#000000" x1="61.65427803486146" x2="88.65427803486146" y1="166.0" y2="166.0"/>
-  <line opacity="0.25" stroke="#ff0000" x1="61.65427803486146" x2="61.65427803486146" y1="105.00000000000001" y2="166.0"/>
-  <line opacity="0.5" stroke="#0000ff" x1="88.65427803486146" x2="61.65427803486146" y1="105.00000000000001" y2="105.00000000000001"/>
-  <line stroke="#000000" x1="0.0" x2="61.65427803486146" y1="166.0" y2="166.0"/>
+  <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="61.65427803486146" x2="0.0" y1="105.00000000000001" y2="105.00000000000001"/>
-  <line stroke="#000000" x1="88.65427803486146" x2="88.65427803486146" y1="105.00000000000001" y2="88.00000000000001"/>
-  <line stroke="#000000" x1="61.65427803486146" x2="61.65427803486146" y1="88.00000000000001" y2="105.00000000000001"/>
-  <line opacity="0.5" stroke="#0000ff" x1="88.65427803486146" x2="61.65427803486146" y1="88.00000000000001" y2="88.00000000000001"/>
-  <line stroke="#000000" x1="88.65427803486146" x2="88.65427803486146" y1="88.00000000000001" y2="27.000000000000004"/>
-  <line stroke="#000000" x1="61.65427803486146" x2="61.65427803486146" y1="27.000000000000004" y2="88.00000000000001"/>
-  <line opacity="0.5" stroke="#0000ff" x1="88.65427803486146" x2="61.65427803486146" y1="27.000000000000004" y2="27.000000000000004"/>
-  <line stroke="#000000" x1="88.65427803486146" x2="88.65427803486146" y1="27.000000000000004" y2="10.000000000000002"/>
-  <line stroke="#000000" x1="61.65427803486146" x2="61.65427803486146" y1="10.000000000000002" y2="27.000000000000004"/>
-  <line opacity="0.5" stroke="#0000ff" x1="61.65427803486146" x2="88.65427803486146" y1="10.000000000000002" y2="10.000000000000002"/>
-  <line stroke="#000000" x1="61.65427803486146" x2="61.65427803486146" y1="0.0" y2="10.000000000000002"/>
-  <line stroke="#000000" x1="88.65427803486146" x2="61.65427803486146" y1="0.0" y2="0.0"/>
-  <line stroke="#000000" x1="88.65427803486146" x2="88.65427803486146" y1="10.000000000000002" y2="0.0"/>
-  <line stroke="#888888" x1="157.80855606972293" x2="152.8085560697229" y1="154.90909090909093" y2="154.90909090909093"/>
-  <line stroke="#888888" x1="152.8085560697229" x2="152.8085560697229" y1="154.90909090909093" y2="143.8181818181818"/>
-  <line stroke="#888888" x1="152.8085560697229" x2="157.80855606972293" y1="143.8181818181818" y2="143.8181818181818"/>
-  <line stroke="#888888" x1="157.80855606972293" x2="152.8085560697229" y1="127.1818181818182" y2="127.1818181818182"/>
-  <line stroke="#888888" x1="152.8085560697229" x2="152.8085560697229" y1="127.1818181818182" y2="116.09090909090911"/>
-  <line stroke="#888888" x1="152.8085560697229" x2="157.80855606972293" y1="116.09090909090911" y2="116.09090909090911"/>
-  <line stroke="#888888" x1="84.15427803486145" x2="84.15427803486145" y1="102.50000000000001" y2="108.50000000000001"/>
-  <line stroke="#888888" x1="84.15427803486145" x2="66.15427803486145" y1="108.50000000000001" y2="108.50000000000001"/>
-  <line stroke="#888888" x1="66.15427803486145" x2="66.15427803486145" y1="108.50000000000001" y2="102.50000000000001"/>
-  <line stroke="#888888" x1="66.15427803486145" x2="84.15427803486145" y1="102.50000000000001" y2="102.50000000000001"/>
-  <line stroke="#888888" x1="70.40427803486146" x2="79.90427803486145" y1="158.25000000000003" y2="158.25000000000003"/>
-  <line stroke="#888888" x1="79.90427803486145" x2="79.90427803486145" y1="158.25000000000003" y2="158.75000000000003"/>
-  <line stroke="#888888" x1="79.90427803486145" x2="70.40427803486146" y1="158.75000000000003" y2="158.75000000000003"/>
-  <line stroke="#888888" x1="70.40427803486146" x2="70.40427803486146" y1="158.75000000000003" y2="158.25000000000003"/>
-  <line stroke="#888888" x1="79.65427803486145" x2="79.65427803486145" y1="2.5000000000000004" y2="7.500000000000001"/>
-  <line stroke="#888888" x1="79.65427803486145" x2="70.65427803486145" y1="7.500000000000001" y2="7.500000000000001"/>
-  <line stroke="#888888" x1="70.65427803486145" x2="70.65427803486145" y1="7.500000000000001" y2="2.5000000000000004"/>
-  <line stroke="#000000" x1="317.33180874014937" x2="256.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="351.33180874014937" x2="341.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="412.33180874014937" x2="412.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="256.33180874014937" x2="256.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="317.33180874014937" x2="243.33180874014934" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="351.33180874014937" x2="341.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="412.33180874014937" x2="412.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="341.33180874014937" x2="351.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="243.33180874014934" x2="317.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="243.33180874014934" x2="243.33180874014934" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="341.33180874014937" x2="341.33180874014937" y1="135.50000000000003" y2="101.50000000000001"/>
-  <line opacity="0.5" stroke="#0000ff" x1="317.33180874014937" x2="317.33180874014937" y1="101.50000000000001" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="317.33180874014937" x2="317.33180874014937" y1="65.5" y2="101.50000000000001"/>
-  <line opacity="0.5" stroke="#ff0000" x1="317.33180874014937" x2="341.33180874014937" y1="65.5" y2="65.5"/>
-  <line stroke="#000000" x1="341.33180874014937" x2="341.33180874014937" y1="101.50000000000001" y2="65.5"/>
-  <line stroke="#000000" x1="341.33180874014937" x2="341.33180874014937" y1="65.5" y2="20.5"/>
-  <line stroke="#000000" x1="317.33180874014937" x2="317.33180874014937" y1="20.5" y2="65.5"/>
-  <line stroke="#000000" x1="317.33180874014937" x2="317.33180874014937" y1="15.500000000000004" y2="20.5"/>
-  <line stroke="#000000" x1="341.33180874014937" x2="317.33180874014937" y1="15.500000000000004" y2="15.500000000000004"/>
-  <line stroke="#000000" x1="341.33180874014937" x2="341.33180874014937" y1="20.5" y2="15.500000000000004"/>
-  <line stroke="#000000" x1="317.33180874014937" x2="297.3318087401493" y1="101.50000000000001" y2="101.50000000000001"/>
-  <line stroke="#000000" x1="297.3318087401493" x2="317.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line opacity="0.5" stroke="#0000ff" x1="297.3318087401493" x2="297.3318087401493" y1="101.50000000000001" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="297.3318087401493" x2="273.33180874014937" y1="101.50000000000001" y2="101.50000000000001"/>
-  <line stroke="#000000" x1="273.33180874014937" x2="297.3318087401493" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line opacity="0.5" stroke="#0000ff" x1="273.33180874014937" x2="273.33180874014937" y1="101.50000000000001" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="273.33180874014937" x2="253.33180874014934" y1="101.50000000000001" y2="101.50000000000001"/>
-  <line stroke="#000000" x1="253.33180874014934" x2="273.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line opacity="0.5" stroke="#0000ff" x1="253.33180874014934" x2="253.33180874014934" y1="135.50000000000003" y2="101.50000000000001"/>
-  <line stroke="#000000" x1="243.33180874014934" x2="253.33180874014934" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="243.33180874014934" x2="243.33180874014934" y1="101.50000000000001" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="253.33180874014934" x2="243.33180874014934" y1="101.50000000000001" y2="101.50000000000001"/>
-  <line opacity="0.25" stroke="#0000ff" x1="351.33180874014937" x2="412.33180874014937" y1="99.36137800081471" y2="99.36137800081471"/>
-  <line stroke="#000000" x1="412.33180874014937" x2="412.33180874014937" y1="135.50000000000003" y2="99.36137800081471"/>
-  <line stroke="#000000" x1="351.33180874014937" x2="351.33180874014937" y1="99.36137800081471" y2="135.50000000000003"/>
-  <line opacity="0.25" stroke="#0000ff" x1="412.33180874014937" x2="351.33180874014937" y1="75.36137800081471" y2="75.36137800081471"/>
-  <line opacity="0.5" stroke="#0000ff" x1="412.33180874014937" x2="412.33180874014937" y1="75.36137800081471" y2="99.36137800081471"/>
-  <line stroke="#000000" x1="351.33180874014937" x2="351.33180874014937" y1="39.22275600162939" y2="75.36137800081472"/>
-  <line stroke="#000000" x1="412.33180874014937" x2="412.33180874014937" y1="75.36137800081472" y2="39.22275600162939"/>
-  <line stroke="#000000" x1="351.33180874014937" x2="351.33180874014937" y1="29.222756001629396" y2="39.22275600162939"/>
-  <line stroke="#000000" x1="412.33180874014937" x2="351.33180874014937" y1="29.222756001629396" y2="29.222756001629396"/>
-  <line stroke="#000000" x1="412.33180874014937" x2="412.33180874014937" y1="39.22275600162939" y2="29.222756001629396"/>
-  <line stroke="#000000" x1="422.33180874014937" x2="412.33180874014937" y1="75.36137800081471" y2="75.36137800081471"/>
-  <line stroke="#000000" x1="422.33180874014937" x2="422.33180874014937" y1="99.36137800081471" y2="75.36137800081471"/>
-  <line stroke="#000000" x1="412.33180874014937" x2="422.33180874014937" y1="99.36137800081471" y2="99.36137800081471"/>
-  <line stroke="#000000" x1="341.33180874014937" x2="351.33180874014937" y1="99.36137800081471" y2="99.36137800081471"/>
-  <line stroke="#000000" x1="341.33180874014937" x2="341.33180874014937" y1="75.36137800081471" y2="99.36137800081471"/>
-  <line stroke="#000000" x1="351.33180874014937" x2="341.33180874014937" y1="75.36137800081471" y2="75.36137800081471"/>
-  <line opacity="0.5" stroke="#0000ff" x1="412.33180874014937" x2="256.33180874014937" y1="205.50000000000003" y2="205.50000000000003"/>
-  <line opacity="0.2332622916434259" stroke="#0000ff" x1="412.33180874014937" x2="412.33180874014937" y1="205.50000000000003" y2="135.50000000000003"/>
-  <line opacity="0.9666666666666667" stroke="#ff0000" x1="412.33180874014937" x2="464.84617955831095" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line opacity="1.0" stroke="#ff0000" x1="412.33180874014937" x2="464.84617955831095" y1="205.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="412.33180874014937" x2="412.33180874014937" y1="117.99520972727949" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="464.84617955831095" x2="412.33180874014937" y1="117.99520972727949" y2="117.99520972727949"/>
-  <line stroke="#000000" x1="464.84617955831095" x2="464.84617955831095" y1="135.50000000000003" y2="117.99520972727949"/>
-  <line opacity="1.0" stroke="#0000ff" x1="412.33180874014937" x2="479.5369564140486" y1="205.50000000000003" y2="185.91765779766357"/>
-  <line stroke="#000000" x1="479.5369564140486" x2="464.84617955831095" y1="185.91765779766357" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="494.22773326978614" x2="479.5369564140486" y1="236.33531559532716" y2="185.91765779766357"/>
-  <line stroke="#000000" x1="498.3550614105757" x2="494.22773326978614" y1="250.50000000000003" y2="236.33531559532716"/>
-  <line opacity="0.31677294251280175" stroke="#0000ff" x1="498.3550614105757" x2="412.33180874014937" y1="250.50000000000003" y2="205.50000000000003"/>
-  <line opacity="0.3025684567112535" stroke="#0000ff" x1="412.33180874014937" x2="412.33180874014937" y1="250.50000000000003" y2="205.50000000000003"/>
-  <line opacity="0.3025684567112535" stroke="#0000ff" x1="412.3318087401494" x2="412.33180874014937" y1="295.5" y2="250.50000000000006"/>
-  <line opacity="0.31677294251280175" stroke="#0000ff" x1="498.35506141057573" x2="412.3318087401494" y1="250.50000000000003" y2="295.50000000000006"/>
-  <line opacity="1.0" stroke="#0000ff" x1="479.5369564140486" x2="412.33180874014937" y1="315.08234220233646" y2="295.50000000000006"/>
-  <line stroke="#000000" x1="494.22773326978614" x2="498.3550614105757" y1="264.6646844046729" y2="250.50000000000003"/>
-  <line stroke="#000000" x1="479.5369564140486" x2="494.22773326978614" y1="315.08234220233646" y2="264.6646844046729"/>
-  <line stroke="#000000" x1="464.84617955831106" x2="479.5369564140486" y1="365.50000000000006" y2="315.0823422023364"/>
-  <line opacity="1.0" stroke="#ff0000" x1="464.84617955831106" x2="412.3318087401494" y1="365.50000000000006" y2="295.50000000000006"/>
-  <line opacity="0.2332622916434259" stroke="#0000ff" x1="412.3318087401495" x2="412.33180874014937" y1="365.5000000000001" y2="295.5"/>
-  <line opacity="0.9666666666666667" stroke="#ff0000" x1="464.84617955831106" x2="412.3318087401495" y1="365.50000000000006" y2="365.5000000000001"/>
-  <line stroke="#000000" x1="256.3318087401494" x2="412.3318087401495" y1="365.5000000000002" y2="365.5000000000001"/>
-  <line opacity="0.5" stroke="#0000ff" x1="412.3318087401494" x2="256.33180874014937" y1="295.50000000000006" y2="295.50000000000017"/>
-  <line opacity="0.2332622916434259" stroke="#0000ff" x1="256.33180874014937" x2="256.3318087401494" y1="295.50000000000017" y2="365.5000000000002"/>
-  <line opacity="0.9666666666666667" stroke="#ff0000" x1="256.3318087401494" x2="203.8174379219878" y1="365.5000000000003" y2="365.5000000000003"/>
-  <line opacity="1.0" stroke="#ff0000" x1="256.33180874014937" x2="203.8174379219878" y1="295.5000000000002" y2="365.5000000000003"/>
-  <line stroke="#000000" x1="256.3318087401494" x2="256.3318087401494" y1="383.00479027272075" y2="365.5000000000003"/>
-  <line stroke="#000000" x1="203.8174379219878" x2="256.3318087401494" y1="383.00479027272087" y2="383.00479027272075"/>
-  <line stroke="#000000" x1="203.8174379219878" x2="203.8174379219878" y1="365.5000000000003" y2="383.00479027272087"/>
-  <line opacity="1.0" stroke="#0000ff" x1="256.33180874014937" x2="189.12666106625016" y1="295.50000000000017" y2="315.08234220233675"/>
-  <line stroke="#000000" x1="189.12666106625016" x2="203.8174379219878" y1="315.08234220233675" y2="365.5000000000003"/>
-  <line stroke="#000000" x1="174.4358842105125" x2="189.12666106625016" y1="264.6646844046731" y2="315.08234220233675"/>
-  <line stroke="#000000" x1="170.30855606972295" x2="174.4358842105125" y1="250.50000000000028" y2="264.6646844046731"/>
-  <line opacity="0.31677294251280175" stroke="#0000ff" x1="170.30855606972295" x2="256.33180874014937" y1="250.50000000000028" y2="295.50000000000017"/>
-  <line opacity="0.3025684567112535" stroke="#0000ff" x1="256.3318087401493" x2="256.33180874014937" y1="250.50000000000017" y2="295.50000000000017"/>
-  <line opacity="0.3025684567112535" stroke="#0000ff" x1="256.33180874014926" x2="256.3318087401493" y1="205.50000000000017" y2="250.5000000000002"/>
-  <line opacity="0.31677294251280175" stroke="#0000ff" x1="170.30855606972293" x2="256.33180874014926" y1="250.5000000000003" y2="205.50000000000014"/>
-  <line opacity="1.0" stroke="#0000ff" x1="189.12666106624997" x2="256.33180874014926" y1="185.91765779766385" y2="205.50000000000014"/>
-  <line stroke="#000000" x1="174.43588421051246" x2="170.30855606972293" y1="236.33531559532744" y2="250.5000000000003"/>
-  <line stroke="#000000" x1="189.12666106624997" x2="174.43588421051246" y1="185.91765779766385" y2="236.33531559532744"/>
-  <line stroke="#000000" x1="203.81743792198745" x2="189.12666106624997" y1="135.50000000000023" y2="185.91765779766385"/>
-  <line opacity="1.0" stroke="#ff0000" x1="203.81743792198745" x2="256.33180874014914" y1="135.50000000000023" y2="205.50000000000017"/>
-  <line opacity="0.2332622916434259" stroke="#0000ff" x1="256.33180874014903" x2="256.33180874014926" y1="135.5000000000001" y2="205.50000000000017"/>
-  <line opacity="0.9666666666666667" stroke="#ff0000" x1="203.81743792198748" x2="256.33180874014903" y1="135.50000000000023" y2="135.5000000000001"/>
-  <line stroke="#000000" x1="203.81743792198742" x2="203.81743792198748" y1="117.9952097272797" y2="135.50000000000023"/>
-  <line stroke="#000000" x1="256.33180874014903" x2="203.81743792198742" y1="117.9952097272796" y2="117.9952097272797"/>
-  <line stroke="#000000" x1="256.33180874014903" x2="256.33180874014903" y1="135.5000000000001" y2="117.9952097272796"/>
-  <line stroke="#000000" x1="464.8461795583111" x2="464.84617955831106" y1="383.0047902727206" y2="365.50000000000006"/>
-  <line stroke="#000000" x1="412.3318087401495" x2="464.8461795583111" y1="383.00479027272064" y2="383.0047902727206"/>
-  <line stroke="#000000" x1="412.3318087401495" x2="412.3318087401495" y1="365.5000000000001" y2="383.00479027272064"/>
-  <line stroke="#888888" x1="278.76362692196756" x2="267.17271783105843" y1="143.25" y2="143.25"/>
-  <line stroke="#888888" x1="267.17271783105843" x2="267.17271783105843" y1="143.25" y2="142.75000000000003"/>
-  <line stroke="#888888" x1="267.17271783105843" x2="278.76362692196756" y1="142.75000000000003" y2="142.75000000000003"/>
-  <line stroke="#888888" x1="278.76362692196756" x2="278.76362692196756" y1="142.75000000000003" y2="143.25"/>
-  <line stroke="#888888" x1="306.4908996492403" x2="294.8999905583312" y1="143.25" y2="143.25"/>
-  <line stroke="#888888" x1="294.8999905583312" x2="294.8999905583312" y1="143.25" y2="142.75000000000003"/>
-  <line stroke="#888888" x1="294.8999905583312" x2="306.4908996492403" y1="142.75000000000003" y2="142.75000000000003"/>
-  <line stroke="#888888" x1="306.4908996492403" x2="306.4908996492403" y1="142.75000000000003" y2="143.25"/>
-  <line stroke="#888888" x1="333.5818087401493" x2="333.5818087401493" y1="124.41666666666669" y2="112.58333333333334"/>
-  <line stroke="#888888" x1="333.5818087401493" x2="334.0818087401493" y1="112.58333333333334" y2="112.58333333333334"/>
-  <line stroke="#888888" x1="334.0818087401493" x2="334.0818087401493" y1="112.58333333333334" y2="124.41666666666669"/>
-  <line stroke="#888888" x1="334.0818087401493" x2="333.5818087401493" y1="124.41666666666669" y2="124.41666666666669"/>
-  <line stroke="#888888" x1="333.33180874014937" x2="335.83180874014937" y1="16.750000000000004" y2="16.750000000000004"/>
-  <line stroke="#888888" x1="335.83180874014937" x2="333.33180874014937" y1="16.750000000000004" y2="19.250000000000004"/>
-  <line stroke="#888888" x1="333.33180874014937" x2="325.3318087401493" y1="19.250000000000004" y2="19.250000000000004"/>
-  <line stroke="#888888" x1="325.3318087401493" x2="322.83180874014937" y1="19.250000000000004" y2="16.750000000000004"/>
-  <line stroke="#888888" x1="322.83180874014937" x2="325.3318087401493" y1="16.750000000000004" y2="16.750000000000004"/>
-  <line stroke="#888888" x1="298.3318087401493" x2="302.3318087401493" y1="112.50000000000001" y2="112.50000000000001"/>
-  <line stroke="#888888" x1="302.3318087401493" x2="302.3318087401493" y1="112.50000000000001" y2="124.50000000000001"/>
-  <line stroke="#888888" x1="302.3318087401493" x2="298.3318087401493" y1="124.50000000000001" y2="124.50000000000001"/>
-  <line stroke="#888888" x1="298.3318087401493" x2="298.3318087401493" y1="124.50000000000001" y2="112.50000000000001"/>
-  <line stroke="#888888" x1="310.33180874014937" x2="314.33180874014937" y1="114.00000000000001" y2="114.00000000000001"/>
-  <line stroke="#888888" x1="314.33180874014937" x2="314.33180874014937" y1="114.00000000000001" y2="123.00000000000001"/>
-  <line stroke="#888888" x1="314.33180874014937" x2="310.33180874014937" y1="123.00000000000001" y2="123.00000000000001"/>
-  <line stroke="#888888" x1="310.33180874014937" x2="310.33180874014937" y1="123.00000000000001" y2="114.00000000000001"/>
-  <line stroke="#888888" x1="273.83180874014937" x2="296.83180874014937" y1="112.50000000000001" y2="112.50000000000001"/>
-  <line stroke="#888888" x1="296.83180874014937" x2="296.83180874014937" y1="112.50000000000001" y2="124.50000000000001"/>
-  <line stroke="#888888" x1="296.83180874014937" x2="273.83180874014937" y1="124.50000000000001" y2="124.50000000000001"/>
-  <line stroke="#888888" x1="273.83180874014937" x2="273.83180874014937" y1="124.50000000000001" y2="112.50000000000001"/>
-  <line stroke="#888888" x1="268.33180874014937" x2="272.33180874014937" y1="112.50000000000001" y2="112.50000000000001"/>
-  <line stroke="#888888" x1="272.33180874014937" x2="272.33180874014937" y1="112.50000000000001" y2="124.50000000000001"/>
-  <line stroke="#888888" x1="272.33180874014937" x2="268.33180874014937" y1="124.50000000000001" y2="124.50000000000001"/>
-  <line stroke="#888888" x1="268.33180874014937" x2="268.33180874014937" y1="124.50000000000001" y2="112.50000000000001"/>
-  <line stroke="#888888" x1="245.83180874014934" x2="250.83180874014934" y1="112.83333333333336" y2="112.83333333333336"/>
-  <line stroke="#888888" x1="250.83180874014934" x2="250.83180874014934" y1="112.83333333333336" y2="124.16666666666669"/>
-  <line stroke="#888888" x1="250.83180874014934" x2="245.83180874014934" y1="124.16666666666669" y2="124.16666666666669"/>
-  <line stroke="#888888" x1="369.33180874014937" x2="380.33180874014937" y1="80.86137800081471" y2="80.86137800081471"/>
-  <line stroke="#888888" x1="380.33180874014937" x2="380.33180874014937" y1="80.86137800081471" y2="93.86137800081471"/>
-  <line stroke="#888888" x1="380.33180874014937" x2="369.33180874014937" y1="93.86137800081471" y2="93.86137800081471"/>
-  <line stroke="#888888" x1="369.33180874014937" x2="369.33180874014937" y1="93.86137800081471" y2="80.86137800081471"/>
-  <line stroke="#888888" x1="400.83180874014937" x2="406.8318087401493" y1="82.36137800081471" y2="82.36137800081471"/>
-  <line stroke="#888888" x1="406.8318087401493" x2="406.8318087401493" y1="82.36137800081471" y2="92.36137800081471"/>
-  <line stroke="#888888" x1="406.8318087401493" x2="400.83180874014937" y1="92.36137800081471" y2="92.36137800081471"/>
-  <line stroke="#888888" x1="400.83180874014937" x2="400.83180874014937" y1="92.36137800081471" y2="82.36137800081471"/>
-  <line stroke="#888888" x1="401.24089964924025" x2="401.24089964924025" y1="31.722756001629396" y2="36.7227560016294"/>
-  <line stroke="#888888" x1="401.24089964924025" x2="390.1499905583312" y1="36.7227560016294" y2="36.7227560016294"/>
-  <line stroke="#888888" x1="390.1499905583312" x2="390.1499905583312" y1="36.7227560016294" y2="31.722756001629396"/>
-  <line stroke="#888888" x1="373.51362692196756" x2="373.51362692196756" y1="31.722756001629396" y2="36.7227560016294"/>
-  <line stroke="#888888" x1="373.51362692196756" x2="362.4227178310585" y1="36.7227560016294" y2="36.7227560016294"/>
-  <line stroke="#888888" x1="362.4227178310585" x2="362.4227178310585" y1="36.7227560016294" y2="31.722756001629396"/>
-  <line stroke="#888888" x1="419.83180874014937" x2="414.83180874014937" y1="91.36137800081471" y2="91.36137800081471"/>
-  <line stroke="#888888" x1="414.83180874014937" x2="414.83180874014937" y1="91.36137800081471" y2="83.36137800081471"/>
-  <line stroke="#888888" x1="414.83180874014937" x2="419.83180874014937" y1="83.36137800081471" y2="83.36137800081471"/>
-  <line stroke="#888888" x1="343.8318087401493" x2="348.83180874014937" y1="83.36137800081471" y2="83.36137800081471"/>
-  <line stroke="#888888" x1="348.83180874014937" x2="348.83180874014937" y1="83.36137800081471" y2="91.36137800081471"/>
-  <line stroke="#888888" x1="348.83180874014937" x2="343.8318087401493" y1="91.36137800081471" y2="91.36137800081471"/>
-  <line stroke="#888888" x1="447.3413892855904" x2="447.3413892855904" y1="122.37140729545962" y2="131.12380243181985"/>
-  <line stroke="#888888" x1="447.3413892855904" x2="429.83659901286984" y1="131.12380243181985" y2="131.12380243181988"/>
-  <line stroke="#888888" x1="429.83659901286984" x2="429.83659901286984" y1="131.12380243181988" y2="122.37140729545962"/>
-  <line stroke="#888888" x1="476.5563117536783" x2="471.5195122622253" y1="223.5120791976936" y2="206.22615649603978"/>
-  <line stroke="#888888" x1="471.5195122622253" x2="471.99954903132453" y1="206.22615649603978" y2="206.08628262316594"/>
-  <line stroke="#888888" x1="471.99954903132453" x2="477.0363485227776" y1="206.08628262316594" y2="223.37220532481973"/>
-  <line stroke="#888888" x1="477.0363485227776" x2="476.5563117536783" y1="223.37220532481973" y2="223.5120791976936"/>
-  <line stroke="#888888" x1="471.5195122622253" x2="476.55631175367836" y1="294.77384350396034" y2="277.4879208023065"/>
-  <line stroke="#888888" x1="476.55631175367836" x2="477.0363485227776" y1="277.4879208023065" y2="277.6277946751803"/>
-  <line stroke="#888888" x1="477.0363485227776" x2="471.9995490313246" y1="277.6277946751803" y2="294.91371737683414"/>
-  <line stroke="#888888" x1="471.9995490313246" x2="471.5195122622253" y1="294.91371737683414" y2="294.77384350396034"/>
-  <line stroke="#888888" x1="221.32222819470834" x2="221.32222819470834" y1="378.6285927045407" y2="369.87619756818043"/>
-  <line stroke="#888888" x1="221.32222819470834" x2="238.82701846742887" y1="369.87619756818043" y2="369.87619756818043"/>
-  <line stroke="#888888" x1="238.82701846742887" x2="238.82701846742887" y1="369.87619756818043" y2="378.6285927045407"/>
-  <line stroke="#888888" x1="192.10730572662035" x2="197.1441052180734" y1="277.4879208023067" y2="294.7738435039605"/>
-  <line stroke="#888888" x1="197.1441052180734" x2="196.66406844897412" y1="294.7738435039605" y2="294.9137173768343"/>
-  <line stroke="#888888" x1="196.66406844897412" x2="191.62726895752107" y1="294.9137173768343" y2="277.62779467518055"/>
-  <line stroke="#888888" x1="191.62726895752107" x2="192.10730572662035" y1="277.62779467518055" y2="277.4879208023067"/>
-  <line stroke="#888888" x1="197.14410521807324" x2="192.10730572662027" y1="206.22615649604003" y2="223.51207919769385"/>
-  <line stroke="#888888" x1="192.10730572662027" x2="191.62726895752098" y1="223.51207919769385" y2="223.37220532482002"/>
-  <line stroke="#888888" x1="191.62726895752098" x2="196.66406844897398" y1="223.37220532482002" y2="206.08628262316617"/>
-  <line stroke="#888888" x1="196.66406844897398" x2="197.14410521807324" y1="206.08628262316617" y2="206.22615649604003"/>
-  <line stroke="#888888" x1="238.8270184674285" x2="238.82701846742853" y1="122.37140729545976" y2="131.12380243182005"/>
-  <line stroke="#888888" x1="238.82701846742853" x2="221.32222819470798" y1="131.12380243182005" y2="131.12380243182008"/>
-  <line stroke="#888888" x1="221.32222819470798" x2="221.32222819470798" y1="131.12380243182008" y2="122.3714072954598"/>
-  <line stroke="#888888" x1="429.83659901286995" x2="429.83659901286995" y1="378.6285927045405" y2="369.87619756818015"/>
-  <line stroke="#888888" x1="429.83659901286995" x2="447.34138928559054" y1="369.87619756818015" y2="369.87619756818015"/>
-  <line stroke="#888888" x1="447.34138928559054" x2="447.34138928559054" y1="369.87619756818015" y2="378.6285927045405"/>
-  <line stroke="#000000" x1="578.3550614105758" x2="542.3550614105758" y1="123.50000000000001" y2="123.50000000000001"/>
-  <line opacity="0.5" stroke="#ff0000" x1="578.3550614105758" x2="578.3550614105758" y1="123.50000000000001" y2="147.5"/>
-  <line stroke="#000000" x1="542.3550614105758" x2="578.3550614105758" y1="147.5" y2="147.5"/>
-  <line stroke="#000000" x1="578.3550614105758" x2="623.3550614105758" y1="147.5" y2="147.5"/>
-  <line stroke="#000000" x1="623.3550614105758" x2="578.3550614105758" y1="123.50000000000001" y2="123.50000000000001"/>
-  <line stroke="#000000" x1="623.3550614105758" x2="623.3550614105758" y1="147.5" y2="123.50000000000001"/>
-  <line stroke="#000000" x1="542.3550614105758" x2="508.35506141057573" y1="123.50000000000001" y2="123.50000000000001"/>
-  <line opacity="0.5" stroke="#0000ff" x1="508.35506141057573" x2="542.3550614105758" y1="147.5" y2="147.5"/>
-  <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="113.50000000000001" y2="52.50000000000001"/>
-  <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="123.50000000000001" y2="113.50000000000001"/>
-  <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="221.50000000000003" y2="147.5"/>
-  <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="221.50000000000003" y2="221.50000000000003"/>
-  <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="147.5" y2="221.50000000000003"/>
-  <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="123.50000000000001" y2="147.5"/>
-  <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="113.50000000000001" y2="123.50000000000001"/>
-  <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="52.50000000000001" y2="113.50000000000001"/>
-  <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="52.50000000000001" y2="52.50000000000001"/>
-  <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="147.5" y2="167.50000000000003"/>
-  <line stroke="#000000" x1="542.3550614105758" x2="542.3550614105758" y1="167.50000000000003" y2="147.5"/>
-  <line opacity="0.5" stroke="#0000ff" x1="508.35506141057573" x2="542.3550614105758" y1="167.50000000000003" y2="167.50000000000003"/>
-  <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="167.50000000000003" y2="191.50000000000003"/>
-  <line stroke="#000000" x1="542.3550614105758" x2="542.3550614105758" y1="191.50000000000003" y2="167.50000000000003"/>
-  <line opacity="0.5" stroke="#0000ff" x1="508.35506141057573" x2="542.3550614105758" y1="191.50000000000003" y2="191.50000000000003"/>
-  <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="191.50000000000003" y2="211.5"/>
-  <line stroke="#000000" x1="542.3550614105758" x2="542.3550614105758" y1="211.5" y2="191.50000000000003"/>
-  <line opacity="0.5" stroke="#0000ff" x1="542.3550614105758" x2="508.35506141057573" y1="211.5" y2="211.5"/>
-  <line stroke="#000000" x1="542.3550614105758" x2="542.3550614105758" y1="221.50000000000003" y2="211.5"/>
-  <line stroke="#000000" x1="508.35506141057573" x2="542.3550614105758" y1="221.50000000000003" y2="221.50000000000003"/>
-  <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="211.5" y2="221.50000000000003"/>
-  <line stroke="#888888" x1="619.3550614105757" x2="619.3550614105757" y1="139.75000000000003" y2="131.25"/>
-  <line stroke="#888888" x1="619.3550614105757" x2="619.8550614105757" y1="131.25" y2="131.25"/>
-  <line stroke="#888888" x1="619.8550614105757" x2="619.8550614105757" y1="131.25" y2="139.75000000000003"/>
-  <line stroke="#888888" x1="619.8550614105757" x2="619.3550614105757" y1="139.75000000000003" y2="139.75000000000003"/>
-  <line stroke="#888888" x1="531.2717280772423" x2="519.4383947439092" y1="131.25" y2="131.25"/>
-  <line stroke="#888888" x1="519.4383947439092" x2="519.4383947439092" y1="131.25" y2="130.75000000000003"/>
-  <line stroke="#888888" x1="519.4383947439092" x2="531.2717280772423" y1="130.75000000000003" y2="130.75000000000003"/>
-  <line stroke="#888888" x1="531.2717280772423" x2="531.2717280772423" y1="130.75000000000003" y2="131.25"/>
-  <line stroke="#888888" x1="500.60506141057573" x2="500.60506141057573" y1="74.93181818181819" y2="63.3409090909091"/>
-  <line stroke="#888888" x1="500.60506141057573" x2="501.10506141057573" y1="63.3409090909091" y2="63.3409090909091"/>
-  <line stroke="#888888" x1="501.10506141057573" x2="501.10506141057573" y1="63.3409090909091" y2="74.93181818181819"/>
-  <line stroke="#888888" x1="501.10506141057573" x2="500.60506141057573" y1="74.93181818181819" y2="74.93181818181819"/>
-  <line stroke="#888888" x1="500.60506141057573" x2="500.60506141057573" y1="102.65909090909092" y2="91.06818181818183"/>
-  <line stroke="#888888" x1="500.60506141057573" x2="501.10506141057573" y1="91.06818181818183" y2="91.06818181818183"/>
-  <line stroke="#888888" x1="501.10506141057573" x2="501.10506141057573" y1="91.06818181818183" y2="102.65909090909092"/>
-  <line stroke="#888888" x1="501.10506141057573" x2="500.60506141057573" y1="102.65909090909092" y2="102.65909090909092"/>
-  <line stroke="#888888" x1="519.3550614105758" x2="519.3550614105758" y1="166.50000000000003" y2="162.50000000000003"/>
-  <line stroke="#888888" x1="519.3550614105758" x2="531.3550614105757" y1="162.50000000000003" y2="162.50000000000003"/>
-  <line stroke="#888888" x1="531.3550614105757" x2="531.3550614105757" y1="162.50000000000003" y2="166.50000000000003"/>
-  <line stroke="#888888" x1="531.3550614105757" x2="519.3550614105758" y1="166.50000000000003" y2="166.50000000000003"/>
-  <line stroke="#888888" x1="520.8550614105757" x2="520.8550614105757" y1="154.5" y2="150.5"/>
-  <line stroke="#888888" x1="520.8550614105757" x2="529.8550614105758" y1="150.5" y2="150.5"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="150.5" y2="154.5"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="520.8550614105757" y1="154.5" y2="154.5"/>
-  <line stroke="#888888" x1="519.3550614105758" x2="519.3550614105758" y1="191.0" y2="168.0"/>
-  <line stroke="#888888" x1="519.3550614105758" x2="531.3550614105757" y1="168.0" y2="168.0"/>
-  <line stroke="#888888" x1="531.3550614105757" x2="531.3550614105757" y1="168.0" y2="191.0"/>
-  <line stroke="#888888" x1="531.3550614105757" x2="519.3550614105758" y1="191.0" y2="191.0"/>
-  <line stroke="#888888" x1="519.3550614105758" x2="519.3550614105758" y1="196.50000000000003" y2="192.50000000000003"/>
-  <line stroke="#888888" x1="519.3550614105758" x2="531.3550614105757" y1="192.50000000000003" y2="192.50000000000003"/>
-  <line stroke="#888888" x1="531.3550614105757" x2="531.3550614105757" y1="192.50000000000003" y2="196.50000000000003"/>
-  <line stroke="#888888" x1="531.3550614105757" x2="519.3550614105758" y1="196.50000000000003" y2="196.50000000000003"/>
-  <line stroke="#888888" x1="519.6883947439092" x2="519.6883947439092" y1="219.00000000000003" y2="214.0"/>
-  <line stroke="#888888" x1="519.6883947439092" x2="531.0217280772423" y1="214.0" y2="214.0"/>
-  <line stroke="#888888" x1="531.0217280772423" x2="531.0217280772423" y1="214.0" y2="219.00000000000003"/>
-  <line opacity="0.5" stroke="#0000ff" x1="666.3550614105757" x2="727.3550614105758" y1="123.50000000000001" y2="123.50000000000001"/>
-  <line opacity="0.5" stroke="#0000ff" x1="727.3550614105758" x2="727.3550614105758" y1="123.50000000000001" y2="147.5"/>
-  <line opacity="0.5" stroke="#0000ff" x1="727.3550614105758" x2="666.3550614105757" y1="147.5" y2="147.5"/>
-  <line opacity="0.5" stroke="#0000ff" x1="666.3550614105757" x2="666.3550614105757" y1="147.5" y2="123.50000000000001"/>
-  <line stroke="#000000" x1="666.3550614105757" x2="666.3550614105757" y1="116.50000000000001" y2="123.50000000000001"/>
-  <line stroke="#000000" x1="726.3550614105758" x2="666.3550614105757" y1="116.50000000000001" y2="116.50000000000001"/>
-  <line stroke="#000000" x1="726.3550614105758" x2="726.3550614105758" y1="123.50000000000001" y2="116.50000000000001"/>
-  <line stroke="#000000" x1="734.3550614105758" x2="727.3550614105758" y1="123.50000000000001" y2="123.50000000000001"/>
-  <line stroke="#000000" x1="734.3550614105758" x2="734.3550614105758" y1="147.5" y2="123.50000000000001"/>
-  <line stroke="#000000" x1="727.3550614105758" x2="734.3550614105758" y1="147.5" y2="147.5"/>
-  <line opacity="0.5" stroke="#0000ff" x1="727.3550614105758" x2="727.3550614105758" y1="147.5" y2="208.50000000000003"/>
-  <line stroke="#000000" x1="667.3550614105757" x2="727.3550614105758" y1="208.50000000000003" y2="208.50000000000003"/>
-  <line opacity="0.5" stroke="#0000ff" x1="667.3550614105757" x2="667.3550614105757" y1="147.5" y2="208.50000000000003"/>
-  <line stroke="#000000" x1="751.3550614105758" x2="727.3550614105758" y1="147.5" y2="147.5"/>
-  <line opacity="0.5" stroke="#0000ff" x1="751.3550614105758" x2="751.3550614105758" y1="147.5" y2="208.50000000000003"/>
-  <line stroke="#000000" x1="727.3550614105758" x2="751.3550614105758" y1="208.50000000000003" y2="208.50000000000003"/>
-  <line stroke="#000000" x1="811.3550614105757" x2="751.3550614105758" y1="147.5" y2="147.5"/>
-  <line stroke="#000000" x1="811.3550614105757" x2="811.3550614105757" y1="208.50000000000003" y2="147.5"/>
-  <line stroke="#000000" x1="751.3550614105758" x2="811.3550614105757" y1="208.50000000000003" y2="208.50000000000003"/>
-  <line stroke="#000000" x1="667.3550614105757" x2="643.3550614105758" y1="147.5" y2="147.5"/>
-  <line stroke="#000000" x1="643.3550614105758" x2="667.3550614105757" y1="208.50000000000003" y2="208.50000000000003"/>
-  <line opacity="0.5" stroke="#0000ff" x1="643.3550614105758" x2="643.3550614105758" y1="208.50000000000003" y2="147.5"/>
-  <line stroke="#000000" x1="633.3550614105758" x2="643.3550614105758" y1="208.50000000000003" y2="208.50000000000003"/>
-  <line stroke="#000000" x1="633.3550614105758" x2="633.3550614105758" y1="147.5" y2="208.50000000000003"/>
-  <line stroke="#000000" x1="643.3550614105758" x2="633.3550614105758" y1="147.5" y2="147.5"/>
-  <line stroke="#000000" x1="659.3550614105758" x2="666.3550614105757" y1="147.5" y2="147.5"/>
-  <line stroke="#000000" x1="659.3550614105758" x2="659.3550614105758" y1="123.50000000000001" y2="147.5"/>
-  <line stroke="#000000" x1="666.3550614105757" x2="659.3550614105758" y1="123.50000000000001" y2="123.50000000000001"/>
-  <line stroke="#888888" x1="715.4459705014848" x2="718.9459705014849" y1="118.25000000000001" y2="118.25000000000001"/>
-  <line stroke="#888888" x1="718.9459705014849" x2="715.4459705014848" y1="118.25000000000001" y2="121.75000000000001"/>
-  <line stroke="#888888" x1="715.4459705014848" x2="704.5368795923939" y1="121.75000000000001" y2="121.75000000000001"/>
-  <line stroke="#888888" x1="704.5368795923939" x2="701.0368795923939" y1="121.75000000000001" y2="118.25000000000001"/>
-  <line stroke="#888888" x1="701.0368795923939" x2="704.5368795923939" y1="118.25000000000001" y2="118.25000000000001"/>
-  <line stroke="#888888" x1="688.1732432287577" x2="691.6732432287577" y1="118.25000000000001" y2="118.25000000000001"/>
-  <line stroke="#888888" x1="691.6732432287577" x2="688.1732432287577" y1="118.25000000000001" y2="121.75000000000001"/>
-  <line stroke="#888888" x1="688.1732432287577" x2="677.2641523196667" y1="121.75000000000001" y2="121.75000000000001"/>
-  <line stroke="#888888" x1="677.2641523196667" x2="673.7641523196667" y1="121.75000000000001" y2="118.25000000000001"/>
-  <line stroke="#888888" x1="673.7641523196667" x2="677.2641523196667" y1="118.25000000000001" y2="118.25000000000001"/>
-  <line stroke="#888888" x1="732.6050614105758" x2="729.1050614105758" y1="139.50000000000003" y2="139.50000000000003"/>
-  <line stroke="#888888" x1="729.1050614105758" x2="729.1050614105758" y1="139.50000000000003" y2="131.50000000000003"/>
-  <line stroke="#888888" x1="729.1050614105758" x2="732.6050614105758" y1="131.50000000000003" y2="131.50000000000003"/>
-  <line stroke="#888888" x1="674.8550614105757" x2="674.8550614105757" y1="199.00000000000003" y2="181.00000000000003"/>
-  <line stroke="#888888" x1="674.8550614105757" x2="709.8550614105758" y1="181.00000000000003" y2="181.00000000000003"/>
-  <line stroke="#888888" x1="709.8550614105758" x2="709.8550614105758" y1="181.00000000000003" y2="199.00000000000003"/>
-  <line stroke="#888888" x1="709.8550614105758" x2="674.8550614105757" y1="199.00000000000003" y2="199.00000000000003"/>
-  <line stroke="#888888" x1="727.8550614105758" x2="727.8550614105758" y1="160.75000000000003" y2="157.75000000000003"/>
-  <line stroke="#888888" x1="727.8550614105758" x2="730.8550614105757" y1="157.75000000000003" y2="157.75000000000003"/>
-  <line stroke="#888888" x1="730.8550614105757" x2="730.8550614105757" y1="157.75000000000003" y2="160.75000000000003"/>
-  <line stroke="#888888" x1="730.8550614105757" x2="727.8550614105758" y1="160.75000000000003" y2="160.75000000000003"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="159.75000000000003" y2="158.75000000000003"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="158.75000000000003" y2="158.75000000000003"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="158.75000000000003" y2="159.75000000000003"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="159.75000000000003" y2="159.75000000000003"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="162.25000000000003" y2="161.25"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="161.25" y2="161.25"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="161.25" y2="162.25000000000003"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="162.25000000000003" y2="162.25000000000003"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="162.25000000000003" y2="161.25"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="161.25" y2="161.25"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="161.25" y2="162.25000000000003"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="162.25000000000003" y2="162.25000000000003"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="164.75000000000003" y2="163.75"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="163.75" y2="163.75"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="163.75" y2="164.75000000000003"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="164.75000000000003" y2="164.75000000000003"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="164.75000000000003" y2="163.75"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="163.75" y2="163.75"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="163.75" y2="164.75000000000003"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="164.75000000000003" y2="164.75000000000003"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="167.25000000000003" y2="166.25"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="166.25" y2="166.25"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="166.25" y2="167.25000000000003"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="167.25000000000003" y2="167.25000000000003"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="167.25000000000003" y2="166.25"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="166.25" y2="166.25"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="166.25" y2="167.25000000000003"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="167.25000000000003" y2="167.25000000000003"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="169.75000000000003" y2="168.75000000000003"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="168.75000000000003" y2="168.75000000000003"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="168.75000000000003" y2="169.75000000000003"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="169.75000000000003" y2="169.75000000000003"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="169.75000000000003" y2="168.75000000000003"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="168.75000000000003" y2="168.75000000000003"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="168.75000000000003" y2="169.75000000000003"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="169.75000000000003" y2="169.75000000000003"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="172.25000000000003" y2="171.25000000000003"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="171.25000000000003" y2="171.25000000000003"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="171.25000000000003" y2="172.25000000000003"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="172.25000000000003" y2="172.25000000000003"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="172.25000000000003" y2="171.25000000000003"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="171.25000000000003" y2="171.25000000000003"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="171.25000000000003" y2="172.25000000000003"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="172.25000000000003" y2="172.25000000000003"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="174.75000000000003" y2="173.75000000000003"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="173.75000000000003" y2="173.75000000000003"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="173.75000000000003" y2="174.75000000000003"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="174.75000000000003" y2="174.75000000000003"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="174.75000000000003" y2="173.75000000000003"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="173.75000000000003" y2="173.75000000000003"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="173.75000000000003" y2="174.75000000000003"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="174.75000000000003" y2="174.75000000000003"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="177.25" y2="176.25000000000003"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="176.25000000000003" y2="176.25000000000003"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="176.25000000000003" y2="177.25"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="177.25" y2="177.25"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="177.25" y2="176.25000000000003"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="176.25000000000003" y2="176.25000000000003"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="176.25000000000003" y2="177.25"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="177.25" y2="177.25"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="179.75" y2="178.75000000000003"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="178.75000000000003" y2="178.75000000000003"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="178.75000000000003" y2="179.75"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="179.75" y2="179.75"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="179.75" y2="178.75000000000003"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="178.75000000000003" y2="178.75000000000003"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="178.75000000000003" y2="179.75"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="179.75" y2="179.75"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="182.25" y2="181.25000000000003"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="181.25000000000003" y2="181.25000000000003"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="181.25000000000003" y2="182.25"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="182.25" y2="182.25"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="182.25" y2="181.25000000000003"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="181.25000000000003" y2="181.25000000000003"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="181.25000000000003" y2="182.25"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="182.25" y2="182.25"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="184.75000000000003" y2="183.75000000000003"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="183.75000000000003" y2="183.75000000000003"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="183.75000000000003" y2="184.75000000000003"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="184.75000000000003" y2="184.75000000000003"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="184.75000000000003" y2="183.75000000000003"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="183.75000000000003" y2="183.75000000000003"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="183.75000000000003" y2="184.75000000000003"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="184.75000000000003" y2="184.75000000000003"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="187.25000000000003" y2="186.25000000000003"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="186.25000000000003" y2="186.25000000000003"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="186.25000000000003" y2="187.25000000000003"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="187.25000000000003" y2="187.25000000000003"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="187.25000000000003" y2="186.25000000000003"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="186.25000000000003" y2="186.25000000000003"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="186.25000000000003" y2="187.25000000000003"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="187.25000000000003" y2="187.25000000000003"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="189.75000000000003" y2="188.75"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="188.75" y2="188.75"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="188.75" y2="189.75000000000003"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="189.75000000000003" y2="189.75000000000003"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="189.75000000000003" y2="188.75"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="188.75" y2="188.75"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="188.75" y2="189.75000000000003"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="189.75000000000003" y2="189.75000000000003"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="192.25000000000003" y2="191.25"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="191.25" y2="191.25"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="191.25" y2="192.25000000000003"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="192.25000000000003" y2="192.25000000000003"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="192.25000000000003" y2="191.25"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="191.25" y2="191.25"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="191.25" y2="192.25000000000003"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="192.25000000000003" y2="192.25000000000003"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="194.75000000000003" y2="193.75000000000003"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="193.75000000000003" y2="193.75000000000003"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="193.75000000000003" y2="194.75000000000003"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="194.75000000000003" y2="194.75000000000003"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="194.75000000000003" y2="193.75000000000003"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="193.75000000000003" y2="193.75000000000003"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="193.75000000000003" y2="194.75000000000003"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="194.75000000000003" y2="194.75000000000003"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="197.25000000000003" y2="196.25000000000003"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="196.25000000000003" y2="196.25000000000003"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="196.25000000000003" y2="197.25000000000003"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="197.25000000000003" y2="197.25000000000003"/>
-  <line stroke="#888888" x1="747.8550614105757" x2="747.8550614105757" y1="198.25000000000003" y2="195.25000000000003"/>
-  <line stroke="#888888" x1="747.8550614105757" x2="750.8550614105758" y1="195.25000000000003" y2="195.25000000000003"/>
-  <line stroke="#888888" x1="750.8550614105758" x2="750.8550614105758" y1="195.25000000000003" y2="198.25000000000003"/>
-  <line stroke="#888888" x1="750.8550614105758" x2="747.8550614105757" y1="198.25000000000003" y2="198.25000000000003"/>
-  <line stroke="#888888" x1="743.6050614105757" x2="735.1050614105757" y1="155.25000000000003" y2="155.25000000000003"/>
-  <line stroke="#888888" x1="735.1050614105757" x2="735.1050614105757" y1="155.25000000000003" y2="154.75"/>
-  <line stroke="#888888" x1="735.1050614105757" x2="743.6050614105757" y1="154.75" y2="154.75"/>
-  <line stroke="#888888" x1="743.6050614105757" x2="743.6050614105757" y1="154.75" y2="155.25000000000003"/>
-  <line stroke="#888888" x1="735.1050614105757" x2="743.6050614105757" y1="203.00000000000003" y2="203.00000000000003"/>
-  <line stroke="#888888" x1="743.6050614105757" x2="743.6050614105757" y1="203.00000000000003" y2="203.50000000000003"/>
-  <line stroke="#888888" x1="743.6050614105757" x2="735.1050614105757" y1="203.50000000000003" y2="203.50000000000003"/>
-  <line stroke="#888888" x1="735.1050614105757" x2="735.1050614105757" y1="203.50000000000003" y2="203.00000000000003"/>
-  <line stroke="#888888" x1="766.3550614105757" x2="766.3550614105757" y1="198.50000000000003" y2="185.50000000000003"/>
-  <line stroke="#888888" x1="766.3550614105757" x2="796.3550614105758" y1="185.50000000000003" y2="185.50000000000003"/>
-  <line stroke="#888888" x1="796.3550614105758" x2="796.3550614105758" y1="185.50000000000003" y2="198.50000000000003"/>
-  <line stroke="#888888" x1="796.3550614105758" x2="766.3550614105757" y1="198.50000000000003" y2="198.50000000000003"/>
-  <line stroke="#888888" x1="773.4232432287574" x2="762.0141523196667" y1="153.00000000000003" y2="153.00000000000003"/>
-  <line stroke="#888888" x1="762.0141523196667" x2="762.0141523196667" y1="153.00000000000003" y2="152.5"/>
-  <line stroke="#888888" x1="762.0141523196667" x2="773.4232432287574" y1="152.5" y2="152.5"/>
-  <line stroke="#888888" x1="773.4232432287574" x2="773.4232432287574" y1="152.5" y2="153.00000000000003"/>
-  <line stroke="#888888" x1="800.6959705014848" x2="789.2868795923939" y1="153.00000000000003" y2="153.00000000000003"/>
-  <line stroke="#888888" x1="789.2868795923939" x2="789.2868795923939" y1="153.00000000000003" y2="152.5"/>
-  <line stroke="#888888" x1="789.2868795923939" x2="800.6959705014848" y1="152.5" y2="152.5"/>
-  <line stroke="#888888" x1="800.6959705014848" x2="800.6959705014848" y1="152.5" y2="153.00000000000003"/>
-  <line stroke="#888888" x1="803.6050614105758" x2="803.6050614105758" y1="169.93181818181822" y2="158.3409090909091"/>
-  <line stroke="#888888" x1="803.6050614105758" x2="804.1050614105758" y1="158.3409090909091" y2="158.3409090909091"/>
-  <line stroke="#888888" x1="804.1050614105758" x2="804.1050614105758" y1="158.3409090909091" y2="169.93181818181822"/>
-  <line stroke="#888888" x1="804.1050614105758" x2="803.6050614105758" y1="169.93181818181822" y2="169.93181818181822"/>
-  <line stroke="#888888" x1="803.6050614105758" x2="803.6050614105758" y1="197.65909090909093" y2="186.06818181818184"/>
-  <line stroke="#888888" x1="803.6050614105758" x2="804.1050614105758" y1="186.06818181818184" y2="186.06818181818184"/>
-  <line stroke="#888888" x1="804.1050614105758" x2="804.1050614105758" y1="186.06818181818184" y2="197.65909090909093"/>
-  <line stroke="#888888" x1="804.1050614105758" x2="803.6050614105758" y1="197.65909090909093" y2="197.65909090909093"/>
-  <line stroke="#888888" x1="643.8550614105758" x2="643.8550614105758" y1="160.75000000000003" y2="157.75000000000003"/>
-  <line stroke="#888888" x1="643.8550614105758" x2="646.8550614105757" y1="157.75000000000003" y2="157.75000000000003"/>
-  <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="157.75000000000003" y2="160.75000000000003"/>
-  <line stroke="#888888" x1="646.8550614105757" x2="643.8550614105758" y1="160.75000000000003" y2="160.75000000000003"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="159.75000000000003" y2="158.75000000000003"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="158.75000000000003" y2="158.75000000000003"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="158.75000000000003" y2="159.75000000000003"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="159.75000000000003" y2="159.75000000000003"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="162.25000000000003" y2="161.25"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="161.25" y2="161.25"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="161.25" y2="162.25000000000003"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="162.25000000000003" y2="162.25000000000003"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="162.25000000000003" y2="161.25"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="161.25" y2="161.25"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="161.25" y2="162.25000000000003"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="162.25000000000003" y2="162.25000000000003"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="164.75000000000003" y2="163.75"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="163.75" y2="163.75"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="163.75" y2="164.75000000000003"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="164.75000000000003" y2="164.75000000000003"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="164.75000000000003" y2="163.75"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="163.75" y2="163.75"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="163.75" y2="164.75000000000003"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="164.75000000000003" y2="164.75000000000003"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="167.25000000000003" y2="166.25"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="166.25" y2="166.25"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="166.25" y2="167.25000000000003"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="167.25000000000003" y2="167.25000000000003"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="167.25000000000003" y2="166.25"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="166.25" y2="166.25"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="166.25" y2="167.25000000000003"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="167.25000000000003" y2="167.25000000000003"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="169.75000000000003" y2="168.75000000000003"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="168.75000000000003" y2="168.75000000000003"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="168.75000000000003" y2="169.75000000000003"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="169.75000000000003" y2="169.75000000000003"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="169.75000000000003" y2="168.75000000000003"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="168.75000000000003" y2="168.75000000000003"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="168.75000000000003" y2="169.75000000000003"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="169.75000000000003" y2="169.75000000000003"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="172.25000000000003" y2="171.25000000000003"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="171.25000000000003" y2="171.25000000000003"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="171.25000000000003" y2="172.25000000000003"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="172.25000000000003" y2="172.25000000000003"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="172.25000000000003" y2="171.25000000000003"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="171.25000000000003" y2="171.25000000000003"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="171.25000000000003" y2="172.25000000000003"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="172.25000000000003" y2="172.25000000000003"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="174.75000000000003" y2="173.75000000000003"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="173.75000000000003" y2="173.75000000000003"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="173.75000000000003" y2="174.75000000000003"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="174.75000000000003" y2="174.75000000000003"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="174.75000000000003" y2="173.75000000000003"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="173.75000000000003" y2="173.75000000000003"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="173.75000000000003" y2="174.75000000000003"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="174.75000000000003" y2="174.75000000000003"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="177.25" y2="176.25000000000003"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="176.25000000000003" y2="176.25000000000003"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="176.25000000000003" y2="177.25"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="177.25" y2="177.25"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="177.25" y2="176.25000000000003"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="176.25000000000003" y2="176.25000000000003"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="176.25000000000003" y2="177.25"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="177.25" y2="177.25"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="179.75" y2="178.75000000000003"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="178.75000000000003" y2="178.75000000000003"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="178.75000000000003" y2="179.75"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="179.75" y2="179.75"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="179.75" y2="178.75000000000003"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="178.75000000000003" y2="178.75000000000003"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="178.75000000000003" y2="179.75"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="179.75" y2="179.75"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="182.25" y2="181.25000000000003"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="181.25000000000003" y2="181.25000000000003"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="181.25000000000003" y2="182.25"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="182.25" y2="182.25"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="182.25" y2="181.25000000000003"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="181.25000000000003" y2="181.25000000000003"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="181.25000000000003" y2="182.25"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="182.25" y2="182.25"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="184.75000000000003" y2="183.75000000000003"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="183.75000000000003" y2="183.75000000000003"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="183.75000000000003" y2="184.75000000000003"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="184.75000000000003" y2="184.75000000000003"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="184.75000000000003" y2="183.75000000000003"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="183.75000000000003" y2="183.75000000000003"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="183.75000000000003" y2="184.75000000000003"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="184.75000000000003" y2="184.75000000000003"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="187.25000000000003" y2="186.25000000000003"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="186.25000000000003" y2="186.25000000000003"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="186.25000000000003" y2="187.25000000000003"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="187.25000000000003" y2="187.25000000000003"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="187.25000000000003" y2="186.25000000000003"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="186.25000000000003" y2="186.25000000000003"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="186.25000000000003" y2="187.25000000000003"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="187.25000000000003" y2="187.25000000000003"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="189.75000000000003" y2="188.75"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="188.75" y2="188.75"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="188.75" y2="189.75000000000003"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="189.75000000000003" y2="189.75000000000003"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="189.75000000000003" y2="188.75"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="188.75" y2="188.75"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="188.75" y2="189.75000000000003"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="189.75000000000003" y2="189.75000000000003"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="192.25000000000003" y2="191.25"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="191.25" y2="191.25"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="191.25" y2="192.25000000000003"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="192.25000000000003" y2="192.25000000000003"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="192.25000000000003" y2="191.25"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="191.25" y2="191.25"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="191.25" y2="192.25000000000003"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="192.25000000000003" y2="192.25000000000003"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="194.75000000000003" y2="193.75000000000003"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="193.75000000000003" y2="193.75000000000003"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="193.75000000000003" y2="194.75000000000003"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="194.75000000000003" y2="194.75000000000003"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="194.75000000000003" y2="193.75000000000003"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="193.75000000000003" y2="193.75000000000003"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="193.75000000000003" y2="194.75000000000003"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="194.75000000000003" y2="194.75000000000003"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="197.25000000000003" y2="196.25000000000003"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="196.25000000000003" y2="196.25000000000003"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="196.25000000000003" y2="197.25000000000003"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="197.25000000000003" y2="197.25000000000003"/>
-  <line stroke="#888888" x1="663.8550614105758" x2="663.8550614105758" y1="198.25000000000003" y2="195.25000000000003"/>
-  <line stroke="#888888" x1="663.8550614105758" x2="666.8550614105757" y1="195.25000000000003" y2="195.25000000000003"/>
-  <line stroke="#888888" x1="666.8550614105757" x2="666.8550614105757" y1="195.25000000000003" y2="198.25000000000003"/>
-  <line stroke="#888888" x1="666.8550614105757" x2="663.8550614105758" y1="198.25000000000003" y2="198.25000000000003"/>
-  <line stroke="#888888" x1="659.6050614105758" x2="651.1050614105757" y1="155.25000000000003" y2="155.25000000000003"/>
-  <line stroke="#888888" x1="651.1050614105757" x2="651.1050614105757" y1="155.25000000000003" y2="154.75"/>
-  <line stroke="#888888" x1="651.1050614105757" x2="659.6050614105758" y1="154.75" y2="154.75"/>
-  <line stroke="#888888" x1="659.6050614105758" x2="659.6050614105758" y1="154.75" y2="155.25000000000003"/>
-  <line stroke="#888888" x1="651.1050614105757" x2="659.6050614105758" y1="203.00000000000003" y2="203.00000000000003"/>
-  <line stroke="#888888" x1="659.6050614105758" x2="659.6050614105758" y1="203.00000000000003" y2="203.50000000000003"/>
-  <line stroke="#888888" x1="659.6050614105758" x2="651.1050614105757" y1="203.50000000000003" y2="203.50000000000003"/>
-  <line stroke="#888888" x1="651.1050614105757" x2="651.1050614105757" y1="203.50000000000003" y2="203.00000000000003"/>
-  <line stroke="#888888" x1="635.8550614105758" x2="640.8550614105758" y1="158.59090909090912" y2="158.59090909090912"/>
-  <line stroke="#888888" x1="640.8550614105758" x2="640.8550614105758" y1="158.59090909090912" y2="169.68181818181822"/>
-  <line stroke="#888888" x1="640.8550614105758" x2="635.8550614105758" y1="169.68181818181822" y2="169.68181818181822"/>
-  <line stroke="#888888" x1="635.8550614105758" x2="640.8550614105758" y1="186.31818181818184" y2="186.31818181818184"/>
-  <line stroke="#888888" x1="640.8550614105758" x2="640.8550614105758" y1="186.31818181818184" y2="197.40909090909093"/>
-  <line stroke="#888888" x1="640.8550614105758" x2="635.8550614105758" y1="197.40909090909093" y2="197.40909090909093"/>
-  <line stroke="#888888" x1="661.1050614105757" x2="664.6050614105758" y1="131.50000000000003" y2="131.50000000000003"/>
-  <line stroke="#888888" x1="664.6050614105758" x2="664.6050614105758" y1="131.50000000000003" y2="139.50000000000003"/>
-  <line stroke="#888888" x1="664.6050614105758" x2="661.1050614105757" y1="139.50000000000003" y2="139.50000000000003"/>
+  <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="327.33180874014937" x2="266.3318087401493" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="361.3318087401493" x2="351.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="422.33180874014937" x2="422.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="266.3318087401493" x2="266.3318087401493" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="327.33180874014937" x2="253.33180874014934" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="361.3318087401493" x2="351.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="422.33180874014937" x2="422.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="351.33180874014937" x2="361.3318087401493" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="253.33180874014934" x2="327.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="253.33180874014934" x2="253.33180874014934" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="351.33180874014937" x2="351.33180874014937" y1="135.50000000000003" y2="101.50000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="327.33180874014937" x2="327.33180874014937" y1="101.50000000000001" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="327.33180874014937" x2="327.33180874014937" y1="65.5" y2="101.50000000000001"/>
+  <line opacity="0.5" stroke="#ff0000" x1="327.33180874014937" x2="351.33180874014937" y1="65.5" y2="65.5"/>
+  <line stroke="#000000" x1="351.33180874014937" x2="351.33180874014937" y1="101.50000000000001" y2="65.5"/>
+  <line stroke="#000000" x1="351.33180874014937" x2="351.33180874014937" y1="65.5" y2="20.5"/>
+  <line stroke="#000000" x1="327.33180874014937" x2="327.33180874014937" y1="20.5" y2="65.5"/>
+  <line stroke="#000000" x1="327.33180874014937" x2="327.33180874014937" y1="15.500000000000004" y2="20.5"/>
+  <line stroke="#000000" x1="351.33180874014937" x2="327.33180874014937" y1="15.500000000000004" y2="15.500000000000004"/>
+  <line stroke="#000000" x1="351.33180874014937" x2="351.33180874014937" y1="20.5" y2="15.500000000000004"/>
+  <line stroke="#000000" x1="327.33180874014937" x2="307.3318087401493" y1="101.50000000000001" y2="101.50000000000001"/>
+  <line stroke="#000000" x1="307.3318087401493" x2="327.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="307.3318087401493" x2="307.3318087401493" y1="101.50000000000001" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="307.3318087401493" x2="283.3318087401493" y1="101.50000000000001" y2="101.50000000000001"/>
+  <line stroke="#000000" x1="283.3318087401493" x2="307.3318087401493" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="283.3318087401493" x2="283.3318087401493" y1="101.50000000000001" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="283.3318087401493" x2="263.33180874014937" y1="101.50000000000001" y2="101.50000000000001"/>
+  <line stroke="#000000" x1="263.33180874014937" x2="283.3318087401493" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="263.33180874014937" x2="263.33180874014937" y1="135.50000000000003" y2="101.50000000000001"/>
+  <line stroke="#000000" x1="253.33180874014934" x2="263.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="253.33180874014934" x2="253.33180874014934" y1="101.50000000000001" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="263.33180874014937" x2="253.33180874014934" y1="101.50000000000001" y2="101.50000000000001"/>
+  <line opacity="0.25" stroke="#0000ff" x1="361.3318087401493" x2="422.33180874014937" y1="99.36137800081471" y2="99.36137800081471"/>
+  <line stroke="#000000" x1="422.33180874014937" x2="422.33180874014937" y1="135.50000000000003" y2="99.36137800081471"/>
+  <line stroke="#000000" x1="361.3318087401493" x2="361.3318087401493" y1="99.36137800081471" y2="135.50000000000003"/>
+  <line opacity="0.25" stroke="#0000ff" x1="422.33180874014937" x2="361.3318087401493" y1="75.36137800081471" y2="75.36137800081471"/>
+  <line opacity="0.5" stroke="#0000ff" x1="422.33180874014937" x2="422.33180874014937" y1="75.36137800081471" y2="99.36137800081471"/>
+  <line stroke="#000000" x1="361.3318087401493" x2="361.3318087401493" y1="39.22275600162939" y2="75.36137800081472"/>
+  <line stroke="#000000" x1="422.33180874014937" x2="422.33180874014937" y1="75.36137800081472" y2="39.22275600162939"/>
+  <line stroke="#000000" x1="361.3318087401493" x2="361.3318087401493" y1="29.222756001629396" y2="39.22275600162939"/>
+  <line stroke="#000000" x1="422.33180874014937" x2="361.3318087401493" y1="29.222756001629396" y2="29.222756001629396"/>
+  <line stroke="#000000" x1="422.33180874014937" x2="422.33180874014937" y1="39.22275600162939" y2="29.222756001629396"/>
+  <line stroke="#000000" x1="432.33180874014937" x2="422.33180874014937" y1="75.36137800081471" y2="75.36137800081471"/>
+  <line stroke="#000000" x1="432.33180874014937" x2="432.33180874014937" y1="99.36137800081471" y2="75.36137800081471"/>
+  <line stroke="#000000" x1="422.33180874014937" x2="432.33180874014937" y1="99.36137800081471" y2="99.36137800081471"/>
+  <line stroke="#000000" x1="351.33180874014937" x2="361.3318087401493" y1="99.36137800081471" y2="99.36137800081471"/>
+  <line stroke="#000000" x1="351.33180874014937" x2="351.33180874014937" y1="75.36137800081471" y2="99.36137800081471"/>
+  <line stroke="#000000" x1="361.3318087401493" x2="351.33180874014937" y1="75.36137800081471" y2="75.36137800081471"/>
+  <line opacity="0.5" stroke="#0000ff" x1="422.33180874014937" x2="266.3318087401493" y1="205.50000000000003" y2="205.50000000000003"/>
+  <line opacity="0.2332622916434259" stroke="#0000ff" x1="422.33180874014937" x2="422.33180874014937" y1="205.50000000000003" y2="135.50000000000003"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="422.33180874014937" x2="474.84617955831095" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line opacity="1.0" stroke="#ff0000" x1="422.33180874014937" x2="474.84617955831095" y1="205.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="422.33180874014937" x2="422.33180874014937" y1="127.99794702597693" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="474.84617955831095" x2="422.33180874014937" y1="127.99794702597693" y2="127.99794702597693"/>
+  <line stroke="#000000" x1="474.84617955831095" x2="474.84617955831095" y1="135.50000000000003" y2="127.99794702597693"/>
+  <line opacity="1.0" stroke="#0000ff" x1="422.33180874014937" x2="489.5369564140486" y1="205.50000000000003" y2="185.91765779766357"/>
+  <line stroke="#000000" x1="489.5369564140486" x2="474.84617955831095" y1="185.91765779766357" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="504.22773326978614" x2="489.5369564140486" y1="236.33531559532716" y2="185.91765779766357"/>
+  <line stroke="#000000" x1="508.3550614105757" x2="504.22773326978614" y1="250.50000000000003" y2="236.33531559532716"/>
+  <line opacity="0.31677294251280175" stroke="#0000ff" x1="508.3550614105757" x2="422.33180874014937" y1="250.50000000000003" y2="205.50000000000003"/>
+  <line opacity="0.3025684567112535" stroke="#0000ff" x1="422.33180874014937" x2="422.33180874014937" y1="250.50000000000003" y2="205.50000000000003"/>
+  <line opacity="0.3025684567112535" stroke="#0000ff" x1="422.3318087401494" x2="422.33180874014937" y1="295.5" y2="250.50000000000006"/>
+  <line opacity="0.31677294251280175" stroke="#0000ff" x1="508.35506141057573" x2="422.3318087401494" y1="250.50000000000003" y2="295.50000000000006"/>
+  <line opacity="1.0" stroke="#0000ff" x1="489.5369564140486" x2="422.33180874014937" y1="315.08234220233646" y2="295.50000000000006"/>
+  <line stroke="#000000" x1="504.22773326978614" x2="508.3550614105757" y1="264.6646844046729" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="489.5369564140486" x2="504.22773326978614" y1="315.08234220233646" y2="264.6646844046729"/>
+  <line stroke="#000000" x1="474.84617955831106" x2="489.5369564140486" y1="365.50000000000006" y2="315.0823422023364"/>
+  <line opacity="1.0" stroke="#ff0000" x1="474.84617955831106" x2="422.3318087401494" y1="365.50000000000006" y2="295.50000000000006"/>
+  <line opacity="0.2332622916434259" stroke="#0000ff" x1="422.3318087401495" x2="422.33180874014937" y1="365.5000000000001" y2="295.5"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="474.84617955831106" x2="422.3318087401495" y1="365.50000000000006" y2="365.5000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="422.3318087401494" x2="266.3318087401493" y1="295.50000000000006" y2="295.50000000000017"/>
+  <line stroke="#000000" x1="351.3318087401494" x2="361.3318087401494" y1="365.50000000000017" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="266.33180874014937" x2="327.3318087401494" y1="365.5000000000003" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="266.33180874014937" x2="266.33180874014937" y1="365.5000000000003" y2="365.5000000000003"/>
+  <line stroke="#000000" x1="422.3318087401495" x2="422.3318087401495" y1="365.5000000000001" y2="365.5000000000001"/>
+  <line stroke="#000000" x1="361.3318087401494" x2="422.3318087401495" y1="365.50000000000017" y2="365.5000000000001"/>
+  <line stroke="#000000" x1="351.3318087401494" x2="361.3318087401494" y1="365.50000000000017" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="253.33180874014937" x2="327.3318087401494" y1="365.5000000000003" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="253.33180874014937" x2="253.33180874014937" y1="365.5000000000003" y2="365.5000000000003"/>
+  <line stroke="#000000" x1="327.3318087401494" x2="253.33180874014937" y1="365.50000000000017" y2="365.5000000000003"/>
+  <line stroke="#000000" x1="361.3318087401494" x2="351.3318087401494" y1="365.50000000000017" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="422.3318087401495" x2="422.3318087401495" y1="365.5000000000001" y2="365.5000000000001"/>
+  <line stroke="#000000" x1="351.3318087401494" x2="351.3318087401494" y1="399.5000000000001" y2="365.50000000000017"/>
+  <line opacity="0.5" stroke="#0000ff" x1="327.3318087401494" x2="327.3318087401495" y1="365.50000000000017" y2="399.5000000000001"/>
+  <line stroke="#000000" x1="351.3318087401495" x2="351.3318087401494" y1="435.50000000000017" y2="399.5000000000001"/>
+  <line opacity="0.5" stroke="#ff0000" x1="351.3318087401495" x2="327.3318087401495" y1="435.50000000000017" y2="435.50000000000017"/>
+  <line stroke="#000000" x1="327.3318087401495" x2="327.3318087401495" y1="399.5000000000001" y2="435.50000000000017"/>
+  <line stroke="#000000" x1="327.3318087401495" x2="327.33180874014954" y1="435.50000000000017" y2="480.50000000000017"/>
+  <line stroke="#000000" x1="351.3318087401495" x2="351.3318087401494" y1="480.50000000000017" y2="435.50000000000017"/>
+  <line stroke="#000000" x1="327.33180874014954" x2="351.3318087401495" y1="480.50000000000017" y2="480.50000000000017"/>
+  <line stroke="#000000" x1="327.3318087401494" x2="307.33180874014937" y1="365.50000000000017" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="307.3318087401495" x2="327.3318087401495" y1="399.5000000000001" y2="399.5000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="307.33180874014937" x2="307.3318087401495" y1="365.50000000000017" y2="399.5000000000001"/>
+  <line stroke="#000000" x1="307.33180874014937" x2="283.33180874014937" y1="365.50000000000017" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="283.3318087401494" x2="307.3318087401495" y1="399.5000000000001" y2="399.5000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="283.33180874014937" x2="283.3318087401494" y1="365.50000000000017" y2="399.5000000000001"/>
+  <line stroke="#000000" x1="283.33180874014937" x2="263.3318087401494" y1="365.50000000000017" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="263.3318087401494" x2="283.3318087401494" y1="399.5000000000001" y2="399.5000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="263.3318087401494" x2="263.3318087401494" y1="399.5000000000001" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="253.33180874014943" x2="263.3318087401494" y1="399.5000000000001" y2="399.5000000000001"/>
+  <line stroke="#000000" x1="253.3318087401494" x2="253.33180874014943" y1="365.50000000000017" y2="399.5000000000001"/>
+  <line stroke="#000000" x1="263.3318087401494" x2="253.3318087401494" y1="365.50000000000017" y2="365.50000000000017"/>
+  <line opacity="0.2332622916434259" stroke="#0000ff" x1="266.3318087401493" x2="266.33180874014937" y1="295.50000000000017" y2="365.5000000000002"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="266.33180874014937" x2="213.81743792198782" y1="365.5000000000003" y2="365.5000000000003"/>
+  <line opacity="1.0" stroke="#ff0000" x1="266.3318087401493" x2="213.81743792198782" y1="295.5000000000002" y2="365.5000000000003"/>
+  <line stroke="#000000" x1="266.33180874014937" x2="266.33180874014937" y1="373.00205297402334" y2="365.5000000000003"/>
+  <line stroke="#000000" x1="213.81743792198782" x2="266.33180874014937" y1="373.0020529740234" y2="373.00205297402334"/>
+  <line stroke="#000000" x1="213.81743792198782" x2="213.81743792198782" y1="365.5000000000003" y2="373.0020529740234"/>
+  <line opacity="1.0" stroke="#0000ff" x1="266.3318087401493" x2="199.12666106625016" y1="295.50000000000017" y2="315.08234220233675"/>
+  <line stroke="#000000" x1="199.12666106625016" x2="213.81743792198782" y1="315.08234220233675" y2="365.5000000000003"/>
+  <line stroke="#000000" x1="184.43588421051248" x2="199.12666106625016" y1="264.6646844046731" y2="315.08234220233675"/>
+  <line stroke="#000000" x1="180.30855606972295" x2="184.43588421051248" y1="250.50000000000028" y2="264.6646844046731"/>
+  <line opacity="0.31677294251280175" stroke="#0000ff" x1="180.30855606972295" x2="266.3318087401493" y1="250.50000000000028" y2="295.50000000000017"/>
+  <line opacity="0.3025684567112535" stroke="#0000ff" x1="266.3318087401493" x2="266.3318087401493" y1="250.50000000000017" y2="295.50000000000017"/>
+  <line opacity="0.3025684567112535" stroke="#0000ff" x1="266.33180874014926" x2="266.3318087401493" y1="205.50000000000017" y2="250.5000000000002"/>
+  <line opacity="0.31677294251280175" stroke="#0000ff" x1="180.3085560697229" x2="266.33180874014926" y1="250.5000000000003" y2="205.50000000000014"/>
+  <line opacity="1.0" stroke="#0000ff" x1="199.12666106624997" x2="266.33180874014926" y1="185.91765779766385" y2="205.50000000000014"/>
+  <line stroke="#000000" x1="184.43588421051243" x2="180.3085560697229" y1="236.33531559532744" y2="250.5000000000003"/>
+  <line stroke="#000000" x1="199.12666106624997" x2="184.43588421051243" y1="185.91765779766385" y2="236.33531559532744"/>
+  <line stroke="#000000" x1="213.81743792198745" x2="199.12666106624997" y1="135.50000000000023" y2="185.91765779766385"/>
+  <line opacity="1.0" stroke="#ff0000" x1="213.81743792198745" x2="266.3318087401492" y1="135.50000000000023" y2="205.50000000000017"/>
+  <line opacity="0.2332622916434259" stroke="#0000ff" x1="266.3318087401491" x2="266.33180874014926" y1="135.5000000000001" y2="205.50000000000017"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="213.81743792198748" x2="266.3318087401491" y1="135.50000000000023" y2="135.5000000000001"/>
+  <line stroke="#000000" x1="213.81743792198745" x2="213.81743792198748" y1="127.99794702597715" y2="135.50000000000023"/>
+  <line stroke="#000000" x1="266.3318087401491" x2="213.81743792198745" y1="127.99794702597704" y2="127.99794702597715"/>
+  <line stroke="#000000" x1="266.3318087401491" x2="266.3318087401491" y1="135.5000000000001" y2="127.99794702597704"/>
+  <line stroke="#000000" x1="474.84617955831106" x2="474.84617955831106" y1="373.0020529740231" y2="365.50000000000006"/>
+  <line stroke="#000000" x1="422.3318087401495" x2="474.84617955831106" y1="373.00205297402323" y2="373.0020529740231"/>
+  <line stroke="#000000" x1="422.3318087401495" x2="422.3318087401495" y1="365.5000000000001" y2="373.00205297402323"/>
+  <line stroke="#888888" x1="288.76362692196756" x2="277.1727178310585" y1="143.25" y2="143.25"/>
+  <line stroke="#888888" x1="277.1727178310585" x2="277.1727178310585" y1="143.25" y2="142.75000000000003"/>
+  <line stroke="#888888" x1="277.1727178310585" x2="288.76362692196756" y1="142.75000000000003" y2="142.75000000000003"/>
+  <line stroke="#888888" x1="288.76362692196756" x2="288.76362692196756" y1="142.75000000000003" y2="143.25"/>
+  <line stroke="#888888" x1="316.49089964924025" x2="304.8999905583311" y1="143.25" y2="143.25"/>
+  <line stroke="#888888" x1="304.8999905583311" x2="304.8999905583311" y1="143.25" y2="142.75000000000003"/>
+  <line stroke="#888888" x1="304.8999905583311" x2="316.49089964924025" y1="142.75000000000003" y2="142.75000000000003"/>
+  <line stroke="#888888" x1="316.49089964924025" x2="316.49089964924025" y1="142.75000000000003" y2="143.25"/>
+  <line stroke="#888888" x1="343.5818087401493" x2="343.5818087401493" y1="124.41666666666669" y2="112.58333333333334"/>
+  <line stroke="#888888" x1="343.5818087401493" x2="344.08180874014937" y1="112.58333333333334" y2="112.58333333333334"/>
+  <line stroke="#888888" x1="344.08180874014937" x2="344.08180874014937" y1="112.58333333333334" y2="124.41666666666669"/>
+  <line stroke="#888888" x1="344.08180874014937" x2="343.5818087401493" y1="124.41666666666669" y2="124.41666666666669"/>
+  <line stroke="#888888" x1="343.3318087401493" x2="345.83180874014937" y1="16.750000000000004" y2="16.750000000000004"/>
+  <line stroke="#888888" x1="345.83180874014937" x2="343.3318087401493" y1="16.750000000000004" y2="19.250000000000004"/>
+  <line stroke="#888888" x1="343.3318087401493" x2="335.33180874014937" y1="19.250000000000004" y2="19.250000000000004"/>
+  <line stroke="#888888" x1="335.33180874014937" x2="332.83180874014937" y1="19.250000000000004" y2="16.750000000000004"/>
+  <line stroke="#888888" x1="332.83180874014937" x2="335.33180874014937" y1="16.750000000000004" y2="16.750000000000004"/>
+  <line stroke="#888888" x1="308.33180874014937" x2="312.33180874014937" y1="112.50000000000001" y2="112.50000000000001"/>
+  <line stroke="#888888" x1="312.33180874014937" x2="312.33180874014937" y1="112.50000000000001" y2="124.50000000000001"/>
+  <line stroke="#888888" x1="312.33180874014937" x2="308.33180874014937" y1="124.50000000000001" y2="124.50000000000001"/>
+  <line stroke="#888888" x1="308.33180874014937" x2="308.33180874014937" y1="124.50000000000001" y2="112.50000000000001"/>
+  <line stroke="#888888" x1="320.3318087401493" x2="324.33180874014937" y1="114.00000000000001" y2="114.00000000000001"/>
+  <line stroke="#888888" x1="324.33180874014937" x2="324.33180874014937" y1="114.00000000000001" y2="123.00000000000001"/>
+  <line stroke="#888888" x1="324.33180874014937" x2="320.3318087401493" y1="123.00000000000001" y2="123.00000000000001"/>
+  <line stroke="#888888" x1="320.3318087401493" x2="320.3318087401493" y1="123.00000000000001" y2="114.00000000000001"/>
+  <line stroke="#888888" x1="283.8318087401493" x2="306.8318087401493" y1="112.50000000000001" y2="112.50000000000001"/>
+  <line stroke="#888888" x1="306.8318087401493" x2="306.8318087401493" y1="112.50000000000001" y2="124.50000000000001"/>
+  <line stroke="#888888" x1="306.8318087401493" x2="283.8318087401493" y1="124.50000000000001" y2="124.50000000000001"/>
+  <line stroke="#888888" x1="283.8318087401493" x2="283.8318087401493" y1="124.50000000000001" y2="112.50000000000001"/>
+  <line stroke="#888888" x1="278.33180874014937" x2="282.33180874014937" y1="112.50000000000001" y2="112.50000000000001"/>
+  <line stroke="#888888" x1="282.33180874014937" x2="282.33180874014937" y1="112.50000000000001" y2="124.50000000000001"/>
+  <line stroke="#888888" x1="282.33180874014937" x2="278.33180874014937" y1="124.50000000000001" y2="124.50000000000001"/>
+  <line stroke="#888888" x1="278.33180874014937" x2="278.33180874014937" y1="124.50000000000001" y2="112.50000000000001"/>
+  <line stroke="#888888" x1="255.83180874014934" x2="260.83180874014937" y1="112.83333333333336" y2="112.83333333333336"/>
+  <line stroke="#888888" x1="260.83180874014937" x2="260.83180874014937" y1="112.83333333333336" y2="124.16666666666669"/>
+  <line stroke="#888888" x1="260.83180874014937" x2="255.83180874014934" y1="124.16666666666669" y2="124.16666666666669"/>
+  <line stroke="#888888" x1="379.3318087401493" x2="390.33180874014937" y1="80.86137800081471" y2="80.86137800081471"/>
+  <line stroke="#888888" x1="390.33180874014937" x2="390.33180874014937" y1="80.86137800081471" y2="93.86137800081471"/>
+  <line stroke="#888888" x1="390.33180874014937" x2="379.3318087401493" y1="93.86137800081471" y2="93.86137800081471"/>
+  <line stroke="#888888" x1="379.3318087401493" x2="379.3318087401493" y1="93.86137800081471" y2="80.86137800081471"/>
+  <line stroke="#888888" x1="410.83180874014937" x2="416.83180874014937" y1="82.36137800081471" y2="82.36137800081471"/>
+  <line stroke="#888888" x1="416.83180874014937" x2="416.83180874014937" y1="82.36137800081471" y2="92.36137800081471"/>
+  <line stroke="#888888" x1="416.83180874014937" x2="410.83180874014937" y1="92.36137800081471" y2="92.36137800081471"/>
+  <line stroke="#888888" x1="410.83180874014937" x2="410.83180874014937" y1="92.36137800081471" y2="82.36137800081471"/>
+  <line stroke="#888888" x1="411.24089964924025" x2="411.24089964924025" y1="31.722756001629396" y2="36.7227560016294"/>
+  <line stroke="#888888" x1="411.24089964924025" x2="400.1499905583311" y1="36.7227560016294" y2="36.7227560016294"/>
+  <line stroke="#888888" x1="400.1499905583311" x2="400.1499905583311" y1="36.7227560016294" y2="31.722756001629396"/>
+  <line stroke="#888888" x1="383.51362692196756" x2="383.51362692196756" y1="31.722756001629396" y2="36.7227560016294"/>
+  <line stroke="#888888" x1="383.51362692196756" x2="372.4227178310585" y1="36.7227560016294" y2="36.7227560016294"/>
+  <line stroke="#888888" x1="372.4227178310585" x2="372.4227178310585" y1="36.7227560016294" y2="31.722756001629396"/>
+  <line stroke="#888888" x1="429.8318087401493" x2="424.83180874014937" y1="91.36137800081471" y2="91.36137800081471"/>
+  <line stroke="#888888" x1="424.83180874014937" x2="424.83180874014937" y1="91.36137800081471" y2="83.36137800081471"/>
+  <line stroke="#888888" x1="424.83180874014937" x2="429.8318087401493" y1="83.36137800081471" y2="83.36137800081471"/>
+  <line stroke="#888888" x1="353.83180874014937" x2="358.83180874014937" y1="83.36137800081471" y2="83.36137800081471"/>
+  <line stroke="#888888" x1="358.83180874014937" x2="358.83180874014937" y1="83.36137800081471" y2="91.36137800081471"/>
+  <line stroke="#888888" x1="358.83180874014937" x2="353.83180874014937" y1="91.36137800081471" y2="91.36137800081471"/>
+  <line stroke="#888888" x1="465.29811213682694" x2="469.0491386238386" y1="129.8734602694827" y2="129.8734602694827"/>
+  <line stroke="#888888" x1="469.0491386238386" x2="465.29811213682694" y1="129.8734602694827" y2="133.62448675649426"/>
+  <line stroke="#888888" x1="465.29811213682694" x2="455.7500447153431" y1="133.62448675649426" y2="133.62448675649426"/>
+  <line stroke="#888888" x1="455.7500447153431" x2="451.9990182283316" y1="133.62448675649426" y2="129.8734602694827"/>
+  <line stroke="#888888" x1="451.9990182283316" x2="455.7500447153431" y1="129.8734602694827" y2="129.8734602694827"/>
+  <line stroke="#888888" x1="441.4279435831172" x2="445.17897007012874" y1="129.8734602694827" y2="129.8734602694827"/>
+  <line stroke="#888888" x1="445.17897007012874" x2="441.4279435831172" y1="129.8734602694827" y2="133.62448675649426"/>
+  <line stroke="#888888" x1="441.4279435831172" x2="431.8798761616332" y1="133.62448675649426" y2="133.62448675649426"/>
+  <line stroke="#888888" x1="431.8798761616332" x2="428.1288496746218" y1="133.62448675649426" y2="129.8734602694827"/>
+  <line stroke="#888888" x1="428.1288496746218" x2="431.8798761616332" y1="129.8734602694827" y2="129.8734602694827"/>
+  <line stroke="#888888" x1="489.307083733857" x2="486.4961595235763" y1="206.13531866922696" y2="196.48843502782523"/>
+  <line stroke="#888888" x1="486.4961595235763" x2="486.9761962926755" y1="196.48843502782523" y2="196.3485611549514"/>
+  <line stroke="#888888" x1="486.9761962926755" x2="489.78712050295627" y1="196.3485611549514" y2="205.99544479635315"/>
+  <line stroke="#888888" x1="489.78712050295627" x2="489.307083733857" y1="205.99544479635315" y2="206.13531866922696"/>
+  <line stroke="#888888" x1="495.9847095773741" x2="493.1737853670934" y1="229.05243584998314" y2="219.40555220858138"/>
+  <line stroke="#888888" x1="493.1737853670934" x2="493.6538221361927" y1="219.40555220858138" y2="219.26567833570755"/>
+  <line stroke="#888888" x1="493.6538221361927" x2="496.4647463464733" y1="219.26567833570755" y2="228.9125619771093"/>
+  <line stroke="#888888" x1="496.4647463464733" x2="495.9847095773741" y1="228.9125619771093" y2="229.05243584998314"/>
+  <line stroke="#888888" x1="493.17378536709344" x2="495.9847095773741" y1="281.5944477914187" y2="271.94756415001694"/>
+  <line stroke="#888888" x1="495.9847095773741" x2="496.4647463464733" y1="271.94756415001694" y2="272.0874380228908"/>
+  <line stroke="#888888" x1="496.4647463464733" x2="493.6538221361927" y1="272.0874380228908" y2="281.7343216642925"/>
+  <line stroke="#888888" x1="493.6538221361927" x2="493.17378536709344" y1="281.7343216642925" y2="281.5944477914187"/>
+  <line stroke="#888888" x1="486.49615952357635" x2="489.30708373385704" y1="304.5115649721748" y2="294.86468133077307"/>
+  <line stroke="#888888" x1="489.30708373385704" x2="489.78712050295627" y1="294.86468133077307" y2="295.0045552036469"/>
+  <line stroke="#888888" x1="489.78712050295627" x2="486.97619629267564" y1="295.0045552036469" y2="304.6514388450487"/>
+  <line stroke="#888888" x1="486.97619629267564" x2="486.49615952357635" y1="304.6514388450487" y2="304.5115649721748"/>
+  <line stroke="#888888" x1="304.8999905583312" x2="316.4908996492403" y1="357.7500000000002" y2="357.75000000000017"/>
+  <line stroke="#888888" x1="316.4908996492403" x2="316.4908996492403" y1="357.75000000000017" y2="358.25000000000017"/>
+  <line stroke="#888888" x1="316.4908996492403" x2="304.8999905583312" y1="358.25000000000017" y2="358.25000000000017"/>
+  <line stroke="#888888" x1="304.8999905583312" x2="304.8999905583312" y1="358.25000000000017" y2="357.7500000000002"/>
+  <line stroke="#888888" x1="277.1727178310585" x2="288.7636269219676" y1="357.7500000000002" y2="357.7500000000002"/>
+  <line stroke="#888888" x1="288.7636269219676" x2="288.7636269219676" y1="357.7500000000002" y2="358.25000000000017"/>
+  <line stroke="#888888" x1="288.7636269219676" x2="277.1727178310585" y1="358.25000000000017" y2="358.25000000000017"/>
+  <line stroke="#888888" x1="277.1727178310585" x2="277.1727178310585" y1="358.25000000000017" y2="357.7500000000002"/>
+  <line stroke="#888888" x1="399.89999055833124" x2="411.49089964924036" y1="357.75000000000017" y2="357.7500000000001"/>
+  <line stroke="#888888" x1="411.49089964924036" x2="411.49089964924036" y1="357.7500000000001" y2="358.2500000000001"/>
+  <line stroke="#888888" x1="411.49089964924036" x2="399.89999055833124" y1="358.2500000000001" y2="358.25000000000017"/>
+  <line stroke="#888888" x1="399.89999055833124" x2="399.89999055833124" y1="358.25000000000017" y2="357.75000000000017"/>
+  <line stroke="#888888" x1="372.17271783105855" x2="383.7636269219676" y1="357.75000000000017" y2="357.75000000000017"/>
+  <line stroke="#888888" x1="383.7636269219676" x2="383.7636269219676" y1="357.75000000000017" y2="358.25000000000017"/>
+  <line stroke="#888888" x1="383.7636269219676" x2="372.17271783105855" y1="358.25000000000017" y2="358.25000000000017"/>
+  <line stroke="#888888" x1="372.17271783105855" x2="372.17271783105855" y1="358.25000000000017" y2="357.75000000000017"/>
+  <line stroke="#888888" x1="343.5818087401495" x2="343.5818087401495" y1="388.4166666666668" y2="376.5833333333335"/>
+  <line stroke="#888888" x1="343.5818087401495" x2="344.0818087401495" y1="376.5833333333335" y2="376.5833333333335"/>
+  <line stroke="#888888" x1="344.0818087401495" x2="344.0818087401495" y1="376.5833333333335" y2="388.4166666666668"/>
+  <line stroke="#888888" x1="344.0818087401495" x2="343.5818087401495" y1="388.4166666666668" y2="388.4166666666668"/>
+  <line stroke="#888888" x1="335.08180874014954" x2="343.58180874014954" y1="476.50000000000017" y2="476.50000000000017"/>
+  <line stroke="#888888" x1="343.58180874014954" x2="343.58180874014954" y1="476.50000000000017" y2="477.00000000000017"/>
+  <line stroke="#888888" x1="343.58180874014954" x2="335.08180874014954" y1="477.00000000000017" y2="477.00000000000017"/>
+  <line stroke="#888888" x1="335.08180874014954" x2="335.08180874014954" y1="477.00000000000017" y2="476.50000000000017"/>
+  <line stroke="#888888" x1="308.3318087401494" x2="312.3318087401494" y1="376.50000000000017" y2="376.50000000000017"/>
+  <line stroke="#888888" x1="312.3318087401494" x2="312.3318087401495" y1="376.50000000000017" y2="388.50000000000017"/>
+  <line stroke="#888888" x1="312.3318087401495" x2="308.3318087401495" y1="388.50000000000017" y2="388.50000000000017"/>
+  <line stroke="#888888" x1="308.3318087401495" x2="308.3318087401494" y1="388.50000000000017" y2="376.50000000000017"/>
+  <line stroke="#888888" x1="320.33180874014937" x2="324.3318087401494" y1="378.00000000000017" y2="378.00000000000017"/>
+  <line stroke="#888888" x1="324.3318087401494" x2="324.3318087401494" y1="378.00000000000017" y2="387.00000000000017"/>
+  <line stroke="#888888" x1="324.3318087401494" x2="320.3318087401494" y1="387.00000000000017" y2="387.00000000000017"/>
+  <line stroke="#888888" x1="320.3318087401494" x2="320.33180874014937" y1="387.00000000000017" y2="378.00000000000017"/>
+  <line stroke="#888888" x1="283.83180874014937" x2="306.83180874014937" y1="376.50000000000017" y2="376.50000000000017"/>
+  <line stroke="#888888" x1="306.83180874014937" x2="306.8318087401494" y1="376.50000000000017" y2="388.50000000000017"/>
+  <line stroke="#888888" x1="306.8318087401494" x2="283.83180874014937" y1="388.50000000000017" y2="388.50000000000017"/>
+  <line stroke="#888888" x1="283.83180874014937" x2="283.83180874014937" y1="388.50000000000017" y2="376.50000000000017"/>
+  <line stroke="#888888" x1="278.3318087401494" x2="282.3318087401494" y1="376.50000000000017" y2="376.50000000000017"/>
+  <line stroke="#888888" x1="282.3318087401494" x2="282.3318087401494" y1="376.50000000000017" y2="388.50000000000017"/>
+  <line stroke="#888888" x1="282.3318087401494" x2="278.3318087401494" y1="388.50000000000017" y2="388.50000000000017"/>
+  <line stroke="#888888" x1="278.3318087401494" x2="278.3318087401494" y1="388.50000000000017" y2="376.50000000000017"/>
+  <line stroke="#888888" x1="255.8318087401494" x2="260.8318087401494" y1="376.8333333333335" y2="376.8333333333335"/>
+  <line stroke="#888888" x1="260.8318087401494" x2="260.8318087401494" y1="376.8333333333335" y2="388.16666666666686"/>
+  <line stroke="#888888" x1="260.8318087401494" x2="255.8318087401494" y1="388.16666666666686" y2="388.16666666666686"/>
+  <line stroke="#888888" x1="223.36550534347174" x2="219.61447885646018" y1="371.12653973051766" y2="371.12653973051766"/>
+  <line stroke="#888888" x1="219.61447885646018" x2="223.3655053434717" y1="371.12653973051766" y2="367.3755132435061"/>
+  <line stroke="#888888" x1="223.3655053434717" x2="232.91357276495566" y1="367.3755132435061" y2="367.3755132435061"/>
+  <line stroke="#888888" x1="232.91357276495566" x2="236.66459925196722" y1="367.3755132435061" y2="371.1265397305176"/>
+  <line stroke="#888888" x1="236.66459925196722" x2="232.91357276495566" y1="371.1265397305176" y2="371.1265397305176"/>
+  <line stroke="#888888" x1="247.23567389718156" x2="243.48464741017003" y1="371.1265397305176" y2="371.1265397305176"/>
+  <line stroke="#888888" x1="243.48464741017003" x2="247.23567389718156" y1="371.1265397305176" y2="367.3755132435061"/>
+  <line stroke="#888888" x1="247.23567389718156" x2="256.7837413186655" y1="367.3755132435061" y2="367.3755132435061"/>
+  <line stroke="#888888" x1="256.7837413186655" x2="260.534767805677" y1="367.3755132435061" y2="371.1265397305176"/>
+  <line stroke="#888888" x1="260.534767805677" x2="256.78374131866553" y1="371.1265397305176" y2="371.1265397305176"/>
+  <line stroke="#888888" x1="199.35653374644173" x2="202.16745795672242" y1="294.86468133077335" y2="304.5115649721751"/>
+  <line stroke="#888888" x1="202.16745795672242" x2="201.6874211876231" y1="304.5115649721751" y2="304.651438845049"/>
+  <line stroke="#888888" x1="201.6874211876231" x2="198.87649697734244" y1="304.651438845049" y2="295.0045552036471"/>
+  <line stroke="#888888" x1="198.87649697734244" x2="199.35653374644173" y1="295.0045552036471" y2="294.86468133077335"/>
+  <line stroke="#888888" x1="192.67890790292464" x2="195.48983211320527" y1="271.9475641500171" y2="281.5944477914189"/>
+  <line stroke="#888888" x1="195.48983211320527" x2="195.009795344106" y1="281.5944477914189" y2="281.7343216642927"/>
+  <line stroke="#888888" x1="195.009795344106" x2="192.19887113382532" y1="281.7343216642927" y2="272.087438022891"/>
+  <line stroke="#888888" x1="192.19887113382532" x2="192.67890790292464" y1="272.087438022891" y2="271.9475641500171"/>
+  <line stroke="#888888" x1="195.48983211320518" x2="192.67890790292452" y1="219.40555220858164" y2="229.0524358499834"/>
+  <line stroke="#888888" x1="192.67890790292452" x2="192.19887113382526" y1="229.0524358499834" y2="228.91256197710956"/>
+  <line stroke="#888888" x1="192.19887113382526" x2="195.00979534410592" y1="228.91256197710956" y2="219.2656783357078"/>
+  <line stroke="#888888" x1="195.00979534410592" x2="195.48983211320518" y1="219.2656783357078" y2="219.40555220858164"/>
+  <line stroke="#888888" x1="202.16745795672222" x2="199.35653374644158" y1="196.48843502782546" y2="206.13531866922722"/>
+  <line stroke="#888888" x1="199.35653374644158" x2="198.8764969773423" y1="206.13531866922722" y2="205.99544479635338"/>
+  <line stroke="#888888" x1="198.8764969773423" x2="201.68742118762296" y1="205.99544479635338" y2="196.34856115495162"/>
+  <line stroke="#888888" x1="201.68742118762296" x2="202.16745795672222" y1="196.34856115495162" y2="196.48843502782546"/>
+  <line stroke="#888888" x1="256.7837413186651" x2="260.53476780567667" y1="129.87346026948285" y2="129.87346026948285"/>
+  <line stroke="#888888" x1="260.53476780567667" x2="256.78374131866514" y1="129.87346026948285" y2="133.6244867564944"/>
+  <line stroke="#888888" x1="256.78374131866514" x2="247.23567389718121" y1="133.6244867564944" y2="133.6244867564944"/>
+  <line stroke="#888888" x1="247.23567389718121" x2="243.48464741016966" y1="133.6244867564944" y2="129.87346026948285"/>
+  <line stroke="#888888" x1="243.48464741016966" x2="247.23567389718121" y1="129.87346026948285" y2="129.87346026948285"/>
+  <line stroke="#888888" x1="232.91357276495532" x2="236.66459925196685" y1="129.87346026948288" y2="129.87346026948285"/>
+  <line stroke="#888888" x1="236.66459925196685" x2="232.91357276495532" y1="129.87346026948285" y2="133.62448675649443"/>
+  <line stroke="#888888" x1="232.91357276495532" x2="223.36550534347137" y1="133.62448675649443" y2="133.62448675649446"/>
+  <line stroke="#888888" x1="223.36550534347137" x2="219.6144788564598" y1="133.62448675649446" y2="129.8734602694829"/>
+  <line stroke="#888888" x1="219.6144788564598" x2="223.36550534347137" y1="129.8734602694829" y2="129.87346026948288"/>
+  <line stroke="#888888" x1="431.8798761616334" x2="428.1288496746219" y1="371.12653973051744" y2="371.12653973051744"/>
+  <line stroke="#888888" x1="428.1288496746219" x2="431.8798761616334" y1="371.12653973051744" y2="367.37551324350585"/>
+  <line stroke="#888888" x1="431.8798761616334" x2="441.4279435831173" y1="367.37551324350585" y2="367.37551324350585"/>
+  <line stroke="#888888" x1="441.4279435831173" x2="445.17897007012886" y1="367.37551324350585" y2="371.12653973051744"/>
+  <line stroke="#888888" x1="445.17897007012886" x2="441.4279435831173" y1="371.12653973051744" y2="371.12653973051744"/>
+  <line stroke="#888888" x1="455.7500447153432" x2="451.9990182283317" y1="371.12653973051744" y2="371.12653973051744"/>
+  <line stroke="#888888" x1="451.9990182283317" x2="455.7500447153432" y1="371.12653973051744" y2="367.37551324350585"/>
+  <line stroke="#888888" x1="455.7500447153432" x2="465.2981121368271" y1="367.37551324350585" y2="367.37551324350585"/>
+  <line stroke="#888888" x1="465.2981121368271" x2="469.0491386238387" y1="367.37551324350585" y2="371.1265397305174"/>
+  <line stroke="#888888" x1="469.0491386238387" x2="465.2981121368271" y1="371.1265397305174" y2="371.12653973051744"/>
+  <line opacity="0.5" stroke="#0000ff" x1="551.3550614105758" x2="612.3550614105757" y1="123.50000000000001" y2="123.50000000000001"/>
+  <line opacity="0.5" stroke="#0000ff" x1="612.3550614105757" x2="612.3550614105757" y1="123.50000000000001" y2="147.5"/>
+  <line opacity="0.5" stroke="#0000ff" x1="612.3550614105757" x2="551.3550614105758" y1="147.5" y2="147.5"/>
+  <line opacity="0.5" stroke="#0000ff" x1="551.3550614105758" x2="551.3550614105758" y1="147.5" y2="123.50000000000001"/>
+  <line stroke="#000000" x1="551.3550614105758" x2="551.3550614105758" y1="116.50000000000001" y2="123.50000000000001"/>
+  <line stroke="#000000" x1="611.3550614105757" x2="551.3550614105758" y1="116.50000000000001" y2="116.50000000000001"/>
+  <line stroke="#000000" x1="611.3550614105757" x2="611.3550614105757" y1="123.50000000000001" y2="116.50000000000001"/>
+  <line stroke="#000000" x1="619.3550614105757" x2="612.3550614105757" y1="123.50000000000001" y2="123.50000000000001"/>
+  <line stroke="#000000" x1="619.3550614105757" x2="619.3550614105757" y1="147.5" y2="123.50000000000001"/>
+  <line stroke="#000000" x1="612.3550614105757" x2="619.3550614105757" y1="147.5" y2="147.5"/>
+  <line opacity="0.5" stroke="#0000ff" x1="612.3550614105757" x2="612.3550614105757" y1="147.5" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="552.3550614105758" x2="612.3550614105757" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="552.3550614105758" x2="552.3550614105758" y1="147.5" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="636.3550614105758" x2="612.3550614105757" y1="147.5" y2="147.5"/>
+  <line opacity="0.5" stroke="#0000ff" x1="636.3550614105758" x2="636.3550614105758" y1="147.5" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="612.3550614105757" x2="636.3550614105758" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="696.3550614105758" x2="636.3550614105758" y1="147.5" y2="147.5"/>
+  <line stroke="#000000" x1="696.3550614105758" x2="696.3550614105758" y1="208.50000000000003" y2="147.5"/>
+  <line stroke="#000000" x1="636.3550614105758" x2="696.3550614105758" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="552.3550614105758" x2="528.3550614105758" y1="147.5" y2="147.5"/>
+  <line stroke="#000000" x1="528.3550614105758" x2="552.3550614105758" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="528.3550614105758" x2="528.3550614105758" y1="208.50000000000003" y2="147.5"/>
+  <line stroke="#000000" x1="518.3550614105758" x2="528.3550614105758" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="518.3550614105758" x2="518.3550614105758" y1="147.5" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="528.3550614105758" x2="518.3550614105758" y1="147.5" y2="147.5"/>
+  <line stroke="#000000" x1="544.3550614105758" x2="551.3550614105758" y1="147.5" y2="147.5"/>
+  <line stroke="#000000" x1="544.3550614105758" x2="544.3550614105758" y1="123.50000000000001" y2="147.5"/>
+  <line stroke="#000000" x1="551.3550614105758" x2="544.3550614105758" y1="123.50000000000001" y2="123.50000000000001"/>
+  <line stroke="#888888" x1="600.4459705014849" x2="603.9459705014848" y1="118.25000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="603.9459705014848" x2="600.4459705014849" y1="118.25000000000001" y2="121.75000000000001"/>
+  <line stroke="#888888" x1="600.4459705014849" x2="589.5368795923938" y1="121.75000000000001" y2="121.75000000000001"/>
+  <line stroke="#888888" x1="589.5368795923938" x2="586.036879592394" y1="121.75000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="586.036879592394" x2="589.5368795923938" y1="118.25000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="573.1732432287577" x2="576.6732432287575" y1="118.25000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="576.6732432287575" x2="573.1732432287577" y1="118.25000000000001" y2="121.75000000000001"/>
+  <line stroke="#888888" x1="573.1732432287577" x2="562.2641523196666" y1="121.75000000000001" y2="121.75000000000001"/>
+  <line stroke="#888888" x1="562.2641523196666" x2="558.7641523196667" y1="121.75000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="558.7641523196667" x2="562.2641523196666" y1="118.25000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="617.6050614105757" x2="614.1050614105758" y1="139.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="614.1050614105758" x2="614.1050614105758" y1="139.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="614.1050614105758" x2="617.6050614105757" y1="131.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="559.8550614105758" x2="559.8550614105758" y1="199.00000000000003" y2="181.00000000000003"/>
+  <line stroke="#888888" x1="559.8550614105758" x2="594.8550614105757" y1="181.00000000000003" y2="181.00000000000003"/>
+  <line stroke="#888888" x1="594.8550614105757" x2="594.8550614105757" y1="181.00000000000003" y2="199.00000000000003"/>
+  <line stroke="#888888" x1="594.8550614105757" x2="559.8550614105758" y1="199.00000000000003" y2="199.00000000000003"/>
+  <line stroke="#888888" x1="612.8550614105757" x2="612.8550614105757" y1="160.75000000000003" y2="157.75000000000003"/>
+  <line stroke="#888888" x1="612.8550614105757" x2="615.8550614105758" y1="157.75000000000003" y2="157.75000000000003"/>
+  <line stroke="#888888" x1="615.8550614105758" x2="615.8550614105758" y1="157.75000000000003" y2="160.75000000000003"/>
+  <line stroke="#888888" x1="615.8550614105758" x2="612.8550614105757" y1="160.75000000000003" y2="160.75000000000003"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="159.75000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="158.75000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="158.75000000000003" y2="159.75000000000003"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="159.75000000000003" y2="159.75000000000003"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="162.25000000000003" y2="161.25"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="161.25" y2="161.25"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="161.25" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="162.25000000000003" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="162.25000000000003" y2="161.25"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="161.25" y2="161.25"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="161.25" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="162.25000000000003" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="164.75000000000003" y2="163.75"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="163.75" y2="163.75"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="163.75" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="164.75000000000003" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="164.75000000000003" y2="163.75"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="163.75" y2="163.75"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="163.75" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="164.75000000000003" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="167.25000000000003" y2="166.25"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="166.25" y2="166.25"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="166.25" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="167.25000000000003" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="167.25000000000003" y2="166.25"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="166.25" y2="166.25"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="166.25" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="167.25000000000003" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="169.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="168.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="168.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="169.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="169.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="168.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="168.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="169.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="172.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="171.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="171.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="172.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="172.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="171.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="171.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="172.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="174.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="173.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="173.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="174.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="174.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="173.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="173.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="174.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="177.25" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="176.25000000000003" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="176.25000000000003" y2="177.25"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="177.25" y2="177.25"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="177.25" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="176.25000000000003" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="176.25000000000003" y2="177.25"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="177.25" y2="177.25"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="179.75" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="178.75000000000003" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="178.75000000000003" y2="179.75"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="179.75" y2="179.75"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="179.75" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="178.75000000000003" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="178.75000000000003" y2="179.75"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="179.75" y2="179.75"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="182.25" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="181.25000000000003" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="181.25000000000003" y2="182.25"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="182.25" y2="182.25"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="182.25" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="181.25000000000003" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="181.25000000000003" y2="182.25"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="182.25" y2="182.25"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="184.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="183.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="183.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="184.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="184.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="183.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="183.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="184.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="187.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="186.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="186.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="187.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="187.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="186.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="186.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="187.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="189.75000000000003" y2="188.75"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="188.75" y2="188.75"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="188.75" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="189.75000000000003" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="189.75000000000003" y2="188.75"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="188.75" y2="188.75"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="188.75" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="189.75000000000003" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="192.25000000000003" y2="191.25"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="191.25" y2="191.25"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="191.25" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="192.25000000000003" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="192.25000000000003" y2="191.25"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="191.25" y2="191.25"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="191.25" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="192.25000000000003" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="194.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="193.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="193.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="194.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="194.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="193.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="193.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="194.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="197.25000000000003" y2="196.25000000000003"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="196.25000000000003" y2="196.25000000000003"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="196.25000000000003" y2="197.25000000000003"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="197.25000000000003" y2="197.25000000000003"/>
+  <line stroke="#888888" x1="632.8550614105758" x2="632.8550614105758" y1="198.25000000000003" y2="195.25000000000003"/>
+  <line stroke="#888888" x1="632.8550614105758" x2="635.8550614105758" y1="195.25000000000003" y2="195.25000000000003"/>
+  <line stroke="#888888" x1="635.8550614105758" x2="635.8550614105758" y1="195.25000000000003" y2="198.25000000000003"/>
+  <line stroke="#888888" x1="635.8550614105758" x2="632.8550614105758" y1="198.25000000000003" y2="198.25000000000003"/>
+  <line stroke="#888888" x1="628.6050614105758" x2="620.1050614105758" y1="155.25000000000003" y2="155.25000000000003"/>
+  <line stroke="#888888" x1="620.1050614105758" x2="620.1050614105758" y1="155.25000000000003" y2="154.75"/>
+  <line stroke="#888888" x1="620.1050614105758" x2="628.6050614105758" y1="154.75" y2="154.75"/>
+  <line stroke="#888888" x1="628.6050614105758" x2="628.6050614105758" y1="154.75" y2="155.25000000000003"/>
+  <line stroke="#888888" x1="620.1050614105758" x2="628.6050614105758" y1="203.00000000000003" y2="203.00000000000003"/>
+  <line stroke="#888888" x1="628.6050614105758" x2="628.6050614105758" y1="203.00000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="628.6050614105758" x2="620.1050614105758" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="620.1050614105758" x2="620.1050614105758" y1="203.50000000000003" y2="203.00000000000003"/>
+  <line stroke="#888888" x1="651.3550614105758" x2="651.3550614105758" y1="198.50000000000003" y2="185.50000000000003"/>
+  <line stroke="#888888" x1="651.3550614105758" x2="681.3550614105758" y1="185.50000000000003" y2="185.50000000000003"/>
+  <line stroke="#888888" x1="681.3550614105758" x2="681.3550614105758" y1="185.50000000000003" y2="198.50000000000003"/>
+  <line stroke="#888888" x1="681.3550614105758" x2="651.3550614105758" y1="198.50000000000003" y2="198.50000000000003"/>
+  <line stroke="#888888" x1="658.4232432287575" x2="647.0141523196667" y1="153.00000000000003" y2="153.00000000000003"/>
+  <line stroke="#888888" x1="647.0141523196667" x2="647.0141523196667" y1="153.00000000000003" y2="152.5"/>
+  <line stroke="#888888" x1="647.0141523196667" x2="658.4232432287575" y1="152.5" y2="152.5"/>
+  <line stroke="#888888" x1="658.4232432287575" x2="658.4232432287575" y1="152.5" y2="153.00000000000003"/>
+  <line stroke="#888888" x1="685.6959705014849" x2="674.2868795923939" y1="153.00000000000003" y2="153.00000000000003"/>
+  <line stroke="#888888" x1="674.2868795923939" x2="674.2868795923939" y1="153.00000000000003" y2="152.5"/>
+  <line stroke="#888888" x1="674.2868795923939" x2="685.6959705014849" y1="152.5" y2="152.5"/>
+  <line stroke="#888888" x1="685.6959705014849" x2="685.6959705014849" y1="152.5" y2="153.00000000000003"/>
+  <line stroke="#888888" x1="688.6050614105757" x2="688.6050614105757" y1="169.93181818181822" y2="158.3409090909091"/>
+  <line stroke="#888888" x1="688.6050614105757" x2="689.1050614105757" y1="158.3409090909091" y2="158.3409090909091"/>
+  <line stroke="#888888" x1="689.1050614105757" x2="689.1050614105757" y1="158.3409090909091" y2="169.93181818181822"/>
+  <line stroke="#888888" x1="689.1050614105757" x2="688.6050614105757" y1="169.93181818181822" y2="169.93181818181822"/>
+  <line stroke="#888888" x1="688.6050614105757" x2="688.6050614105757" y1="197.65909090909093" y2="186.06818181818184"/>
+  <line stroke="#888888" x1="688.6050614105757" x2="689.1050614105757" y1="186.06818181818184" y2="186.06818181818184"/>
+  <line stroke="#888888" x1="689.1050614105757" x2="689.1050614105757" y1="186.06818181818184" y2="197.65909090909093"/>
+  <line stroke="#888888" x1="689.1050614105757" x2="688.6050614105757" y1="197.65909090909093" y2="197.65909090909093"/>
+  <line stroke="#888888" x1="528.8550614105758" x2="528.8550614105758" y1="160.75000000000003" y2="157.75000000000003"/>
+  <line stroke="#888888" x1="528.8550614105758" x2="531.8550614105758" y1="157.75000000000003" y2="157.75000000000003"/>
+  <line stroke="#888888" x1="531.8550614105758" x2="531.8550614105758" y1="157.75000000000003" y2="160.75000000000003"/>
+  <line stroke="#888888" x1="531.8550614105758" x2="528.8550614105758" y1="160.75000000000003" y2="160.75000000000003"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="159.75000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="158.75000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="158.75000000000003" y2="159.75000000000003"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="159.75000000000003" y2="159.75000000000003"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="162.25000000000003" y2="161.25"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="161.25" y2="161.25"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="161.25" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="162.25000000000003" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="162.25000000000003" y2="161.25"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="161.25" y2="161.25"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="161.25" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="162.25000000000003" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="164.75000000000003" y2="163.75"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="163.75" y2="163.75"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="163.75" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="164.75000000000003" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="164.75000000000003" y2="163.75"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="163.75" y2="163.75"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="163.75" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="164.75000000000003" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="167.25000000000003" y2="166.25"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="166.25" y2="166.25"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="166.25" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="167.25000000000003" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="167.25000000000003" y2="166.25"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="166.25" y2="166.25"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="166.25" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="167.25000000000003" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="169.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="168.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="168.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="169.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="169.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="168.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="168.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="169.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="172.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="171.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="171.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="172.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="172.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="171.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="171.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="172.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="174.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="173.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="173.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="174.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="174.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="173.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="173.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="174.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="177.25" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="176.25000000000003" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="176.25000000000003" y2="177.25"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="177.25" y2="177.25"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="177.25" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="176.25000000000003" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="176.25000000000003" y2="177.25"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="177.25" y2="177.25"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="179.75" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="178.75000000000003" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="178.75000000000003" y2="179.75"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="179.75" y2="179.75"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="179.75" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="178.75000000000003" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="178.75000000000003" y2="179.75"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="179.75" y2="179.75"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="182.25" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="181.25000000000003" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="181.25000000000003" y2="182.25"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="182.25" y2="182.25"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="182.25" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="181.25000000000003" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="181.25000000000003" y2="182.25"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="182.25" y2="182.25"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="184.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="183.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="183.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="184.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="184.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="183.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="183.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="184.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="187.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="186.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="186.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="187.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="187.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="186.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="186.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="187.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="189.75000000000003" y2="188.75"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="188.75" y2="188.75"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="188.75" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="189.75000000000003" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="189.75000000000003" y2="188.75"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="188.75" y2="188.75"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="188.75" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="189.75000000000003" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="192.25000000000003" y2="191.25"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="191.25" y2="191.25"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="191.25" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="192.25000000000003" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="192.25000000000003" y2="191.25"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="191.25" y2="191.25"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="191.25" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="192.25000000000003" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="194.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="193.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="193.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="194.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="194.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="193.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="193.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="194.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="197.25000000000003" y2="196.25000000000003"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="196.25000000000003" y2="196.25000000000003"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="196.25000000000003" y2="197.25000000000003"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="197.25000000000003" y2="197.25000000000003"/>
+  <line stroke="#888888" x1="548.8550614105757" x2="548.8550614105757" y1="198.25000000000003" y2="195.25000000000003"/>
+  <line stroke="#888888" x1="548.8550614105757" x2="551.8550614105758" y1="195.25000000000003" y2="195.25000000000003"/>
+  <line stroke="#888888" x1="551.8550614105758" x2="551.8550614105758" y1="195.25000000000003" y2="198.25000000000003"/>
+  <line stroke="#888888" x1="551.8550614105758" x2="548.8550614105757" y1="198.25000000000003" y2="198.25000000000003"/>
+  <line stroke="#888888" x1="544.6050614105757" x2="536.1050614105757" y1="155.25000000000003" y2="155.25000000000003"/>
+  <line stroke="#888888" x1="536.1050614105757" x2="536.1050614105757" y1="155.25000000000003" y2="154.75"/>
+  <line stroke="#888888" x1="536.1050614105757" x2="544.6050614105757" y1="154.75" y2="154.75"/>
+  <line stroke="#888888" x1="544.6050614105757" x2="544.6050614105757" y1="154.75" y2="155.25000000000003"/>
+  <line stroke="#888888" x1="536.1050614105757" x2="544.6050614105757" y1="203.00000000000003" y2="203.00000000000003"/>
+  <line stroke="#888888" x1="544.6050614105757" x2="544.6050614105757" y1="203.00000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="544.6050614105757" x2="536.1050614105757" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="536.1050614105757" x2="536.1050614105757" y1="203.50000000000003" y2="203.00000000000003"/>
+  <line stroke="#888888" x1="520.8550614105757" x2="525.8550614105757" y1="158.59090909090912" y2="158.59090909090912"/>
+  <line stroke="#888888" x1="525.8550614105757" x2="525.8550614105757" y1="158.59090909090912" y2="169.68181818181822"/>
+  <line stroke="#888888" x1="525.8550614105757" x2="520.8550614105757" y1="169.68181818181822" y2="169.68181818181822"/>
+  <line stroke="#888888" x1="520.8550614105757" x2="525.8550614105757" y1="186.31818181818184" y2="186.31818181818184"/>
+  <line stroke="#888888" x1="525.8550614105757" x2="525.8550614105757" y1="186.31818181818184" y2="197.40909090909093"/>
+  <line stroke="#888888" x1="525.8550614105757" x2="520.8550614105757" y1="197.40909090909093" y2="197.40909090909093"/>
+  <line stroke="#888888" x1="546.1050614105758" x2="549.6050614105758" y1="131.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="549.6050614105758" x2="549.6050614105758" y1="131.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="549.6050614105758" x2="546.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 3a4d1dbdb2771e323cee0efa7f3149205f6cf76f..1a4f5755ea9489fc23944ee9b5d24f8414b9159c 100644
--- a/rocolib/output/BoatWithServoStackBattery/graph-autofold-default.dxf
+++ b/rocolib/output/BoatWithServoStackBattery/graph-autofold-default.dxf
@@ -1053,13 +1053,13 @@ LINE
   8
 cut
  10
-150.3085560697229
+160.30855606972293
  20
 105.00000000000001
  30
 0.0
  11
-88.65427803486146
+98.65427803486146
  21
 105.00000000000001
  31
@@ -1071,13 +1071,13 @@ LINE
   8
 cut
  10
-88.65427803486146
+98.65427803486146
  20
 166.0
  30
 0.0
  11
-150.3085560697229
+160.30855606972293
  21
 166.0
  31
@@ -1091,13 +1091,13 @@ DOTTED
   8
 -45
  10
-88.65427803486146
+98.65427803486146
  20
 166.0
  30
 0.0
  11
-88.65427803486146
+98.65427803486146
  21
 105.00000000000001
  31
@@ -1109,13 +1109,13 @@ LINE
   8
 cut
  10
-160.30855606972293
+170.30855606972293
  20
 105.00000000000001
  30
 0.0
  11
-150.3085560697229
+160.30855606972293
  21
 105.00000000000001
  31
@@ -1127,13 +1127,13 @@ LINE
   8
 cut
  10
-160.30855606972293
+170.30855606972293
  20
 166.0
  30
 0.0
  11
-160.30855606972293
+170.30855606972293
  21
 105.00000000000001
  31
@@ -1145,13 +1145,13 @@ LINE
   8
 cut
  10
-150.3085560697229
+160.30855606972293
  20
 166.0
  30
 0.0
  11
-160.30855606972293
+170.30855606972293
  21
 166.0
  31
@@ -1163,13 +1163,13 @@ LINE
   8
 cut
  10
-61.65427803486146
+71.65427803486145
  20
 166.0
  30
 0.0
  11
-88.65427803486146
+98.65427803486146
  21
 166.0
  31
@@ -1183,13 +1183,13 @@ DOTTED
   8
 -45
  10
-61.65427803486146
+71.65427803486145
  20
 105.00000000000001
  30
 0.0
  11
-61.65427803486146
+71.65427803486145
  21
 166.0
  31
@@ -1203,13 +1203,49 @@ DOTTED
   8
 90
  10
-88.65427803486146
+98.65427803486146
+ 20
+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
+166.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+71.65427803486145
  20
 105.00000000000001
  30
 0.0
  11
-61.65427803486146
+10.000000000000002
  21
 105.00000000000001
  31
@@ -1227,7 +1263,7 @@ cut
  30
 0.0
  11
-61.65427803486146
+10.000000000000002
  21
 166.0
  31
@@ -1257,7 +1293,7 @@ LINE
   8
 cut
  10
-61.65427803486146
+10.000000000000002
  20
 105.00000000000001
  30
@@ -1275,13 +1311,13 @@ LINE
   8
 cut
  10
-88.65427803486146
+98.65427803486146
  20
 105.00000000000001
  30
 0.0
  11
-88.65427803486146
+98.65427803486146
  21
 88.00000000000001
  31
@@ -1293,13 +1329,13 @@ LINE
   8
 cut
  10
-61.65427803486146
+71.65427803486145
  20
 88.00000000000001
  30
 0.0
  11
-61.65427803486146
+71.65427803486145
  21
 105.00000000000001
  31
@@ -1313,13 +1349,13 @@ DOTTED
   8
 90
  10
-88.65427803486146
+98.65427803486146
  20
 88.00000000000001
  30
 0.0
  11
-61.65427803486146
+71.65427803486145
  21
 88.00000000000001
  31
@@ -1331,13 +1367,13 @@ LINE
   8
 cut
  10
-88.65427803486146
+98.65427803486146
  20
 88.00000000000001
  30
 0.0
  11
-88.65427803486146
+98.65427803486146
  21
 27.000000000000004
  31
@@ -1349,13 +1385,13 @@ LINE
   8
 cut
  10
-61.65427803486146
+71.65427803486145
  20
 27.000000000000004
  30
 0.0
  11
-61.65427803486146
+71.65427803486145
  21
 88.00000000000001
  31
@@ -1369,13 +1405,13 @@ DOTTED
   8
 90
  10
-88.65427803486146
+98.65427803486146
  20
 27.000000000000004
  30
 0.0
  11
-61.65427803486146
+71.65427803486145
  21
 27.000000000000004
  31
@@ -1387,13 +1423,13 @@ LINE
   8
 cut
  10
-88.65427803486146
+98.65427803486146
  20
 27.000000000000004
  30
 0.0
  11
-88.65427803486146
+98.65427803486146
  21
 10.000000000000002
  31
@@ -1405,13 +1441,13 @@ LINE
   8
 cut
  10
-61.65427803486146
+71.65427803486145
  20
 10.000000000000002
  30
 0.0
  11
-61.65427803486146
+71.65427803486145
  21
 27.000000000000004
  31
@@ -1425,13 +1461,13 @@ DOTTED
   8
 90
  10
-61.65427803486146
+71.65427803486145
  20
 10.000000000000002
  30
 0.0
  11
-88.65427803486146
+98.65427803486146
  21
 10.000000000000002
  31
@@ -1443,13 +1479,13 @@ LINE
   8
 cut
  10
-61.65427803486146
+71.65427803486145
  20
 0.0
  30
 0.0
  11
-61.65427803486146
+71.65427803486145
  21
 10.000000000000002
  31
@@ -1461,13 +1497,13 @@ LINE
   8
 cut
  10
-88.65427803486146
+98.65427803486146
  20
 0.0
  30
 0.0
  11
-61.65427803486146
+71.65427803486145
  21
 0.0
  31
@@ -1479,13 +1515,13 @@ LINE
   8
 cut
  10
-88.65427803486146
+98.65427803486146
  20
 10.000000000000002
  30
 0.0
  11
-88.65427803486146
+98.65427803486146
  21
 0.0
  31
@@ -1497,13 +1533,13 @@ LINE
   8
 cut
  10
-157.80855606972293
+167.80855606972293
  20
 154.90909090909093
  30
 0.0
  11
-152.8085560697229
+162.80855606972293
  21
 154.90909090909093
  31
@@ -1515,13 +1551,13 @@ LINE
   8
 cut
  10
-152.8085560697229
+162.80855606972293
  20
 154.90909090909093
  30
 0.0
  11
-152.8085560697229
+162.80855606972293
  21
 143.8181818181818
  31
@@ -1533,13 +1569,13 @@ LINE
   8
 cut
  10
-152.8085560697229
+162.80855606972293
  20
 143.8181818181818
  30
 0.0
  11
-157.80855606972293
+167.80855606972293
  21
 143.8181818181818
  31
@@ -1551,13 +1587,13 @@ LINE
   8
 cut
  10
-157.80855606972293
+167.80855606972293
  20
 127.1818181818182
  30
 0.0
  11
-152.8085560697229
+162.80855606972293
  21
 127.1818181818182
  31
@@ -1569,13 +1605,13 @@ LINE
   8
 cut
  10
-152.8085560697229
+162.80855606972293
  20
 127.1818181818182
  30
 0.0
  11
-152.8085560697229
+162.80855606972293
  21
 116.09090909090911
  31
@@ -1587,13 +1623,13 @@ LINE
   8
 cut
  10
-152.8085560697229
+162.80855606972293
  20
 116.09090909090911
  30
 0.0
  11
-157.80855606972293
+167.80855606972293
  21
 116.09090909090911
  31
@@ -1605,13 +1641,13 @@ LINE
   8
 cut
  10
-84.15427803486145
+94.15427803486146
  20
 102.50000000000001
  30
 0.0
  11
-84.15427803486145
+94.15427803486146
  21
 108.50000000000001
  31
@@ -1623,13 +1659,13 @@ LINE
   8
 cut
  10
-84.15427803486145
+94.15427803486146
  20
 108.50000000000001
  30
 0.0
  11
-66.15427803486145
+76.15427803486145
  21
 108.50000000000001
  31
@@ -1641,13 +1677,13 @@ LINE
   8
 cut
  10
-66.15427803486145
+76.15427803486145
  20
 108.50000000000001
  30
 0.0
  11
-66.15427803486145
+76.15427803486145
  21
 102.50000000000001
  31
@@ -1659,13 +1695,13 @@ LINE
   8
 cut
  10
-66.15427803486145
+76.15427803486145
  20
 102.50000000000001
  30
 0.0
  11
-84.15427803486145
+94.15427803486146
  21
 102.50000000000001
  31
@@ -1677,13 +1713,13 @@ LINE
   8
 cut
  10
-70.40427803486146
+80.40427803486146
  20
 158.25000000000003
  30
 0.0
  11
-79.90427803486145
+89.90427803486145
  21
 158.25000000000003
  31
@@ -1695,13 +1731,13 @@ LINE
   8
 cut
  10
-79.90427803486145
+89.90427803486145
  20
 158.25000000000003
  30
 0.0
  11
-79.90427803486145
+89.90427803486145
  21
 158.75000000000003
  31
@@ -1713,13 +1749,13 @@ LINE
   8
 cut
  10
-79.90427803486145
+89.90427803486145
  20
 158.75000000000003
  30
 0.0
  11
-70.40427803486146
+80.40427803486146
  21
 158.75000000000003
  31
@@ -1731,13 +1767,13 @@ LINE
   8
 cut
  10
-70.40427803486146
+80.40427803486146
  20
 158.75000000000003
  30
 0.0
  11
-70.40427803486146
+80.40427803486146
  21
 158.25000000000003
  31
@@ -1749,13 +1785,121 @@ LINE
   8
 cut
  10
-79.65427803486145
+2.5000000000000004
+ 20
+116.09090909090911
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+116.09090909090911
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+7.500000000000001
+ 20
+116.09090909090911
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+127.18181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+7.500000000000001
+ 20
+127.18181818181822
+ 30
+0.0
+ 11
+2.5000000000000004
+ 21
+127.18181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+2.5000000000000004
+ 20
+143.81818181818184
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+143.81818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+7.500000000000001
+ 20
+143.81818181818184
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+154.90909090909093
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+7.500000000000001
+ 20
+154.90909090909093
+ 30
+0.0
+ 11
+2.5000000000000004
+ 21
+154.90909090909093
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+89.65427803486146
  20
 2.5000000000000004
  30
 0.0
  11
-79.65427803486145
+89.65427803486146
  21
 7.500000000000001
  31
@@ -1767,13 +1911,13 @@ LINE
   8
 cut
  10
-79.65427803486145
+89.65427803486146
  20
 7.500000000000001
  30
 0.0
  11
-70.65427803486145
+80.65427803486146
  21
 7.500000000000001
  31
@@ -1785,13 +1929,13 @@ LINE
   8
 cut
  10
-70.65427803486145
+80.65427803486146
  20
 7.500000000000001
  30
 0.0
  11
-70.65427803486145
+80.65427803486146
  21
 2.5000000000000004
  31
@@ -1803,13 +1947,13 @@ LINE
   8
 cut
  10
-317.33180874014937
+327.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-256.33180874014937
+266.3318087401493
  21
 135.50000000000003
  31
@@ -1821,13 +1965,13 @@ LINE
   8
 cut
  10
-351.33180874014937
+361.3318087401493
  20
 135.50000000000003
  30
 0.0
  11
-341.33180874014937
+351.33180874014937
  21
 135.50000000000003
  31
@@ -1839,13 +1983,13 @@ LINE
   8
 cut
  10
-412.33180874014937
+422.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-412.33180874014937
+422.33180874014937
  21
 135.50000000000003
  31
@@ -1857,13 +2001,13 @@ LINE
   8
 cut
  10
-256.33180874014937
+266.3318087401493
  20
 135.50000000000003
  30
 0.0
  11
-256.33180874014937
+266.3318087401493
  21
 135.50000000000003
  31
@@ -1875,13 +2019,13 @@ LINE
   8
 cut
  10
-317.33180874014937
+327.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-243.33180874014934
+253.33180874014934
  21
 135.50000000000003
  31
@@ -1893,13 +2037,13 @@ LINE
   8
 cut
  10
-351.33180874014937
+361.3318087401493
  20
 135.50000000000003
  30
 0.0
  11
-341.33180874014937
+351.33180874014937
  21
 135.50000000000003
  31
@@ -1911,13 +2055,13 @@ LINE
   8
 cut
  10
-412.33180874014937
+422.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-412.33180874014937
+422.33180874014937
  21
 135.50000000000003
  31
@@ -1929,13 +2073,13 @@ LINE
   8
 cut
  10
-341.33180874014937
+351.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-351.33180874014937
+361.3318087401493
  21
 135.50000000000003
  31
@@ -1947,13 +2091,13 @@ LINE
   8
 cut
  10
-243.33180874014934
+253.33180874014934
  20
 135.50000000000003
  30
 0.0
  11
-317.33180874014937
+327.33180874014937
  21
 135.50000000000003
  31
@@ -1965,13 +2109,13 @@ LINE
   8
 cut
  10
-243.33180874014934
+253.33180874014934
  20
 135.50000000000003
  30
 0.0
  11
-243.33180874014934
+253.33180874014934
  21
 135.50000000000003
  31
@@ -1983,13 +2127,13 @@ LINE
   8
 cut
  10
-341.33180874014937
+351.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-341.33180874014937
+351.33180874014937
  21
 101.50000000000001
  31
@@ -2003,13 +2147,13 @@ DOTTED
   8
 90
  10
-317.33180874014937
+327.33180874014937
  20
 101.50000000000001
  30
 0.0
  11
-317.33180874014937
+327.33180874014937
  21
 135.50000000000003
  31
@@ -2021,13 +2165,13 @@ LINE
   8
 cut
  10
-317.33180874014937
+327.33180874014937
  20
 65.5
  30
 0.0
  11
-317.33180874014937
+327.33180874014937
  21
 101.50000000000001
  31
@@ -2041,13 +2185,13 @@ DOTTED
   8
 -90
  10
-317.33180874014937
+327.33180874014937
  20
 65.5
  30
 0.0
  11
-341.33180874014937
+351.33180874014937
  21
 65.5
  31
@@ -2059,13 +2203,13 @@ LINE
   8
 cut
  10
-341.33180874014937
+351.33180874014937
  20
 101.50000000000001
  30
 0.0
  11
-341.33180874014937
+351.33180874014937
  21
 65.5
  31
@@ -2077,13 +2221,13 @@ LINE
   8
 cut
  10
-341.33180874014937
+351.33180874014937
  20
 65.5
  30
 0.0
  11
-341.33180874014937
+351.33180874014937
  21
 20.5
  31
@@ -2095,13 +2239,13 @@ LINE
   8
 cut
  10
-317.33180874014937
+327.33180874014937
  20
 20.5
  30
 0.0
  11
-317.33180874014937
+327.33180874014937
  21
 65.5
  31
@@ -2113,13 +2257,13 @@ LINE
   8
 cut
  10
-317.33180874014937
+327.33180874014937
  20
 15.500000000000004
  30
 0.0
  11
-317.33180874014937
+327.33180874014937
  21
 20.5
  31
@@ -2131,13 +2275,13 @@ LINE
   8
 cut
  10
-341.33180874014937
+351.33180874014937
  20
 15.500000000000004
  30
 0.0
  11
-317.33180874014937
+327.33180874014937
  21
 15.500000000000004
  31
@@ -2149,13 +2293,13 @@ LINE
   8
 cut
  10
-341.33180874014937
+351.33180874014937
  20
 20.5
  30
 0.0
  11
-341.33180874014937
+351.33180874014937
  21
 15.500000000000004
  31
@@ -2167,13 +2311,13 @@ LINE
   8
 cut
  10
-317.33180874014937
+327.33180874014937
  20
 101.50000000000001
  30
 0.0
  11
-297.3318087401493
+307.3318087401493
  21
 101.50000000000001
  31
@@ -2185,13 +2329,13 @@ LINE
   8
 cut
  10
-297.3318087401493
+307.3318087401493
  20
 135.50000000000003
  30
 0.0
  11
-317.33180874014937
+327.33180874014937
  21
 135.50000000000003
  31
@@ -2205,13 +2349,13 @@ DOTTED
   8
 90
  10
-297.3318087401493
+307.3318087401493
  20
 101.50000000000001
  30
 0.0
  11
-297.3318087401493
+307.3318087401493
  21
 135.50000000000003
  31
@@ -2223,13 +2367,13 @@ LINE
   8
 cut
  10
-297.3318087401493
+307.3318087401493
  20
 101.50000000000001
  30
 0.0
  11
-273.33180874014937
+283.3318087401493
  21
 101.50000000000001
  31
@@ -2241,13 +2385,13 @@ LINE
   8
 cut
  10
-273.33180874014937
+283.3318087401493
  20
 135.50000000000003
  30
 0.0
  11
-297.3318087401493
+307.3318087401493
  21
 135.50000000000003
  31
@@ -2261,13 +2405,13 @@ DOTTED
   8
 90
  10
-273.33180874014937
+283.3318087401493
  20
 101.50000000000001
  30
 0.0
  11
-273.33180874014937
+283.3318087401493
  21
 135.50000000000003
  31
@@ -2279,13 +2423,13 @@ LINE
   8
 cut
  10
-273.33180874014937
+283.3318087401493
  20
 101.50000000000001
  30
 0.0
  11
-253.33180874014934
+263.33180874014937
  21
 101.50000000000001
  31
@@ -2297,13 +2441,13 @@ LINE
   8
 cut
  10
-253.33180874014934
+263.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-273.33180874014937
+283.3318087401493
  21
 135.50000000000003
  31
@@ -2317,13 +2461,13 @@ DOTTED
   8
 90
  10
-253.33180874014934
+263.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-253.33180874014934
+263.33180874014937
  21
 101.50000000000001
  31
@@ -2335,13 +2479,13 @@ LINE
   8
 cut
  10
-243.33180874014934
+253.33180874014934
  20
 135.50000000000003
  30
 0.0
  11
-253.33180874014934
+263.33180874014937
  21
 135.50000000000003
  31
@@ -2353,13 +2497,13 @@ LINE
   8
 cut
  10
-243.33180874014934
+253.33180874014934
  20
 101.50000000000001
  30
 0.0
  11
-243.33180874014934
+253.33180874014934
  21
 135.50000000000003
  31
@@ -2371,13 +2515,13 @@ LINE
   8
 cut
  10
-253.33180874014934
+263.33180874014937
  20
 101.50000000000001
  30
 0.0
  11
-243.33180874014934
+253.33180874014934
  21
 101.50000000000001
  31
@@ -2391,13 +2535,13 @@ DOTTED
   8
 45
  10
-351.33180874014937
+361.3318087401493
  20
 99.36137800081471
  30
 0.0
  11
-412.33180874014937
+422.33180874014937
  21
 99.36137800081471
  31
@@ -2409,13 +2553,13 @@ LINE
   8
 cut
  10
-412.33180874014937
+422.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-412.33180874014937
+422.33180874014937
  21
 99.36137800081471
  31
@@ -2427,13 +2571,13 @@ LINE
   8
 cut
  10
-351.33180874014937
+361.3318087401493
  20
 99.36137800081471
  30
 0.0
  11
-351.33180874014937
+361.3318087401493
  21
 135.50000000000003
  31
@@ -2447,13 +2591,13 @@ DOTTED
   8
 45
  10
-412.33180874014937
+422.33180874014937
  20
 75.36137800081471
  30
 0.0
  11
-351.33180874014937
+361.3318087401493
  21
 75.36137800081471
  31
@@ -2467,13 +2611,13 @@ DOTTED
   8
 90
  10
-412.33180874014937
+422.33180874014937
  20
 75.36137800081471
  30
 0.0
  11
-412.33180874014937
+422.33180874014937
  21
 99.36137800081471
  31
@@ -2485,13 +2629,13 @@ LINE
   8
 cut
  10
-351.33180874014937
+361.3318087401493
  20
 39.22275600162939
  30
 0.0
  11
-351.33180874014937
+361.3318087401493
  21
 75.36137800081472
  31
@@ -2503,13 +2647,13 @@ LINE
   8
 cut
  10
-412.33180874014937
+422.33180874014937
  20
 75.36137800081472
  30
 0.0
  11
-412.33180874014937
+422.33180874014937
  21
 39.22275600162939
  31
@@ -2521,13 +2665,13 @@ LINE
   8
 cut
  10
-351.33180874014937
+361.3318087401493
  20
 29.222756001629396
  30
 0.0
  11
-351.33180874014937
+361.3318087401493
  21
 39.22275600162939
  31
@@ -2539,13 +2683,13 @@ LINE
   8
 cut
  10
-412.33180874014937
+422.33180874014937
  20
 29.222756001629396
  30
 0.0
  11
-351.33180874014937
+361.3318087401493
  21
 29.222756001629396
  31
@@ -2557,13 +2701,13 @@ LINE
   8
 cut
  10
-412.33180874014937
+422.33180874014937
  20
 39.22275600162939
  30
 0.0
  11
-412.33180874014937
+422.33180874014937
  21
 29.222756001629396
  31
@@ -2575,13 +2719,13 @@ LINE
   8
 cut
  10
-422.33180874014937
+432.33180874014937
  20
 75.36137800081471
  30
 0.0
  11
-412.33180874014937
+422.33180874014937
  21
 75.36137800081471
  31
@@ -2593,13 +2737,13 @@ LINE
   8
 cut
  10
-422.33180874014937
+432.33180874014937
  20
 99.36137800081471
  30
 0.0
  11
-422.33180874014937
+432.33180874014937
  21
 75.36137800081471
  31
@@ -2611,13 +2755,13 @@ LINE
   8
 cut
  10
-412.33180874014937
+422.33180874014937
  20
 99.36137800081471
  30
 0.0
  11
-422.33180874014937
+432.33180874014937
  21
 99.36137800081471
  31
@@ -2629,13 +2773,13 @@ LINE
   8
 cut
  10
-341.33180874014937
+351.33180874014937
  20
 99.36137800081471
  30
 0.0
  11
-351.33180874014937
+361.3318087401493
  21
 99.36137800081471
  31
@@ -2647,13 +2791,13 @@ LINE
   8
 cut
  10
-341.33180874014937
+351.33180874014937
  20
 75.36137800081471
  30
 0.0
  11
-341.33180874014937
+351.33180874014937
  21
 99.36137800081471
  31
@@ -2665,13 +2809,13 @@ LINE
   8
 cut
  10
-351.33180874014937
+361.3318087401493
  20
 75.36137800081471
  30
 0.0
  11
-341.33180874014937
+351.33180874014937
  21
 75.36137800081471
  31
@@ -2685,13 +2829,13 @@ DOTTED
   8
 90
  10
-412.33180874014937
+422.33180874014937
  20
 205.50000000000003
  30
 0.0
  11
-256.33180874014937
+266.3318087401493
  21
 205.50000000000003
  31
@@ -2705,13 +2849,13 @@ DOTTED
   8
 41.987212495816664
  10
-412.33180874014937
+422.33180874014937
  20
 205.50000000000003
  30
 0.0
  11
-412.33180874014937
+422.33180874014937
  21
 135.50000000000003
  31
@@ -2725,13 +2869,13 @@ DOTTED
   8
 -174
  10
-412.33180874014937
+422.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-464.84617955831095
+474.84617955831095
  21
 135.50000000000003
  31
@@ -2745,13 +2889,13 @@ DOTTED
   8
 -180
  10
-412.33180874014937
+422.33180874014937
  20
 205.50000000000003
  30
 0.0
  11
-464.84617955831095
+474.84617955831095
  21
 135.50000000000003
  31
@@ -2763,13 +2907,13 @@ LINE
   8
 cut
  10
-412.33180874014937
+422.33180874014937
  20
-117.99520972727949
+127.99794702597693
  30
 0.0
  11
-412.33180874014937
+422.33180874014937
  21
 135.50000000000003
  31
@@ -2781,15 +2925,15 @@ LINE
   8
 cut
  10
-464.84617955831095
+474.84617955831095
  20
-117.99520972727949
+127.99794702597693
  30
 0.0
  11
-412.33180874014937
+422.33180874014937
  21
-117.99520972727949
+127.99794702597693
  31
 0.0
   0
@@ -2799,15 +2943,15 @@ LINE
   8
 cut
  10
-464.84617955831095
+474.84617955831095
  20
 135.50000000000003
  30
 0.0
  11
-464.84617955831095
+474.84617955831095
  21
-117.99520972727949
+127.99794702597693
  31
 0.0
   0
@@ -2819,13 +2963,13 @@ DOTTED
   8
 180
  10
-412.33180874014937
+422.33180874014937
  20
 205.50000000000003
  30
 0.0
  11
-479.5369564140486
+489.5369564140486
  21
 185.91765779766357
  31
@@ -2837,13 +2981,13 @@ LINE
   8
 cut
  10
-479.5369564140486
+489.5369564140486
  20
 185.91765779766357
  30
 0.0
  11
-464.84617955831095
+474.84617955831095
  21
 135.50000000000003
  31
@@ -2855,13 +2999,13 @@ LINE
   8
 cut
  10
-494.22773326978614
+504.22773326978614
  20
 236.33531559532716
  30
 0.0
  11
-479.5369564140486
+489.5369564140486
  21
 185.91765779766357
  31
@@ -2873,13 +3017,13 @@ LINE
   8
 cut
  10
-498.3550614105757
+508.3550614105757
  20
 250.50000000000003
  30
 0.0
  11
-494.22773326978614
+504.22773326978614
  21
 236.33531559532716
  31
@@ -2893,13 +3037,13 @@ DOTTED
   8
 57.019129652304315
  10
-498.3550614105757
+508.3550614105757
  20
 250.50000000000003
  30
 0.0
  11
-412.33180874014937
+422.33180874014937
  21
 205.50000000000003
  31
@@ -2913,13 +3057,13 @@ DOTTED
   8
 54.462322208025626
  10
-412.33180874014937
+422.33180874014937
  20
 250.50000000000003
  30
 0.0
  11
-412.33180874014937
+422.33180874014937
  21
 205.50000000000003
  31
@@ -2933,13 +3077,13 @@ DOTTED
   8
 54.462322208025626
  10
-412.3318087401494
+422.3318087401494
  20
 295.5
  30
 0.0
  11
-412.33180874014937
+422.33180874014937
  21
 250.50000000000006
  31
@@ -2953,13 +3097,13 @@ DOTTED
   8
 57.019129652304315
  10
-498.35506141057573
+508.35506141057573
  20
 250.50000000000003
  30
 0.0
  11
-412.3318087401494
+422.3318087401494
  21
 295.50000000000006
  31
@@ -2973,13 +3117,13 @@ DOTTED
   8
 180
  10
-479.5369564140486
+489.5369564140486
  20
 315.08234220233646
  30
 0.0
  11
-412.33180874014937
+422.33180874014937
  21
 295.50000000000006
  31
@@ -2991,13 +3135,13 @@ LINE
   8
 cut
  10
-494.22773326978614
+504.22773326978614
  20
 264.6646844046729
  30
 0.0
  11
-498.3550614105757
+508.3550614105757
  21
 250.50000000000003
  31
@@ -3009,13 +3153,13 @@ LINE
   8
 cut
  10
-479.5369564140486
+489.5369564140486
  20
 315.08234220233646
  30
 0.0
  11
-494.22773326978614
+504.22773326978614
  21
 264.6646844046729
  31
@@ -3027,13 +3171,13 @@ LINE
   8
 cut
  10
-464.84617955831106
+474.84617955831106
  20
 365.50000000000006
  30
 0.0
  11
-479.5369564140486
+489.5369564140486
  21
 315.0823422023364
  31
@@ -3047,13 +3191,13 @@ DOTTED
   8
 -180
  10
-464.84617955831106
+474.84617955831106
  20
 365.50000000000006
  30
 0.0
  11
-412.3318087401494
+422.3318087401494
  21
 295.50000000000006
  31
@@ -3067,13 +3211,13 @@ DOTTED
   8
 41.987212495816664
  10
-412.3318087401495
+422.3318087401495
  20
 365.5000000000001
  30
 0.0
  11
-412.33180874014937
+422.33180874014937
  21
 295.5
  31
@@ -3087,31 +3231,13 @@ DOTTED
   8
 -174
  10
-464.84617955831106
+474.84617955831106
  20
 365.50000000000006
  30
 0.0
  11
-412.3318087401495
- 21
-365.5000000000001
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-256.3318087401494
- 20
-365.5000000000002
- 30
-0.0
- 11
-412.3318087401495
+422.3318087401495
  21
 365.5000000000001
  31
@@ -3125,35 +3251,965 @@ DOTTED
   8
 90
  10
-412.3318087401494
+422.3318087401494
  20
 295.50000000000006
  30
 0.0
  11
-256.33180874014937
+266.3318087401493
  21
 295.50000000000017
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-41.987212495816664
+cut
  10
-256.33180874014937
+351.3318087401494
  20
-295.50000000000017
+365.50000000000017
  30
 0.0
  11
-256.3318087401494
+361.3318087401494
  21
-365.5000000000002
+365.50000000000017
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+266.33180874014937
+ 20
+365.5000000000003
+ 30
+0.0
+ 11
+327.3318087401494
+ 21
+365.50000000000017
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+266.33180874014937
+ 20
+365.5000000000003
+ 30
+0.0
+ 11
+266.33180874014937
+ 21
+365.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+422.3318087401495
+ 20
+365.5000000000001
+ 30
+0.0
+ 11
+422.3318087401495
+ 21
+365.5000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+361.3318087401494
+ 20
+365.50000000000017
+ 30
+0.0
+ 11
+422.3318087401495
+ 21
+365.5000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+351.3318087401494
+ 20
+365.50000000000017
+ 30
+0.0
+ 11
+361.3318087401494
+ 21
+365.50000000000017
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+253.33180874014937
+ 20
+365.5000000000003
+ 30
+0.0
+ 11
+327.3318087401494
+ 21
+365.50000000000017
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+253.33180874014937
+ 20
+365.5000000000003
+ 30
+0.0
+ 11
+253.33180874014937
+ 21
+365.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+327.3318087401494
+ 20
+365.50000000000017
+ 30
+0.0
+ 11
+253.33180874014937
+ 21
+365.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+361.3318087401494
+ 20
+365.50000000000017
+ 30
+0.0
+ 11
+351.3318087401494
+ 21
+365.50000000000017
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+422.3318087401495
+ 20
+365.5000000000001
+ 30
+0.0
+ 11
+422.3318087401495
+ 21
+365.5000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+351.3318087401494
+ 20
+399.5000000000001
+ 30
+0.0
+ 11
+351.3318087401494
+ 21
+365.50000000000017
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+327.3318087401494
+ 20
+365.50000000000017
+ 30
+0.0
+ 11
+327.3318087401495
+ 21
+399.5000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+351.3318087401495
+ 20
+435.50000000000017
+ 30
+0.0
+ 11
+351.3318087401494
+ 21
+399.5000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-90
+ 10
+351.3318087401495
+ 20
+435.50000000000017
+ 30
+0.0
+ 11
+327.3318087401495
+ 21
+435.50000000000017
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+327.3318087401495
+ 20
+399.5000000000001
+ 30
+0.0
+ 11
+327.3318087401495
+ 21
+435.50000000000017
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+327.3318087401495
+ 20
+435.50000000000017
+ 30
+0.0
+ 11
+327.33180874014954
+ 21
+480.50000000000017
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+351.3318087401495
+ 20
+480.50000000000017
+ 30
+0.0
+ 11
+351.3318087401494
+ 21
+435.50000000000017
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+327.33180874014954
+ 20
+480.50000000000017
+ 30
+0.0
+ 11
+351.3318087401495
+ 21
+480.50000000000017
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+327.3318087401494
+ 20
+365.50000000000017
+ 30
+0.0
+ 11
+307.33180874014937
+ 21
+365.50000000000017
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+307.3318087401495
+ 20
+399.5000000000001
+ 30
+0.0
+ 11
+327.3318087401495
+ 21
+399.5000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+307.33180874014937
+ 20
+365.50000000000017
+ 30
+0.0
+ 11
+307.3318087401495
+ 21
+399.5000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+307.33180874014937
+ 20
+365.50000000000017
+ 30
+0.0
+ 11
+283.33180874014937
+ 21
+365.50000000000017
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+283.3318087401494
+ 20
+399.5000000000001
+ 30
+0.0
+ 11
+307.3318087401495
+ 21
+399.5000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+283.33180874014937
+ 20
+365.50000000000017
+ 30
+0.0
+ 11
+283.3318087401494
+ 21
+399.5000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+283.33180874014937
+ 20
+365.50000000000017
+ 30
+0.0
+ 11
+263.3318087401494
+ 21
+365.50000000000017
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+263.3318087401494
+ 20
+399.5000000000001
+ 30
+0.0
+ 11
+283.3318087401494
+ 21
+399.5000000000001
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+90
+ 10
+263.3318087401494
+ 20
+399.5000000000001
+ 30
+0.0
+ 11
+263.3318087401494
+ 21
+365.50000000000017
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+253.33180874014943
+ 20
+399.5000000000001
+ 30
+0.0
+ 11
+263.3318087401494
+ 21
+399.5000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+253.3318087401494
+ 20
+365.50000000000017
+ 30
+0.0
+ 11
+253.33180874014943
+ 21
+399.5000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+263.3318087401494
+ 20
+365.50000000000017
+ 30
+0.0
+ 11
+253.3318087401494
+ 21
+365.50000000000017
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+41.987212495816664
+ 10
+266.3318087401493
+ 20
+295.50000000000017
+ 30
+0.0
+ 11
+266.33180874014937
+ 21
+365.5000000000002
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-174
+ 10
+266.33180874014937
+ 20
+365.5000000000003
+ 30
+0.0
+ 11
+213.81743792198782
+ 21
+365.5000000000003
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-180
+ 10
+266.3318087401493
+ 20
+295.5000000000002
+ 30
+0.0
+ 11
+213.81743792198782
+ 21
+365.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+266.33180874014937
+ 20
+373.00205297402334
+ 30
+0.0
+ 11
+266.33180874014937
+ 21
+365.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+213.81743792198782
+ 20
+373.0020529740234
+ 30
+0.0
+ 11
+266.33180874014937
+ 21
+373.00205297402334
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+213.81743792198782
+ 20
+365.5000000000003
+ 30
+0.0
+ 11
+213.81743792198782
+ 21
+373.0020529740234
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+180
+ 10
+266.3318087401493
+ 20
+295.50000000000017
+ 30
+0.0
+ 11
+199.12666106625016
+ 21
+315.08234220233675
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+199.12666106625016
+ 20
+315.08234220233675
+ 30
+0.0
+ 11
+213.81743792198782
+ 21
+365.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+184.43588421051248
+ 20
+264.6646844046731
+ 30
+0.0
+ 11
+199.12666106625016
+ 21
+315.08234220233675
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+180.30855606972295
+ 20
+250.50000000000028
+ 30
+0.0
+ 11
+184.43588421051248
+ 21
+264.6646844046731
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+57.019129652304315
+ 10
+180.30855606972295
+ 20
+250.50000000000028
+ 30
+0.0
+ 11
+266.3318087401493
+ 21
+295.50000000000017
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+54.462322208025626
+ 10
+266.3318087401493
+ 20
+250.50000000000017
+ 30
+0.0
+ 11
+266.3318087401493
+ 21
+295.50000000000017
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+54.462322208025626
+ 10
+266.33180874014926
+ 20
+205.50000000000017
+ 30
+0.0
+ 11
+266.3318087401493
+ 21
+250.5000000000002
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+57.019129652304315
+ 10
+180.3085560697229
+ 20
+250.5000000000003
+ 30
+0.0
+ 11
+266.33180874014926
+ 21
+205.50000000000014
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+180
+ 10
+199.12666106624997
+ 20
+185.91765779766385
+ 30
+0.0
+ 11
+266.33180874014926
+ 21
+205.50000000000014
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+184.43588421051243
+ 20
+236.33531559532744
+ 30
+0.0
+ 11
+180.3085560697229
+ 21
+250.5000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+199.12666106624997
+ 20
+185.91765779766385
+ 30
+0.0
+ 11
+184.43588421051243
+ 21
+236.33531559532744
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+213.81743792198745
+ 20
+135.50000000000023
+ 30
+0.0
+ 11
+199.12666106624997
+ 21
+185.91765779766385
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+-180
+ 10
+213.81743792198745
+ 20
+135.50000000000023
+ 30
+0.0
+ 11
+266.3318087401492
+ 21
+205.50000000000017
+ 31
+0.0
+  0
+LINE
+  6
+DOTTED
+ 62
+1
+  8
+41.987212495816664
+ 10
+266.3318087401491
+ 20
+135.5000000000001
+ 30
+0.0
+ 11
+266.33180874014926
+ 21
+205.50000000000017
  31
 0.0
   0
@@ -3161,39 +4217,109 @@ LINE
   6
 DOTTED
  62
-1
+1
+  8
+-174
+ 10
+213.81743792198748
+ 20
+135.50000000000023
+ 30
+0.0
+ 11
+266.3318087401491
+ 21
+135.5000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+213.81743792198745
+ 20
+127.99794702597715
+ 30
+0.0
+ 11
+213.81743792198748
+ 21
+135.50000000000023
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+266.3318087401491
+ 20
+127.99794702597704
+ 30
+0.0
+ 11
+213.81743792198745
+ 21
+127.99794702597715
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+266.3318087401491
+ 20
+135.5000000000001
+ 30
+0.0
+ 11
+266.3318087401491
+ 21
+127.99794702597704
+ 31
+0.0
+  0
+LINE
+ 62
+5
   8
--174
+cut
  10
-256.3318087401494
+474.84617955831106
  20
-365.5000000000003
+373.0020529740231
  30
 0.0
  11
-203.8174379219878
+474.84617955831106
  21
-365.5000000000003
+365.50000000000006
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
--180
+cut
  10
-256.33180874014937
+422.3318087401495
  20
-295.5000000000002
+373.00205297402323
  30
 0.0
  11
-203.8174379219878
+474.84617955831106
  21
-365.5000000000003
+373.0020529740231
  31
 0.0
   0
@@ -3203,15 +4329,15 @@ LINE
   8
 cut
  10
-256.3318087401494
+422.3318087401495
  20
-383.00479027272075
+365.5000000000001
  30
 0.0
  11
-256.3318087401494
+422.3318087401495
  21
-365.5000000000003
+373.00205297402323
  31
 0.0
   0
@@ -3221,15 +4347,15 @@ LINE
   8
 cut
  10
-203.8174379219878
+288.76362692196756
  20
-383.00479027272087
+143.25
  30
 0.0
  11
-256.3318087401494
+277.1727178310585
  21
-383.00479027272075
+143.25
  31
 0.0
   0
@@ -3239,35 +4365,33 @@ LINE
   8
 cut
  10
-203.8174379219878
+277.1727178310585
  20
-365.5000000000003
+143.25
  30
 0.0
  11
-203.8174379219878
+277.1727178310585
  21
-383.00479027272087
+142.75000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-180
+cut
  10
-256.33180874014937
+277.1727178310585
  20
-295.50000000000017
+142.75000000000003
  30
 0.0
  11
-189.12666106625016
+288.76362692196756
  21
-315.08234220233675
+142.75000000000003
  31
 0.0
   0
@@ -3277,15 +4401,15 @@ LINE
   8
 cut
  10
-189.12666106625016
+288.76362692196756
  20
-315.08234220233675
+142.75000000000003
  30
 0.0
  11
-203.8174379219878
+288.76362692196756
  21
-365.5000000000003
+143.25
  31
 0.0
   0
@@ -3295,15 +4419,15 @@ LINE
   8
 cut
  10
-174.4358842105125
+316.49089964924025
  20
-264.6646844046731
+143.25
  30
 0.0
  11
-189.12666106625016
+304.8999905583311
  21
-315.08234220233675
+143.25
  31
 0.0
   0
@@ -3313,115 +4437,105 @@ LINE
   8
 cut
  10
-170.30855606972295
+304.8999905583311
  20
-250.50000000000028
+143.25
  30
 0.0
  11
-174.4358842105125
+304.8999905583311
  21
-264.6646844046731
+142.75000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-57.019129652304315
+cut
  10
-170.30855606972295
+304.8999905583311
  20
-250.50000000000028
+142.75000000000003
  30
 0.0
  11
-256.33180874014937
+316.49089964924025
  21
-295.50000000000017
+142.75000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-54.462322208025626
+cut
  10
-256.3318087401493
+316.49089964924025
  20
-250.50000000000017
+142.75000000000003
  30
 0.0
  11
-256.33180874014937
+316.49089964924025
  21
-295.50000000000017
+143.25
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-54.462322208025626
+cut
  10
-256.33180874014926
+343.5818087401493
  20
-205.50000000000017
+124.41666666666669
  30
 0.0
  11
-256.3318087401493
+343.5818087401493
  21
-250.5000000000002
+112.58333333333334
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-57.019129652304315
+cut
  10
-170.30855606972293
+343.5818087401493
  20
-250.5000000000003
+112.58333333333334
  30
 0.0
  11
-256.33180874014926
+344.08180874014937
  21
-205.50000000000014
+112.58333333333334
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-180
+cut
  10
-189.12666106624997
+344.08180874014937
  20
-185.91765779766385
+112.58333333333334
  30
 0.0
  11
-256.33180874014926
+344.08180874014937
  21
-205.50000000000014
+124.41666666666669
  31
 0.0
   0
@@ -3431,15 +4545,15 @@ LINE
   8
 cut
  10
-174.43588421051246
+344.08180874014937
  20
-236.33531559532744
+124.41666666666669
  30
 0.0
  11
-170.30855606972293
+343.5818087401493
  21
-250.5000000000003
+124.41666666666669
  31
 0.0
   0
@@ -3449,15 +4563,15 @@ LINE
   8
 cut
  10
-189.12666106624997
+343.3318087401493
  20
-185.91765779766385
+16.750000000000004
  30
 0.0
  11
-174.43588421051246
+345.83180874014937
  21
-236.33531559532744
+16.750000000000004
  31
 0.0
   0
@@ -3467,75 +4581,69 @@ LINE
   8
 cut
  10
-203.81743792198745
+345.83180874014937
  20
-135.50000000000023
+16.750000000000004
  30
 0.0
  11
-189.12666106624997
+343.3318087401493
  21
-185.91765779766385
+19.250000000000004
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
--180
+cut
  10
-203.81743792198745
+343.3318087401493
  20
-135.50000000000023
+19.250000000000004
  30
 0.0
  11
-256.33180874014914
+335.33180874014937
  21
-205.50000000000017
+19.250000000000004
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-41.987212495816664
+cut
  10
-256.33180874014903
+335.33180874014937
  20
-135.5000000000001
+19.250000000000004
  30
 0.0
  11
-256.33180874014926
+332.83180874014937
  21
-205.50000000000017
+16.750000000000004
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
--174
+cut
  10
-203.81743792198748
+332.83180874014937
  20
-135.50000000000023
+16.750000000000004
  30
 0.0
  11
-256.33180874014903
+335.33180874014937
  21
-135.5000000000001
+16.750000000000004
  31
 0.0
   0
@@ -3545,15 +4653,15 @@ LINE
   8
 cut
  10
-203.81743792198742
+308.33180874014937
  20
-117.9952097272797
+112.50000000000001
  30
 0.0
  11
-203.81743792198748
+312.33180874014937
  21
-135.50000000000023
+112.50000000000001
  31
 0.0
   0
@@ -3563,15 +4671,15 @@ LINE
   8
 cut
  10
-256.33180874014903
+312.33180874014937
  20
-117.9952097272796
+112.50000000000001
  30
 0.0
  11
-203.81743792198742
+312.33180874014937
  21
-117.9952097272797
+124.50000000000001
  31
 0.0
   0
@@ -3581,15 +4689,15 @@ LINE
   8
 cut
  10
-256.33180874014903
+312.33180874014937
  20
-135.5000000000001
+124.50000000000001
  30
 0.0
  11
-256.33180874014903
+308.33180874014937
  21
-117.9952097272796
+124.50000000000001
  31
 0.0
   0
@@ -3599,15 +4707,15 @@ LINE
   8
 cut
  10
-464.8461795583111
+308.33180874014937
  20
-383.0047902727206
+124.50000000000001
  30
 0.0
  11
-464.84617955831106
+308.33180874014937
  21
-365.50000000000006
+112.50000000000001
  31
 0.0
   0
@@ -3617,15 +4725,15 @@ LINE
   8
 cut
  10
-412.3318087401495
+320.3318087401493
  20
-383.00479027272064
+114.00000000000001
  30
 0.0
  11
-464.8461795583111
+324.33180874014937
  21
-383.0047902727206
+114.00000000000001
  31
 0.0
   0
@@ -3635,15 +4743,15 @@ LINE
   8
 cut
  10
-412.3318087401495
+324.33180874014937
  20
-365.5000000000001
+114.00000000000001
  30
 0.0
  11
-412.3318087401495
+324.33180874014937
  21
-383.00479027272064
+123.00000000000001
  31
 0.0
   0
@@ -3653,15 +4761,15 @@ LINE
   8
 cut
  10
-278.76362692196756
+324.33180874014937
  20
-143.25
+123.00000000000001
  30
 0.0
  11
-267.17271783105843
+320.3318087401493
  21
-143.25
+123.00000000000001
  31
 0.0
   0
@@ -3671,15 +4779,15 @@ LINE
   8
 cut
  10
-267.17271783105843
+320.3318087401493
  20
-143.25
+123.00000000000001
  30
 0.0
  11
-267.17271783105843
+320.3318087401493
  21
-142.75000000000003
+114.00000000000001
  31
 0.0
   0
@@ -3689,15 +4797,15 @@ LINE
   8
 cut
  10
-267.17271783105843
+283.8318087401493
  20
-142.75000000000003
+112.50000000000001
  30
 0.0
  11
-278.76362692196756
+306.8318087401493
  21
-142.75000000000003
+112.50000000000001
  31
 0.0
   0
@@ -3707,15 +4815,15 @@ LINE
   8
 cut
  10
-278.76362692196756
+306.8318087401493
  20
-142.75000000000003
+112.50000000000001
  30
 0.0
  11
-278.76362692196756
+306.8318087401493
  21
-143.25
+124.50000000000001
  31
 0.0
   0
@@ -3725,15 +4833,15 @@ LINE
   8
 cut
  10
-306.4908996492403
+306.8318087401493
  20
-143.25
+124.50000000000001
  30
 0.0
  11
-294.8999905583312
+283.8318087401493
  21
-143.25
+124.50000000000001
  31
 0.0
   0
@@ -3743,15 +4851,15 @@ LINE
   8
 cut
  10
-294.8999905583312
+283.8318087401493
  20
-143.25
+124.50000000000001
  30
 0.0
  11
-294.8999905583312
+283.8318087401493
  21
-142.75000000000003
+112.50000000000001
  31
 0.0
   0
@@ -3761,15 +4869,15 @@ LINE
   8
 cut
  10
-294.8999905583312
+278.33180874014937
  20
-142.75000000000003
+112.50000000000001
  30
 0.0
  11
-306.4908996492403
+282.33180874014937
  21
-142.75000000000003
+112.50000000000001
  31
 0.0
   0
@@ -3779,15 +4887,15 @@ LINE
   8
 cut
  10
-306.4908996492403
+282.33180874014937
  20
-142.75000000000003
+112.50000000000001
  30
 0.0
  11
-306.4908996492403
+282.33180874014937
  21
-143.25
+124.50000000000001
  31
 0.0
   0
@@ -3797,15 +4905,15 @@ LINE
   8
 cut
  10
-333.5818087401493
+282.33180874014937
  20
-124.41666666666669
+124.50000000000001
  30
 0.0
  11
-333.5818087401493
+278.33180874014937
  21
-112.58333333333334
+124.50000000000001
  31
 0.0
   0
@@ -3815,15 +4923,15 @@ LINE
   8
 cut
  10
-333.5818087401493
+278.33180874014937
  20
-112.58333333333334
+124.50000000000001
  30
 0.0
  11
-334.0818087401493
+278.33180874014937
  21
-112.58333333333334
+112.50000000000001
  31
 0.0
   0
@@ -3833,15 +4941,15 @@ LINE
   8
 cut
  10
-334.0818087401493
+255.83180874014934
  20
-112.58333333333334
+112.83333333333336
  30
 0.0
  11
-334.0818087401493
+260.83180874014937
  21
-124.41666666666669
+112.83333333333336
  31
 0.0
   0
@@ -3851,15 +4959,15 @@ LINE
   8
 cut
  10
-334.0818087401493
+260.83180874014937
  20
-124.41666666666669
+112.83333333333336
  30
 0.0
  11
-333.5818087401493
+260.83180874014937
  21
-124.41666666666669
+124.16666666666669
  31
 0.0
   0
@@ -3869,15 +4977,15 @@ LINE
   8
 cut
  10
-333.33180874014937
+260.83180874014937
  20
-16.750000000000004
+124.16666666666669
  30
 0.0
  11
-335.83180874014937
+255.83180874014934
  21
-16.750000000000004
+124.16666666666669
  31
 0.0
   0
@@ -3887,15 +4995,15 @@ LINE
   8
 cut
  10
-335.83180874014937
+379.3318087401493
  20
-16.750000000000004
+80.86137800081471
  30
 0.0
  11
-333.33180874014937
+390.33180874014937
  21
-19.250000000000004
+80.86137800081471
  31
 0.0
   0
@@ -3905,15 +5013,15 @@ LINE
   8
 cut
  10
-333.33180874014937
+390.33180874014937
  20
-19.250000000000004
+80.86137800081471
  30
 0.0
  11
-325.3318087401493
+390.33180874014937
  21
-19.250000000000004
+93.86137800081471
  31
 0.0
   0
@@ -3923,15 +5031,15 @@ LINE
   8
 cut
  10
-325.3318087401493
+390.33180874014937
  20
-19.250000000000004
+93.86137800081471
  30
 0.0
  11
-322.83180874014937
+379.3318087401493
  21
-16.750000000000004
+93.86137800081471
  31
 0.0
   0
@@ -3941,15 +5049,15 @@ LINE
   8
 cut
  10
-322.83180874014937
+379.3318087401493
  20
-16.750000000000004
+93.86137800081471
  30
 0.0
  11
-325.3318087401493
+379.3318087401493
  21
-16.750000000000004
+80.86137800081471
  31
 0.0
   0
@@ -3959,15 +5067,15 @@ LINE
   8
 cut
  10
-298.3318087401493
+410.83180874014937
  20
-112.50000000000001
+82.36137800081471
  30
 0.0
  11
-302.3318087401493
+416.83180874014937
  21
-112.50000000000001
+82.36137800081471
  31
 0.0
   0
@@ -3977,15 +5085,15 @@ LINE
   8
 cut
  10
-302.3318087401493
+416.83180874014937
  20
-112.50000000000001
+82.36137800081471
  30
 0.0
  11
-302.3318087401493
+416.83180874014937
  21
-124.50000000000001
+92.36137800081471
  31
 0.0
   0
@@ -3995,15 +5103,15 @@ LINE
   8
 cut
  10
-302.3318087401493
+416.83180874014937
  20
-124.50000000000001
+92.36137800081471
  30
 0.0
  11
-298.3318087401493
+410.83180874014937
  21
-124.50000000000001
+92.36137800081471
  31
 0.0
   0
@@ -4013,15 +5121,15 @@ LINE
   8
 cut
  10
-298.3318087401493
+410.83180874014937
  20
-124.50000000000001
+92.36137800081471
  30
 0.0
  11
-298.3318087401493
+410.83180874014937
  21
-112.50000000000001
+82.36137800081471
  31
 0.0
   0
@@ -4031,15 +5139,15 @@ LINE
   8
 cut
  10
-310.33180874014937
+411.24089964924025
  20
-114.00000000000001
+31.722756001629396
  30
 0.0
  11
-314.33180874014937
+411.24089964924025
  21
-114.00000000000001
+36.7227560016294
  31
 0.0
   0
@@ -4049,15 +5157,15 @@ LINE
   8
 cut
  10
-314.33180874014937
+411.24089964924025
  20
-114.00000000000001
+36.7227560016294
  30
 0.0
  11
-314.33180874014937
+400.1499905583311
  21
-123.00000000000001
+36.7227560016294
  31
 0.0
   0
@@ -4067,15 +5175,15 @@ LINE
   8
 cut
  10
-314.33180874014937
+400.1499905583311
  20
-123.00000000000001
+36.7227560016294
  30
 0.0
  11
-310.33180874014937
+400.1499905583311
  21
-123.00000000000001
+31.722756001629396
  31
 0.0
   0
@@ -4085,15 +5193,15 @@ LINE
   8
 cut
  10
-310.33180874014937
+383.51362692196756
  20
-123.00000000000001
+31.722756001629396
  30
 0.0
  11
-310.33180874014937
+383.51362692196756
  21
-114.00000000000001
+36.7227560016294
  31
 0.0
   0
@@ -4103,15 +5211,15 @@ LINE
   8
 cut
  10
-273.83180874014937
+383.51362692196756
  20
-112.50000000000001
+36.7227560016294
  30
 0.0
  11
-296.83180874014937
+372.4227178310585
  21
-112.50000000000001
+36.7227560016294
  31
 0.0
   0
@@ -4121,15 +5229,15 @@ LINE
   8
 cut
  10
-296.83180874014937
+372.4227178310585
  20
-112.50000000000001
+36.7227560016294
  30
 0.0
  11
-296.83180874014937
+372.4227178310585
  21
-124.50000000000001
+31.722756001629396
  31
 0.0
   0
@@ -4139,15 +5247,15 @@ LINE
   8
 cut
  10
-296.83180874014937
+429.8318087401493
  20
-124.50000000000001
+91.36137800081471
  30
 0.0
  11
-273.83180874014937
+424.83180874014937
  21
-124.50000000000001
+91.36137800081471
  31
 0.0
   0
@@ -4157,15 +5265,15 @@ LINE
   8
 cut
  10
-273.83180874014937
+424.83180874014937
  20
-124.50000000000001
+91.36137800081471
  30
 0.0
  11
-273.83180874014937
+424.83180874014937
  21
-112.50000000000001
+83.36137800081471
  31
 0.0
   0
@@ -4175,15 +5283,15 @@ LINE
   8
 cut
  10
-268.33180874014937
+424.83180874014937
  20
-112.50000000000001
+83.36137800081471
  30
 0.0
  11
-272.33180874014937
+429.8318087401493
  21
-112.50000000000001
+83.36137800081471
  31
 0.0
   0
@@ -4193,15 +5301,15 @@ LINE
   8
 cut
  10
-272.33180874014937
+353.83180874014937
  20
-112.50000000000001
+83.36137800081471
  30
 0.0
  11
-272.33180874014937
+358.83180874014937
  21
-124.50000000000001
+83.36137800081471
  31
 0.0
   0
@@ -4211,15 +5319,15 @@ LINE
   8
 cut
  10
-272.33180874014937
+358.83180874014937
  20
-124.50000000000001
+83.36137800081471
  30
 0.0
  11
-268.33180874014937
+358.83180874014937
  21
-124.50000000000001
+91.36137800081471
  31
 0.0
   0
@@ -4229,15 +5337,15 @@ LINE
   8
 cut
  10
-268.33180874014937
+358.83180874014937
  20
-124.50000000000001
+91.36137800081471
  30
 0.0
  11
-268.33180874014937
+353.83180874014937
  21
-112.50000000000001
+91.36137800081471
  31
 0.0
   0
@@ -4247,15 +5355,15 @@ LINE
   8
 cut
  10
-245.83180874014934
+465.29811213682694
  20
-112.83333333333336
+129.8734602694827
  30
 0.0
  11
-250.83180874014934
+469.0491386238386
  21
-112.83333333333336
+129.8734602694827
  31
 0.0
   0
@@ -4265,15 +5373,15 @@ LINE
   8
 cut
  10
-250.83180874014934
+469.0491386238386
  20
-112.83333333333336
+129.8734602694827
  30
 0.0
  11
-250.83180874014934
+465.29811213682694
  21
-124.16666666666669
+133.62448675649426
  31
 0.0
   0
@@ -4283,15 +5391,15 @@ LINE
   8
 cut
  10
-250.83180874014934
+465.29811213682694
  20
-124.16666666666669
+133.62448675649426
  30
 0.0
  11
-245.83180874014934
+455.7500447153431
  21
-124.16666666666669
+133.62448675649426
  31
 0.0
   0
@@ -4301,15 +5409,15 @@ LINE
   8
 cut
  10
-369.33180874014937
+455.7500447153431
  20
-80.86137800081471
+133.62448675649426
  30
 0.0
  11
-380.33180874014937
+451.9990182283316
  21
-80.86137800081471
+129.8734602694827
  31
 0.0
   0
@@ -4319,15 +5427,15 @@ LINE
   8
 cut
  10
-380.33180874014937
+451.9990182283316
  20
-80.86137800081471
+129.8734602694827
  30
 0.0
  11
-380.33180874014937
+455.7500447153431
  21
-93.86137800081471
+129.8734602694827
  31
 0.0
   0
@@ -4337,15 +5445,15 @@ LINE
   8
 cut
  10
-380.33180874014937
+441.4279435831172
  20
-93.86137800081471
+129.8734602694827
  30
 0.0
  11
-369.33180874014937
+445.17897007012874
  21
-93.86137800081471
+129.8734602694827
  31
 0.0
   0
@@ -4355,15 +5463,15 @@ LINE
   8
 cut
  10
-369.33180874014937
+445.17897007012874
  20
-93.86137800081471
+129.8734602694827
  30
 0.0
  11
-369.33180874014937
+441.4279435831172
  21
-80.86137800081471
+133.62448675649426
  31
 0.0
   0
@@ -4373,15 +5481,15 @@ LINE
   8
 cut
  10
-400.83180874014937
+441.4279435831172
  20
-82.36137800081471
+133.62448675649426
  30
 0.0
  11
-406.8318087401493
+431.8798761616332
  21
-82.36137800081471
+133.62448675649426
  31
 0.0
   0
@@ -4391,15 +5499,15 @@ LINE
   8
 cut
  10
-406.8318087401493
+431.8798761616332
  20
-82.36137800081471
+133.62448675649426
  30
 0.0
  11
-406.8318087401493
+428.1288496746218
  21
-92.36137800081471
+129.8734602694827
  31
 0.0
   0
@@ -4409,15 +5517,15 @@ LINE
   8
 cut
  10
-406.8318087401493
+428.1288496746218
  20
-92.36137800081471
+129.8734602694827
  30
 0.0
  11
-400.83180874014937
+431.8798761616332
  21
-92.36137800081471
+129.8734602694827
  31
 0.0
   0
@@ -4427,15 +5535,15 @@ LINE
   8
 cut
  10
-400.83180874014937
+489.307083733857
  20
-92.36137800081471
+206.13531866922696
  30
 0.0
  11
-400.83180874014937
+486.4961595235763
  21
-82.36137800081471
+196.48843502782523
  31
 0.0
   0
@@ -4445,15 +5553,15 @@ LINE
   8
 cut
  10
-401.24089964924025
+486.4961595235763
  20
-31.722756001629396
+196.48843502782523
  30
 0.0
  11
-401.24089964924025
+486.9761962926755
  21
-36.7227560016294
+196.3485611549514
  31
 0.0
   0
@@ -4463,15 +5571,15 @@ LINE
   8
 cut
  10
-401.24089964924025
+486.9761962926755
  20
-36.7227560016294
+196.3485611549514
  30
 0.0
  11
-390.1499905583312
+489.78712050295627
  21
-36.7227560016294
+205.99544479635315
  31
 0.0
   0
@@ -4481,15 +5589,15 @@ LINE
   8
 cut
  10
-390.1499905583312
+489.78712050295627
  20
-36.7227560016294
+205.99544479635315
  30
 0.0
  11
-390.1499905583312
+489.307083733857
  21
-31.722756001629396
+206.13531866922696
  31
 0.0
   0
@@ -4499,15 +5607,15 @@ LINE
   8
 cut
  10
-373.51362692196756
+495.9847095773741
  20
-31.722756001629396
+229.05243584998314
  30
 0.0
  11
-373.51362692196756
+493.1737853670934
  21
-36.7227560016294
+219.40555220858138
  31
 0.0
   0
@@ -4517,15 +5625,15 @@ LINE
   8
 cut
  10
-373.51362692196756
+493.1737853670934
  20
-36.7227560016294
+219.40555220858138
  30
 0.0
  11
-362.4227178310585
+493.6538221361927
  21
-36.7227560016294
+219.26567833570755
  31
 0.0
   0
@@ -4535,15 +5643,15 @@ LINE
   8
 cut
  10
-362.4227178310585
+493.6538221361927
  20
-36.7227560016294
+219.26567833570755
  30
 0.0
  11
-362.4227178310585
+496.4647463464733
  21
-31.722756001629396
+228.9125619771093
  31
 0.0
   0
@@ -4553,15 +5661,15 @@ LINE
   8
 cut
  10
-419.83180874014937
+496.4647463464733
  20
-91.36137800081471
+228.9125619771093
  30
 0.0
  11
-414.83180874014937
+495.9847095773741
  21
-91.36137800081471
+229.05243584998314
  31
 0.0
   0
@@ -4571,15 +5679,15 @@ LINE
   8
 cut
  10
-414.83180874014937
+493.17378536709344
  20
-91.36137800081471
+281.5944477914187
  30
 0.0
  11
-414.83180874014937
+495.9847095773741
  21
-83.36137800081471
+271.94756415001694
  31
 0.0
   0
@@ -4589,15 +5697,15 @@ LINE
   8
 cut
  10
-414.83180874014937
+495.9847095773741
  20
-83.36137800081471
+271.94756415001694
  30
 0.0
  11
-419.83180874014937
+496.4647463464733
  21
-83.36137800081471
+272.0874380228908
  31
 0.0
   0
@@ -4607,15 +5715,15 @@ LINE
   8
 cut
  10
-343.8318087401493
+496.4647463464733
  20
-83.36137800081471
+272.0874380228908
  30
 0.0
  11
-348.83180874014937
+493.6538221361927
  21
-83.36137800081471
+281.7343216642925
  31
 0.0
   0
@@ -4625,15 +5733,15 @@ LINE
   8
 cut
  10
-348.83180874014937
+493.6538221361927
  20
-83.36137800081471
+281.7343216642925
  30
 0.0
  11
-348.83180874014937
+493.17378536709344
  21
-91.36137800081471
+281.5944477914187
  31
 0.0
   0
@@ -4643,15 +5751,15 @@ LINE
   8
 cut
  10
-348.83180874014937
+486.49615952357635
  20
-91.36137800081471
+304.5115649721748
  30
 0.0
  11
-343.8318087401493
+489.30708373385704
  21
-91.36137800081471
+294.86468133077307
  31
 0.0
   0
@@ -4661,15 +5769,15 @@ LINE
   8
 cut
  10
-447.3413892855904
+489.30708373385704
  20
-122.37140729545962
+294.86468133077307
  30
 0.0
  11
-447.3413892855904
+489.78712050295627
  21
-131.12380243181985
+295.0045552036469
  31
 0.0
   0
@@ -4679,15 +5787,15 @@ LINE
   8
 cut
  10
-447.3413892855904
+489.78712050295627
  20
-131.12380243181985
+295.0045552036469
  30
 0.0
  11
-429.83659901286984
+486.97619629267564
  21
-131.12380243181988
+304.6514388450487
  31
 0.0
   0
@@ -4697,15 +5805,15 @@ LINE
   8
 cut
  10
-429.83659901286984
+486.97619629267564
  20
-131.12380243181988
+304.6514388450487
  30
 0.0
  11
-429.83659901286984
+486.49615952357635
  21
-122.37140729545962
+304.5115649721748
  31
 0.0
   0
@@ -4715,15 +5823,15 @@ LINE
   8
 cut
  10
-476.5563117536783
+304.8999905583312
  20
-223.5120791976936
+357.7500000000002
  30
 0.0
  11
-471.5195122622253
+316.4908996492403
  21
-206.22615649603978
+357.75000000000017
  31
 0.0
   0
@@ -4733,15 +5841,15 @@ LINE
   8
 cut
  10
-471.5195122622253
+316.4908996492403
  20
-206.22615649603978
+357.75000000000017
  30
 0.0
  11
-471.99954903132453
+316.4908996492403
  21
-206.08628262316594
+358.25000000000017
  31
 0.0
   0
@@ -4751,15 +5859,15 @@ LINE
   8
 cut
  10
-471.99954903132453
+316.4908996492403
  20
-206.08628262316594
+358.25000000000017
  30
 0.0
  11
-477.0363485227776
+304.8999905583312
  21
-223.37220532481973
+358.25000000000017
  31
 0.0
   0
@@ -4769,15 +5877,15 @@ LINE
   8
 cut
  10
-477.0363485227776
+304.8999905583312
  20
-223.37220532481973
+358.25000000000017
  30
 0.0
  11
-476.5563117536783
+304.8999905583312
  21
-223.5120791976936
+357.7500000000002
  31
 0.0
   0
@@ -4787,15 +5895,15 @@ LINE
   8
 cut
  10
-471.5195122622253
+277.1727178310585
  20
-294.77384350396034
+357.7500000000002
  30
 0.0
  11
-476.55631175367836
+288.7636269219676
  21
-277.4879208023065
+357.7500000000002
  31
 0.0
   0
@@ -4805,15 +5913,15 @@ LINE
   8
 cut
  10
-476.55631175367836
+288.7636269219676
  20
-277.4879208023065
+357.7500000000002
  30
 0.0
  11
-477.0363485227776
+288.7636269219676
  21
-277.6277946751803
+358.25000000000017
  31
 0.0
   0
@@ -4823,15 +5931,15 @@ LINE
   8
 cut
  10
-477.0363485227776
+288.7636269219676
  20
-277.6277946751803
+358.25000000000017
  30
 0.0
  11
-471.9995490313246
+277.1727178310585
  21
-294.91371737683414
+358.25000000000017
  31
 0.0
   0
@@ -4841,15 +5949,15 @@ LINE
   8
 cut
  10
-471.9995490313246
+277.1727178310585
  20
-294.91371737683414
+358.25000000000017
  30
 0.0
  11
-471.5195122622253
+277.1727178310585
  21
-294.77384350396034
+357.7500000000002
  31
 0.0
   0
@@ -4859,15 +5967,15 @@ LINE
   8
 cut
  10
-221.32222819470834
+399.89999055833124
  20
-378.6285927045407
+357.75000000000017
  30
 0.0
  11
-221.32222819470834
+411.49089964924036
  21
-369.87619756818043
+357.7500000000001
  31
 0.0
   0
@@ -4877,15 +5985,15 @@ LINE
   8
 cut
  10
-221.32222819470834
+411.49089964924036
  20
-369.87619756818043
+357.7500000000001
  30
 0.0
  11
-238.82701846742887
+411.49089964924036
  21
-369.87619756818043
+358.2500000000001
  31
 0.0
   0
@@ -4895,15 +6003,15 @@ LINE
   8
 cut
  10
-238.82701846742887
+411.49089964924036
  20
-369.87619756818043
+358.2500000000001
  30
 0.0
  11
-238.82701846742887
+399.89999055833124
  21
-378.6285927045407
+358.25000000000017
  31
 0.0
   0
@@ -4913,15 +6021,15 @@ LINE
   8
 cut
  10
-192.10730572662035
+399.89999055833124
  20
-277.4879208023067
+358.25000000000017
  30
 0.0
  11
-197.1441052180734
+399.89999055833124
  21
-294.7738435039605
+357.75000000000017
  31
 0.0
   0
@@ -4931,15 +6039,15 @@ LINE
   8
 cut
  10
-197.1441052180734
+372.17271783105855
  20
-294.7738435039605
+357.75000000000017
  30
 0.0
  11
-196.66406844897412
+383.7636269219676
  21
-294.9137173768343
+357.75000000000017
  31
 0.0
   0
@@ -4949,15 +6057,15 @@ LINE
   8
 cut
  10
-196.66406844897412
+383.7636269219676
  20
-294.9137173768343
+357.75000000000017
  30
 0.0
  11
-191.62726895752107
+383.7636269219676
  21
-277.62779467518055
+358.25000000000017
  31
 0.0
   0
@@ -4967,15 +6075,15 @@ LINE
   8
 cut
  10
-191.62726895752107
+383.7636269219676
  20
-277.62779467518055
+358.25000000000017
  30
 0.0
  11
-192.10730572662035
+372.17271783105855
  21
-277.4879208023067
+358.25000000000017
  31
 0.0
   0
@@ -4985,15 +6093,15 @@ LINE
   8
 cut
  10
-197.14410521807324
+372.17271783105855
  20
-206.22615649604003
+358.25000000000017
  30
 0.0
  11
-192.10730572662027
+372.17271783105855
  21
-223.51207919769385
+357.75000000000017
  31
 0.0
   0
@@ -5003,15 +6111,15 @@ LINE
   8
 cut
  10
-192.10730572662027
+343.5818087401495
  20
-223.51207919769385
+388.4166666666668
  30
 0.0
  11
-191.62726895752098
+343.5818087401495
  21
-223.37220532482002
+376.5833333333335
  31
 0.0
   0
@@ -5021,15 +6129,15 @@ LINE
   8
 cut
  10
-191.62726895752098
+343.5818087401495
  20
-223.37220532482002
+376.5833333333335
  30
 0.0
  11
-196.66406844897398
+344.0818087401495
  21
-206.08628262316617
+376.5833333333335
  31
 0.0
   0
@@ -5039,15 +6147,15 @@ LINE
   8
 cut
  10
-196.66406844897398
+344.0818087401495
  20
-206.08628262316617
+376.5833333333335
  30
 0.0
  11
-197.14410521807324
+344.0818087401495
  21
-206.22615649604003
+388.4166666666668
  31
 0.0
   0
@@ -5057,15 +6165,15 @@ LINE
   8
 cut
  10
-238.8270184674285
+344.0818087401495
  20
-122.37140729545976
+388.4166666666668
  30
 0.0
  11
-238.82701846742853
+343.5818087401495
  21
-131.12380243182005
+388.4166666666668
  31
 0.0
   0
@@ -5075,15 +6183,15 @@ LINE
   8
 cut
  10
-238.82701846742853
+335.08180874014954
  20
-131.12380243182005
+476.50000000000017
  30
 0.0
  11
-221.32222819470798
+343.58180874014954
  21
-131.12380243182008
+476.50000000000017
  31
 0.0
   0
@@ -5093,15 +6201,15 @@ LINE
   8
 cut
  10
-221.32222819470798
+343.58180874014954
  20
-131.12380243182008
+476.50000000000017
  30
 0.0
  11
-221.32222819470798
+343.58180874014954
  21
-122.3714072954598
+477.00000000000017
  31
 0.0
   0
@@ -5111,15 +6219,15 @@ LINE
   8
 cut
  10
-429.83659901286995
+343.58180874014954
  20
-378.6285927045405
+477.00000000000017
  30
 0.0
  11
-429.83659901286995
+335.08180874014954
  21
-369.87619756818015
+477.00000000000017
  31
 0.0
   0
@@ -5129,15 +6237,15 @@ LINE
   8
 cut
  10
-429.83659901286995
+335.08180874014954
  20
-369.87619756818015
+477.00000000000017
  30
 0.0
  11
-447.34138928559054
+335.08180874014954
  21
-369.87619756818015
+476.50000000000017
  31
 0.0
   0
@@ -5147,15 +6255,15 @@ LINE
   8
 cut
  10
-447.34138928559054
+308.3318087401494
  20
-369.87619756818015
+376.50000000000017
  30
 0.0
  11
-447.34138928559054
+312.3318087401494
  21
-378.6285927045405
+376.50000000000017
  31
 0.0
   0
@@ -5165,35 +6273,33 @@ LINE
   8
 cut
  10
-578.3550614105758
+312.3318087401494
  20
-123.50000000000001
+376.50000000000017
  30
 0.0
  11
-542.3550614105758
+312.3318087401495
  21
-123.50000000000001
+388.50000000000017
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
--90
+cut
  10
-578.3550614105758
+312.3318087401495
  20
-123.50000000000001
+388.50000000000017
  30
 0.0
  11
-578.3550614105758
+308.3318087401495
  21
-147.5
+388.50000000000017
  31
 0.0
   0
@@ -5203,15 +6309,15 @@ LINE
   8
 cut
  10
-542.3550614105758
+308.3318087401495
  20
-147.5
+388.50000000000017
  30
 0.0
  11
-578.3550614105758
+308.3318087401494
  21
-147.5
+376.50000000000017
  31
 0.0
   0
@@ -5221,15 +6327,15 @@ LINE
   8
 cut
  10
-578.3550614105758
+320.33180874014937
  20
-147.5
+378.00000000000017
  30
 0.0
  11
-623.3550614105758
+324.3318087401494
  21
-147.5
+378.00000000000017
  31
 0.0
   0
@@ -5239,15 +6345,15 @@ LINE
   8
 cut
  10
-623.3550614105758
+324.3318087401494
  20
-123.50000000000001
+378.00000000000017
  30
 0.0
  11
-578.3550614105758
+324.3318087401494
  21
-123.50000000000001
+387.00000000000017
  31
 0.0
   0
@@ -5257,15 +6363,15 @@ LINE
   8
 cut
  10
-623.3550614105758
+324.3318087401494
  20
-147.5
+387.00000000000017
  30
 0.0
  11
-623.3550614105758
+320.3318087401494
  21
-123.50000000000001
+387.00000000000017
  31
 0.0
   0
@@ -5275,35 +6381,33 @@ LINE
   8
 cut
  10
-542.3550614105758
+320.3318087401494
  20
-123.50000000000001
+387.00000000000017
  30
 0.0
  11
-508.35506141057573
+320.33180874014937
  21
-123.50000000000001
+378.00000000000017
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-508.35506141057573
+283.83180874014937
  20
-147.5
+376.50000000000017
  30
 0.0
  11
-542.3550614105758
+306.83180874014937
  21
-147.5
+376.50000000000017
  31
 0.0
   0
@@ -5313,15 +6417,15 @@ LINE
   8
 cut
  10
-508.35506141057573
+306.83180874014937
  20
-113.50000000000001
+376.50000000000017
  30
 0.0
  11
-508.35506141057573
+306.8318087401494
  21
-52.50000000000001
+388.50000000000017
  31
 0.0
   0
@@ -5331,15 +6435,15 @@ LINE
   8
 cut
  10
-508.35506141057573
+306.8318087401494
  20
-123.50000000000001
+388.50000000000017
  30
 0.0
  11
-508.35506141057573
+283.83180874014937
  21
-113.50000000000001
+388.50000000000017
  31
 0.0
   0
@@ -5349,15 +6453,15 @@ LINE
   8
 cut
  10
-508.35506141057573
+283.83180874014937
  20
-221.50000000000003
+388.50000000000017
  30
 0.0
  11
-508.35506141057573
+283.83180874014937
  21
-147.5
+376.50000000000017
  31
 0.0
   0
@@ -5367,15 +6471,15 @@ LINE
   8
 cut
  10
-508.35506141057573
+278.3318087401494
  20
-221.50000000000003
+376.50000000000017
  30
 0.0
  11
-508.35506141057573
+282.3318087401494
  21
-221.50000000000003
+376.50000000000017
  31
 0.0
   0
@@ -5385,15 +6489,15 @@ LINE
   8
 cut
  10
-508.35506141057573
+282.3318087401494
  20
-147.5
+376.50000000000017
  30
 0.0
  11
-508.35506141057573
+282.3318087401494
  21
-221.50000000000003
+388.50000000000017
  31
 0.0
   0
@@ -5403,15 +6507,15 @@ LINE
   8
 cut
  10
-508.35506141057573
+282.3318087401494
  20
-123.50000000000001
+388.50000000000017
  30
 0.0
  11
-508.35506141057573
+278.3318087401494
  21
-147.5
+388.50000000000017
  31
 0.0
   0
@@ -5421,15 +6525,15 @@ LINE
   8
 cut
  10
-508.35506141057573
+278.3318087401494
  20
-113.50000000000001
+388.50000000000017
  30
 0.0
  11
-508.35506141057573
+278.3318087401494
  21
-123.50000000000001
+376.50000000000017
  31
 0.0
   0
@@ -5439,15 +6543,15 @@ LINE
   8
 cut
  10
-508.35506141057573
+255.8318087401494
  20
-52.50000000000001
+376.8333333333335
  30
 0.0
  11
-508.35506141057573
+260.8318087401494
  21
-113.50000000000001
+376.8333333333335
  31
 0.0
   0
@@ -5457,15 +6561,15 @@ LINE
   8
 cut
  10
-508.35506141057573
+260.8318087401494
  20
-52.50000000000001
+376.8333333333335
  30
 0.0
  11
-508.35506141057573
+260.8318087401494
  21
-52.50000000000001
+388.16666666666686
  31
 0.0
   0
@@ -5475,15 +6579,15 @@ LINE
   8
 cut
  10
-508.35506141057573
+260.8318087401494
  20
-147.5
+388.16666666666686
  30
 0.0
  11
-508.35506141057573
+255.8318087401494
  21
-167.50000000000003
+388.16666666666686
  31
 0.0
   0
@@ -5493,35 +6597,33 @@ LINE
   8
 cut
  10
-542.3550614105758
+223.36550534347174
  20
-167.50000000000003
+371.12653973051766
  30
 0.0
  11
-542.3550614105758
+219.61447885646018
  21
-147.5
+371.12653973051766
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-508.35506141057573
+219.61447885646018
  20
-167.50000000000003
+371.12653973051766
  30
 0.0
  11
-542.3550614105758
+223.3655053434717
  21
-167.50000000000003
+367.3755132435061
  31
 0.0
   0
@@ -5531,15 +6633,15 @@ LINE
   8
 cut
  10
-508.35506141057573
+223.3655053434717
  20
-167.50000000000003
+367.3755132435061
  30
 0.0
  11
-508.35506141057573
+232.91357276495566
  21
-191.50000000000003
+367.3755132435061
  31
 0.0
   0
@@ -5549,35 +6651,33 @@ LINE
   8
 cut
  10
-542.3550614105758
+232.91357276495566
  20
-191.50000000000003
+367.3755132435061
  30
 0.0
  11
-542.3550614105758
+236.66459925196722
  21
-167.50000000000003
+371.1265397305176
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-508.35506141057573
+236.66459925196722
  20
-191.50000000000003
+371.1265397305176
  30
 0.0
  11
-542.3550614105758
+232.91357276495566
  21
-191.50000000000003
+371.1265397305176
  31
 0.0
   0
@@ -5587,15 +6687,15 @@ LINE
   8
 cut
  10
-508.35506141057573
+247.23567389718156
  20
-191.50000000000003
+371.1265397305176
  30
 0.0
  11
-508.35506141057573
+243.48464741017003
  21
-211.5
+371.1265397305176
  31
 0.0
   0
@@ -5605,35 +6705,33 @@ LINE
   8
 cut
  10
-542.3550614105758
+243.48464741017003
  20
-211.5
+371.1265397305176
  30
 0.0
  11
-542.3550614105758
+247.23567389718156
  21
-191.50000000000003
+367.3755132435061
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
-90
+cut
  10
-542.3550614105758
+247.23567389718156
  20
-211.5
+367.3755132435061
  30
 0.0
  11
-508.35506141057573
+256.7837413186655
  21
-211.5
+367.3755132435061
  31
 0.0
   0
@@ -5643,15 +6741,15 @@ LINE
   8
 cut
  10
-542.3550614105758
+256.7837413186655
  20
-221.50000000000003
+367.3755132435061
  30
 0.0
  11
-542.3550614105758
+260.534767805677
  21
-211.5
+371.1265397305176
  31
 0.0
   0
@@ -5661,15 +6759,15 @@ LINE
   8
 cut
  10
-508.35506141057573
+260.534767805677
  20
-221.50000000000003
+371.1265397305176
  30
 0.0
  11
-542.3550614105758
+256.78374131866553
  21
-221.50000000000003
+371.1265397305176
  31
 0.0
   0
@@ -5679,15 +6777,15 @@ LINE
   8
 cut
  10
-508.35506141057573
+199.35653374644173
  20
-211.5
+294.86468133077335
  30
 0.0
  11
-508.35506141057573
+202.16745795672242
  21
-221.50000000000003
+304.5115649721751
  31
 0.0
   0
@@ -5697,15 +6795,15 @@ LINE
   8
 cut
  10
-619.3550614105757
+202.16745795672242
  20
-139.75000000000003
+304.5115649721751
  30
 0.0
  11
-619.3550614105757
+201.6874211876231
  21
-131.25
+304.651438845049
  31
 0.0
   0
@@ -5715,15 +6813,15 @@ LINE
   8
 cut
  10
-619.3550614105757
+201.6874211876231
  20
-131.25
+304.651438845049
  30
 0.0
  11
-619.8550614105757
+198.87649697734244
  21
-131.25
+295.0045552036471
  31
 0.0
   0
@@ -5733,15 +6831,15 @@ LINE
   8
 cut
  10
-619.8550614105757
+198.87649697734244
  20
-131.25
+295.0045552036471
  30
 0.0
  11
-619.8550614105757
+199.35653374644173
  21
-139.75000000000003
+294.86468133077335
  31
 0.0
   0
@@ -5751,15 +6849,15 @@ LINE
   8
 cut
  10
-619.8550614105757
+192.67890790292464
  20
-139.75000000000003
+271.9475641500171
  30
 0.0
  11
-619.3550614105757
+195.48983211320527
  21
-139.75000000000003
+281.5944477914189
  31
 0.0
   0
@@ -5769,15 +6867,15 @@ LINE
   8
 cut
  10
-531.2717280772423
+195.48983211320527
  20
-131.25
+281.5944477914189
  30
 0.0
  11
-519.4383947439092
+195.009795344106
  21
-131.25
+281.7343216642927
  31
 0.0
   0
@@ -5787,15 +6885,15 @@ LINE
   8
 cut
  10
-519.4383947439092
+195.009795344106
  20
-131.25
+281.7343216642927
  30
 0.0
  11
-519.4383947439092
+192.19887113382532
  21
-130.75000000000003
+272.087438022891
  31
 0.0
   0
@@ -5805,15 +6903,15 @@ LINE
   8
 cut
  10
-519.4383947439092
+192.19887113382532
  20
-130.75000000000003
+272.087438022891
  30
 0.0
  11
-531.2717280772423
+192.67890790292464
  21
-130.75000000000003
+271.9475641500171
  31
 0.0
   0
@@ -5823,15 +6921,15 @@ LINE
   8
 cut
  10
-531.2717280772423
+195.48983211320518
  20
-130.75000000000003
+219.40555220858164
  30
 0.0
  11
-531.2717280772423
+192.67890790292452
  21
-131.25
+229.0524358499834
  31
 0.0
   0
@@ -5841,15 +6939,15 @@ LINE
   8
 cut
  10
-500.60506141057573
+192.67890790292452
  20
-74.93181818181819
+229.0524358499834
  30
 0.0
  11
-500.60506141057573
+192.19887113382526
  21
-63.3409090909091
+228.91256197710956
  31
 0.0
   0
@@ -5859,15 +6957,15 @@ LINE
   8
 cut
  10
-500.60506141057573
+192.19887113382526
  20
-63.3409090909091
+228.91256197710956
  30
 0.0
  11
-501.10506141057573
+195.00979534410592
  21
-63.3409090909091
+219.2656783357078
  31
 0.0
   0
@@ -5877,15 +6975,15 @@ LINE
   8
 cut
  10
-501.10506141057573
+195.00979534410592
  20
-63.3409090909091
+219.2656783357078
  30
 0.0
  11
-501.10506141057573
+195.48983211320518
  21
-74.93181818181819
+219.40555220858164
  31
 0.0
   0
@@ -5895,15 +6993,15 @@ LINE
   8
 cut
  10
-501.10506141057573
+202.16745795672222
  20
-74.93181818181819
+196.48843502782546
  30
 0.0
  11
-500.60506141057573
+199.35653374644158
  21
-74.93181818181819
+206.13531866922722
  31
 0.0
   0
@@ -5913,15 +7011,15 @@ LINE
   8
 cut
  10
-500.60506141057573
+199.35653374644158
  20
-102.65909090909092
+206.13531866922722
  30
 0.0
  11
-500.60506141057573
+198.8764969773423
  21
-91.06818181818183
+205.99544479635338
  31
 0.0
   0
@@ -5931,15 +7029,15 @@ LINE
   8
 cut
  10
-500.60506141057573
+198.8764969773423
  20
-91.06818181818183
+205.99544479635338
  30
 0.0
  11
-501.10506141057573
+201.68742118762296
  21
-91.06818181818183
+196.34856115495162
  31
 0.0
   0
@@ -5949,15 +7047,15 @@ LINE
   8
 cut
  10
-501.10506141057573
+201.68742118762296
  20
-91.06818181818183
+196.34856115495162
  30
 0.0
  11
-501.10506141057573
+202.16745795672222
  21
-102.65909090909092
+196.48843502782546
  31
 0.0
   0
@@ -5967,15 +7065,15 @@ LINE
   8
 cut
  10
-501.10506141057573
+256.7837413186651
  20
-102.65909090909092
+129.87346026948285
  30
 0.0
  11
-500.60506141057573
+260.53476780567667
  21
-102.65909090909092
+129.87346026948285
  31
 0.0
   0
@@ -5985,15 +7083,15 @@ LINE
   8
 cut
  10
-519.3550614105758
+260.53476780567667
  20
-166.50000000000003
+129.87346026948285
  30
 0.0
  11
-519.3550614105758
+256.78374131866514
  21
-162.50000000000003
+133.6244867564944
  31
 0.0
   0
@@ -6003,15 +7101,15 @@ LINE
   8
 cut
  10
-519.3550614105758
+256.78374131866514
  20
-162.50000000000003
+133.6244867564944
  30
 0.0
  11
-531.3550614105757
+247.23567389718121
  21
-162.50000000000003
+133.6244867564944
  31
 0.0
   0
@@ -6021,15 +7119,15 @@ LINE
   8
 cut
  10
-531.3550614105757
+247.23567389718121
  20
-162.50000000000003
+133.6244867564944
  30
 0.0
  11
-531.3550614105757
+243.48464741016966
  21
-166.50000000000003
+129.87346026948285
  31
 0.0
   0
@@ -6039,15 +7137,15 @@ LINE
   8
 cut
  10
-531.3550614105757
+243.48464741016966
  20
-166.50000000000003
+129.87346026948285
  30
 0.0
  11
-519.3550614105758
+247.23567389718121
  21
-166.50000000000003
+129.87346026948285
  31
 0.0
   0
@@ -6057,15 +7155,15 @@ LINE
   8
 cut
  10
-520.8550614105757
+232.91357276495532
  20
-154.5
+129.87346026948288
  30
 0.0
  11
-520.8550614105757
+236.66459925196685
  21
-150.5
+129.87346026948285
  31
 0.0
   0
@@ -6075,15 +7173,15 @@ LINE
   8
 cut
  10
-520.8550614105757
+236.66459925196685
  20
-150.5
+129.87346026948285
  30
 0.0
  11
-529.8550614105758
+232.91357276495532
  21
-150.5
+133.62448675649443
  31
 0.0
   0
@@ -6093,15 +7191,15 @@ LINE
   8
 cut
  10
-529.8550614105758
+232.91357276495532
  20
-150.5
+133.62448675649443
  30
 0.0
  11
-529.8550614105758
+223.36550534347137
  21
-154.5
+133.62448675649446
  31
 0.0
   0
@@ -6111,15 +7209,15 @@ LINE
   8
 cut
  10
-529.8550614105758
+223.36550534347137
  20
-154.5
+133.62448675649446
  30
 0.0
  11
-520.8550614105757
+219.6144788564598
  21
-154.5
+129.8734602694829
  31
 0.0
   0
@@ -6129,15 +7227,15 @@ LINE
   8
 cut
  10
-519.3550614105758
+219.6144788564598
  20
-191.0
+129.8734602694829
  30
 0.0
  11
-519.3550614105758
+223.36550534347137
  21
-168.0
+129.87346026948288
  31
 0.0
   0
@@ -6147,15 +7245,15 @@ LINE
   8
 cut
  10
-519.3550614105758
+431.8798761616334
  20
-168.0
+371.12653973051744
  30
 0.0
  11
-531.3550614105757
+428.1288496746219
  21
-168.0
+371.12653973051744
  31
 0.0
   0
@@ -6165,15 +7263,15 @@ LINE
   8
 cut
  10
-531.3550614105757
+428.1288496746219
  20
-168.0
+371.12653973051744
  30
 0.0
  11
-531.3550614105757
+431.8798761616334
  21
-191.0
+367.37551324350585
  31
 0.0
   0
@@ -6183,15 +7281,15 @@ LINE
   8
 cut
  10
-531.3550614105757
+431.8798761616334
  20
-191.0
+367.37551324350585
  30
 0.0
  11
-519.3550614105758
+441.4279435831173
  21
-191.0
+367.37551324350585
  31
 0.0
   0
@@ -6201,15 +7299,15 @@ LINE
   8
 cut
  10
-519.3550614105758
+441.4279435831173
  20
-196.50000000000003
+367.37551324350585
  30
 0.0
  11
-519.3550614105758
+445.17897007012886
  21
-192.50000000000003
+371.12653973051744
  31
 0.0
   0
@@ -6219,15 +7317,15 @@ LINE
   8
 cut
  10
-519.3550614105758
+445.17897007012886
  20
-192.50000000000003
+371.12653973051744
  30
 0.0
  11
-531.3550614105757
+441.4279435831173
  21
-192.50000000000003
+371.12653973051744
  31
 0.0
   0
@@ -6237,15 +7335,15 @@ LINE
   8
 cut
  10
-531.3550614105757
+455.7500447153432
  20
-192.50000000000003
+371.12653973051744
  30
 0.0
  11
-531.3550614105757
+451.9990182283317
  21
-196.50000000000003
+371.12653973051744
  31
 0.0
   0
@@ -6255,15 +7353,15 @@ LINE
   8
 cut
  10
-531.3550614105757
+451.9990182283317
  20
-196.50000000000003
+371.12653973051744
  30
 0.0
  11
-519.3550614105758
+455.7500447153432
  21
-196.50000000000003
+367.37551324350585
  31
 0.0
   0
@@ -6273,15 +7371,15 @@ LINE
   8
 cut
  10
-519.6883947439092
+455.7500447153432
  20
-219.00000000000003
+367.37551324350585
  30
 0.0
  11
-519.6883947439092
+465.2981121368271
  21
-214.0
+367.37551324350585
  31
 0.0
   0
@@ -6291,15 +7389,15 @@ LINE
   8
 cut
  10
-519.6883947439092
+465.2981121368271
  20
-214.0
+367.37551324350585
  30
 0.0
  11
-531.0217280772423
+469.0491386238387
  21
-214.0
+371.1265397305174
  31
 0.0
   0
@@ -6309,15 +7407,15 @@ LINE
   8
 cut
  10
-531.0217280772423
+469.0491386238387
  20
-214.0
+371.1265397305174
  30
 0.0
  11
-531.0217280772423
+465.2981121368271
  21
-219.00000000000003
+371.12653973051744
  31
 0.0
   0
@@ -6329,13 +7427,13 @@ DOTTED
   8
 90
  10
-666.3550614105757
+551.3550614105758
  20
 123.50000000000001
  30
 0.0
  11
-727.3550614105758
+612.3550614105757
  21
 123.50000000000001
  31
@@ -6349,13 +7447,13 @@ DOTTED
   8
 90
  10
-727.3550614105758
+612.3550614105757
  20
 123.50000000000001
  30
 0.0
  11
-727.3550614105758
+612.3550614105757
  21
 147.5
  31
@@ -6369,13 +7467,13 @@ DOTTED
   8
 90
  10
-727.3550614105758
+612.3550614105757
  20
 147.5
  30
 0.0
  11
-666.3550614105757
+551.3550614105758
  21
 147.5
  31
@@ -6389,13 +7487,13 @@ DOTTED
   8
 90
  10
-666.3550614105757
+551.3550614105758
  20
 147.5
  30
 0.0
  11
-666.3550614105757
+551.3550614105758
  21
 123.50000000000001
  31
@@ -6407,13 +7505,13 @@ LINE
   8
 cut
  10
-666.3550614105757
+551.3550614105758
  20
 116.50000000000001
  30
 0.0
  11
-666.3550614105757
+551.3550614105758
  21
 123.50000000000001
  31
@@ -6425,13 +7523,13 @@ LINE
   8
 cut
  10
-726.3550614105758
+611.3550614105757
  20
 116.50000000000001
  30
 0.0
  11
-666.3550614105757
+551.3550614105758
  21
 116.50000000000001
  31
@@ -6443,13 +7541,13 @@ LINE
   8
 cut
  10
-726.3550614105758
+611.3550614105757
  20
 123.50000000000001
  30
 0.0
  11
-726.3550614105758
+611.3550614105757
  21
 116.50000000000001
  31
@@ -6461,13 +7559,13 @@ LINE
   8
 cut
  10
-734.3550614105758
+619.3550614105757
  20
 123.50000000000001
  30
 0.0
  11
-727.3550614105758
+612.3550614105757
  21
 123.50000000000001
  31
@@ -6479,13 +7577,13 @@ LINE
   8
 cut
  10
-734.3550614105758
+619.3550614105757
  20
 147.5
  30
 0.0
  11
-734.3550614105758
+619.3550614105757
  21
 123.50000000000001
  31
@@ -6497,13 +7595,13 @@ LINE
   8
 cut
  10
-727.3550614105758
+612.3550614105757
  20
 147.5
  30
 0.0
  11
-734.3550614105758
+619.3550614105757
  21
 147.5
  31
@@ -6517,13 +7615,13 @@ DOTTED
   8
 90
  10
-727.3550614105758
+612.3550614105757
  20
 147.5
  30
 0.0
  11
-727.3550614105758
+612.3550614105757
  21
 208.50000000000003
  31
@@ -6535,13 +7633,13 @@ LINE
   8
 cut
  10
-667.3550614105757
+552.3550614105758
  20
 208.50000000000003
  30
 0.0
  11
-727.3550614105758
+612.3550614105757
  21
 208.50000000000003
  31
@@ -6555,13 +7653,13 @@ DOTTED
   8
 90
  10
-667.3550614105757
+552.3550614105758
  20
 147.5
  30
 0.0
  11
-667.3550614105757
+552.3550614105758
  21
 208.50000000000003
  31
@@ -6573,13 +7671,13 @@ LINE
   8
 cut
  10
-751.3550614105758
+636.3550614105758
  20
 147.5
  30
 0.0
  11
-727.3550614105758
+612.3550614105757
  21
 147.5
  31
@@ -6593,13 +7691,13 @@ DOTTED
   8
 90
  10
-751.3550614105758
+636.3550614105758
  20
 147.5
  30
 0.0
  11
-751.3550614105758
+636.3550614105758
  21
 208.50000000000003
  31
@@ -6611,13 +7709,13 @@ LINE
   8
 cut
  10
-727.3550614105758
+612.3550614105757
  20
 208.50000000000003
  30
 0.0
  11
-751.3550614105758
+636.3550614105758
  21
 208.50000000000003
  31
@@ -6629,13 +7727,13 @@ LINE
   8
 cut
  10
-811.3550614105757
+696.3550614105758
  20
 147.5
  30
 0.0
  11
-751.3550614105758
+636.3550614105758
  21
 147.5
  31
@@ -6647,13 +7745,13 @@ LINE
   8
 cut
  10
-811.3550614105757
+696.3550614105758
  20
 208.50000000000003
  30
 0.0
  11
-811.3550614105757
+696.3550614105758
  21
 147.5
  31
@@ -6665,13 +7763,13 @@ LINE
   8
 cut
  10
-751.3550614105758
+636.3550614105758
  20
 208.50000000000003
  30
 0.0
  11
-811.3550614105757
+696.3550614105758
  21
 208.50000000000003
  31
@@ -6683,13 +7781,13 @@ LINE
   8
 cut
  10
-667.3550614105757
+552.3550614105758
  20
 147.5
  30
 0.0
  11
-643.3550614105758
+528.3550614105758
  21
 147.5
  31
@@ -6701,13 +7799,13 @@ LINE
   8
 cut
  10
-643.3550614105758
+528.3550614105758
  20
 208.50000000000003
  30
 0.0
  11
-667.3550614105757
+552.3550614105758
  21
 208.50000000000003
  31
@@ -6721,13 +7819,13 @@ DOTTED
   8
 90
  10
-643.3550614105758
+528.3550614105758
  20
 208.50000000000003
  30
 0.0
  11
-643.3550614105758
+528.3550614105758
  21
 147.5
  31
@@ -6739,13 +7837,13 @@ LINE
   8
 cut
  10
-633.3550614105758
+518.3550614105758
  20
 208.50000000000003
  30
 0.0
  11
-643.3550614105758
+528.3550614105758
  21
 208.50000000000003
  31
@@ -6757,13 +7855,13 @@ LINE
   8
 cut
  10
-633.3550614105758
+518.3550614105758
  20
 147.5
  30
 0.0
  11
-633.3550614105758
+518.3550614105758
  21
 208.50000000000003
  31
@@ -6775,13 +7873,13 @@ LINE
   8
 cut
  10
-643.3550614105758
+528.3550614105758
  20
 147.5
  30
 0.0
  11
-633.3550614105758
+518.3550614105758
  21
 147.5
  31
@@ -6793,13 +7891,13 @@ LINE
   8
 cut
  10
-659.3550614105758
+544.3550614105758
  20
 147.5
  30
 0.0
  11
-666.3550614105757
+551.3550614105758
  21
 147.5
  31
@@ -6811,13 +7909,13 @@ LINE
   8
 cut
  10
-659.3550614105758
+544.3550614105758
  20
 123.50000000000001
  30
 0.0
  11
-659.3550614105758
+544.3550614105758
  21
 147.5
  31
@@ -6829,13 +7927,13 @@ LINE
   8
 cut
  10
-666.3550614105757
+551.3550614105758
  20
 123.50000000000001
  30
 0.0
  11
-659.3550614105758
+544.3550614105758
  21
 123.50000000000001
  31
@@ -6847,13 +7945,13 @@ LINE
   8
 cut
  10
-715.4459705014848
+600.4459705014849
  20
 118.25000000000001
  30
 0.0
  11
-718.9459705014849
+603.9459705014848
  21
 118.25000000000001
  31
@@ -6865,13 +7963,13 @@ LINE
   8
 cut
  10
-718.9459705014849
+603.9459705014848
  20
 118.25000000000001
  30
 0.0
  11
-715.4459705014848
+600.4459705014849
  21
 121.75000000000001
  31
@@ -6883,13 +7981,13 @@ LINE
   8
 cut
  10
-715.4459705014848
+600.4459705014849
  20
 121.75000000000001
  30
 0.0
  11
-704.5368795923939
+589.5368795923938
  21
 121.75000000000001
  31
@@ -6901,13 +7999,13 @@ LINE
   8
 cut
  10
-704.5368795923939
+589.5368795923938
  20
 121.75000000000001
  30
 0.0
  11
-701.0368795923939
+586.036879592394
  21
 118.25000000000001
  31
@@ -6919,13 +8017,13 @@ LINE
   8
 cut
  10
-701.0368795923939
+586.036879592394
  20
 118.25000000000001
  30
 0.0
  11
-704.5368795923939
+589.5368795923938
  21
 118.25000000000001
  31
@@ -6937,13 +8035,13 @@ LINE
   8
 cut
  10
-688.1732432287577
+573.1732432287577
  20
 118.25000000000001
  30
 0.0
  11
-691.6732432287577
+576.6732432287575
  21
 118.25000000000001
  31
@@ -6955,13 +8053,13 @@ LINE
   8
 cut
  10
-691.6732432287577
+576.6732432287575
  20
 118.25000000000001
  30
 0.0
  11
-688.1732432287577
+573.1732432287577
  21
 121.75000000000001
  31
@@ -6973,13 +8071,13 @@ LINE
   8
 cut
  10
-688.1732432287577
+573.1732432287577
  20
 121.75000000000001
  30
 0.0
  11
-677.2641523196667
+562.2641523196666
  21
 121.75000000000001
  31
@@ -6991,13 +8089,13 @@ LINE
   8
 cut
  10
-677.2641523196667
+562.2641523196666
  20
 121.75000000000001
  30
 0.0
  11
-673.7641523196667
+558.7641523196667
  21
 118.25000000000001
  31
@@ -7009,13 +8107,13 @@ LINE
   8
 cut
  10
-673.7641523196667
+558.7641523196667
  20
 118.25000000000001
  30
 0.0
  11
-677.2641523196667
+562.2641523196666
  21
 118.25000000000001
  31
@@ -7027,13 +8125,13 @@ LINE
   8
 cut
  10
-732.6050614105758
+617.6050614105757
  20
 139.50000000000003
  30
 0.0
  11
-729.1050614105758
+614.1050614105758
  21
 139.50000000000003
  31
@@ -7045,13 +8143,13 @@ LINE
   8
 cut
  10
-729.1050614105758
+614.1050614105758
  20
 139.50000000000003
  30
 0.0
  11
-729.1050614105758
+614.1050614105758
  21
 131.50000000000003
  31
@@ -7063,13 +8161,13 @@ LINE
   8
 cut
  10
-729.1050614105758
+614.1050614105758
  20
 131.50000000000003
  30
 0.0
  11
-732.6050614105758
+617.6050614105757
  21
 131.50000000000003
  31
@@ -7081,13 +8179,13 @@ LINE
   8
 cut
  10
-674.8550614105757
+559.8550614105758
  20
 199.00000000000003
  30
 0.0
  11
-674.8550614105757
+559.8550614105758
  21
 181.00000000000003
  31
@@ -7099,13 +8197,13 @@ LINE
   8
 cut
  10
-674.8550614105757
+559.8550614105758
  20
 181.00000000000003
  30
 0.0
  11
-709.8550614105758
+594.8550614105757
  21
 181.00000000000003
  31
@@ -7117,13 +8215,13 @@ LINE
   8
 cut
  10
-709.8550614105758
+594.8550614105757
  20
 181.00000000000003
  30
 0.0
  11
-709.8550614105758
+594.8550614105757
  21
 199.00000000000003
  31
@@ -7135,13 +8233,13 @@ LINE
   8
 cut
  10
-709.8550614105758
+594.8550614105757
  20
 199.00000000000003
  30
 0.0
  11
-674.8550614105757
+559.8550614105758
  21
 199.00000000000003
  31
@@ -7153,13 +8251,13 @@ LINE
   8
 cut
  10
-727.8550614105758
+612.8550614105757
  20
 160.75000000000003
  30
 0.0
  11
-727.8550614105758
+612.8550614105757
  21
 157.75000000000003
  31
@@ -7171,13 +8269,13 @@ LINE
   8
 cut
  10
-727.8550614105758
+612.8550614105757
  20
 157.75000000000003
  30
 0.0
  11
-730.8550614105757
+615.8550614105758
  21
 157.75000000000003
  31
@@ -7189,13 +8287,13 @@ LINE
   8
 cut
  10
-730.8550614105757
+615.8550614105758
  20
 157.75000000000003
  30
 0.0
  11
-730.8550614105757
+615.8550614105758
  21
 160.75000000000003
  31
@@ -7207,13 +8305,13 @@ LINE
   8
 cut
  10
-730.8550614105757
+615.8550614105758
  20
 160.75000000000003
  30
 0.0
  11
-727.8550614105758
+612.8550614105757
  21
 160.75000000000003
  31
@@ -7225,13 +8323,13 @@ LINE
   8
 cut
  10
-748.8550614105757
+633.8550614105758
  20
 159.75000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 158.75000000000003
  31
@@ -7243,13 +8341,13 @@ LINE
   8
 cut
  10
-748.8550614105757
+633.8550614105758
  20
 158.75000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 158.75000000000003
  31
@@ -7261,13 +8359,13 @@ LINE
   8
 cut
  10
-749.8550614105758
+634.8550614105758
  20
 158.75000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 159.75000000000003
  31
@@ -7279,13 +8377,13 @@ LINE
   8
 cut
  10
-749.8550614105758
+634.8550614105758
  20
 159.75000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 159.75000000000003
  31
@@ -7297,13 +8395,13 @@ LINE
   8
 cut
  10
-728.8550614105757
+613.8550614105758
  20
 162.25000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 161.25
  31
@@ -7315,13 +8413,13 @@ LINE
   8
 cut
  10
-728.8550614105757
+613.8550614105758
  20
 161.25
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 161.25
  31
@@ -7333,13 +8431,13 @@ LINE
   8
 cut
  10
-729.8550614105757
+614.8550614105758
  20
 161.25
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 162.25000000000003
  31
@@ -7351,13 +8449,13 @@ LINE
   8
 cut
  10
-729.8550614105757
+614.8550614105758
  20
 162.25000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 162.25000000000003
  31
@@ -7369,13 +8467,13 @@ LINE
   8
 cut
  10
-748.8550614105757
+633.8550614105758
  20
 162.25000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 161.25
  31
@@ -7387,13 +8485,13 @@ LINE
   8
 cut
  10
-748.8550614105757
+633.8550614105758
  20
 161.25
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 161.25
  31
@@ -7405,13 +8503,13 @@ LINE
   8
 cut
  10
-749.8550614105758
+634.8550614105758
  20
 161.25
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 162.25000000000003
  31
@@ -7423,13 +8521,13 @@ LINE
   8
 cut
  10
-749.8550614105758
+634.8550614105758
  20
 162.25000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 162.25000000000003
  31
@@ -7441,13 +8539,13 @@ LINE
   8
 cut
  10
-728.8550614105757
+613.8550614105758
  20
 164.75000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 163.75
  31
@@ -7459,13 +8557,13 @@ LINE
   8
 cut
  10
-728.8550614105757
+613.8550614105758
  20
 163.75
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 163.75
  31
@@ -7477,13 +8575,13 @@ LINE
   8
 cut
  10
-729.8550614105757
+614.8550614105758
  20
 163.75
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 164.75000000000003
  31
@@ -7495,13 +8593,13 @@ LINE
   8
 cut
  10
-729.8550614105757
+614.8550614105758
  20
 164.75000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 164.75000000000003
  31
@@ -7513,13 +8611,13 @@ LINE
   8
 cut
  10
-748.8550614105757
+633.8550614105758
  20
 164.75000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 163.75
  31
@@ -7531,13 +8629,13 @@ LINE
   8
 cut
  10
-748.8550614105757
+633.8550614105758
  20
 163.75
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 163.75
  31
@@ -7549,13 +8647,13 @@ LINE
   8
 cut
  10
-749.8550614105758
+634.8550614105758
  20
 163.75
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 164.75000000000003
  31
@@ -7567,13 +8665,13 @@ LINE
   8
 cut
  10
-749.8550614105758
+634.8550614105758
  20
 164.75000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 164.75000000000003
  31
@@ -7585,13 +8683,13 @@ LINE
   8
 cut
  10
-728.8550614105757
+613.8550614105758
  20
 167.25000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 166.25
  31
@@ -7603,13 +8701,13 @@ LINE
   8
 cut
  10
-728.8550614105757
+613.8550614105758
  20
 166.25
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 166.25
  31
@@ -7621,13 +8719,13 @@ LINE
   8
 cut
  10
-729.8550614105757
+614.8550614105758
  20
 166.25
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 167.25000000000003
  31
@@ -7639,13 +8737,13 @@ LINE
   8
 cut
  10
-729.8550614105757
+614.8550614105758
  20
 167.25000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 167.25000000000003
  31
@@ -7657,13 +8755,13 @@ LINE
   8
 cut
  10
-748.8550614105757
+633.8550614105758
  20
 167.25000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 166.25
  31
@@ -7675,13 +8773,13 @@ LINE
   8
 cut
  10
-748.8550614105757
+633.8550614105758
  20
 166.25
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 166.25
  31
@@ -7693,13 +8791,13 @@ LINE
   8
 cut
  10
-749.8550614105758
+634.8550614105758
  20
 166.25
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 167.25000000000003
  31
@@ -7711,13 +8809,13 @@ LINE
   8
 cut
  10
-749.8550614105758
+634.8550614105758
  20
 167.25000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 167.25000000000003
  31
@@ -7729,13 +8827,13 @@ LINE
   8
 cut
  10
-728.8550614105757
+613.8550614105758
  20
 169.75000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 168.75000000000003
  31
@@ -7747,13 +8845,13 @@ LINE
   8
 cut
  10
-728.8550614105757
+613.8550614105758
  20
 168.75000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 168.75000000000003
  31
@@ -7765,13 +8863,13 @@ LINE
   8
 cut
  10
-729.8550614105757
+614.8550614105758
  20
 168.75000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 169.75000000000003
  31
@@ -7783,13 +8881,13 @@ LINE
   8
 cut
  10
-729.8550614105757
+614.8550614105758
  20
 169.75000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 169.75000000000003
  31
@@ -7801,13 +8899,13 @@ LINE
   8
 cut
  10
-748.8550614105757
+633.8550614105758
  20
 169.75000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 168.75000000000003
  31
@@ -7819,13 +8917,13 @@ LINE
   8
 cut
  10
-748.8550614105757
+633.8550614105758
  20
 168.75000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 168.75000000000003
  31
@@ -7837,13 +8935,13 @@ LINE
   8
 cut
  10
-749.8550614105758
+634.8550614105758
  20
 168.75000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 169.75000000000003
  31
@@ -7855,13 +8953,13 @@ LINE
   8
 cut
  10
-749.8550614105758
+634.8550614105758
  20
 169.75000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 169.75000000000003
  31
@@ -7873,13 +8971,13 @@ LINE
   8
 cut
  10
-728.8550614105757
+613.8550614105758
  20
 172.25000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 171.25000000000003
  31
@@ -7891,13 +8989,13 @@ LINE
   8
 cut
  10
-728.8550614105757
+613.8550614105758
  20
 171.25000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 171.25000000000003
  31
@@ -7909,13 +9007,13 @@ LINE
   8
 cut
  10
-729.8550614105757
+614.8550614105758
  20
 171.25000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 172.25000000000003
  31
@@ -7927,13 +9025,13 @@ LINE
   8
 cut
  10
-729.8550614105757
+614.8550614105758
  20
 172.25000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 172.25000000000003
  31
@@ -7945,13 +9043,13 @@ LINE
   8
 cut
  10
-748.8550614105757
+633.8550614105758
  20
 172.25000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 171.25000000000003
  31
@@ -7963,13 +9061,13 @@ LINE
   8
 cut
  10
-748.8550614105757
+633.8550614105758
  20
 171.25000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 171.25000000000003
  31
@@ -7981,13 +9079,13 @@ LINE
   8
 cut
  10
-749.8550614105758
+634.8550614105758
  20
 171.25000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 172.25000000000003
  31
@@ -7999,13 +9097,13 @@ LINE
   8
 cut
  10
-749.8550614105758
+634.8550614105758
  20
 172.25000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 172.25000000000003
  31
@@ -8017,13 +9115,13 @@ LINE
   8
 cut
  10
-728.8550614105757
+613.8550614105758
  20
 174.75000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 173.75000000000003
  31
@@ -8035,13 +9133,13 @@ LINE
   8
 cut
  10
-728.8550614105757
+613.8550614105758
  20
 173.75000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 173.75000000000003
  31
@@ -8053,13 +9151,13 @@ LINE
   8
 cut
  10
-729.8550614105757
+614.8550614105758
  20
 173.75000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 174.75000000000003
  31
@@ -8071,13 +9169,13 @@ LINE
   8
 cut
  10
-729.8550614105757
+614.8550614105758
  20
 174.75000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 174.75000000000003
  31
@@ -8089,13 +9187,13 @@ LINE
   8
 cut
  10
-748.8550614105757
+633.8550614105758
  20
 174.75000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 173.75000000000003
  31
@@ -8107,13 +9205,13 @@ LINE
   8
 cut
  10
-748.8550614105757
+633.8550614105758
  20
 173.75000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 173.75000000000003
  31
@@ -8125,13 +9223,13 @@ LINE
   8
 cut
  10
-749.8550614105758
+634.8550614105758
  20
 173.75000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 174.75000000000003
  31
@@ -8143,13 +9241,13 @@ LINE
   8
 cut
  10
-749.8550614105758
+634.8550614105758
  20
 174.75000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 174.75000000000003
  31
@@ -8161,13 +9259,13 @@ LINE
   8
 cut
  10
-728.8550614105757
+613.8550614105758
  20
 177.25
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 176.25000000000003
  31
@@ -8179,13 +9277,13 @@ LINE
   8
 cut
  10
-728.8550614105757
+613.8550614105758
  20
 176.25000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 176.25000000000003
  31
@@ -8197,13 +9295,13 @@ LINE
   8
 cut
  10
-729.8550614105757
+614.8550614105758
  20
 176.25000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 177.25
  31
@@ -8215,13 +9313,13 @@ LINE
   8
 cut
  10
-729.8550614105757
+614.8550614105758
  20
 177.25
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 177.25
  31
@@ -8233,13 +9331,13 @@ LINE
   8
 cut
  10
-748.8550614105757
+633.8550614105758
  20
 177.25
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 176.25000000000003
  31
@@ -8251,13 +9349,13 @@ LINE
   8
 cut
  10
-748.8550614105757
+633.8550614105758
  20
 176.25000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 176.25000000000003
  31
@@ -8269,13 +9367,13 @@ LINE
   8
 cut
  10
-749.8550614105758
+634.8550614105758
  20
 176.25000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 177.25
  31
@@ -8287,13 +9385,13 @@ LINE
   8
 cut
  10
-749.8550614105758
+634.8550614105758
  20
 177.25
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 177.25
  31
@@ -8305,13 +9403,13 @@ LINE
   8
 cut
  10
-728.8550614105757
+613.8550614105758
  20
 179.75
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 178.75000000000003
  31
@@ -8323,13 +9421,13 @@ LINE
   8
 cut
  10
-728.8550614105757
+613.8550614105758
  20
 178.75000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 178.75000000000003
  31
@@ -8341,13 +9439,13 @@ LINE
   8
 cut
  10
-729.8550614105757
+614.8550614105758
  20
 178.75000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 179.75
  31
@@ -8359,13 +9457,13 @@ LINE
   8
 cut
  10
-729.8550614105757
+614.8550614105758
  20
 179.75
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 179.75
  31
@@ -8377,13 +9475,13 @@ LINE
   8
 cut
  10
-748.8550614105757
+633.8550614105758
  20
 179.75
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 178.75000000000003
  31
@@ -8395,13 +9493,13 @@ LINE
   8
 cut
  10
-748.8550614105757
+633.8550614105758
  20
 178.75000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 178.75000000000003
  31
@@ -8413,13 +9511,13 @@ LINE
   8
 cut
  10
-749.8550614105758
+634.8550614105758
  20
 178.75000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 179.75
  31
@@ -8431,13 +9529,13 @@ LINE
   8
 cut
  10
-749.8550614105758
+634.8550614105758
  20
 179.75
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 179.75
  31
@@ -8449,13 +9547,13 @@ LINE
   8
 cut
  10
-728.8550614105757
+613.8550614105758
  20
 182.25
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 181.25000000000003
  31
@@ -8467,13 +9565,13 @@ LINE
   8
 cut
  10
-728.8550614105757
+613.8550614105758
  20
 181.25000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 181.25000000000003
  31
@@ -8485,13 +9583,13 @@ LINE
   8
 cut
  10
-729.8550614105757
+614.8550614105758
  20
 181.25000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 182.25
  31
@@ -8503,13 +9601,13 @@ LINE
   8
 cut
  10
-729.8550614105757
+614.8550614105758
  20
 182.25
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 182.25
  31
@@ -8521,13 +9619,13 @@ LINE
   8
 cut
  10
-748.8550614105757
+633.8550614105758
  20
 182.25
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 181.25000000000003
  31
@@ -8539,13 +9637,13 @@ LINE
   8
 cut
  10
-748.8550614105757
+633.8550614105758
  20
 181.25000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 181.25000000000003
  31
@@ -8557,13 +9655,13 @@ LINE
   8
 cut
  10
-749.8550614105758
+634.8550614105758
  20
 181.25000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 182.25
  31
@@ -8575,13 +9673,13 @@ LINE
   8
 cut
  10
-749.8550614105758
+634.8550614105758
  20
 182.25
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 182.25
  31
@@ -8593,13 +9691,13 @@ LINE
   8
 cut
  10
-728.8550614105757
+613.8550614105758
  20
 184.75000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 183.75000000000003
  31
@@ -8611,13 +9709,13 @@ LINE
   8
 cut
  10
-728.8550614105757
+613.8550614105758
  20
 183.75000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 183.75000000000003
  31
@@ -8629,13 +9727,13 @@ LINE
   8
 cut
  10
-729.8550614105757
+614.8550614105758
  20
 183.75000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 184.75000000000003
  31
@@ -8647,13 +9745,13 @@ LINE
   8
 cut
  10
-729.8550614105757
+614.8550614105758
  20
 184.75000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 184.75000000000003
  31
@@ -8665,13 +9763,13 @@ LINE
   8
 cut
  10
-748.8550614105757
+633.8550614105758
  20
 184.75000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 183.75000000000003
  31
@@ -8683,13 +9781,13 @@ LINE
   8
 cut
  10
-748.8550614105757
+633.8550614105758
  20
 183.75000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 183.75000000000003
  31
@@ -8701,13 +9799,13 @@ LINE
   8
 cut
  10
-749.8550614105758
+634.8550614105758
  20
 183.75000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 184.75000000000003
  31
@@ -8719,13 +9817,13 @@ LINE
   8
 cut
  10
-749.8550614105758
+634.8550614105758
  20
 184.75000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 184.75000000000003
  31
@@ -8737,13 +9835,13 @@ LINE
   8
 cut
  10
-728.8550614105757
+613.8550614105758
  20
 187.25000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 186.25000000000003
  31
@@ -8755,13 +9853,13 @@ LINE
   8
 cut
  10
-728.8550614105757
+613.8550614105758
  20
 186.25000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 186.25000000000003
  31
@@ -8773,13 +9871,13 @@ LINE
   8
 cut
  10
-729.8550614105757
+614.8550614105758
  20
 186.25000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 187.25000000000003
  31
@@ -8791,13 +9889,13 @@ LINE
   8
 cut
  10
-729.8550614105757
+614.8550614105758
  20
 187.25000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 187.25000000000003
  31
@@ -8809,13 +9907,13 @@ LINE
   8
 cut
  10
-748.8550614105757
+633.8550614105758
  20
 187.25000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 186.25000000000003
  31
@@ -8827,13 +9925,13 @@ LINE
   8
 cut
  10
-748.8550614105757
+633.8550614105758
  20
 186.25000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 186.25000000000003
  31
@@ -8845,13 +9943,13 @@ LINE
   8
 cut
  10
-749.8550614105758
+634.8550614105758
  20
 186.25000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 187.25000000000003
  31
@@ -8863,13 +9961,13 @@ LINE
   8
 cut
  10
-749.8550614105758
+634.8550614105758
  20
 187.25000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 187.25000000000003
  31
@@ -8881,13 +9979,13 @@ LINE
   8
 cut
  10
-728.8550614105757
+613.8550614105758
  20
 189.75000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 188.75
  31
@@ -8899,13 +9997,13 @@ LINE
   8
 cut
  10
-728.8550614105757
+613.8550614105758
  20
 188.75
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 188.75
  31
@@ -8917,13 +10015,13 @@ LINE
   8
 cut
  10
-729.8550614105757
+614.8550614105758
  20
 188.75
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 189.75000000000003
  31
@@ -8935,13 +10033,13 @@ LINE
   8
 cut
  10
-729.8550614105757
+614.8550614105758
  20
 189.75000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 189.75000000000003
  31
@@ -8953,13 +10051,13 @@ LINE
   8
 cut
  10
-748.8550614105757
+633.8550614105758
  20
 189.75000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 188.75
  31
@@ -8971,13 +10069,13 @@ LINE
   8
 cut
  10
-748.8550614105757
+633.8550614105758
  20
 188.75
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 188.75
  31
@@ -8989,13 +10087,13 @@ LINE
   8
 cut
  10
-749.8550614105758
+634.8550614105758
  20
 188.75
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 189.75000000000003
  31
@@ -9007,13 +10105,13 @@ LINE
   8
 cut
  10
-749.8550614105758
+634.8550614105758
  20
 189.75000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 189.75000000000003
  31
@@ -9025,13 +10123,13 @@ LINE
   8
 cut
  10
-728.8550614105757
+613.8550614105758
  20
 192.25000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 191.25
  31
@@ -9043,13 +10141,13 @@ LINE
   8
 cut
  10
-728.8550614105757
+613.8550614105758
  20
 191.25
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 191.25
  31
@@ -9061,13 +10159,13 @@ LINE
   8
 cut
  10
-729.8550614105757
+614.8550614105758
  20
 191.25
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 192.25000000000003
  31
@@ -9079,13 +10177,13 @@ LINE
   8
 cut
  10
-729.8550614105757
+614.8550614105758
  20
 192.25000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 192.25000000000003
  31
@@ -9097,13 +10195,13 @@ LINE
   8
 cut
  10
-748.8550614105757
+633.8550614105758
  20
 192.25000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 191.25
  31
@@ -9115,13 +10213,13 @@ LINE
   8
 cut
  10
-748.8550614105757
+633.8550614105758
  20
 191.25
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 191.25
  31
@@ -9133,13 +10231,13 @@ LINE
   8
 cut
  10
-749.8550614105758
+634.8550614105758
  20
 191.25
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 192.25000000000003
  31
@@ -9151,13 +10249,13 @@ LINE
   8
 cut
  10
-749.8550614105758
+634.8550614105758
  20
 192.25000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 192.25000000000003
  31
@@ -9169,13 +10267,13 @@ LINE
   8
 cut
  10
-728.8550614105757
+613.8550614105758
  20
 194.75000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 193.75000000000003
  31
@@ -9187,13 +10285,13 @@ LINE
   8
 cut
  10
-728.8550614105757
+613.8550614105758
  20
 193.75000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 193.75000000000003
  31
@@ -9205,13 +10303,13 @@ LINE
   8
 cut
  10
-729.8550614105757
+614.8550614105758
  20
 193.75000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 194.75000000000003
  31
@@ -9223,13 +10321,13 @@ LINE
   8
 cut
  10
-729.8550614105757
+614.8550614105758
  20
 194.75000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 194.75000000000003
  31
@@ -9241,13 +10339,13 @@ LINE
   8
 cut
  10
-748.8550614105757
+633.8550614105758
  20
 194.75000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 193.75000000000003
  31
@@ -9259,13 +10357,13 @@ LINE
   8
 cut
  10
-748.8550614105757
+633.8550614105758
  20
 193.75000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 193.75000000000003
  31
@@ -9277,13 +10375,13 @@ LINE
   8
 cut
  10
-749.8550614105758
+634.8550614105758
  20
 193.75000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 194.75000000000003
  31
@@ -9295,13 +10393,13 @@ LINE
   8
 cut
  10
-749.8550614105758
+634.8550614105758
  20
 194.75000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 194.75000000000003
  31
@@ -9313,13 +10411,13 @@ LINE
   8
 cut
  10
-728.8550614105757
+613.8550614105758
  20
 197.25000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 196.25000000000003
  31
@@ -9331,13 +10429,13 @@ LINE
   8
 cut
  10
-728.8550614105757
+613.8550614105758
  20
 196.25000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 196.25000000000003
  31
@@ -9349,13 +10447,13 @@ LINE
   8
 cut
  10
-729.8550614105757
+614.8550614105758
  20
 196.25000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 197.25000000000003
  31
@@ -9367,13 +10465,13 @@ LINE
   8
 cut
  10
-729.8550614105757
+614.8550614105758
  20
 197.25000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 197.25000000000003
  31
@@ -9385,13 +10483,13 @@ LINE
   8
 cut
  10
-747.8550614105757
+632.8550614105758
  20
 198.25000000000003
  30
 0.0
  11
-747.8550614105757
+632.8550614105758
  21
 195.25000000000003
  31
@@ -9403,13 +10501,13 @@ LINE
   8
 cut
  10
-747.8550614105757
+632.8550614105758
  20
 195.25000000000003
  30
 0.0
  11
-750.8550614105758
+635.8550614105758
  21
 195.25000000000003
  31
@@ -9421,13 +10519,13 @@ LINE
   8
 cut
  10
-750.8550614105758
+635.8550614105758
  20
 195.25000000000003
  30
 0.0
  11
-750.8550614105758
+635.8550614105758
  21
 198.25000000000003
  31
@@ -9439,13 +10537,13 @@ LINE
   8
 cut
  10
-750.8550614105758
+635.8550614105758
  20
 198.25000000000003
  30
 0.0
  11
-747.8550614105757
+632.8550614105758
  21
 198.25000000000003
  31
@@ -9457,13 +10555,13 @@ LINE
   8
 cut
  10
-743.6050614105757
+628.6050614105758
  20
 155.25000000000003
  30
 0.0
  11
-735.1050614105757
+620.1050614105758
  21
 155.25000000000003
  31
@@ -9475,13 +10573,13 @@ LINE
   8
 cut
  10
-735.1050614105757
+620.1050614105758
  20
 155.25000000000003
  30
 0.0
  11
-735.1050614105757
+620.1050614105758
  21
 154.75
  31
@@ -9493,13 +10591,13 @@ LINE
   8
 cut
  10
-735.1050614105757
+620.1050614105758
  20
 154.75
  30
 0.0
  11
-743.6050614105757
+628.6050614105758
  21
 154.75
  31
@@ -9511,13 +10609,13 @@ LINE
   8
 cut
  10
-743.6050614105757
+628.6050614105758
  20
 154.75
  30
 0.0
  11
-743.6050614105757
+628.6050614105758
  21
 155.25000000000003
  31
@@ -9529,13 +10627,13 @@ LINE
   8
 cut
  10
-735.1050614105757
+620.1050614105758
  20
 203.00000000000003
  30
 0.0
  11
-743.6050614105757
+628.6050614105758
  21
 203.00000000000003
  31
@@ -9547,13 +10645,13 @@ LINE
   8
 cut
  10
-743.6050614105757
+628.6050614105758
  20
 203.00000000000003
  30
 0.0
  11
-743.6050614105757
+628.6050614105758
  21
 203.50000000000003
  31
@@ -9565,13 +10663,13 @@ LINE
   8
 cut
  10
-743.6050614105757
+628.6050614105758
  20
 203.50000000000003
  30
 0.0
  11
-735.1050614105757
+620.1050614105758
  21
 203.50000000000003
  31
@@ -9583,13 +10681,13 @@ LINE
   8
 cut
  10
-735.1050614105757
+620.1050614105758
  20
 203.50000000000003
  30
 0.0
  11
-735.1050614105757
+620.1050614105758
  21
 203.00000000000003
  31
@@ -9601,13 +10699,13 @@ LINE
   8
 cut
  10
-766.3550614105757
+651.3550614105758
  20
 198.50000000000003
  30
 0.0
  11
-766.3550614105757
+651.3550614105758
  21
 185.50000000000003
  31
@@ -9619,13 +10717,13 @@ LINE
   8
 cut
  10
-766.3550614105757
+651.3550614105758
  20
 185.50000000000003
  30
 0.0
  11
-796.3550614105758
+681.3550614105758
  21
 185.50000000000003
  31
@@ -9637,13 +10735,13 @@ LINE
   8
 cut
  10
-796.3550614105758
+681.3550614105758
  20
 185.50000000000003
  30
 0.0
  11
-796.3550614105758
+681.3550614105758
  21
 198.50000000000003
  31
@@ -9655,13 +10753,13 @@ LINE
   8
 cut
  10
-796.3550614105758
+681.3550614105758
  20
 198.50000000000003
  30
 0.0
  11
-766.3550614105757
+651.3550614105758
  21
 198.50000000000003
  31
@@ -9673,13 +10771,13 @@ LINE
   8
 cut
  10
-773.4232432287574
+658.4232432287575
  20
 153.00000000000003
  30
 0.0
  11
-762.0141523196667
+647.0141523196667
  21
 153.00000000000003
  31
@@ -9691,13 +10789,13 @@ LINE
   8
 cut
  10
-762.0141523196667
+647.0141523196667
  20
 153.00000000000003
  30
 0.0
  11
-762.0141523196667
+647.0141523196667
  21
 152.5
  31
@@ -9709,13 +10807,13 @@ LINE
   8
 cut
  10
-762.0141523196667
+647.0141523196667
  20
 152.5
  30
 0.0
  11
-773.4232432287574
+658.4232432287575
  21
 152.5
  31
@@ -9727,13 +10825,13 @@ LINE
   8
 cut
  10
-773.4232432287574
+658.4232432287575
  20
 152.5
  30
 0.0
  11
-773.4232432287574
+658.4232432287575
  21
 153.00000000000003
  31
@@ -9745,13 +10843,13 @@ LINE
   8
 cut
  10
-800.6959705014848
+685.6959705014849
  20
 153.00000000000003
  30
 0.0
  11
-789.2868795923939
+674.2868795923939
  21
 153.00000000000003
  31
@@ -9763,13 +10861,13 @@ LINE
   8
 cut
  10
-789.2868795923939
+674.2868795923939
  20
 153.00000000000003
  30
 0.0
  11
-789.2868795923939
+674.2868795923939
  21
 152.5
  31
@@ -9781,13 +10879,13 @@ LINE
   8
 cut
  10
-789.2868795923939
+674.2868795923939
  20
 152.5
  30
 0.0
  11
-800.6959705014848
+685.6959705014849
  21
 152.5
  31
@@ -9799,13 +10897,13 @@ LINE
   8
 cut
  10
-800.6959705014848
+685.6959705014849
  20
 152.5
  30
 0.0
  11
-800.6959705014848
+685.6959705014849
  21
 153.00000000000003
  31
@@ -9817,13 +10915,13 @@ LINE
   8
 cut
  10
-803.6050614105758
+688.6050614105757
  20
 169.93181818181822
  30
 0.0
  11
-803.6050614105758
+688.6050614105757
  21
 158.3409090909091
  31
@@ -9835,13 +10933,13 @@ LINE
   8
 cut
  10
-803.6050614105758
+688.6050614105757
  20
 158.3409090909091
  30
 0.0
  11
-804.1050614105758
+689.1050614105757
  21
 158.3409090909091
  31
@@ -9853,13 +10951,13 @@ LINE
   8
 cut
  10
-804.1050614105758
+689.1050614105757
  20
 158.3409090909091
  30
 0.0
  11
-804.1050614105758
+689.1050614105757
  21
 169.93181818181822
  31
@@ -9871,13 +10969,13 @@ LINE
   8
 cut
  10
-804.1050614105758
+689.1050614105757
  20
 169.93181818181822
  30
 0.0
  11
-803.6050614105758
+688.6050614105757
  21
 169.93181818181822
  31
@@ -9889,13 +10987,13 @@ LINE
   8
 cut
  10
-803.6050614105758
+688.6050614105757
  20
 197.65909090909093
  30
 0.0
  11
-803.6050614105758
+688.6050614105757
  21
 186.06818181818184
  31
@@ -9907,13 +11005,13 @@ LINE
   8
 cut
  10
-803.6050614105758
+688.6050614105757
  20
 186.06818181818184
  30
 0.0
  11
-804.1050614105758
+689.1050614105757
  21
 186.06818181818184
  31
@@ -9925,13 +11023,13 @@ LINE
   8
 cut
  10
-804.1050614105758
+689.1050614105757
  20
 186.06818181818184
  30
 0.0
  11
-804.1050614105758
+689.1050614105757
  21
 197.65909090909093
  31
@@ -9943,13 +11041,13 @@ LINE
   8
 cut
  10
-804.1050614105758
+689.1050614105757
  20
 197.65909090909093
  30
 0.0
  11
-803.6050614105758
+688.6050614105757
  21
 197.65909090909093
  31
@@ -9961,13 +11059,13 @@ LINE
   8
 cut
  10
-643.8550614105758
+528.8550614105758
  20
 160.75000000000003
  30
 0.0
  11
-643.8550614105758
+528.8550614105758
  21
 157.75000000000003
  31
@@ -9979,13 +11077,13 @@ LINE
   8
 cut
  10
-643.8550614105758
+528.8550614105758
  20
 157.75000000000003
  30
 0.0
  11
-646.8550614105757
+531.8550614105758
  21
 157.75000000000003
  31
@@ -9997,13 +11095,13 @@ LINE
   8
 cut
  10
-646.8550614105757
+531.8550614105758
  20
 157.75000000000003
  30
 0.0
  11
-646.8550614105757
+531.8550614105758
  21
 160.75000000000003
  31
@@ -10015,13 +11113,13 @@ LINE
   8
 cut
  10
-646.8550614105757
+531.8550614105758
  20
 160.75000000000003
  30
 0.0
  11
-643.8550614105758
+528.8550614105758
  21
 160.75000000000003
  31
@@ -10033,13 +11131,13 @@ LINE
   8
 cut
  10
-664.8550614105757
+549.8550614105758
  20
 159.75000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 158.75000000000003
  31
@@ -10051,13 +11149,13 @@ LINE
   8
 cut
  10
-664.8550614105757
+549.8550614105758
  20
 158.75000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 158.75000000000003
  31
@@ -10069,13 +11167,13 @@ LINE
   8
 cut
  10
-665.8550614105757
+550.8550614105758
  20
 158.75000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 159.75000000000003
  31
@@ -10087,13 +11185,13 @@ LINE
   8
 cut
  10
-665.8550614105757
+550.8550614105758
  20
 159.75000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 159.75000000000003
  31
@@ -10105,13 +11203,13 @@ LINE
   8
 cut
  10
-644.8550614105758
+529.8550614105758
  20
 162.25000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 161.25
  31
@@ -10123,13 +11221,13 @@ LINE
   8
 cut
  10
-644.8550614105758
+529.8550614105758
  20
 161.25
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 161.25
  31
@@ -10141,13 +11239,13 @@ LINE
   8
 cut
  10
-645.8550614105758
+530.8550614105757
  20
 161.25
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 162.25000000000003
  31
@@ -10159,13 +11257,13 @@ LINE
   8
 cut
  10
-645.8550614105758
+530.8550614105757
  20
 162.25000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 162.25000000000003
  31
@@ -10177,13 +11275,13 @@ LINE
   8
 cut
  10
-664.8550614105757
+549.8550614105758
  20
 162.25000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 161.25
  31
@@ -10195,13 +11293,13 @@ LINE
   8
 cut
  10
-664.8550614105757
+549.8550614105758
  20
 161.25
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 161.25
  31
@@ -10213,13 +11311,13 @@ LINE
   8
 cut
  10
-665.8550614105757
+550.8550614105758
  20
 161.25
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 162.25000000000003
  31
@@ -10231,13 +11329,13 @@ LINE
   8
 cut
  10
-665.8550614105757
+550.8550614105758
  20
 162.25000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 162.25000000000003
  31
@@ -10249,13 +11347,13 @@ LINE
   8
 cut
  10
-644.8550614105758
+529.8550614105758
  20
 164.75000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 163.75
  31
@@ -10267,13 +11365,13 @@ LINE
   8
 cut
  10
-644.8550614105758
+529.8550614105758
  20
 163.75
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 163.75
  31
@@ -10285,13 +11383,13 @@ LINE
   8
 cut
  10
-645.8550614105758
+530.8550614105757
  20
 163.75
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 164.75000000000003
  31
@@ -10303,13 +11401,13 @@ LINE
   8
 cut
  10
-645.8550614105758
+530.8550614105757
  20
 164.75000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 164.75000000000003
  31
@@ -10321,13 +11419,13 @@ LINE
   8
 cut
  10
-664.8550614105757
+549.8550614105758
  20
 164.75000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 163.75
  31
@@ -10339,13 +11437,13 @@ LINE
   8
 cut
  10
-664.8550614105757
+549.8550614105758
  20
 163.75
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 163.75
  31
@@ -10357,13 +11455,13 @@ LINE
   8
 cut
  10
-665.8550614105757
+550.8550614105758
  20
 163.75
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 164.75000000000003
  31
@@ -10375,13 +11473,13 @@ LINE
   8
 cut
  10
-665.8550614105757
+550.8550614105758
  20
 164.75000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 164.75000000000003
  31
@@ -10393,13 +11491,13 @@ LINE
   8
 cut
  10
-644.8550614105758
+529.8550614105758
  20
 167.25000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 166.25
  31
@@ -10411,13 +11509,13 @@ LINE
   8
 cut
  10
-644.8550614105758
+529.8550614105758
  20
 166.25
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 166.25
  31
@@ -10429,13 +11527,13 @@ LINE
   8
 cut
  10
-645.8550614105758
+530.8550614105757
  20
 166.25
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 167.25000000000003
  31
@@ -10447,13 +11545,13 @@ LINE
   8
 cut
  10
-645.8550614105758
+530.8550614105757
  20
 167.25000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 167.25000000000003
  31
@@ -10465,13 +11563,13 @@ LINE
   8
 cut
  10
-664.8550614105757
+549.8550614105758
  20
 167.25000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 166.25
  31
@@ -10483,13 +11581,13 @@ LINE
   8
 cut
  10
-664.8550614105757
+549.8550614105758
  20
 166.25
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 166.25
  31
@@ -10501,13 +11599,13 @@ LINE
   8
 cut
  10
-665.8550614105757
+550.8550614105758
  20
 166.25
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 167.25000000000003
  31
@@ -10519,13 +11617,13 @@ LINE
   8
 cut
  10
-665.8550614105757
+550.8550614105758
  20
 167.25000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 167.25000000000003
  31
@@ -10537,13 +11635,13 @@ LINE
   8
 cut
  10
-644.8550614105758
+529.8550614105758
  20
 169.75000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 168.75000000000003
  31
@@ -10555,13 +11653,13 @@ LINE
   8
 cut
  10
-644.8550614105758
+529.8550614105758
  20
 168.75000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 168.75000000000003
  31
@@ -10573,13 +11671,13 @@ LINE
   8
 cut
  10
-645.8550614105758
+530.8550614105757
  20
 168.75000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 169.75000000000003
  31
@@ -10591,13 +11689,13 @@ LINE
   8
 cut
  10
-645.8550614105758
+530.8550614105757
  20
 169.75000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 169.75000000000003
  31
@@ -10609,13 +11707,13 @@ LINE
   8
 cut
  10
-664.8550614105757
+549.8550614105758
  20
 169.75000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 168.75000000000003
  31
@@ -10627,13 +11725,13 @@ LINE
   8
 cut
  10
-664.8550614105757
+549.8550614105758
  20
 168.75000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 168.75000000000003
  31
@@ -10645,13 +11743,13 @@ LINE
   8
 cut
  10
-665.8550614105757
+550.8550614105758
  20
 168.75000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 169.75000000000003
  31
@@ -10663,13 +11761,13 @@ LINE
   8
 cut
  10
-665.8550614105757
+550.8550614105758
  20
 169.75000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 169.75000000000003
  31
@@ -10681,13 +11779,13 @@ LINE
   8
 cut
  10
-644.8550614105758
+529.8550614105758
  20
 172.25000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 171.25000000000003
  31
@@ -10699,13 +11797,13 @@ LINE
   8
 cut
  10
-644.8550614105758
+529.8550614105758
  20
 171.25000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 171.25000000000003
  31
@@ -10717,13 +11815,13 @@ LINE
   8
 cut
  10
-645.8550614105758
+530.8550614105757
  20
 171.25000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 172.25000000000003
  31
@@ -10735,13 +11833,13 @@ LINE
   8
 cut
  10
-645.8550614105758
+530.8550614105757
  20
 172.25000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 172.25000000000003
  31
@@ -10753,13 +11851,13 @@ LINE
   8
 cut
  10
-664.8550614105757
+549.8550614105758
  20
 172.25000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 171.25000000000003
  31
@@ -10771,13 +11869,13 @@ LINE
   8
 cut
  10
-664.8550614105757
+549.8550614105758
  20
 171.25000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 171.25000000000003
  31
@@ -10789,13 +11887,13 @@ LINE
   8
 cut
  10
-665.8550614105757
+550.8550614105758
  20
 171.25000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 172.25000000000003
  31
@@ -10807,13 +11905,13 @@ LINE
   8
 cut
  10
-665.8550614105757
+550.8550614105758
  20
 172.25000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 172.25000000000003
  31
@@ -10825,13 +11923,13 @@ LINE
   8
 cut
  10
-644.8550614105758
+529.8550614105758
  20
 174.75000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 173.75000000000003
  31
@@ -10843,13 +11941,13 @@ LINE
   8
 cut
  10
-644.8550614105758
+529.8550614105758
  20
 173.75000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 173.75000000000003
  31
@@ -10861,13 +11959,13 @@ LINE
   8
 cut
  10
-645.8550614105758
+530.8550614105757
  20
 173.75000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 174.75000000000003
  31
@@ -10879,13 +11977,13 @@ LINE
   8
 cut
  10
-645.8550614105758
+530.8550614105757
  20
 174.75000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 174.75000000000003
  31
@@ -10897,13 +11995,13 @@ LINE
   8
 cut
  10
-664.8550614105757
+549.8550614105758
  20
 174.75000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 173.75000000000003
  31
@@ -10915,13 +12013,13 @@ LINE
   8
 cut
  10
-664.8550614105757
+549.8550614105758
  20
 173.75000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 173.75000000000003
  31
@@ -10933,13 +12031,13 @@ LINE
   8
 cut
  10
-665.8550614105757
+550.8550614105758
  20
 173.75000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 174.75000000000003
  31
@@ -10951,13 +12049,13 @@ LINE
   8
 cut
  10
-665.8550614105757
+550.8550614105758
  20
 174.75000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 174.75000000000003
  31
@@ -10969,13 +12067,13 @@ LINE
   8
 cut
  10
-644.8550614105758
+529.8550614105758
  20
 177.25
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 176.25000000000003
  31
@@ -10987,13 +12085,13 @@ LINE
   8
 cut
  10
-644.8550614105758
+529.8550614105758
  20
 176.25000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 176.25000000000003
  31
@@ -11005,13 +12103,13 @@ LINE
   8
 cut
  10
-645.8550614105758
+530.8550614105757
  20
 176.25000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 177.25
  31
@@ -11023,13 +12121,13 @@ LINE
   8
 cut
  10
-645.8550614105758
+530.8550614105757
  20
 177.25
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 177.25
  31
@@ -11041,13 +12139,13 @@ LINE
   8
 cut
  10
-664.8550614105757
+549.8550614105758
  20
 177.25
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 176.25000000000003
  31
@@ -11059,13 +12157,13 @@ LINE
   8
 cut
  10
-664.8550614105757
+549.8550614105758
  20
 176.25000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 176.25000000000003
  31
@@ -11077,13 +12175,13 @@ LINE
   8
 cut
  10
-665.8550614105757
+550.8550614105758
  20
 176.25000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 177.25
  31
@@ -11095,13 +12193,13 @@ LINE
   8
 cut
  10
-665.8550614105757
+550.8550614105758
  20
 177.25
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 177.25
  31
@@ -11113,13 +12211,13 @@ LINE
   8
 cut
  10
-644.8550614105758
+529.8550614105758
  20
 179.75
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 178.75000000000003
  31
@@ -11131,13 +12229,13 @@ LINE
   8
 cut
  10
-644.8550614105758
+529.8550614105758
  20
 178.75000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 178.75000000000003
  31
@@ -11149,13 +12247,13 @@ LINE
   8
 cut
  10
-645.8550614105758
+530.8550614105757
  20
 178.75000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 179.75
  31
@@ -11167,13 +12265,13 @@ LINE
   8
 cut
  10
-645.8550614105758
+530.8550614105757
  20
 179.75
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 179.75
  31
@@ -11185,13 +12283,13 @@ LINE
   8
 cut
  10
-664.8550614105757
+549.8550614105758
  20
 179.75
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 178.75000000000003
  31
@@ -11203,13 +12301,13 @@ LINE
   8
 cut
  10
-664.8550614105757
+549.8550614105758
  20
 178.75000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 178.75000000000003
  31
@@ -11221,13 +12319,13 @@ LINE
   8
 cut
  10
-665.8550614105757
+550.8550614105758
  20
 178.75000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 179.75
  31
@@ -11239,13 +12337,13 @@ LINE
   8
 cut
  10
-665.8550614105757
+550.8550614105758
  20
 179.75
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 179.75
  31
@@ -11257,13 +12355,13 @@ LINE
   8
 cut
  10
-644.8550614105758
+529.8550614105758
  20
 182.25
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 181.25000000000003
  31
@@ -11275,13 +12373,13 @@ LINE
   8
 cut
  10
-644.8550614105758
+529.8550614105758
  20
 181.25000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 181.25000000000003
  31
@@ -11293,13 +12391,13 @@ LINE
   8
 cut
  10
-645.8550614105758
+530.8550614105757
  20
 181.25000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 182.25
  31
@@ -11311,13 +12409,13 @@ LINE
   8
 cut
  10
-645.8550614105758
+530.8550614105757
  20
 182.25
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 182.25
  31
@@ -11329,13 +12427,13 @@ LINE
   8
 cut
  10
-664.8550614105757
+549.8550614105758
  20
 182.25
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 181.25000000000003
  31
@@ -11347,13 +12445,13 @@ LINE
   8
 cut
  10
-664.8550614105757
+549.8550614105758
  20
 181.25000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 181.25000000000003
  31
@@ -11365,13 +12463,13 @@ LINE
   8
 cut
  10
-665.8550614105757
+550.8550614105758
  20
 181.25000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 182.25
  31
@@ -11383,13 +12481,13 @@ LINE
   8
 cut
  10
-665.8550614105757
+550.8550614105758
  20
 182.25
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 182.25
  31
@@ -11401,13 +12499,13 @@ LINE
   8
 cut
  10
-644.8550614105758
+529.8550614105758
  20
 184.75000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 183.75000000000003
  31
@@ -11419,13 +12517,13 @@ LINE
   8
 cut
  10
-644.8550614105758
+529.8550614105758
  20
 183.75000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 183.75000000000003
  31
@@ -11437,13 +12535,13 @@ LINE
   8
 cut
  10
-645.8550614105758
+530.8550614105757
  20
 183.75000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 184.75000000000003
  31
@@ -11455,13 +12553,13 @@ LINE
   8
 cut
  10
-645.8550614105758
+530.8550614105757
  20
 184.75000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 184.75000000000003
  31
@@ -11473,13 +12571,13 @@ LINE
   8
 cut
  10
-664.8550614105757
+549.8550614105758
  20
 184.75000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 183.75000000000003
  31
@@ -11491,13 +12589,13 @@ LINE
   8
 cut
  10
-664.8550614105757
+549.8550614105758
  20
 183.75000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 183.75000000000003
  31
@@ -11509,13 +12607,13 @@ LINE
   8
 cut
  10
-665.8550614105757
+550.8550614105758
  20
 183.75000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 184.75000000000003
  31
@@ -11527,13 +12625,13 @@ LINE
   8
 cut
  10
-665.8550614105757
+550.8550614105758
  20
 184.75000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 184.75000000000003
  31
@@ -11545,13 +12643,13 @@ LINE
   8
 cut
  10
-644.8550614105758
+529.8550614105758
  20
 187.25000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 186.25000000000003
  31
@@ -11563,13 +12661,13 @@ LINE
   8
 cut
  10
-644.8550614105758
+529.8550614105758
  20
 186.25000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 186.25000000000003
  31
@@ -11581,13 +12679,13 @@ LINE
   8
 cut
  10
-645.8550614105758
+530.8550614105757
  20
 186.25000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 187.25000000000003
  31
@@ -11599,13 +12697,13 @@ LINE
   8
 cut
  10
-645.8550614105758
+530.8550614105757
  20
 187.25000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 187.25000000000003
  31
@@ -11617,13 +12715,13 @@ LINE
   8
 cut
  10
-664.8550614105757
+549.8550614105758
  20
 187.25000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 186.25000000000003
  31
@@ -11635,13 +12733,13 @@ LINE
   8
 cut
  10
-664.8550614105757
+549.8550614105758
  20
 186.25000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 186.25000000000003
  31
@@ -11653,13 +12751,13 @@ LINE
   8
 cut
  10
-665.8550614105757
+550.8550614105758
  20
 186.25000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 187.25000000000003
  31
@@ -11671,13 +12769,13 @@ LINE
   8
 cut
  10
-665.8550614105757
+550.8550614105758
  20
 187.25000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 187.25000000000003
  31
@@ -11689,13 +12787,13 @@ LINE
   8
 cut
  10
-644.8550614105758
+529.8550614105758
  20
 189.75000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 188.75
  31
@@ -11707,13 +12805,13 @@ LINE
   8
 cut
  10
-644.8550614105758
+529.8550614105758
  20
 188.75
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 188.75
  31
@@ -11725,13 +12823,13 @@ LINE
   8
 cut
  10
-645.8550614105758
+530.8550614105757
  20
 188.75
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 189.75000000000003
  31
@@ -11743,13 +12841,13 @@ LINE
   8
 cut
  10
-645.8550614105758
+530.8550614105757
  20
 189.75000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 189.75000000000003
  31
@@ -11761,13 +12859,13 @@ LINE
   8
 cut
  10
-664.8550614105757
+549.8550614105758
  20
 189.75000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 188.75
  31
@@ -11779,13 +12877,13 @@ LINE
   8
 cut
  10
-664.8550614105757
+549.8550614105758
  20
 188.75
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 188.75
  31
@@ -11797,13 +12895,13 @@ LINE
   8
 cut
  10
-665.8550614105757
+550.8550614105758
  20
 188.75
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 189.75000000000003
  31
@@ -11815,13 +12913,13 @@ LINE
   8
 cut
  10
-665.8550614105757
+550.8550614105758
  20
 189.75000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 189.75000000000003
  31
@@ -11833,13 +12931,13 @@ LINE
   8
 cut
  10
-644.8550614105758
+529.8550614105758
  20
 192.25000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 191.25
  31
@@ -11851,13 +12949,13 @@ LINE
   8
 cut
  10
-644.8550614105758
+529.8550614105758
  20
 191.25
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 191.25
  31
@@ -11869,13 +12967,13 @@ LINE
   8
 cut
  10
-645.8550614105758
+530.8550614105757
  20
 191.25
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 192.25000000000003
  31
@@ -11887,13 +12985,13 @@ LINE
   8
 cut
  10
-645.8550614105758
+530.8550614105757
  20
 192.25000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 192.25000000000003
  31
@@ -11905,13 +13003,13 @@ LINE
   8
 cut
  10
-664.8550614105757
+549.8550614105758
  20
 192.25000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 191.25
  31
@@ -11923,13 +13021,13 @@ LINE
   8
 cut
  10
-664.8550614105757
+549.8550614105758
  20
 191.25
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 191.25
  31
@@ -11941,13 +13039,13 @@ LINE
   8
 cut
  10
-665.8550614105757
+550.8550614105758
  20
 191.25
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 192.25000000000003
  31
@@ -11959,13 +13057,13 @@ LINE
   8
 cut
  10
-665.8550614105757
+550.8550614105758
  20
 192.25000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 192.25000000000003
  31
@@ -11977,13 +13075,13 @@ LINE
   8
 cut
  10
-644.8550614105758
+529.8550614105758
  20
 194.75000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 193.75000000000003
  31
@@ -11995,13 +13093,13 @@ LINE
   8
 cut
  10
-644.8550614105758
+529.8550614105758
  20
 193.75000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 193.75000000000003
  31
@@ -12013,13 +13111,13 @@ LINE
   8
 cut
  10
-645.8550614105758
+530.8550614105757
  20
 193.75000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 194.75000000000003
  31
@@ -12031,13 +13129,13 @@ LINE
   8
 cut
  10
-645.8550614105758
+530.8550614105757
  20
 194.75000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 194.75000000000003
  31
@@ -12049,13 +13147,13 @@ LINE
   8
 cut
  10
-664.8550614105757
+549.8550614105758
  20
 194.75000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 193.75000000000003
  31
@@ -12067,13 +13165,13 @@ LINE
   8
 cut
  10
-664.8550614105757
+549.8550614105758
  20
 193.75000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 193.75000000000003
  31
@@ -12085,13 +13183,13 @@ LINE
   8
 cut
  10
-665.8550614105757
+550.8550614105758
  20
 193.75000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 194.75000000000003
  31
@@ -12103,13 +13201,13 @@ LINE
   8
 cut
  10
-665.8550614105757
+550.8550614105758
  20
 194.75000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 194.75000000000003
  31
@@ -12121,13 +13219,13 @@ LINE
   8
 cut
  10
-644.8550614105758
+529.8550614105758
  20
 197.25000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 196.25000000000003
  31
@@ -12139,13 +13237,13 @@ LINE
   8
 cut
  10
-644.8550614105758
+529.8550614105758
  20
 196.25000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 196.25000000000003
  31
@@ -12157,13 +13255,13 @@ LINE
   8
 cut
  10
-645.8550614105758
+530.8550614105757
  20
 196.25000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 197.25000000000003
  31
@@ -12175,13 +13273,13 @@ LINE
   8
 cut
  10
-645.8550614105758
+530.8550614105757
  20
 197.25000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 197.25000000000003
  31
@@ -12193,13 +13291,13 @@ LINE
   8
 cut
  10
-663.8550614105758
+548.8550614105757
  20
 198.25000000000003
  30
 0.0
  11
-663.8550614105758
+548.8550614105757
  21
 195.25000000000003
  31
@@ -12211,13 +13309,13 @@ LINE
   8
 cut
  10
-663.8550614105758
+548.8550614105757
  20
 195.25000000000003
  30
 0.0
  11
-666.8550614105757
+551.8550614105758
  21
 195.25000000000003
  31
@@ -12229,13 +13327,13 @@ LINE
   8
 cut
  10
-666.8550614105757
+551.8550614105758
  20
 195.25000000000003
  30
 0.0
  11
-666.8550614105757
+551.8550614105758
  21
 198.25000000000003
  31
@@ -12247,13 +13345,13 @@ LINE
   8
 cut
  10
-666.8550614105757
+551.8550614105758
  20
 198.25000000000003
  30
 0.0
  11
-663.8550614105758
+548.8550614105757
  21
 198.25000000000003
  31
@@ -12265,13 +13363,13 @@ LINE
   8
 cut
  10
-659.6050614105758
+544.6050614105757
  20
 155.25000000000003
  30
 0.0
  11
-651.1050614105757
+536.1050614105757
  21
 155.25000000000003
  31
@@ -12283,13 +13381,13 @@ LINE
   8
 cut
  10
-651.1050614105757
+536.1050614105757
  20
 155.25000000000003
  30
 0.0
  11
-651.1050614105757
+536.1050614105757
  21
 154.75
  31
@@ -12301,13 +13399,13 @@ LINE
   8
 cut
  10
-651.1050614105757
+536.1050614105757
  20
 154.75
  30
 0.0
  11
-659.6050614105758
+544.6050614105757
  21
 154.75
  31
@@ -12319,13 +13417,13 @@ LINE
   8
 cut
  10
-659.6050614105758
+544.6050614105757
  20
 154.75
  30
 0.0
  11
-659.6050614105758
+544.6050614105757
  21
 155.25000000000003
  31
@@ -12337,13 +13435,13 @@ LINE
   8
 cut
  10
-651.1050614105757
+536.1050614105757
  20
 203.00000000000003
  30
 0.0
  11
-659.6050614105758
+544.6050614105757
  21
 203.00000000000003
  31
@@ -12355,13 +13453,13 @@ LINE
   8
 cut
  10
-659.6050614105758
+544.6050614105757
  20
 203.00000000000003
  30
 0.0
  11
-659.6050614105758
+544.6050614105757
  21
 203.50000000000003
  31
@@ -12373,13 +13471,13 @@ LINE
   8
 cut
  10
-659.6050614105758
+544.6050614105757
  20
 203.50000000000003
  30
 0.0
  11
-651.1050614105757
+536.1050614105757
  21
 203.50000000000003
  31
@@ -12391,13 +13489,13 @@ LINE
   8
 cut
  10
-651.1050614105757
+536.1050614105757
  20
 203.50000000000003
  30
 0.0
  11
-651.1050614105757
+536.1050614105757
  21
 203.00000000000003
  31
@@ -12409,13 +13507,13 @@ LINE
   8
 cut
  10
-635.8550614105758
+520.8550614105757
  20
 158.59090909090912
  30
 0.0
  11
-640.8550614105758
+525.8550614105757
  21
 158.59090909090912
  31
@@ -12427,13 +13525,13 @@ LINE
   8
 cut
  10
-640.8550614105758
+525.8550614105757
  20
 158.59090909090912
  30
 0.0
  11
-640.8550614105758
+525.8550614105757
  21
 169.68181818181822
  31
@@ -12445,13 +13543,13 @@ LINE
   8
 cut
  10
-640.8550614105758
+525.8550614105757
  20
 169.68181818181822
  30
 0.0
  11
-635.8550614105758
+520.8550614105757
  21
 169.68181818181822
  31
@@ -12463,13 +13561,13 @@ LINE
   8
 cut
  10
-635.8550614105758
+520.8550614105757
  20
 186.31818181818184
  30
 0.0
  11
-640.8550614105758
+525.8550614105757
  21
 186.31818181818184
  31
@@ -12481,13 +13579,13 @@ LINE
   8
 cut
  10
-640.8550614105758
+525.8550614105757
  20
 186.31818181818184
  30
 0.0
  11
-640.8550614105758
+525.8550614105757
  21
 197.40909090909093
  31
@@ -12499,13 +13597,13 @@ LINE
   8
 cut
  10
-640.8550614105758
+525.8550614105757
  20
 197.40909090909093
  30
 0.0
  11
-635.8550614105758
+520.8550614105757
  21
 197.40909090909093
  31
@@ -12517,13 +13615,13 @@ LINE
   8
 cut
  10
-661.1050614105757
+546.1050614105758
  20
 131.50000000000003
  30
 0.0
  11
-664.6050614105758
+549.6050614105758
  21
 131.50000000000003
  31
@@ -12535,13 +13633,13 @@ LINE
   8
 cut
  10
-664.6050614105758
+549.6050614105758
  20
 131.50000000000003
  30
 0.0
  11
-664.6050614105758
+549.6050614105758
  21
 139.50000000000003
  31
@@ -12553,13 +13651,13 @@ LINE
   8
 cut
  10
-664.6050614105758
+549.6050614105758
  20
 139.50000000000003
  30
 0.0
  11
-661.1050614105757
+546.1050614105758
  21
 139.50000000000003
  31
diff --git a/rocolib/output/BoatWithServoStackBattery/graph-autofold-graph.dxf b/rocolib/output/BoatWithServoStackBattery/graph-autofold-graph.dxf
index 3305ff74ad745fbf241ae25da51f9c5f892c78b6..f42435c959bde11527b47099ab70365994e8e23d 100644
--- a/rocolib/output/BoatWithServoStackBattery/graph-autofold-graph.dxf
+++ b/rocolib/output/BoatWithServoStackBattery/graph-autofold-graph.dxf
@@ -943,13 +943,13 @@ LINE
   8
 0
  10
-150.3085560697229
+160.30855606972293
  20
 105.00000000000001
  30
 0.0
  11
-88.65427803486146
+98.65427803486146
  21
 105.00000000000001
  31
@@ -961,13 +961,13 @@ LINE
   8
 0
  10
-88.65427803486146
+98.65427803486146
  20
 166.0
  30
 0.0
  11
-150.3085560697229
+160.30855606972293
  21
 166.0
  31
@@ -981,13 +981,13 @@ DOTTED
   8
 0
  10
-88.65427803486146
+98.65427803486146
  20
 166.0
  30
 0.0
  11
-88.65427803486146
+98.65427803486146
  21
 105.00000000000001
  31
@@ -999,13 +999,13 @@ LINE
   8
 0
  10
-160.30855606972293
+170.30855606972293
  20
 105.00000000000001
  30
 0.0
  11
-150.3085560697229
+160.30855606972293
  21
 105.00000000000001
  31
@@ -1017,13 +1017,13 @@ LINE
   8
 0
  10
-160.30855606972293
+170.30855606972293
  20
 166.0
  30
 0.0
  11
-160.30855606972293
+170.30855606972293
  21
 105.00000000000001
  31
@@ -1035,13 +1035,13 @@ LINE
   8
 0
  10
-150.3085560697229
+160.30855606972293
  20
 166.0
  30
 0.0
  11
-160.30855606972293
+170.30855606972293
  21
 166.0
  31
@@ -1053,13 +1053,13 @@ LINE
   8
 0
  10
-61.65427803486146
+71.65427803486145
  20
 166.0
  30
 0.0
  11
-88.65427803486146
+98.65427803486146
  21
 166.0
  31
@@ -1073,13 +1073,13 @@ DOTTED
   8
 0
  10
-61.65427803486146
+71.65427803486145
  20
 105.00000000000001
  30
 0.0
  11
-61.65427803486146
+71.65427803486145
  21
 166.0
  31
@@ -1093,13 +1093,49 @@ DOTTED
   8
 0
  10
-88.65427803486146
+98.65427803486146
+ 20
+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
+166.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+71.65427803486145
  20
 105.00000000000001
  30
 0.0
  11
-61.65427803486146
+10.000000000000002
  21
 105.00000000000001
  31
@@ -1117,7 +1153,7 @@ LINE
  30
 0.0
  11
-61.65427803486146
+10.000000000000002
  21
 166.0
  31
@@ -1147,7 +1183,7 @@ LINE
   8
 0
  10
-61.65427803486146
+10.000000000000002
  20
 105.00000000000001
  30
@@ -1165,13 +1201,13 @@ LINE
   8
 0
  10
-88.65427803486146
+98.65427803486146
  20
 105.00000000000001
  30
 0.0
  11
-88.65427803486146
+98.65427803486146
  21
 88.00000000000001
  31
@@ -1183,13 +1219,13 @@ LINE
   8
 0
  10
-61.65427803486146
+71.65427803486145
  20
 88.00000000000001
  30
 0.0
  11
-61.65427803486146
+71.65427803486145
  21
 105.00000000000001
  31
@@ -1203,13 +1239,13 @@ DOTTED
   8
 0
  10
-88.65427803486146
+98.65427803486146
  20
 88.00000000000001
  30
 0.0
  11
-61.65427803486146
+71.65427803486145
  21
 88.00000000000001
  31
@@ -1221,13 +1257,13 @@ LINE
   8
 0
  10
-88.65427803486146
+98.65427803486146
  20
 88.00000000000001
  30
 0.0
  11
-88.65427803486146
+98.65427803486146
  21
 27.000000000000004
  31
@@ -1239,13 +1275,13 @@ LINE
   8
 0
  10
-61.65427803486146
+71.65427803486145
  20
 27.000000000000004
  30
 0.0
  11
-61.65427803486146
+71.65427803486145
  21
 88.00000000000001
  31
@@ -1259,13 +1295,13 @@ DOTTED
   8
 0
  10
-88.65427803486146
+98.65427803486146
  20
 27.000000000000004
  30
 0.0
  11
-61.65427803486146
+71.65427803486145
  21
 27.000000000000004
  31
@@ -1277,13 +1313,13 @@ LINE
   8
 0
  10
-88.65427803486146
+98.65427803486146
  20
 27.000000000000004
  30
 0.0
  11
-88.65427803486146
+98.65427803486146
  21
 10.000000000000002
  31
@@ -1295,13 +1331,13 @@ LINE
   8
 0
  10
-61.65427803486146
+71.65427803486145
  20
 10.000000000000002
  30
 0.0
  11
-61.65427803486146
+71.65427803486145
  21
 27.000000000000004
  31
@@ -1315,13 +1351,13 @@ DOTTED
   8
 0
  10
-61.65427803486146
+71.65427803486145
  20
 10.000000000000002
  30
 0.0
  11
-88.65427803486146
+98.65427803486146
  21
 10.000000000000002
  31
@@ -1333,13 +1369,13 @@ LINE
   8
 0
  10
-61.65427803486146
+71.65427803486145
  20
 0.0
  30
 0.0
  11
-61.65427803486146
+71.65427803486145
  21
 10.000000000000002
  31
@@ -1351,13 +1387,13 @@ LINE
   8
 0
  10
-88.65427803486146
+98.65427803486146
  20
 0.0
  30
 0.0
  11
-61.65427803486146
+71.65427803486145
  21
 0.0
  31
@@ -1369,13 +1405,13 @@ LINE
   8
 0
  10
-88.65427803486146
+98.65427803486146
  20
 10.000000000000002
  30
 0.0
  11
-88.65427803486146
+98.65427803486146
  21
 0.0
  31
@@ -1387,13 +1423,13 @@ LINE
   8
 0
  10
-157.80855606972293
+167.80855606972293
  20
 154.90909090909093
  30
 0.0
  11
-152.8085560697229
+162.80855606972293
  21
 154.90909090909093
  31
@@ -1405,13 +1441,13 @@ LINE
   8
 0
  10
-152.8085560697229
+162.80855606972293
  20
 154.90909090909093
  30
 0.0
  11
-152.8085560697229
+162.80855606972293
  21
 143.8181818181818
  31
@@ -1423,13 +1459,13 @@ LINE
   8
 0
  10
-152.8085560697229
+162.80855606972293
  20
 143.8181818181818
  30
 0.0
  11
-157.80855606972293
+167.80855606972293
  21
 143.8181818181818
  31
@@ -1441,13 +1477,13 @@ LINE
   8
 0
  10
-157.80855606972293
+167.80855606972293
  20
 127.1818181818182
  30
 0.0
  11
-152.8085560697229
+162.80855606972293
  21
 127.1818181818182
  31
@@ -1459,13 +1495,13 @@ LINE
   8
 0
  10
-152.8085560697229
+162.80855606972293
  20
 127.1818181818182
  30
 0.0
  11
-152.8085560697229
+162.80855606972293
  21
 116.09090909090911
  31
@@ -1477,13 +1513,13 @@ LINE
   8
 0
  10
-152.8085560697229
+162.80855606972293
  20
 116.09090909090911
  30
 0.0
  11
-157.80855606972293
+167.80855606972293
  21
 116.09090909090911
  31
@@ -1495,13 +1531,13 @@ LINE
   8
 0
  10
-84.15427803486145
+94.15427803486146
  20
 102.50000000000001
  30
 0.0
  11
-84.15427803486145
+94.15427803486146
  21
 108.50000000000001
  31
@@ -1513,13 +1549,13 @@ LINE
   8
 0
  10
-84.15427803486145
+94.15427803486146
  20
 108.50000000000001
  30
 0.0
  11
-66.15427803486145
+76.15427803486145
  21
 108.50000000000001
  31
@@ -1531,13 +1567,13 @@ LINE
   8
 0
  10
-66.15427803486145
+76.15427803486145
  20
 108.50000000000001
  30
 0.0
  11
-66.15427803486145
+76.15427803486145
  21
 102.50000000000001
  31
@@ -1549,13 +1585,13 @@ LINE
   8
 0
  10
-66.15427803486145
+76.15427803486145
  20
 102.50000000000001
  30
 0.0
  11
-84.15427803486145
+94.15427803486146
  21
 102.50000000000001
  31
@@ -1567,13 +1603,13 @@ LINE
   8
 0
  10
-70.40427803486146
+80.40427803486146
  20
 158.25000000000003
  30
 0.0
  11
-79.90427803486145
+89.90427803486145
  21
 158.25000000000003
  31
@@ -1585,13 +1621,13 @@ LINE
   8
 0
  10
-79.90427803486145
+89.90427803486145
  20
 158.25000000000003
  30
 0.0
  11
-79.90427803486145
+89.90427803486145
  21
 158.75000000000003
  31
@@ -1603,13 +1639,13 @@ LINE
   8
 0
  10
-79.90427803486145
+89.90427803486145
  20
 158.75000000000003
  30
 0.0
  11
-70.40427803486146
+80.40427803486146
  21
 158.75000000000003
  31
@@ -1621,13 +1657,13 @@ LINE
   8
 0
  10
-70.40427803486146
+80.40427803486146
  20
 158.75000000000003
  30
 0.0
  11
-70.40427803486146
+80.40427803486146
  21
 158.25000000000003
  31
@@ -1639,13 +1675,121 @@ LINE
   8
 0
  10
-79.65427803486145
+2.5000000000000004
+ 20
+116.09090909090911
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+116.09090909090911
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+116.09090909090911
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+127.18181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+127.18181818181822
+ 30
+0.0
+ 11
+2.5000000000000004
+ 21
+127.18181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.5000000000000004
+ 20
+143.81818181818184
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+143.81818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+143.81818181818184
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+154.90909090909093
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+154.90909090909093
+ 30
+0.0
+ 11
+2.5000000000000004
+ 21
+154.90909090909093
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+89.65427803486146
  20
 2.5000000000000004
  30
 0.0
  11
-79.65427803486145
+89.65427803486146
  21
 7.500000000000001
  31
@@ -1657,13 +1801,13 @@ LINE
   8
 0
  10
-79.65427803486145
+89.65427803486146
  20
 7.500000000000001
  30
 0.0
  11
-70.65427803486145
+80.65427803486146
  21
 7.500000000000001
  31
@@ -1675,13 +1819,13 @@ LINE
   8
 0
  10
-70.65427803486145
+80.65427803486146
  20
 7.500000000000001
  30
 0.0
  11
-70.65427803486145
+80.65427803486146
  21
 2.5000000000000004
  31
@@ -1693,13 +1837,13 @@ LINE
   8
 0
  10
-317.33180874014937
+327.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-256.33180874014937
+266.3318087401493
  21
 135.50000000000003
  31
@@ -1711,13 +1855,13 @@ LINE
   8
 0
  10
-351.33180874014937
+361.3318087401493
  20
 135.50000000000003
  30
 0.0
  11
-341.33180874014937
+351.33180874014937
  21
 135.50000000000003
  31
@@ -1729,13 +1873,13 @@ LINE
   8
 0
  10
-412.33180874014937
+422.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-412.33180874014937
+422.33180874014937
  21
 135.50000000000003
  31
@@ -1747,13 +1891,13 @@ LINE
   8
 0
  10
-256.33180874014937
+266.3318087401493
  20
 135.50000000000003
  30
 0.0
  11
-256.33180874014937
+266.3318087401493
  21
 135.50000000000003
  31
@@ -1765,13 +1909,13 @@ LINE
   8
 0
  10
-317.33180874014937
+327.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-243.33180874014934
+253.33180874014934
  21
 135.50000000000003
  31
@@ -1783,13 +1927,13 @@ LINE
   8
 0
  10
-351.33180874014937
+361.3318087401493
  20
 135.50000000000003
  30
 0.0
  11
-341.33180874014937
+351.33180874014937
  21
 135.50000000000003
  31
@@ -1801,13 +1945,13 @@ LINE
   8
 0
  10
-412.33180874014937
+422.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-412.33180874014937
+422.33180874014937
  21
 135.50000000000003
  31
@@ -1819,13 +1963,13 @@ LINE
   8
 0
  10
-341.33180874014937
+351.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-351.33180874014937
+361.3318087401493
  21
 135.50000000000003
  31
@@ -1837,13 +1981,13 @@ LINE
   8
 0
  10
-243.33180874014934
+253.33180874014934
  20
 135.50000000000003
  30
 0.0
  11
-317.33180874014937
+327.33180874014937
  21
 135.50000000000003
  31
@@ -1855,13 +1999,13 @@ LINE
   8
 0
  10
-243.33180874014934
+253.33180874014934
  20
 135.50000000000003
  30
 0.0
  11
-243.33180874014934
+253.33180874014934
  21
 135.50000000000003
  31
@@ -1873,13 +2017,13 @@ LINE
   8
 0
  10
-341.33180874014937
+351.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-341.33180874014937
+351.33180874014937
  21
 101.50000000000001
  31
@@ -1893,13 +2037,13 @@ DOTTED
   8
 0
  10
-317.33180874014937
+327.33180874014937
  20
 101.50000000000001
  30
 0.0
  11
-317.33180874014937
+327.33180874014937
  21
 135.50000000000003
  31
@@ -1911,13 +2055,13 @@ LINE
   8
 0
  10
-317.33180874014937
+327.33180874014937
  20
 65.5
  30
 0.0
  11
-317.33180874014937
+327.33180874014937
  21
 101.50000000000001
  31
@@ -1931,13 +2075,13 @@ DOTTED
   8
 0
  10
-317.33180874014937
+327.33180874014937
  20
 65.5
  30
 0.0
  11
-341.33180874014937
+351.33180874014937
  21
 65.5
  31
@@ -1949,13 +2093,13 @@ LINE
   8
 0
  10
-341.33180874014937
+351.33180874014937
  20
 101.50000000000001
  30
 0.0
  11
-341.33180874014937
+351.33180874014937
  21
 65.5
  31
@@ -1967,13 +2111,13 @@ LINE
   8
 0
  10
-341.33180874014937
+351.33180874014937
  20
 65.5
  30
 0.0
  11
-341.33180874014937
+351.33180874014937
  21
 20.5
  31
@@ -1985,13 +2129,13 @@ LINE
   8
 0
  10
-317.33180874014937
+327.33180874014937
  20
 20.5
  30
 0.0
  11
-317.33180874014937
+327.33180874014937
  21
 65.5
  31
@@ -2003,13 +2147,13 @@ LINE
   8
 0
  10
-317.33180874014937
+327.33180874014937
  20
 15.500000000000004
  30
 0.0
  11
-317.33180874014937
+327.33180874014937
  21
 20.5
  31
@@ -2021,13 +2165,13 @@ LINE
   8
 0
  10
-341.33180874014937
+351.33180874014937
  20
 15.500000000000004
  30
 0.0
  11
-317.33180874014937
+327.33180874014937
  21
 15.500000000000004
  31
@@ -2039,13 +2183,13 @@ LINE
   8
 0
  10
-341.33180874014937
+351.33180874014937
  20
 20.5
  30
 0.0
  11
-341.33180874014937
+351.33180874014937
  21
 15.500000000000004
  31
@@ -2057,13 +2201,13 @@ LINE
   8
 0
  10
-317.33180874014937
+327.33180874014937
  20
 101.50000000000001
  30
 0.0
  11
-297.3318087401493
+307.3318087401493
  21
 101.50000000000001
  31
@@ -2075,13 +2219,13 @@ LINE
   8
 0
  10
-297.3318087401493
+307.3318087401493
  20
 135.50000000000003
  30
 0.0
  11
-317.33180874014937
+327.33180874014937
  21
 135.50000000000003
  31
@@ -2095,13 +2239,13 @@ DOTTED
   8
 0
  10
-297.3318087401493
+307.3318087401493
  20
 101.50000000000001
  30
 0.0
  11
-297.3318087401493
+307.3318087401493
  21
 135.50000000000003
  31
@@ -2113,13 +2257,13 @@ LINE
   8
 0
  10
-297.3318087401493
+307.3318087401493
  20
 101.50000000000001
  30
 0.0
  11
-273.33180874014937
+283.3318087401493
  21
 101.50000000000001
  31
@@ -2131,13 +2275,13 @@ LINE
   8
 0
  10
-273.33180874014937
+283.3318087401493
  20
 135.50000000000003
  30
 0.0
  11
-297.3318087401493
+307.3318087401493
  21
 135.50000000000003
  31
@@ -2151,13 +2295,13 @@ DOTTED
   8
 0
  10
-273.33180874014937
+283.3318087401493
  20
 101.50000000000001
  30
 0.0
  11
-273.33180874014937
+283.3318087401493
  21
 135.50000000000003
  31
@@ -2169,13 +2313,13 @@ LINE
   8
 0
  10
-273.33180874014937
+283.3318087401493
  20
 101.50000000000001
  30
 0.0
  11
-253.33180874014934
+263.33180874014937
  21
 101.50000000000001
  31
@@ -2187,13 +2331,13 @@ LINE
   8
 0
  10
-253.33180874014934
+263.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-273.33180874014937
+283.3318087401493
  21
 135.50000000000003
  31
@@ -2207,13 +2351,13 @@ DOTTED
   8
 0
  10
-253.33180874014934
+263.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-253.33180874014934
+263.33180874014937
  21
 101.50000000000001
  31
@@ -2225,13 +2369,13 @@ LINE
   8
 0
  10
-243.33180874014934
+253.33180874014934
  20
 135.50000000000003
  30
 0.0
  11
-253.33180874014934
+263.33180874014937
  21
 135.50000000000003
  31
@@ -2243,13 +2387,13 @@ LINE
   8
 0
  10
-243.33180874014934
+253.33180874014934
  20
 101.50000000000001
  30
 0.0
  11
-243.33180874014934
+253.33180874014934
  21
 135.50000000000003
  31
@@ -2261,13 +2405,13 @@ LINE
   8
 0
  10
-253.33180874014934
+263.33180874014937
  20
 101.50000000000001
  30
 0.0
  11
-243.33180874014934
+253.33180874014934
  21
 101.50000000000001
  31
@@ -2281,13 +2425,13 @@ DOTTED
   8
 0
  10
-351.33180874014937
+361.3318087401493
  20
 99.36137800081471
  30
 0.0
  11
-412.33180874014937
+422.33180874014937
  21
 99.36137800081471
  31
@@ -2299,13 +2443,13 @@ LINE
   8
 0
  10
-412.33180874014937
+422.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-412.33180874014937
+422.33180874014937
  21
 99.36137800081471
  31
@@ -2317,13 +2461,13 @@ LINE
   8
 0
  10
-351.33180874014937
+361.3318087401493
  20
 99.36137800081471
  30
 0.0
  11
-351.33180874014937
+361.3318087401493
  21
 135.50000000000003
  31
@@ -2337,13 +2481,13 @@ DOTTED
   8
 0
  10
-412.33180874014937
+422.33180874014937
  20
 75.36137800081471
  30
 0.0
  11
-351.33180874014937
+361.3318087401493
  21
 75.36137800081471
  31
@@ -2357,13 +2501,13 @@ DOTTED
   8
 0
  10
-412.33180874014937
+422.33180874014937
  20
 75.36137800081471
  30
 0.0
  11
-412.33180874014937
+422.33180874014937
  21
 99.36137800081471
  31
@@ -2375,13 +2519,13 @@ LINE
   8
 0
  10
-351.33180874014937
+361.3318087401493
  20
 39.22275600162939
  30
 0.0
  11
-351.33180874014937
+361.3318087401493
  21
 75.36137800081472
  31
@@ -2393,13 +2537,13 @@ LINE
   8
 0
  10
-412.33180874014937
+422.33180874014937
  20
 75.36137800081472
  30
 0.0
  11
-412.33180874014937
+422.33180874014937
  21
 39.22275600162939
  31
@@ -2411,13 +2555,13 @@ LINE
   8
 0
  10
-351.33180874014937
+361.3318087401493
  20
 29.222756001629396
  30
 0.0
  11
-351.33180874014937
+361.3318087401493
  21
 39.22275600162939
  31
@@ -2429,13 +2573,13 @@ LINE
   8
 0
  10
-412.33180874014937
+422.33180874014937
  20
 29.222756001629396
  30
 0.0
  11
-351.33180874014937
+361.3318087401493
  21
 29.222756001629396
  31
@@ -2447,13 +2591,13 @@ LINE
   8
 0
  10
-412.33180874014937
+422.33180874014937
  20
 39.22275600162939
  30
 0.0
  11
-412.33180874014937
+422.33180874014937
  21
 29.222756001629396
  31
@@ -2465,13 +2609,13 @@ LINE
   8
 0
  10
-422.33180874014937
+432.33180874014937
  20
 75.36137800081471
  30
 0.0
  11
-412.33180874014937
+422.33180874014937
  21
 75.36137800081471
  31
@@ -2483,13 +2627,13 @@ LINE
   8
 0
  10
-422.33180874014937
+432.33180874014937
  20
 99.36137800081471
  30
 0.0
  11
-422.33180874014937
+432.33180874014937
  21
 75.36137800081471
  31
@@ -2501,13 +2645,13 @@ LINE
   8
 0
  10
-412.33180874014937
+422.33180874014937
  20
 99.36137800081471
  30
 0.0
  11
-422.33180874014937
+432.33180874014937
  21
 99.36137800081471
  31
@@ -2519,13 +2663,13 @@ LINE
   8
 0
  10
-341.33180874014937
+351.33180874014937
  20
 99.36137800081471
  30
 0.0
  11
-351.33180874014937
+361.3318087401493
  21
 99.36137800081471
  31
@@ -2537,13 +2681,13 @@ LINE
   8
 0
  10
-341.33180874014937
+351.33180874014937
  20
 75.36137800081471
  30
 0.0
  11
-341.33180874014937
+351.33180874014937
  21
 99.36137800081471
  31
@@ -2555,13 +2699,13 @@ LINE
   8
 0
  10
-351.33180874014937
+361.3318087401493
  20
 75.36137800081471
  30
 0.0
  11
-341.33180874014937
+351.33180874014937
  21
 75.36137800081471
  31
@@ -2575,13 +2719,13 @@ DOTTED
   8
 0
  10
-412.33180874014937
+422.33180874014937
  20
 205.50000000000003
  30
 0.0
  11
-256.33180874014937
+266.3318087401493
  21
 205.50000000000003
  31
@@ -2595,13 +2739,13 @@ DOTTED
   8
 0
  10
-412.33180874014937
+422.33180874014937
  20
 205.50000000000003
  30
 0.0
  11
-412.33180874014937
+422.33180874014937
  21
 135.50000000000003
  31
@@ -2615,13 +2759,13 @@ DOTTED
   8
 0
  10
-412.33180874014937
+422.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-464.84617955831095
+474.84617955831095
  21
 135.50000000000003
  31
@@ -2635,13 +2779,13 @@ DOTTED
   8
 0
  10
-412.33180874014937
+422.33180874014937
  20
 205.50000000000003
  30
 0.0
  11
-464.84617955831095
+474.84617955831095
  21
 135.50000000000003
  31
@@ -2653,13 +2797,13 @@ LINE
   8
 0
  10
-412.33180874014937
+422.33180874014937
  20
-117.99520972727949
+127.99794702597693
  30
 0.0
  11
-412.33180874014937
+422.33180874014937
  21
 135.50000000000003
  31
@@ -2671,15 +2815,15 @@ LINE
   8
 0
  10
-464.84617955831095
+474.84617955831095
  20
-117.99520972727949
+127.99794702597693
  30
 0.0
  11
-412.33180874014937
+422.33180874014937
  21
-117.99520972727949
+127.99794702597693
  31
 0.0
   0
@@ -2689,15 +2833,15 @@ LINE
   8
 0
  10
-464.84617955831095
+474.84617955831095
  20
 135.50000000000003
  30
 0.0
  11
-464.84617955831095
+474.84617955831095
  21
-117.99520972727949
+127.99794702597693
  31
 0.0
   0
@@ -2709,13 +2853,13 @@ DOTTED
   8
 0
  10
-412.33180874014937
+422.33180874014937
  20
 205.50000000000003
  30
 0.0
  11
-479.5369564140486
+489.5369564140486
  21
 185.91765779766357
  31
@@ -2727,13 +2871,13 @@ LINE
   8
 0
  10
-479.5369564140486
+489.5369564140486
  20
 185.91765779766357
  30
 0.0
  11
-464.84617955831095
+474.84617955831095
  21
 135.50000000000003
  31
@@ -2745,13 +2889,13 @@ LINE
   8
 0
  10
-494.22773326978614
+504.22773326978614
  20
 236.33531559532716
  30
 0.0
  11
-479.5369564140486
+489.5369564140486
  21
 185.91765779766357
  31
@@ -2763,13 +2907,13 @@ LINE
   8
 0
  10
-498.3550614105757
+508.3550614105757
  20
 250.50000000000003
  30
 0.0
  11
-494.22773326978614
+504.22773326978614
  21
 236.33531559532716
  31
@@ -2783,13 +2927,13 @@ DOTTED
   8
 0
  10
-498.3550614105757
+508.3550614105757
  20
 250.50000000000003
  30
 0.0
  11
-412.33180874014937
+422.33180874014937
  21
 205.50000000000003
  31
@@ -2803,13 +2947,13 @@ DOTTED
   8
 0
  10
-412.33180874014937
+422.33180874014937
  20
 250.50000000000003
  30
 0.0
  11
-412.33180874014937
+422.33180874014937
  21
 205.50000000000003
  31
@@ -2823,13 +2967,13 @@ DOTTED
   8
 0
  10
-412.3318087401494
+422.3318087401494
  20
 295.5
  30
 0.0
  11
-412.33180874014937
+422.33180874014937
  21
 250.50000000000006
  31
@@ -2843,13 +2987,13 @@ DOTTED
   8
 0
  10
-498.35506141057573
+508.35506141057573
  20
 250.50000000000003
  30
 0.0
  11
-412.3318087401494
+422.3318087401494
  21
 295.50000000000006
  31
@@ -2863,13 +3007,13 @@ DOTTED
   8
 0
  10
-479.5369564140486
+489.5369564140486
  20
 315.08234220233646
  30
 0.0
  11
-412.33180874014937
+422.33180874014937
  21
 295.50000000000006
  31
@@ -2881,13 +3025,13 @@ LINE
   8
 0
  10
-494.22773326978614
+504.22773326978614
  20
 264.6646844046729
  30
 0.0
  11
-498.3550614105757
+508.3550614105757
  21
 250.50000000000003
  31
@@ -2899,13 +3043,13 @@ LINE
   8
 0
  10
-479.5369564140486
+489.5369564140486
  20
 315.08234220233646
  30
 0.0
  11
-494.22773326978614
+504.22773326978614
  21
 264.6646844046729
  31
@@ -2917,13 +3061,13 @@ LINE
   8
 0
  10
-464.84617955831106
+474.84617955831106
  20
 365.50000000000006
  30
 0.0
  11
-479.5369564140486
+489.5369564140486
  21
 315.0823422023364
  31
@@ -2937,13 +3081,13 @@ DOTTED
   8
 0
  10
-464.84617955831106
+474.84617955831106
  20
 365.50000000000006
  30
 0.0
  11
-412.3318087401494
+422.3318087401494
  21
 295.50000000000006
  31
@@ -2957,13 +3101,13 @@ DOTTED
   8
 0
  10
-412.3318087401495
+422.3318087401495
  20
 365.5000000000001
  30
 0.0
  11
-412.33180874014937
+422.33180874014937
  21
 295.5
  31
@@ -2977,113 +3121,107 @@ DOTTED
   8
 0
  10
-464.84617955831106
+474.84617955831106
  20
 365.50000000000006
  30
 0.0
  11
-412.3318087401495
+422.3318087401495
  21
 365.5000000000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-256.3318087401494
+422.3318087401494
  20
-365.5000000000002
+295.50000000000006
  30
 0.0
  11
-412.3318087401495
+266.3318087401493
  21
-365.5000000000001
+295.50000000000017
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-412.3318087401494
+351.3318087401494
  20
-295.50000000000006
+365.50000000000017
  30
 0.0
  11
-256.33180874014937
+361.3318087401494
  21
-295.50000000000017
+365.50000000000017
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-256.33180874014937
+266.33180874014937
  20
-295.50000000000017
+365.5000000000003
  30
 0.0
  11
-256.3318087401494
+327.3318087401494
  21
-365.5000000000002
+365.50000000000017
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-256.3318087401494
+266.33180874014937
  20
 365.5000000000003
  30
 0.0
  11
-203.8174379219878
+266.33180874014937
  21
 365.5000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-256.33180874014937
+422.3318087401495
  20
-295.5000000000002
+365.5000000000001
  30
 0.0
  11
-203.8174379219878
+422.3318087401495
  21
-365.5000000000003
+365.5000000000001
  31
 0.0
   0
@@ -3093,15 +3231,15 @@ LINE
   8
 0
  10
-256.3318087401494
+361.3318087401494
  20
-383.00479027272075
+365.50000000000017
  30
 0.0
  11
-256.3318087401494
+422.3318087401495
  21
-365.5000000000003
+365.5000000000001
  31
 0.0
   0
@@ -3111,15 +3249,15 @@ LINE
   8
 0
  10
-203.8174379219878
+351.3318087401494
  20
-383.00479027272087
+365.50000000000017
  30
 0.0
  11
-256.3318087401494
+361.3318087401494
  21
-383.00479027272075
+365.50000000000017
  31
 0.0
   0
@@ -3129,35 +3267,33 @@ LINE
   8
 0
  10
-203.8174379219878
+253.33180874014937
  20
 365.5000000000003
  30
 0.0
  11
-203.8174379219878
+327.3318087401494
  21
-383.00479027272087
+365.50000000000017
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-256.33180874014937
+253.33180874014937
  20
-295.50000000000017
+365.5000000000003
  30
 0.0
  11
-189.12666106625016
+253.33180874014937
  21
-315.08234220233675
+365.5000000000003
  31
 0.0
   0
@@ -3167,13 +3303,13 @@ LINE
   8
 0
  10
-189.12666106625016
+327.3318087401494
  20
-315.08234220233675
+365.50000000000017
  30
 0.0
  11
-203.8174379219878
+253.33180874014937
  21
 365.5000000000003
  31
@@ -3185,15 +3321,15 @@ LINE
   8
 0
  10
-174.4358842105125
+361.3318087401494
  20
-264.6646844046731
+365.50000000000017
  30
 0.0
  11
-189.12666106625016
+351.3318087401494
  21
-315.08234220233675
+365.50000000000017
  31
 0.0
   0
@@ -3203,35 +3339,33 @@ LINE
   8
 0
  10
-170.30855606972295
+422.3318087401495
  20
-250.50000000000028
+365.5000000000001
  30
 0.0
  11
-174.4358842105125
+422.3318087401495
  21
-264.6646844046731
+365.5000000000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-170.30855606972295
+351.3318087401494
  20
-250.50000000000028
+399.5000000000001
  30
 0.0
  11
-256.33180874014937
+351.3318087401494
  21
-295.50000000000017
+365.50000000000017
  31
 0.0
   0
@@ -3243,35 +3377,33 @@ DOTTED
   8
 0
  10
-256.3318087401493
+327.3318087401494
  20
-250.50000000000017
+365.50000000000017
  30
 0.0
  11
-256.33180874014937
+327.3318087401495
  21
-295.50000000000017
+399.5000000000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-256.33180874014926
+351.3318087401495
  20
-205.50000000000017
+435.50000000000017
  30
 0.0
  11
-256.3318087401493
+351.3318087401494
  21
-250.5000000000002
+399.5000000000001
  31
 0.0
   0
@@ -3283,35 +3415,33 @@ DOTTED
   8
 0
  10
-170.30855606972293
+351.3318087401495
  20
-250.5000000000003
+435.50000000000017
  30
 0.0
  11
-256.33180874014926
+327.3318087401495
  21
-205.50000000000014
+435.50000000000017
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-189.12666106624997
+327.3318087401495
  20
-185.91765779766385
+399.5000000000001
  30
 0.0
  11
-256.33180874014926
+327.3318087401495
  21
-205.50000000000014
+435.50000000000017
  31
 0.0
   0
@@ -3321,15 +3451,15 @@ LINE
   8
 0
  10
-174.43588421051246
+327.3318087401495
  20
-236.33531559532744
+435.50000000000017
  30
 0.0
  11
-170.30855606972293
+327.33180874014954
  21
-250.5000000000003
+480.50000000000017
  31
 0.0
   0
@@ -3339,15 +3469,15 @@ LINE
   8
 0
  10
-189.12666106624997
+351.3318087401495
  20
-185.91765779766385
+480.50000000000017
  30
 0.0
  11
-174.43588421051246
+351.3318087401494
  21
-236.33531559532744
+435.50000000000017
  31
 0.0
   0
@@ -3357,35 +3487,51 @@ LINE
   8
 0
  10
-203.81743792198745
+327.33180874014954
  20
-135.50000000000023
+480.50000000000017
  30
 0.0
  11
-189.12666106624997
+351.3318087401495
  21
-185.91765779766385
+480.50000000000017
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-203.81743792198745
+327.3318087401494
  20
-135.50000000000023
+365.50000000000017
  30
 0.0
  11
-256.33180874014914
+307.33180874014937
  21
-205.50000000000017
+365.50000000000017
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+307.3318087401495
+ 20
+399.5000000000001
+ 30
+0.0
+ 11
+327.3318087401495
+ 21
+399.5000000000001
  31
 0.0
   0
@@ -3397,15 +3543,51 @@ DOTTED
   8
 0
  10
-256.33180874014903
+307.33180874014937
  20
-135.5000000000001
+365.50000000000017
  30
 0.0
  11
-256.33180874014926
+307.3318087401495
  21
-205.50000000000017
+399.5000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+307.33180874014937
+ 20
+365.50000000000017
+ 30
+0.0
+ 11
+283.33180874014937
+ 21
+365.50000000000017
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+283.3318087401494
+ 20
+399.5000000000001
+ 30
+0.0
+ 11
+307.3318087401495
+ 21
+399.5000000000001
  31
 0.0
   0
@@ -3417,15 +3599,15 @@ DOTTED
   8
 0
  10
-203.81743792198748
+283.33180874014937
  20
-135.50000000000023
+365.50000000000017
  30
 0.0
  11
-256.33180874014903
+283.3318087401494
  21
-135.5000000000001
+399.5000000000001
  31
 0.0
   0
@@ -3435,15 +3617,15 @@ LINE
   8
 0
  10
-203.81743792198742
+283.33180874014937
  20
-117.9952097272797
+365.50000000000017
  30
 0.0
  11
-203.81743792198748
+263.3318087401494
  21
-135.50000000000023
+365.50000000000017
  31
 0.0
   0
@@ -3453,33 +3635,35 @@ LINE
   8
 0
  10
-256.33180874014903
+263.3318087401494
  20
-117.9952097272796
+399.5000000000001
  30
 0.0
  11
-203.81743792198742
+283.3318087401494
  21
-117.9952097272797
+399.5000000000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-256.33180874014903
+263.3318087401494
  20
-135.5000000000001
+399.5000000000001
  30
 0.0
  11
-256.33180874014903
+263.3318087401494
  21
-117.9952097272796
+365.50000000000017
  31
 0.0
   0
@@ -3489,15 +3673,15 @@ LINE
   8
 0
  10
-464.8461795583111
+253.33180874014943
  20
-383.0047902727206
+399.5000000000001
  30
 0.0
  11
-464.84617955831106
+263.3318087401494
  21
-365.50000000000006
+399.5000000000001
  31
 0.0
   0
@@ -3507,15 +3691,15 @@ LINE
   8
 0
  10
-412.3318087401495
+253.3318087401494
  20
-383.00479027272064
+365.50000000000017
  30
 0.0
  11
-464.8461795583111
+253.33180874014943
  21
-383.0047902727206
+399.5000000000001
  31
 0.0
   0
@@ -3525,69 +3709,75 @@ LINE
   8
 0
  10
-412.3318087401495
+263.3318087401494
  20
-365.5000000000001
+365.50000000000017
  30
 0.0
  11
-412.3318087401495
+253.3318087401494
  21
-383.00479027272064
+365.50000000000017
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-278.76362692196756
+266.3318087401493
  20
-143.25
+295.50000000000017
  30
 0.0
  11
-267.17271783105843
+266.33180874014937
  21
-143.25
+365.5000000000002
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-267.17271783105843
+266.33180874014937
  20
-143.25
+365.5000000000003
  30
 0.0
  11
-267.17271783105843
+213.81743792198782
  21
-142.75000000000003
+365.5000000000003
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-267.17271783105843
+266.3318087401493
  20
-142.75000000000003
+295.5000000000002
  30
 0.0
  11
-278.76362692196756
+213.81743792198782
  21
-142.75000000000003
+365.5000000000003
  31
 0.0
   0
@@ -3597,15 +3787,15 @@ LINE
   8
 0
  10
-278.76362692196756
+266.33180874014937
  20
-142.75000000000003
+373.00205297402334
  30
 0.0
  11
-278.76362692196756
+266.33180874014937
  21
-143.25
+365.5000000000003
  31
 0.0
   0
@@ -3615,15 +3805,15 @@ LINE
   8
 0
  10
-306.4908996492403
+213.81743792198782
  20
-143.25
+373.0020529740234
  30
 0.0
  11
-294.8999905583312
+266.33180874014937
  21
-143.25
+373.00205297402334
  31
 0.0
   0
@@ -3633,33 +3823,35 @@ LINE
   8
 0
  10
-294.8999905583312
+213.81743792198782
  20
-143.25
+365.5000000000003
  30
 0.0
  11
-294.8999905583312
+213.81743792198782
  21
-142.75000000000003
+373.0020529740234
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-294.8999905583312
+266.3318087401493
  20
-142.75000000000003
+295.50000000000017
  30
 0.0
  11
-306.4908996492403
+199.12666106625016
  21
-142.75000000000003
+315.08234220233675
  31
 0.0
   0
@@ -3669,15 +3861,15 @@ LINE
   8
 0
  10
-306.4908996492403
+199.12666106625016
  20
-142.75000000000003
+315.08234220233675
  30
 0.0
  11
-306.4908996492403
+213.81743792198782
  21
-143.25
+365.5000000000003
  31
 0.0
   0
@@ -3687,15 +3879,15 @@ LINE
   8
 0
  10
-333.5818087401493
+184.43588421051248
  20
-124.41666666666669
+264.6646844046731
  30
 0.0
  11
-333.5818087401493
+199.12666106625016
  21
-112.58333333333334
+315.08234220233675
  31
 0.0
   0
@@ -3705,105 +3897,115 @@ LINE
   8
 0
  10
-333.5818087401493
+180.30855606972295
  20
-112.58333333333334
+250.50000000000028
  30
 0.0
  11
-334.0818087401493
+184.43588421051248
  21
-112.58333333333334
+264.6646844046731
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-334.0818087401493
+180.30855606972295
  20
-112.58333333333334
+250.50000000000028
  30
 0.0
  11
-334.0818087401493
+266.3318087401493
  21
-124.41666666666669
+295.50000000000017
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-334.0818087401493
+266.3318087401493
  20
-124.41666666666669
+250.50000000000017
  30
 0.0
  11
-333.5818087401493
+266.3318087401493
  21
-124.41666666666669
+295.50000000000017
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-333.33180874014937
+266.33180874014926
  20
-16.750000000000004
+205.50000000000017
  30
 0.0
  11
-335.83180874014937
+266.3318087401493
  21
-16.750000000000004
+250.5000000000002
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-335.83180874014937
+180.3085560697229
  20
-16.750000000000004
+250.5000000000003
  30
 0.0
  11
-333.33180874014937
+266.33180874014926
  21
-19.250000000000004
+205.50000000000014
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-333.33180874014937
+199.12666106624997
  20
-19.250000000000004
+185.91765779766385
  30
 0.0
  11
-325.3318087401493
+266.33180874014926
  21
-19.250000000000004
+205.50000000000014
  31
 0.0
   0
@@ -3813,15 +4015,15 @@ LINE
   8
 0
  10
-325.3318087401493
+184.43588421051243
  20
-19.250000000000004
+236.33531559532744
  30
 0.0
  11
-322.83180874014937
+180.3085560697229
  21
-16.750000000000004
+250.5000000000003
  31
 0.0
   0
@@ -3831,15 +4033,15 @@ LINE
   8
 0
  10
-322.83180874014937
+199.12666106624997
  20
-16.750000000000004
+185.91765779766385
  30
 0.0
  11
-325.3318087401493
+184.43588421051243
  21
-16.750000000000004
+236.33531559532744
  31
 0.0
   0
@@ -3849,69 +4051,75 @@ LINE
   8
 0
  10
-298.3318087401493
+213.81743792198745
  20
-112.50000000000001
+135.50000000000023
  30
 0.0
  11
-302.3318087401493
+199.12666106624997
  21
-112.50000000000001
+185.91765779766385
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-302.3318087401493
+213.81743792198745
  20
-112.50000000000001
+135.50000000000023
  30
 0.0
  11
-302.3318087401493
+266.3318087401492
  21
-124.50000000000001
+205.50000000000017
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-302.3318087401493
+266.3318087401491
  20
-124.50000000000001
+135.5000000000001
  30
 0.0
  11
-298.3318087401493
+266.33180874014926
  21
-124.50000000000001
+205.50000000000017
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-298.3318087401493
+213.81743792198748
  20
-124.50000000000001
+135.50000000000023
  30
 0.0
  11
-298.3318087401493
+266.3318087401491
  21
-112.50000000000001
+135.5000000000001
  31
 0.0
   0
@@ -3921,15 +4129,915 @@ LINE
   8
 0
  10
-310.33180874014937
+213.81743792198745
  20
-114.00000000000001
+127.99794702597715
+ 30
+0.0
+ 11
+213.81743792198748
+ 21
+135.50000000000023
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+266.3318087401491
+ 20
+127.99794702597704
+ 30
+0.0
+ 11
+213.81743792198745
+ 21
+127.99794702597715
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+266.3318087401491
+ 20
+135.5000000000001
+ 30
+0.0
+ 11
+266.3318087401491
+ 21
+127.99794702597704
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+474.84617955831106
+ 20
+373.0020529740231
+ 30
+0.0
+ 11
+474.84617955831106
+ 21
+365.50000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+422.3318087401495
+ 20
+373.00205297402323
+ 30
+0.0
+ 11
+474.84617955831106
+ 21
+373.0020529740231
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+422.3318087401495
+ 20
+365.5000000000001
+ 30
+0.0
+ 11
+422.3318087401495
+ 21
+373.00205297402323
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+288.76362692196756
+ 20
+143.25
+ 30
+0.0
+ 11
+277.1727178310585
+ 21
+143.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+277.1727178310585
+ 20
+143.25
+ 30
+0.0
+ 11
+277.1727178310585
+ 21
+142.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+277.1727178310585
+ 20
+142.75000000000003
+ 30
+0.0
+ 11
+288.76362692196756
+ 21
+142.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+288.76362692196756
+ 20
+142.75000000000003
+ 30
+0.0
+ 11
+288.76362692196756
+ 21
+143.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+316.49089964924025
+ 20
+143.25
+ 30
+0.0
+ 11
+304.8999905583311
+ 21
+143.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+304.8999905583311
+ 20
+143.25
+ 30
+0.0
+ 11
+304.8999905583311
+ 21
+142.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+304.8999905583311
+ 20
+142.75000000000003
+ 30
+0.0
+ 11
+316.49089964924025
+ 21
+142.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+316.49089964924025
+ 20
+142.75000000000003
+ 30
+0.0
+ 11
+316.49089964924025
+ 21
+143.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+343.5818087401493
+ 20
+124.41666666666669
+ 30
+0.0
+ 11
+343.5818087401493
+ 21
+112.58333333333334
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+343.5818087401493
+ 20
+112.58333333333334
+ 30
+0.0
+ 11
+344.08180874014937
+ 21
+112.58333333333334
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+344.08180874014937
+ 20
+112.58333333333334
+ 30
+0.0
+ 11
+344.08180874014937
+ 21
+124.41666666666669
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+344.08180874014937
+ 20
+124.41666666666669
+ 30
+0.0
+ 11
+343.5818087401493
+ 21
+124.41666666666669
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+343.3318087401493
+ 20
+16.750000000000004
+ 30
+0.0
+ 11
+345.83180874014937
+ 21
+16.750000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+345.83180874014937
+ 20
+16.750000000000004
+ 30
+0.0
+ 11
+343.3318087401493
+ 21
+19.250000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+343.3318087401493
+ 20
+19.250000000000004
+ 30
+0.0
+ 11
+335.33180874014937
+ 21
+19.250000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+335.33180874014937
+ 20
+19.250000000000004
+ 30
+0.0
+ 11
+332.83180874014937
+ 21
+16.750000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+332.83180874014937
+ 20
+16.750000000000004
+ 30
+0.0
+ 11
+335.33180874014937
+ 21
+16.750000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+308.33180874014937
+ 20
+112.50000000000001
+ 30
+0.0
+ 11
+312.33180874014937
+ 21
+112.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+312.33180874014937
+ 20
+112.50000000000001
+ 30
+0.0
+ 11
+312.33180874014937
+ 21
+124.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+312.33180874014937
+ 20
+124.50000000000001
+ 30
+0.0
+ 11
+308.33180874014937
+ 21
+124.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+308.33180874014937
+ 20
+124.50000000000001
+ 30
+0.0
+ 11
+308.33180874014937
+ 21
+112.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+320.3318087401493
+ 20
+114.00000000000001
+ 30
+0.0
+ 11
+324.33180874014937
+ 21
+114.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+324.33180874014937
+ 20
+114.00000000000001
+ 30
+0.0
+ 11
+324.33180874014937
+ 21
+123.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+324.33180874014937
+ 20
+123.00000000000001
+ 30
+0.0
+ 11
+320.3318087401493
+ 21
+123.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+320.3318087401493
+ 20
+123.00000000000001
+ 30
+0.0
+ 11
+320.3318087401493
+ 21
+114.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+283.8318087401493
+ 20
+112.50000000000001
+ 30
+0.0
+ 11
+306.8318087401493
+ 21
+112.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+306.8318087401493
+ 20
+112.50000000000001
+ 30
+0.0
+ 11
+306.8318087401493
+ 21
+124.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+306.8318087401493
+ 20
+124.50000000000001
+ 30
+0.0
+ 11
+283.8318087401493
+ 21
+124.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+283.8318087401493
+ 20
+124.50000000000001
+ 30
+0.0
+ 11
+283.8318087401493
+ 21
+112.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+278.33180874014937
+ 20
+112.50000000000001
+ 30
+0.0
+ 11
+282.33180874014937
+ 21
+112.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+282.33180874014937
+ 20
+112.50000000000001
+ 30
+0.0
+ 11
+282.33180874014937
+ 21
+124.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+282.33180874014937
+ 20
+124.50000000000001
+ 30
+0.0
+ 11
+278.33180874014937
+ 21
+124.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+278.33180874014937
+ 20
+124.50000000000001
+ 30
+0.0
+ 11
+278.33180874014937
+ 21
+112.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+255.83180874014934
+ 20
+112.83333333333336
+ 30
+0.0
+ 11
+260.83180874014937
+ 21
+112.83333333333336
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+260.83180874014937
+ 20
+112.83333333333336
+ 30
+0.0
+ 11
+260.83180874014937
+ 21
+124.16666666666669
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+260.83180874014937
+ 20
+124.16666666666669
+ 30
+0.0
+ 11
+255.83180874014934
+ 21
+124.16666666666669
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+379.3318087401493
+ 20
+80.86137800081471
+ 30
+0.0
+ 11
+390.33180874014937
+ 21
+80.86137800081471
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+390.33180874014937
+ 20
+80.86137800081471
+ 30
+0.0
+ 11
+390.33180874014937
+ 21
+93.86137800081471
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+390.33180874014937
+ 20
+93.86137800081471
+ 30
+0.0
+ 11
+379.3318087401493
+ 21
+93.86137800081471
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+379.3318087401493
+ 20
+93.86137800081471
+ 30
+0.0
+ 11
+379.3318087401493
+ 21
+80.86137800081471
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+410.83180874014937
+ 20
+82.36137800081471
+ 30
+0.0
+ 11
+416.83180874014937
+ 21
+82.36137800081471
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+416.83180874014937
+ 20
+82.36137800081471
+ 30
+0.0
+ 11
+416.83180874014937
+ 21
+92.36137800081471
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+416.83180874014937
+ 20
+92.36137800081471
+ 30
+0.0
+ 11
+410.83180874014937
+ 21
+92.36137800081471
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+410.83180874014937
+ 20
+92.36137800081471
+ 30
+0.0
+ 11
+410.83180874014937
+ 21
+82.36137800081471
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+411.24089964924025
+ 20
+31.722756001629396
  30
 0.0
  11
-314.33180874014937
+411.24089964924025
  21
-114.00000000000001
+36.7227560016294
  31
 0.0
   0
@@ -3939,15 +5047,15 @@ LINE
   8
 0
  10
-314.33180874014937
+411.24089964924025
  20
-114.00000000000001
+36.7227560016294
  30
 0.0
  11
-314.33180874014937
+400.1499905583311
  21
-123.00000000000001
+36.7227560016294
  31
 0.0
   0
@@ -3957,15 +5065,15 @@ LINE
   8
 0
  10
-314.33180874014937
+400.1499905583311
  20
-123.00000000000001
+36.7227560016294
  30
 0.0
  11
-310.33180874014937
+400.1499905583311
  21
-123.00000000000001
+31.722756001629396
  31
 0.0
   0
@@ -3975,15 +5083,15 @@ LINE
   8
 0
  10
-310.33180874014937
+383.51362692196756
  20
-123.00000000000001
+31.722756001629396
  30
 0.0
  11
-310.33180874014937
+383.51362692196756
  21
-114.00000000000001
+36.7227560016294
  31
 0.0
   0
@@ -3993,15 +5101,15 @@ LINE
   8
 0
  10
-273.83180874014937
+383.51362692196756
  20
-112.50000000000001
+36.7227560016294
  30
 0.0
  11
-296.83180874014937
+372.4227178310585
  21
-112.50000000000001
+36.7227560016294
  31
 0.0
   0
@@ -4011,15 +5119,15 @@ LINE
   8
 0
  10
-296.83180874014937
+372.4227178310585
  20
-112.50000000000001
+36.7227560016294
  30
 0.0
  11
-296.83180874014937
+372.4227178310585
  21
-124.50000000000001
+31.722756001629396
  31
 0.0
   0
@@ -4029,15 +5137,15 @@ LINE
   8
 0
  10
-296.83180874014937
+429.8318087401493
  20
-124.50000000000001
+91.36137800081471
  30
 0.0
  11
-273.83180874014937
+424.83180874014937
  21
-124.50000000000001
+91.36137800081471
  31
 0.0
   0
@@ -4047,15 +5155,15 @@ LINE
   8
 0
  10
-273.83180874014937
+424.83180874014937
  20
-124.50000000000001
+91.36137800081471
  30
 0.0
  11
-273.83180874014937
+424.83180874014937
  21
-112.50000000000001
+83.36137800081471
  31
 0.0
   0
@@ -4065,15 +5173,15 @@ LINE
   8
 0
  10
-268.33180874014937
+424.83180874014937
  20
-112.50000000000001
+83.36137800081471
  30
 0.0
  11
-272.33180874014937
+429.8318087401493
  21
-112.50000000000001
+83.36137800081471
  31
 0.0
   0
@@ -4083,15 +5191,15 @@ LINE
   8
 0
  10
-272.33180874014937
+353.83180874014937
  20
-112.50000000000001
+83.36137800081471
  30
 0.0
  11
-272.33180874014937
+358.83180874014937
  21
-124.50000000000001
+83.36137800081471
  31
 0.0
   0
@@ -4101,15 +5209,15 @@ LINE
   8
 0
  10
-272.33180874014937
+358.83180874014937
  20
-124.50000000000001
+83.36137800081471
  30
 0.0
  11
-268.33180874014937
+358.83180874014937
  21
-124.50000000000001
+91.36137800081471
  31
 0.0
   0
@@ -4119,15 +5227,15 @@ LINE
   8
 0
  10
-268.33180874014937
+358.83180874014937
  20
-124.50000000000001
+91.36137800081471
  30
 0.0
  11
-268.33180874014937
+353.83180874014937
  21
-112.50000000000001
+91.36137800081471
  31
 0.0
   0
@@ -4137,15 +5245,15 @@ LINE
   8
 0
  10
-245.83180874014934
+465.29811213682694
  20
-112.83333333333336
+129.8734602694827
  30
 0.0
  11
-250.83180874014934
+469.0491386238386
  21
-112.83333333333336
+129.8734602694827
  31
 0.0
   0
@@ -4155,15 +5263,15 @@ LINE
   8
 0
  10
-250.83180874014934
+469.0491386238386
  20
-112.83333333333336
+129.8734602694827
  30
 0.0
  11
-250.83180874014934
+465.29811213682694
  21
-124.16666666666669
+133.62448675649426
  31
 0.0
   0
@@ -4173,15 +5281,15 @@ LINE
   8
 0
  10
-250.83180874014934
+465.29811213682694
  20
-124.16666666666669
+133.62448675649426
  30
 0.0
  11
-245.83180874014934
+455.7500447153431
  21
-124.16666666666669
+133.62448675649426
  31
 0.0
   0
@@ -4191,15 +5299,15 @@ LINE
   8
 0
  10
-369.33180874014937
+455.7500447153431
  20
-80.86137800081471
+133.62448675649426
  30
 0.0
  11
-380.33180874014937
+451.9990182283316
  21
-80.86137800081471
+129.8734602694827
  31
 0.0
   0
@@ -4209,15 +5317,15 @@ LINE
   8
 0
  10
-380.33180874014937
+451.9990182283316
  20
-80.86137800081471
+129.8734602694827
  30
 0.0
  11
-380.33180874014937
+455.7500447153431
  21
-93.86137800081471
+129.8734602694827
  31
 0.0
   0
@@ -4227,15 +5335,15 @@ LINE
   8
 0
  10
-380.33180874014937
+441.4279435831172
  20
-93.86137800081471
+129.8734602694827
  30
 0.0
  11
-369.33180874014937
+445.17897007012874
  21
-93.86137800081471
+129.8734602694827
  31
 0.0
   0
@@ -4245,15 +5353,15 @@ LINE
   8
 0
  10
-369.33180874014937
+445.17897007012874
  20
-93.86137800081471
+129.8734602694827
  30
 0.0
  11
-369.33180874014937
+441.4279435831172
  21
-80.86137800081471
+133.62448675649426
  31
 0.0
   0
@@ -4263,15 +5371,15 @@ LINE
   8
 0
  10
-400.83180874014937
+441.4279435831172
  20
-82.36137800081471
+133.62448675649426
  30
 0.0
  11
-406.8318087401493
+431.8798761616332
  21
-82.36137800081471
+133.62448675649426
  31
 0.0
   0
@@ -4281,15 +5389,15 @@ LINE
   8
 0
  10
-406.8318087401493
+431.8798761616332
  20
-82.36137800081471
+133.62448675649426
  30
 0.0
  11
-406.8318087401493
+428.1288496746218
  21
-92.36137800081471
+129.8734602694827
  31
 0.0
   0
@@ -4299,15 +5407,15 @@ LINE
   8
 0
  10
-406.8318087401493
+428.1288496746218
  20
-92.36137800081471
+129.8734602694827
  30
 0.0
  11
-400.83180874014937
+431.8798761616332
  21
-92.36137800081471
+129.8734602694827
  31
 0.0
   0
@@ -4317,15 +5425,15 @@ LINE
   8
 0
  10
-400.83180874014937
+489.307083733857
  20
-92.36137800081471
+206.13531866922696
  30
 0.0
  11
-400.83180874014937
+486.4961595235763
  21
-82.36137800081471
+196.48843502782523
  31
 0.0
   0
@@ -4335,15 +5443,15 @@ LINE
   8
 0
  10
-401.24089964924025
+486.4961595235763
  20
-31.722756001629396
+196.48843502782523
  30
 0.0
  11
-401.24089964924025
+486.9761962926755
  21
-36.7227560016294
+196.3485611549514
  31
 0.0
   0
@@ -4353,15 +5461,15 @@ LINE
   8
 0
  10
-401.24089964924025
+486.9761962926755
  20
-36.7227560016294
+196.3485611549514
  30
 0.0
  11
-390.1499905583312
+489.78712050295627
  21
-36.7227560016294
+205.99544479635315
  31
 0.0
   0
@@ -4371,15 +5479,15 @@ LINE
   8
 0
  10
-390.1499905583312
+489.78712050295627
  20
-36.7227560016294
+205.99544479635315
  30
 0.0
  11
-390.1499905583312
+489.307083733857
  21
-31.722756001629396
+206.13531866922696
  31
 0.0
   0
@@ -4389,15 +5497,15 @@ LINE
   8
 0
  10
-373.51362692196756
+495.9847095773741
  20
-31.722756001629396
+229.05243584998314
  30
 0.0
  11
-373.51362692196756
+493.1737853670934
  21
-36.7227560016294
+219.40555220858138
  31
 0.0
   0
@@ -4407,15 +5515,15 @@ LINE
   8
 0
  10
-373.51362692196756
+493.1737853670934
  20
-36.7227560016294
+219.40555220858138
  30
 0.0
  11
-362.4227178310585
+493.6538221361927
  21
-36.7227560016294
+219.26567833570755
  31
 0.0
   0
@@ -4425,15 +5533,15 @@ LINE
   8
 0
  10
-362.4227178310585
+493.6538221361927
  20
-36.7227560016294
+219.26567833570755
  30
 0.0
  11
-362.4227178310585
+496.4647463464733
  21
-31.722756001629396
+228.9125619771093
  31
 0.0
   0
@@ -4443,15 +5551,15 @@ LINE
   8
 0
  10
-419.83180874014937
+496.4647463464733
  20
-91.36137800081471
+228.9125619771093
  30
 0.0
  11
-414.83180874014937
+495.9847095773741
  21
-91.36137800081471
+229.05243584998314
  31
 0.0
   0
@@ -4461,15 +5569,15 @@ LINE
   8
 0
  10
-414.83180874014937
+493.17378536709344
  20
-91.36137800081471
+281.5944477914187
  30
 0.0
  11
-414.83180874014937
+495.9847095773741
  21
-83.36137800081471
+271.94756415001694
  31
 0.0
   0
@@ -4479,15 +5587,15 @@ LINE
   8
 0
  10
-414.83180874014937
+495.9847095773741
  20
-83.36137800081471
+271.94756415001694
  30
 0.0
  11
-419.83180874014937
+496.4647463464733
  21
-83.36137800081471
+272.0874380228908
  31
 0.0
   0
@@ -4497,15 +5605,15 @@ LINE
   8
 0
  10
-343.8318087401493
+496.4647463464733
  20
-83.36137800081471
+272.0874380228908
  30
 0.0
  11
-348.83180874014937
+493.6538221361927
  21
-83.36137800081471
+281.7343216642925
  31
 0.0
   0
@@ -4515,15 +5623,15 @@ LINE
   8
 0
  10
-348.83180874014937
+493.6538221361927
  20
-83.36137800081471
+281.7343216642925
  30
 0.0
  11
-348.83180874014937
+493.17378536709344
  21
-91.36137800081471
+281.5944477914187
  31
 0.0
   0
@@ -4533,15 +5641,15 @@ LINE
   8
 0
  10
-348.83180874014937
+486.49615952357635
  20
-91.36137800081471
+304.5115649721748
  30
 0.0
  11
-343.8318087401493
+489.30708373385704
  21
-91.36137800081471
+294.86468133077307
  31
 0.0
   0
@@ -4551,15 +5659,15 @@ LINE
   8
 0
  10
-447.3413892855904
+489.30708373385704
  20
-122.37140729545962
+294.86468133077307
  30
 0.0
  11
-447.3413892855904
+489.78712050295627
  21
-131.12380243181985
+295.0045552036469
  31
 0.0
   0
@@ -4569,15 +5677,15 @@ LINE
   8
 0
  10
-447.3413892855904
+489.78712050295627
  20
-131.12380243181985
+295.0045552036469
  30
 0.0
  11
-429.83659901286984
+486.97619629267564
  21
-131.12380243181988
+304.6514388450487
  31
 0.0
   0
@@ -4587,15 +5695,15 @@ LINE
   8
 0
  10
-429.83659901286984
+486.97619629267564
  20
-131.12380243181988
+304.6514388450487
  30
 0.0
  11
-429.83659901286984
+486.49615952357635
  21
-122.37140729545962
+304.5115649721748
  31
 0.0
   0
@@ -4605,15 +5713,15 @@ LINE
   8
 0
  10
-476.5563117536783
+304.8999905583312
  20
-223.5120791976936
+357.7500000000002
  30
 0.0
  11
-471.5195122622253
+316.4908996492403
  21
-206.22615649603978
+357.75000000000017
  31
 0.0
   0
@@ -4623,15 +5731,15 @@ LINE
   8
 0
  10
-471.5195122622253
+316.4908996492403
  20
-206.22615649603978
+357.75000000000017
  30
 0.0
  11
-471.99954903132453
+316.4908996492403
  21
-206.08628262316594
+358.25000000000017
  31
 0.0
   0
@@ -4641,15 +5749,15 @@ LINE
   8
 0
  10
-471.99954903132453
+316.4908996492403
  20
-206.08628262316594
+358.25000000000017
  30
 0.0
  11
-477.0363485227776
+304.8999905583312
  21
-223.37220532481973
+358.25000000000017
  31
 0.0
   0
@@ -4659,15 +5767,15 @@ LINE
   8
 0
  10
-477.0363485227776
+304.8999905583312
  20
-223.37220532481973
+358.25000000000017
  30
 0.0
  11
-476.5563117536783
+304.8999905583312
  21
-223.5120791976936
+357.7500000000002
  31
 0.0
   0
@@ -4677,15 +5785,15 @@ LINE
   8
 0
  10
-471.5195122622253
+277.1727178310585
  20
-294.77384350396034
+357.7500000000002
  30
 0.0
  11
-476.55631175367836
+288.7636269219676
  21
-277.4879208023065
+357.7500000000002
  31
 0.0
   0
@@ -4695,15 +5803,15 @@ LINE
   8
 0
  10
-476.55631175367836
+288.7636269219676
  20
-277.4879208023065
+357.7500000000002
  30
 0.0
  11
-477.0363485227776
+288.7636269219676
  21
-277.6277946751803
+358.25000000000017
  31
 0.0
   0
@@ -4713,15 +5821,15 @@ LINE
   8
 0
  10
-477.0363485227776
+288.7636269219676
  20
-277.6277946751803
+358.25000000000017
  30
 0.0
  11
-471.9995490313246
+277.1727178310585
  21
-294.91371737683414
+358.25000000000017
  31
 0.0
   0
@@ -4731,15 +5839,15 @@ LINE
   8
 0
  10
-471.9995490313246
+277.1727178310585
  20
-294.91371737683414
+358.25000000000017
  30
 0.0
  11
-471.5195122622253
+277.1727178310585
  21
-294.77384350396034
+357.7500000000002
  31
 0.0
   0
@@ -4749,15 +5857,15 @@ LINE
   8
 0
  10
-221.32222819470834
+399.89999055833124
  20
-378.6285927045407
+357.75000000000017
  30
 0.0
  11
-221.32222819470834
+411.49089964924036
  21
-369.87619756818043
+357.7500000000001
  31
 0.0
   0
@@ -4767,15 +5875,15 @@ LINE
   8
 0
  10
-221.32222819470834
+411.49089964924036
  20
-369.87619756818043
+357.7500000000001
  30
 0.0
  11
-238.82701846742887
+411.49089964924036
  21
-369.87619756818043
+358.2500000000001
  31
 0.0
   0
@@ -4785,15 +5893,15 @@ LINE
   8
 0
  10
-238.82701846742887
+411.49089964924036
  20
-369.87619756818043
+358.2500000000001
  30
 0.0
  11
-238.82701846742887
+399.89999055833124
  21
-378.6285927045407
+358.25000000000017
  31
 0.0
   0
@@ -4803,15 +5911,15 @@ LINE
   8
 0
  10
-192.10730572662035
+399.89999055833124
  20
-277.4879208023067
+358.25000000000017
  30
 0.0
  11
-197.1441052180734
+399.89999055833124
  21
-294.7738435039605
+357.75000000000017
  31
 0.0
   0
@@ -4821,15 +5929,15 @@ LINE
   8
 0
  10
-197.1441052180734
+372.17271783105855
  20
-294.7738435039605
+357.75000000000017
  30
 0.0
  11
-196.66406844897412
+383.7636269219676
  21
-294.9137173768343
+357.75000000000017
  31
 0.0
   0
@@ -4839,15 +5947,15 @@ LINE
   8
 0
  10
-196.66406844897412
+383.7636269219676
  20
-294.9137173768343
+357.75000000000017
  30
 0.0
  11
-191.62726895752107
+383.7636269219676
  21
-277.62779467518055
+358.25000000000017
  31
 0.0
   0
@@ -4857,15 +5965,15 @@ LINE
   8
 0
  10
-191.62726895752107
+383.7636269219676
  20
-277.62779467518055
+358.25000000000017
  30
 0.0
  11
-192.10730572662035
+372.17271783105855
  21
-277.4879208023067
+358.25000000000017
  31
 0.0
   0
@@ -4875,15 +5983,15 @@ LINE
   8
 0
  10
-197.14410521807324
+372.17271783105855
  20
-206.22615649604003
+358.25000000000017
  30
 0.0
  11
-192.10730572662027
+372.17271783105855
  21
-223.51207919769385
+357.75000000000017
  31
 0.0
   0
@@ -4893,15 +6001,15 @@ LINE
   8
 0
  10
-192.10730572662027
+343.5818087401495
  20
-223.51207919769385
+388.4166666666668
  30
 0.0
  11
-191.62726895752098
+343.5818087401495
  21
-223.37220532482002
+376.5833333333335
  31
 0.0
   0
@@ -4911,15 +6019,15 @@ LINE
   8
 0
  10
-191.62726895752098
+343.5818087401495
  20
-223.37220532482002
+376.5833333333335
  30
 0.0
  11
-196.66406844897398
+344.0818087401495
  21
-206.08628262316617
+376.5833333333335
  31
 0.0
   0
@@ -4929,15 +6037,15 @@ LINE
   8
 0
  10
-196.66406844897398
+344.0818087401495
  20
-206.08628262316617
+376.5833333333335
  30
 0.0
  11
-197.14410521807324
+344.0818087401495
  21
-206.22615649604003
+388.4166666666668
  31
 0.0
   0
@@ -4947,15 +6055,15 @@ LINE
   8
 0
  10
-238.8270184674285
+344.0818087401495
  20
-122.37140729545976
+388.4166666666668
  30
 0.0
  11
-238.82701846742853
+343.5818087401495
  21
-131.12380243182005
+388.4166666666668
  31
 0.0
   0
@@ -4965,15 +6073,15 @@ LINE
   8
 0
  10
-238.82701846742853
+335.08180874014954
  20
-131.12380243182005
+476.50000000000017
  30
 0.0
  11
-221.32222819470798
+343.58180874014954
  21
-131.12380243182008
+476.50000000000017
  31
 0.0
   0
@@ -4983,15 +6091,15 @@ LINE
   8
 0
  10
-221.32222819470798
+343.58180874014954
  20
-131.12380243182008
+476.50000000000017
  30
 0.0
  11
-221.32222819470798
+343.58180874014954
  21
-122.3714072954598
+477.00000000000017
  31
 0.0
   0
@@ -5001,15 +6109,15 @@ LINE
   8
 0
  10
-429.83659901286995
+343.58180874014954
  20
-378.6285927045405
+477.00000000000017
  30
 0.0
  11
-429.83659901286995
+335.08180874014954
  21
-369.87619756818015
+477.00000000000017
  31
 0.0
   0
@@ -5019,15 +6127,15 @@ LINE
   8
 0
  10
-429.83659901286995
+335.08180874014954
  20
-369.87619756818015
+477.00000000000017
  30
 0.0
  11
-447.34138928559054
+335.08180874014954
  21
-369.87619756818015
+476.50000000000017
  31
 0.0
   0
@@ -5037,15 +6145,15 @@ LINE
   8
 0
  10
-447.34138928559054
+308.3318087401494
  20
-369.87619756818015
+376.50000000000017
  30
 0.0
  11
-447.34138928559054
+312.3318087401494
  21
-378.6285927045405
+376.50000000000017
  31
 0.0
   0
@@ -5055,35 +6163,33 @@ LINE
   8
 0
  10
-578.3550614105758
+312.3318087401494
  20
-123.50000000000001
+376.50000000000017
  30
 0.0
  11
-542.3550614105758
+312.3318087401495
  21
-123.50000000000001
+388.50000000000017
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-578.3550614105758
+312.3318087401495
  20
-123.50000000000001
+388.50000000000017
  30
 0.0
  11
-578.3550614105758
+308.3318087401495
  21
-147.5
+388.50000000000017
  31
 0.0
   0
@@ -5093,15 +6199,15 @@ LINE
   8
 0
  10
-542.3550614105758
+308.3318087401495
  20
-147.5
+388.50000000000017
  30
 0.0
  11
-578.3550614105758
+308.3318087401494
  21
-147.5
+376.50000000000017
  31
 0.0
   0
@@ -5111,15 +6217,15 @@ LINE
   8
 0
  10
-578.3550614105758
+320.33180874014937
  20
-147.5
+378.00000000000017
  30
 0.0
  11
-623.3550614105758
+324.3318087401494
  21
-147.5
+378.00000000000017
  31
 0.0
   0
@@ -5129,15 +6235,15 @@ LINE
   8
 0
  10
-623.3550614105758
+324.3318087401494
  20
-123.50000000000001
+378.00000000000017
  30
 0.0
  11
-578.3550614105758
+324.3318087401494
  21
-123.50000000000001
+387.00000000000017
  31
 0.0
   0
@@ -5147,15 +6253,15 @@ LINE
   8
 0
  10
-623.3550614105758
+324.3318087401494
  20
-147.5
+387.00000000000017
  30
 0.0
  11
-623.3550614105758
+320.3318087401494
  21
-123.50000000000001
+387.00000000000017
  31
 0.0
   0
@@ -5165,35 +6271,33 @@ LINE
   8
 0
  10
-542.3550614105758
+320.3318087401494
  20
-123.50000000000001
+387.00000000000017
  30
 0.0
  11
-508.35506141057573
+320.33180874014937
  21
-123.50000000000001
+378.00000000000017
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-508.35506141057573
+283.83180874014937
  20
-147.5
+376.50000000000017
  30
 0.0
  11
-542.3550614105758
+306.83180874014937
  21
-147.5
+376.50000000000017
  31
 0.0
   0
@@ -5203,15 +6307,15 @@ LINE
   8
 0
  10
-508.35506141057573
+306.83180874014937
  20
-113.50000000000001
+376.50000000000017
  30
 0.0
  11
-508.35506141057573
+306.8318087401494
  21
-52.50000000000001
+388.50000000000017
  31
 0.0
   0
@@ -5221,15 +6325,15 @@ LINE
   8
 0
  10
-508.35506141057573
+306.8318087401494
  20
-123.50000000000001
+388.50000000000017
  30
 0.0
  11
-508.35506141057573
+283.83180874014937
  21
-113.50000000000001
+388.50000000000017
  31
 0.0
   0
@@ -5239,15 +6343,15 @@ LINE
   8
 0
  10
-508.35506141057573
+283.83180874014937
  20
-221.50000000000003
+388.50000000000017
  30
 0.0
  11
-508.35506141057573
+283.83180874014937
  21
-147.5
+376.50000000000017
  31
 0.0
   0
@@ -5257,15 +6361,15 @@ LINE
   8
 0
  10
-508.35506141057573
+278.3318087401494
  20
-221.50000000000003
+376.50000000000017
  30
 0.0
  11
-508.35506141057573
+282.3318087401494
  21
-221.50000000000003
+376.50000000000017
  31
 0.0
   0
@@ -5275,15 +6379,15 @@ LINE
   8
 0
  10
-508.35506141057573
+282.3318087401494
  20
-147.5
+376.50000000000017
  30
 0.0
  11
-508.35506141057573
+282.3318087401494
  21
-221.50000000000003
+388.50000000000017
  31
 0.0
   0
@@ -5293,15 +6397,15 @@ LINE
   8
 0
  10
-508.35506141057573
+282.3318087401494
  20
-123.50000000000001
+388.50000000000017
  30
 0.0
  11
-508.35506141057573
+278.3318087401494
  21
-147.5
+388.50000000000017
  31
 0.0
   0
@@ -5311,15 +6415,15 @@ LINE
   8
 0
  10
-508.35506141057573
+278.3318087401494
  20
-113.50000000000001
+388.50000000000017
  30
 0.0
  11
-508.35506141057573
+278.3318087401494
  21
-123.50000000000001
+376.50000000000017
  31
 0.0
   0
@@ -5329,15 +6433,15 @@ LINE
   8
 0
  10
-508.35506141057573
+255.8318087401494
  20
-52.50000000000001
+376.8333333333335
  30
 0.0
  11
-508.35506141057573
+260.8318087401494
  21
-113.50000000000001
+376.8333333333335
  31
 0.0
   0
@@ -5347,15 +6451,15 @@ LINE
   8
 0
  10
-508.35506141057573
+260.8318087401494
  20
-52.50000000000001
+376.8333333333335
  30
 0.0
  11
-508.35506141057573
+260.8318087401494
  21
-52.50000000000001
+388.16666666666686
  31
 0.0
   0
@@ -5365,15 +6469,15 @@ LINE
   8
 0
  10
-508.35506141057573
+260.8318087401494
  20
-147.5
+388.16666666666686
  30
 0.0
  11
-508.35506141057573
+255.8318087401494
  21
-167.50000000000003
+388.16666666666686
  31
 0.0
   0
@@ -5383,35 +6487,33 @@ LINE
   8
 0
  10
-542.3550614105758
+223.36550534347174
  20
-167.50000000000003
+371.12653973051766
  30
 0.0
  11
-542.3550614105758
+219.61447885646018
  21
-147.5
+371.12653973051766
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-508.35506141057573
+219.61447885646018
  20
-167.50000000000003
+371.12653973051766
  30
 0.0
  11
-542.3550614105758
+223.3655053434717
  21
-167.50000000000003
+367.3755132435061
  31
 0.0
   0
@@ -5421,15 +6523,15 @@ LINE
   8
 0
  10
-508.35506141057573
+223.3655053434717
  20
-167.50000000000003
+367.3755132435061
  30
 0.0
  11
-508.35506141057573
+232.91357276495566
  21
-191.50000000000003
+367.3755132435061
  31
 0.0
   0
@@ -5439,35 +6541,33 @@ LINE
   8
 0
  10
-542.3550614105758
+232.91357276495566
  20
-191.50000000000003
+367.3755132435061
  30
 0.0
  11
-542.3550614105758
+236.66459925196722
  21
-167.50000000000003
+371.1265397305176
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-508.35506141057573
+236.66459925196722
  20
-191.50000000000003
+371.1265397305176
  30
 0.0
  11
-542.3550614105758
+232.91357276495566
  21
-191.50000000000003
+371.1265397305176
  31
 0.0
   0
@@ -5477,15 +6577,15 @@ LINE
   8
 0
  10
-508.35506141057573
+247.23567389718156
  20
-191.50000000000003
+371.1265397305176
  30
 0.0
  11
-508.35506141057573
+243.48464741017003
  21
-211.5
+371.1265397305176
  31
 0.0
   0
@@ -5495,35 +6595,33 @@ LINE
   8
 0
  10
-542.3550614105758
+243.48464741017003
  20
-211.5
+371.1265397305176
  30
 0.0
  11
-542.3550614105758
+247.23567389718156
  21
-191.50000000000003
+367.3755132435061
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-542.3550614105758
+247.23567389718156
  20
-211.5
+367.3755132435061
  30
 0.0
  11
-508.35506141057573
+256.7837413186655
  21
-211.5
+367.3755132435061
  31
 0.0
   0
@@ -5533,15 +6631,15 @@ LINE
   8
 0
  10
-542.3550614105758
+256.7837413186655
  20
-221.50000000000003
+367.3755132435061
  30
 0.0
  11
-542.3550614105758
+260.534767805677
  21
-211.5
+371.1265397305176
  31
 0.0
   0
@@ -5551,15 +6649,15 @@ LINE
   8
 0
  10
-508.35506141057573
+260.534767805677
  20
-221.50000000000003
+371.1265397305176
  30
 0.0
  11
-542.3550614105758
+256.78374131866553
  21
-221.50000000000003
+371.1265397305176
  31
 0.0
   0
@@ -5569,15 +6667,15 @@ LINE
   8
 0
  10
-508.35506141057573
+199.35653374644173
  20
-211.5
+294.86468133077335
  30
 0.0
  11
-508.35506141057573
+202.16745795672242
  21
-221.50000000000003
+304.5115649721751
  31
 0.0
   0
@@ -5587,15 +6685,15 @@ LINE
   8
 0
  10
-619.3550614105757
+202.16745795672242
  20
-139.75000000000003
+304.5115649721751
  30
 0.0
  11
-619.3550614105757
+201.6874211876231
  21
-131.25
+304.651438845049
  31
 0.0
   0
@@ -5605,15 +6703,15 @@ LINE
   8
 0
  10
-619.3550614105757
+201.6874211876231
  20
-131.25
+304.651438845049
  30
 0.0
  11
-619.8550614105757
+198.87649697734244
  21
-131.25
+295.0045552036471
  31
 0.0
   0
@@ -5623,15 +6721,15 @@ LINE
   8
 0
  10
-619.8550614105757
+198.87649697734244
  20
-131.25
+295.0045552036471
  30
 0.0
  11
-619.8550614105757
+199.35653374644173
  21
-139.75000000000003
+294.86468133077335
  31
 0.0
   0
@@ -5641,15 +6739,15 @@ LINE
   8
 0
  10
-619.8550614105757
+192.67890790292464
  20
-139.75000000000003
+271.9475641500171
  30
 0.0
  11
-619.3550614105757
+195.48983211320527
  21
-139.75000000000003
+281.5944477914189
  31
 0.0
   0
@@ -5659,15 +6757,15 @@ LINE
   8
 0
  10
-531.2717280772423
+195.48983211320527
  20
-131.25
+281.5944477914189
  30
 0.0
  11
-519.4383947439092
+195.009795344106
  21
-131.25
+281.7343216642927
  31
 0.0
   0
@@ -5677,15 +6775,15 @@ LINE
   8
 0
  10
-519.4383947439092
+195.009795344106
  20
-131.25
+281.7343216642927
  30
 0.0
  11
-519.4383947439092
+192.19887113382532
  21
-130.75000000000003
+272.087438022891
  31
 0.0
   0
@@ -5695,15 +6793,15 @@ LINE
   8
 0
  10
-519.4383947439092
+192.19887113382532
  20
-130.75000000000003
+272.087438022891
  30
 0.0
  11
-531.2717280772423
+192.67890790292464
  21
-130.75000000000003
+271.9475641500171
  31
 0.0
   0
@@ -5713,15 +6811,15 @@ LINE
   8
 0
  10
-531.2717280772423
+195.48983211320518
  20
-130.75000000000003
+219.40555220858164
  30
 0.0
  11
-531.2717280772423
+192.67890790292452
  21
-131.25
+229.0524358499834
  31
 0.0
   0
@@ -5731,15 +6829,15 @@ LINE
   8
 0
  10
-500.60506141057573
+192.67890790292452
  20
-74.93181818181819
+229.0524358499834
  30
 0.0
  11
-500.60506141057573
+192.19887113382526
  21
-63.3409090909091
+228.91256197710956
  31
 0.0
   0
@@ -5749,15 +6847,15 @@ LINE
   8
 0
  10
-500.60506141057573
+192.19887113382526
  20
-63.3409090909091
+228.91256197710956
  30
 0.0
  11
-501.10506141057573
+195.00979534410592
  21
-63.3409090909091
+219.2656783357078
  31
 0.0
   0
@@ -5767,15 +6865,15 @@ LINE
   8
 0
  10
-501.10506141057573
+195.00979534410592
  20
-63.3409090909091
+219.2656783357078
  30
 0.0
  11
-501.10506141057573
+195.48983211320518
  21
-74.93181818181819
+219.40555220858164
  31
 0.0
   0
@@ -5785,15 +6883,15 @@ LINE
   8
 0
  10
-501.10506141057573
+202.16745795672222
  20
-74.93181818181819
+196.48843502782546
  30
 0.0
  11
-500.60506141057573
+199.35653374644158
  21
-74.93181818181819
+206.13531866922722
  31
 0.0
   0
@@ -5803,15 +6901,15 @@ LINE
   8
 0
  10
-500.60506141057573
+199.35653374644158
  20
-102.65909090909092
+206.13531866922722
  30
 0.0
  11
-500.60506141057573
+198.8764969773423
  21
-91.06818181818183
+205.99544479635338
  31
 0.0
   0
@@ -5821,15 +6919,15 @@ LINE
   8
 0
  10
-500.60506141057573
+198.8764969773423
  20
-91.06818181818183
+205.99544479635338
  30
 0.0
  11
-501.10506141057573
+201.68742118762296
  21
-91.06818181818183
+196.34856115495162
  31
 0.0
   0
@@ -5839,15 +6937,15 @@ LINE
   8
 0
  10
-501.10506141057573
+201.68742118762296
  20
-91.06818181818183
+196.34856115495162
  30
 0.0
  11
-501.10506141057573
+202.16745795672222
  21
-102.65909090909092
+196.48843502782546
  31
 0.0
   0
@@ -5857,15 +6955,15 @@ LINE
   8
 0
  10
-501.10506141057573
+256.7837413186651
  20
-102.65909090909092
+129.87346026948285
  30
 0.0
  11
-500.60506141057573
+260.53476780567667
  21
-102.65909090909092
+129.87346026948285
  31
 0.0
   0
@@ -5875,15 +6973,15 @@ LINE
   8
 0
  10
-519.3550614105758
+260.53476780567667
  20
-166.50000000000003
+129.87346026948285
  30
 0.0
  11
-519.3550614105758
+256.78374131866514
  21
-162.50000000000003
+133.6244867564944
  31
 0.0
   0
@@ -5893,15 +6991,15 @@ LINE
   8
 0
  10
-519.3550614105758
+256.78374131866514
  20
-162.50000000000003
+133.6244867564944
  30
 0.0
  11
-531.3550614105757
+247.23567389718121
  21
-162.50000000000003
+133.6244867564944
  31
 0.0
   0
@@ -5911,15 +7009,15 @@ LINE
   8
 0
  10
-531.3550614105757
+247.23567389718121
  20
-162.50000000000003
+133.6244867564944
  30
 0.0
  11
-531.3550614105757
+243.48464741016966
  21
-166.50000000000003
+129.87346026948285
  31
 0.0
   0
@@ -5929,15 +7027,15 @@ LINE
   8
 0
  10
-531.3550614105757
+243.48464741016966
  20
-166.50000000000003
+129.87346026948285
  30
 0.0
  11
-519.3550614105758
+247.23567389718121
  21
-166.50000000000003
+129.87346026948285
  31
 0.0
   0
@@ -5947,15 +7045,15 @@ LINE
   8
 0
  10
-520.8550614105757
+232.91357276495532
  20
-154.5
+129.87346026948288
  30
 0.0
  11
-520.8550614105757
+236.66459925196685
  21
-150.5
+129.87346026948285
  31
 0.0
   0
@@ -5965,15 +7063,15 @@ LINE
   8
 0
  10
-520.8550614105757
+236.66459925196685
  20
-150.5
+129.87346026948285
  30
 0.0
  11
-529.8550614105758
+232.91357276495532
  21
-150.5
+133.62448675649443
  31
 0.0
   0
@@ -5983,15 +7081,15 @@ LINE
   8
 0
  10
-529.8550614105758
+232.91357276495532
  20
-150.5
+133.62448675649443
  30
 0.0
  11
-529.8550614105758
+223.36550534347137
  21
-154.5
+133.62448675649446
  31
 0.0
   0
@@ -6001,15 +7099,15 @@ LINE
   8
 0
  10
-529.8550614105758
+223.36550534347137
  20
-154.5
+133.62448675649446
  30
 0.0
  11
-520.8550614105757
+219.6144788564598
  21
-154.5
+129.8734602694829
  31
 0.0
   0
@@ -6019,15 +7117,15 @@ LINE
   8
 0
  10
-519.3550614105758
+219.6144788564598
  20
-191.0
+129.8734602694829
  30
 0.0
  11
-519.3550614105758
+223.36550534347137
  21
-168.0
+129.87346026948288
  31
 0.0
   0
@@ -6037,15 +7135,15 @@ LINE
   8
 0
  10
-519.3550614105758
+431.8798761616334
  20
-168.0
+371.12653973051744
  30
 0.0
  11
-531.3550614105757
+428.1288496746219
  21
-168.0
+371.12653973051744
  31
 0.0
   0
@@ -6055,15 +7153,15 @@ LINE
   8
 0
  10
-531.3550614105757
+428.1288496746219
  20
-168.0
+371.12653973051744
  30
 0.0
  11
-531.3550614105757
+431.8798761616334
  21
-191.0
+367.37551324350585
  31
 0.0
   0
@@ -6073,15 +7171,15 @@ LINE
   8
 0
  10
-531.3550614105757
+431.8798761616334
  20
-191.0
+367.37551324350585
  30
 0.0
  11
-519.3550614105758
+441.4279435831173
  21
-191.0
+367.37551324350585
  31
 0.0
   0
@@ -6091,15 +7189,15 @@ LINE
   8
 0
  10
-519.3550614105758
+441.4279435831173
  20
-196.50000000000003
+367.37551324350585
  30
 0.0
  11
-519.3550614105758
+445.17897007012886
  21
-192.50000000000003
+371.12653973051744
  31
 0.0
   0
@@ -6109,15 +7207,15 @@ LINE
   8
 0
  10
-519.3550614105758
+445.17897007012886
  20
-192.50000000000003
+371.12653973051744
  30
 0.0
  11
-531.3550614105757
+441.4279435831173
  21
-192.50000000000003
+371.12653973051744
  31
 0.0
   0
@@ -6127,15 +7225,15 @@ LINE
   8
 0
  10
-531.3550614105757
+455.7500447153432
  20
-192.50000000000003
+371.12653973051744
  30
 0.0
  11
-531.3550614105757
+451.9990182283317
  21
-196.50000000000003
+371.12653973051744
  31
 0.0
   0
@@ -6145,15 +7243,15 @@ LINE
   8
 0
  10
-531.3550614105757
+451.9990182283317
  20
-196.50000000000003
+371.12653973051744
  30
 0.0
  11
-519.3550614105758
+455.7500447153432
  21
-196.50000000000003
+367.37551324350585
  31
 0.0
   0
@@ -6163,15 +7261,15 @@ LINE
   8
 0
  10
-519.6883947439092
+455.7500447153432
  20
-219.00000000000003
+367.37551324350585
  30
 0.0
  11
-519.6883947439092
+465.2981121368271
  21
-214.0
+367.37551324350585
  31
 0.0
   0
@@ -6181,15 +7279,15 @@ LINE
   8
 0
  10
-519.6883947439092
+465.2981121368271
  20
-214.0
+367.37551324350585
  30
 0.0
  11
-531.0217280772423
+469.0491386238387
  21
-214.0
+371.1265397305174
  31
 0.0
   0
@@ -6199,15 +7297,15 @@ LINE
   8
 0
  10
-531.0217280772423
+469.0491386238387
  20
-214.0
+371.1265397305174
  30
 0.0
  11
-531.0217280772423
+465.2981121368271
  21
-219.00000000000003
+371.12653973051744
  31
 0.0
   0
@@ -6219,13 +7317,13 @@ DOTTED
   8
 0
  10
-666.3550614105757
+551.3550614105758
  20
 123.50000000000001
  30
 0.0
  11
-727.3550614105758
+612.3550614105757
  21
 123.50000000000001
  31
@@ -6239,13 +7337,13 @@ DOTTED
   8
 0
  10
-727.3550614105758
+612.3550614105757
  20
 123.50000000000001
  30
 0.0
  11
-727.3550614105758
+612.3550614105757
  21
 147.5
  31
@@ -6259,13 +7357,13 @@ DOTTED
   8
 0
  10
-727.3550614105758
+612.3550614105757
  20
 147.5
  30
 0.0
  11
-666.3550614105757
+551.3550614105758
  21
 147.5
  31
@@ -6279,13 +7377,13 @@ DOTTED
   8
 0
  10
-666.3550614105757
+551.3550614105758
  20
 147.5
  30
 0.0
  11
-666.3550614105757
+551.3550614105758
  21
 123.50000000000001
  31
@@ -6297,13 +7395,13 @@ LINE
   8
 0
  10
-666.3550614105757
+551.3550614105758
  20
 116.50000000000001
  30
 0.0
  11
-666.3550614105757
+551.3550614105758
  21
 123.50000000000001
  31
@@ -6315,13 +7413,13 @@ LINE
   8
 0
  10
-726.3550614105758
+611.3550614105757
  20
 116.50000000000001
  30
 0.0
  11
-666.3550614105757
+551.3550614105758
  21
 116.50000000000001
  31
@@ -6333,13 +7431,13 @@ LINE
   8
 0
  10
-726.3550614105758
+611.3550614105757
  20
 123.50000000000001
  30
 0.0
  11
-726.3550614105758
+611.3550614105757
  21
 116.50000000000001
  31
@@ -6351,13 +7449,13 @@ LINE
   8
 0
  10
-734.3550614105758
+619.3550614105757
  20
 123.50000000000001
  30
 0.0
  11
-727.3550614105758
+612.3550614105757
  21
 123.50000000000001
  31
@@ -6369,13 +7467,13 @@ LINE
   8
 0
  10
-734.3550614105758
+619.3550614105757
  20
 147.5
  30
 0.0
  11
-734.3550614105758
+619.3550614105757
  21
 123.50000000000001
  31
@@ -6387,13 +7485,13 @@ LINE
   8
 0
  10
-727.3550614105758
+612.3550614105757
  20
 147.5
  30
 0.0
  11
-734.3550614105758
+619.3550614105757
  21
 147.5
  31
@@ -6407,13 +7505,13 @@ DOTTED
   8
 0
  10
-727.3550614105758
+612.3550614105757
  20
 147.5
  30
 0.0
  11
-727.3550614105758
+612.3550614105757
  21
 208.50000000000003
  31
@@ -6425,13 +7523,13 @@ LINE
   8
 0
  10
-667.3550614105757
+552.3550614105758
  20
 208.50000000000003
  30
 0.0
  11
-727.3550614105758
+612.3550614105757
  21
 208.50000000000003
  31
@@ -6445,13 +7543,13 @@ DOTTED
   8
 0
  10
-667.3550614105757
+552.3550614105758
  20
 147.5
  30
 0.0
  11
-667.3550614105757
+552.3550614105758
  21
 208.50000000000003
  31
@@ -6463,13 +7561,13 @@ LINE
   8
 0
  10
-751.3550614105758
+636.3550614105758
  20
 147.5
  30
 0.0
  11
-727.3550614105758
+612.3550614105757
  21
 147.5
  31
@@ -6483,13 +7581,13 @@ DOTTED
   8
 0
  10
-751.3550614105758
+636.3550614105758
  20
 147.5
  30
 0.0
  11
-751.3550614105758
+636.3550614105758
  21
 208.50000000000003
  31
@@ -6501,13 +7599,13 @@ LINE
   8
 0
  10
-727.3550614105758
+612.3550614105757
  20
 208.50000000000003
  30
 0.0
  11
-751.3550614105758
+636.3550614105758
  21
 208.50000000000003
  31
@@ -6519,13 +7617,13 @@ LINE
   8
 0
  10
-811.3550614105757
+696.3550614105758
  20
 147.5
  30
 0.0
  11
-751.3550614105758
+636.3550614105758
  21
 147.5
  31
@@ -6537,13 +7635,13 @@ LINE
   8
 0
  10
-811.3550614105757
+696.3550614105758
  20
 208.50000000000003
  30
 0.0
  11
-811.3550614105757
+696.3550614105758
  21
 147.5
  31
@@ -6555,13 +7653,13 @@ LINE
   8
 0
  10
-751.3550614105758
+636.3550614105758
  20
 208.50000000000003
  30
 0.0
  11
-811.3550614105757
+696.3550614105758
  21
 208.50000000000003
  31
@@ -6573,13 +7671,13 @@ LINE
   8
 0
  10
-667.3550614105757
+552.3550614105758
  20
 147.5
  30
 0.0
  11
-643.3550614105758
+528.3550614105758
  21
 147.5
  31
@@ -6591,13 +7689,13 @@ LINE
   8
 0
  10
-643.3550614105758
+528.3550614105758
  20
 208.50000000000003
  30
 0.0
  11
-667.3550614105757
+552.3550614105758
  21
 208.50000000000003
  31
@@ -6611,13 +7709,13 @@ DOTTED
   8
 0
  10
-643.3550614105758
+528.3550614105758
  20
 208.50000000000003
  30
 0.0
  11
-643.3550614105758
+528.3550614105758
  21
 147.5
  31
@@ -6629,13 +7727,13 @@ LINE
   8
 0
  10
-633.3550614105758
+518.3550614105758
  20
 208.50000000000003
  30
 0.0
  11
-643.3550614105758
+528.3550614105758
  21
 208.50000000000003
  31
@@ -6647,13 +7745,13 @@ LINE
   8
 0
  10
-633.3550614105758
+518.3550614105758
  20
 147.5
  30
 0.0
  11
-633.3550614105758
+518.3550614105758
  21
 208.50000000000003
  31
@@ -6665,13 +7763,13 @@ LINE
   8
 0
  10
-643.3550614105758
+528.3550614105758
  20
 147.5
  30
 0.0
  11
-633.3550614105758
+518.3550614105758
  21
 147.5
  31
@@ -6683,13 +7781,13 @@ LINE
   8
 0
  10
-659.3550614105758
+544.3550614105758
  20
 147.5
  30
 0.0
  11
-666.3550614105757
+551.3550614105758
  21
 147.5
  31
@@ -6701,13 +7799,13 @@ LINE
   8
 0
  10
-659.3550614105758
+544.3550614105758
  20
 123.50000000000001
  30
 0.0
  11
-659.3550614105758
+544.3550614105758
  21
 147.5
  31
@@ -6719,13 +7817,13 @@ LINE
   8
 0
  10
-666.3550614105757
+551.3550614105758
  20
 123.50000000000001
  30
 0.0
  11
-659.3550614105758
+544.3550614105758
  21
 123.50000000000001
  31
@@ -6737,13 +7835,13 @@ LINE
   8
 0
  10
-715.4459705014848
+600.4459705014849
  20
 118.25000000000001
  30
 0.0
  11
-718.9459705014849
+603.9459705014848
  21
 118.25000000000001
  31
@@ -6755,13 +7853,13 @@ LINE
   8
 0
  10
-718.9459705014849
+603.9459705014848
  20
 118.25000000000001
  30
 0.0
  11
-715.4459705014848
+600.4459705014849
  21
 121.75000000000001
  31
@@ -6773,13 +7871,13 @@ LINE
   8
 0
  10
-715.4459705014848
+600.4459705014849
  20
 121.75000000000001
  30
 0.0
  11
-704.5368795923939
+589.5368795923938
  21
 121.75000000000001
  31
@@ -6791,13 +7889,13 @@ LINE
   8
 0
  10
-704.5368795923939
+589.5368795923938
  20
 121.75000000000001
  30
 0.0
  11
-701.0368795923939
+586.036879592394
  21
 118.25000000000001
  31
@@ -6809,13 +7907,13 @@ LINE
   8
 0
  10
-701.0368795923939
+586.036879592394
  20
 118.25000000000001
  30
 0.0
  11
-704.5368795923939
+589.5368795923938
  21
 118.25000000000001
  31
@@ -6827,13 +7925,13 @@ LINE
   8
 0
  10
-688.1732432287577
+573.1732432287577
  20
 118.25000000000001
  30
 0.0
  11
-691.6732432287577
+576.6732432287575
  21
 118.25000000000001
  31
@@ -6845,13 +7943,13 @@ LINE
   8
 0
  10
-691.6732432287577
+576.6732432287575
  20
 118.25000000000001
  30
 0.0
  11
-688.1732432287577
+573.1732432287577
  21
 121.75000000000001
  31
@@ -6863,13 +7961,13 @@ LINE
   8
 0
  10
-688.1732432287577
+573.1732432287577
  20
 121.75000000000001
  30
 0.0
  11
-677.2641523196667
+562.2641523196666
  21
 121.75000000000001
  31
@@ -6881,13 +7979,13 @@ LINE
   8
 0
  10
-677.2641523196667
+562.2641523196666
  20
 121.75000000000001
  30
 0.0
  11
-673.7641523196667
+558.7641523196667
  21
 118.25000000000001
  31
@@ -6899,13 +7997,13 @@ LINE
   8
 0
  10
-673.7641523196667
+558.7641523196667
  20
 118.25000000000001
  30
 0.0
  11
-677.2641523196667
+562.2641523196666
  21
 118.25000000000001
  31
@@ -6917,13 +8015,13 @@ LINE
   8
 0
  10
-732.6050614105758
+617.6050614105757
  20
 139.50000000000003
  30
 0.0
  11
-729.1050614105758
+614.1050614105758
  21
 139.50000000000003
  31
@@ -6935,13 +8033,13 @@ LINE
   8
 0
  10
-729.1050614105758
+614.1050614105758
  20
 139.50000000000003
  30
 0.0
  11
-729.1050614105758
+614.1050614105758
  21
 131.50000000000003
  31
@@ -6953,13 +8051,13 @@ LINE
   8
 0
  10
-729.1050614105758
+614.1050614105758
  20
 131.50000000000003
  30
 0.0
  11
-732.6050614105758
+617.6050614105757
  21
 131.50000000000003
  31
@@ -6971,13 +8069,13 @@ LINE
   8
 0
  10
-674.8550614105757
+559.8550614105758
  20
 199.00000000000003
  30
 0.0
  11
-674.8550614105757
+559.8550614105758
  21
 181.00000000000003
  31
@@ -6989,13 +8087,13 @@ LINE
   8
 0
  10
-674.8550614105757
+559.8550614105758
  20
 181.00000000000003
  30
 0.0
  11
-709.8550614105758
+594.8550614105757
  21
 181.00000000000003
  31
@@ -7007,13 +8105,13 @@ LINE
   8
 0
  10
-709.8550614105758
+594.8550614105757
  20
 181.00000000000003
  30
 0.0
  11
-709.8550614105758
+594.8550614105757
  21
 199.00000000000003
  31
@@ -7025,13 +8123,13 @@ LINE
   8
 0
  10
-709.8550614105758
+594.8550614105757
  20
 199.00000000000003
  30
 0.0
  11
-674.8550614105757
+559.8550614105758
  21
 199.00000000000003
  31
@@ -7043,13 +8141,13 @@ LINE
   8
 0
  10
-727.8550614105758
+612.8550614105757
  20
 160.75000000000003
  30
 0.0
  11
-727.8550614105758
+612.8550614105757
  21
 157.75000000000003
  31
@@ -7061,13 +8159,13 @@ LINE
   8
 0
  10
-727.8550614105758
+612.8550614105757
  20
 157.75000000000003
  30
 0.0
  11
-730.8550614105757
+615.8550614105758
  21
 157.75000000000003
  31
@@ -7079,13 +8177,13 @@ LINE
   8
 0
  10
-730.8550614105757
+615.8550614105758
  20
 157.75000000000003
  30
 0.0
  11
-730.8550614105757
+615.8550614105758
  21
 160.75000000000003
  31
@@ -7097,13 +8195,13 @@ LINE
   8
 0
  10
-730.8550614105757
+615.8550614105758
  20
 160.75000000000003
  30
 0.0
  11
-727.8550614105758
+612.8550614105757
  21
 160.75000000000003
  31
@@ -7115,13 +8213,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 159.75000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 158.75000000000003
  31
@@ -7133,13 +8231,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 158.75000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 158.75000000000003
  31
@@ -7151,13 +8249,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 158.75000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 159.75000000000003
  31
@@ -7169,13 +8267,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 159.75000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 159.75000000000003
  31
@@ -7187,13 +8285,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 162.25000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 161.25
  31
@@ -7205,13 +8303,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 161.25
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 161.25
  31
@@ -7223,13 +8321,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 161.25
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 162.25000000000003
  31
@@ -7241,13 +8339,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 162.25000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 162.25000000000003
  31
@@ -7259,13 +8357,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 162.25000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 161.25
  31
@@ -7277,13 +8375,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 161.25
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 161.25
  31
@@ -7295,13 +8393,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 161.25
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 162.25000000000003
  31
@@ -7313,13 +8411,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 162.25000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 162.25000000000003
  31
@@ -7331,13 +8429,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 164.75000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 163.75
  31
@@ -7349,13 +8447,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 163.75
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 163.75
  31
@@ -7367,13 +8465,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 163.75
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 164.75000000000003
  31
@@ -7385,13 +8483,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 164.75000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 164.75000000000003
  31
@@ -7403,13 +8501,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 164.75000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 163.75
  31
@@ -7421,13 +8519,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 163.75
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 163.75
  31
@@ -7439,13 +8537,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 163.75
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 164.75000000000003
  31
@@ -7457,13 +8555,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 164.75000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 164.75000000000003
  31
@@ -7475,13 +8573,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 167.25000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 166.25
  31
@@ -7493,13 +8591,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 166.25
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 166.25
  31
@@ -7511,13 +8609,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 166.25
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 167.25000000000003
  31
@@ -7529,13 +8627,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 167.25000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 167.25000000000003
  31
@@ -7547,13 +8645,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 167.25000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 166.25
  31
@@ -7565,13 +8663,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 166.25
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 166.25
  31
@@ -7583,13 +8681,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 166.25
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 167.25000000000003
  31
@@ -7601,13 +8699,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 167.25000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 167.25000000000003
  31
@@ -7619,13 +8717,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 169.75000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 168.75000000000003
  31
@@ -7637,13 +8735,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 168.75000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 168.75000000000003
  31
@@ -7655,13 +8753,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 168.75000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 169.75000000000003
  31
@@ -7673,13 +8771,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 169.75000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 169.75000000000003
  31
@@ -7691,13 +8789,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 169.75000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 168.75000000000003
  31
@@ -7709,13 +8807,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 168.75000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 168.75000000000003
  31
@@ -7727,13 +8825,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 168.75000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 169.75000000000003
  31
@@ -7745,13 +8843,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 169.75000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 169.75000000000003
  31
@@ -7763,13 +8861,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 172.25000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 171.25000000000003
  31
@@ -7781,13 +8879,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 171.25000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 171.25000000000003
  31
@@ -7799,13 +8897,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 171.25000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 172.25000000000003
  31
@@ -7817,13 +8915,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 172.25000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 172.25000000000003
  31
@@ -7835,13 +8933,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 172.25000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 171.25000000000003
  31
@@ -7853,13 +8951,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 171.25000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 171.25000000000003
  31
@@ -7871,13 +8969,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 171.25000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 172.25000000000003
  31
@@ -7889,13 +8987,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 172.25000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 172.25000000000003
  31
@@ -7907,13 +9005,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 174.75000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 173.75000000000003
  31
@@ -7925,13 +9023,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 173.75000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 173.75000000000003
  31
@@ -7943,13 +9041,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 173.75000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 174.75000000000003
  31
@@ -7961,13 +9059,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 174.75000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 174.75000000000003
  31
@@ -7979,13 +9077,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 174.75000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 173.75000000000003
  31
@@ -7997,13 +9095,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 173.75000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 173.75000000000003
  31
@@ -8015,13 +9113,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 173.75000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 174.75000000000003
  31
@@ -8033,13 +9131,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 174.75000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 174.75000000000003
  31
@@ -8051,13 +9149,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 177.25
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 176.25000000000003
  31
@@ -8069,13 +9167,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 176.25000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 176.25000000000003
  31
@@ -8087,13 +9185,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 176.25000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 177.25
  31
@@ -8105,13 +9203,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 177.25
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 177.25
  31
@@ -8123,13 +9221,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 177.25
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 176.25000000000003
  31
@@ -8141,13 +9239,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 176.25000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 176.25000000000003
  31
@@ -8159,13 +9257,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 176.25000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 177.25
  31
@@ -8177,13 +9275,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 177.25
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 177.25
  31
@@ -8195,13 +9293,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 179.75
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 178.75000000000003
  31
@@ -8213,13 +9311,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 178.75000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 178.75000000000003
  31
@@ -8231,13 +9329,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 178.75000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 179.75
  31
@@ -8249,13 +9347,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 179.75
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 179.75
  31
@@ -8267,13 +9365,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 179.75
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 178.75000000000003
  31
@@ -8285,13 +9383,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 178.75000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 178.75000000000003
  31
@@ -8303,13 +9401,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 178.75000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 179.75
  31
@@ -8321,13 +9419,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 179.75
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 179.75
  31
@@ -8339,13 +9437,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 182.25
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 181.25000000000003
  31
@@ -8357,13 +9455,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 181.25000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 181.25000000000003
  31
@@ -8375,13 +9473,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 181.25000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 182.25
  31
@@ -8393,13 +9491,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 182.25
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 182.25
  31
@@ -8411,13 +9509,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 182.25
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 181.25000000000003
  31
@@ -8429,13 +9527,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 181.25000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 181.25000000000003
  31
@@ -8447,13 +9545,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 181.25000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 182.25
  31
@@ -8465,13 +9563,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 182.25
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 182.25
  31
@@ -8483,13 +9581,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 184.75000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 183.75000000000003
  31
@@ -8501,13 +9599,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 183.75000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 183.75000000000003
  31
@@ -8519,13 +9617,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 183.75000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 184.75000000000003
  31
@@ -8537,13 +9635,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 184.75000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 184.75000000000003
  31
@@ -8555,13 +9653,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 184.75000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 183.75000000000003
  31
@@ -8573,13 +9671,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 183.75000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 183.75000000000003
  31
@@ -8591,13 +9689,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 183.75000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 184.75000000000003
  31
@@ -8609,13 +9707,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 184.75000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 184.75000000000003
  31
@@ -8627,13 +9725,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 187.25000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 186.25000000000003
  31
@@ -8645,13 +9743,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 186.25000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 186.25000000000003
  31
@@ -8663,13 +9761,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 186.25000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 187.25000000000003
  31
@@ -8681,13 +9779,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 187.25000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 187.25000000000003
  31
@@ -8699,13 +9797,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 187.25000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 186.25000000000003
  31
@@ -8717,13 +9815,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 186.25000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 186.25000000000003
  31
@@ -8735,13 +9833,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 186.25000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 187.25000000000003
  31
@@ -8753,13 +9851,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 187.25000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 187.25000000000003
  31
@@ -8771,13 +9869,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 189.75000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 188.75
  31
@@ -8789,13 +9887,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 188.75
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 188.75
  31
@@ -8807,13 +9905,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 188.75
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 189.75000000000003
  31
@@ -8825,13 +9923,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 189.75000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 189.75000000000003
  31
@@ -8843,13 +9941,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 189.75000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 188.75
  31
@@ -8861,13 +9959,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 188.75
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 188.75
  31
@@ -8879,13 +9977,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 188.75
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 189.75000000000003
  31
@@ -8897,13 +9995,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 189.75000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 189.75000000000003
  31
@@ -8915,13 +10013,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 192.25000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 191.25
  31
@@ -8933,13 +10031,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 191.25
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 191.25
  31
@@ -8951,13 +10049,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 191.25
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 192.25000000000003
  31
@@ -8969,13 +10067,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 192.25000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 192.25000000000003
  31
@@ -8987,13 +10085,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 192.25000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 191.25
  31
@@ -9005,13 +10103,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 191.25
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 191.25
  31
@@ -9023,13 +10121,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 191.25
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 192.25000000000003
  31
@@ -9041,13 +10139,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 192.25000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 192.25000000000003
  31
@@ -9059,13 +10157,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 194.75000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 193.75000000000003
  31
@@ -9077,13 +10175,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 193.75000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 193.75000000000003
  31
@@ -9095,13 +10193,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 193.75000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 194.75000000000003
  31
@@ -9113,13 +10211,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 194.75000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 194.75000000000003
  31
@@ -9131,13 +10229,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 194.75000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 193.75000000000003
  31
@@ -9149,13 +10247,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 193.75000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 193.75000000000003
  31
@@ -9167,13 +10265,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 193.75000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 194.75000000000003
  31
@@ -9185,13 +10283,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 194.75000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 194.75000000000003
  31
@@ -9203,13 +10301,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 197.25000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 196.25000000000003
  31
@@ -9221,13 +10319,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 196.25000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 196.25000000000003
  31
@@ -9239,13 +10337,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 196.25000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 197.25000000000003
  31
@@ -9257,13 +10355,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 197.25000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 197.25000000000003
  31
@@ -9275,13 +10373,13 @@ LINE
   8
 0
  10
-747.8550614105757
+632.8550614105758
  20
 198.25000000000003
  30
 0.0
  11
-747.8550614105757
+632.8550614105758
  21
 195.25000000000003
  31
@@ -9293,13 +10391,13 @@ LINE
   8
 0
  10
-747.8550614105757
+632.8550614105758
  20
 195.25000000000003
  30
 0.0
  11
-750.8550614105758
+635.8550614105758
  21
 195.25000000000003
  31
@@ -9311,13 +10409,13 @@ LINE
   8
 0
  10
-750.8550614105758
+635.8550614105758
  20
 195.25000000000003
  30
 0.0
  11
-750.8550614105758
+635.8550614105758
  21
 198.25000000000003
  31
@@ -9329,13 +10427,13 @@ LINE
   8
 0
  10
-750.8550614105758
+635.8550614105758
  20
 198.25000000000003
  30
 0.0
  11
-747.8550614105757
+632.8550614105758
  21
 198.25000000000003
  31
@@ -9347,13 +10445,13 @@ LINE
   8
 0
  10
-743.6050614105757
+628.6050614105758
  20
 155.25000000000003
  30
 0.0
  11
-735.1050614105757
+620.1050614105758
  21
 155.25000000000003
  31
@@ -9365,13 +10463,13 @@ LINE
   8
 0
  10
-735.1050614105757
+620.1050614105758
  20
 155.25000000000003
  30
 0.0
  11
-735.1050614105757
+620.1050614105758
  21
 154.75
  31
@@ -9383,13 +10481,13 @@ LINE
   8
 0
  10
-735.1050614105757
+620.1050614105758
  20
 154.75
  30
 0.0
  11
-743.6050614105757
+628.6050614105758
  21
 154.75
  31
@@ -9401,13 +10499,13 @@ LINE
   8
 0
  10
-743.6050614105757
+628.6050614105758
  20
 154.75
  30
 0.0
  11
-743.6050614105757
+628.6050614105758
  21
 155.25000000000003
  31
@@ -9419,13 +10517,13 @@ LINE
   8
 0
  10
-735.1050614105757
+620.1050614105758
  20
 203.00000000000003
  30
 0.0
  11
-743.6050614105757
+628.6050614105758
  21
 203.00000000000003
  31
@@ -9437,13 +10535,13 @@ LINE
   8
 0
  10
-743.6050614105757
+628.6050614105758
  20
 203.00000000000003
  30
 0.0
  11
-743.6050614105757
+628.6050614105758
  21
 203.50000000000003
  31
@@ -9455,13 +10553,13 @@ LINE
   8
 0
  10
-743.6050614105757
+628.6050614105758
  20
 203.50000000000003
  30
 0.0
  11
-735.1050614105757
+620.1050614105758
  21
 203.50000000000003
  31
@@ -9473,13 +10571,13 @@ LINE
   8
 0
  10
-735.1050614105757
+620.1050614105758
  20
 203.50000000000003
  30
 0.0
  11
-735.1050614105757
+620.1050614105758
  21
 203.00000000000003
  31
@@ -9491,13 +10589,13 @@ LINE
   8
 0
  10
-766.3550614105757
+651.3550614105758
  20
 198.50000000000003
  30
 0.0
  11
-766.3550614105757
+651.3550614105758
  21
 185.50000000000003
  31
@@ -9509,13 +10607,13 @@ LINE
   8
 0
  10
-766.3550614105757
+651.3550614105758
  20
 185.50000000000003
  30
 0.0
  11
-796.3550614105758
+681.3550614105758
  21
 185.50000000000003
  31
@@ -9527,13 +10625,13 @@ LINE
   8
 0
  10
-796.3550614105758
+681.3550614105758
  20
 185.50000000000003
  30
 0.0
  11
-796.3550614105758
+681.3550614105758
  21
 198.50000000000003
  31
@@ -9545,13 +10643,13 @@ LINE
   8
 0
  10
-796.3550614105758
+681.3550614105758
  20
 198.50000000000003
  30
 0.0
  11
-766.3550614105757
+651.3550614105758
  21
 198.50000000000003
  31
@@ -9563,13 +10661,13 @@ LINE
   8
 0
  10
-773.4232432287574
+658.4232432287575
  20
 153.00000000000003
  30
 0.0
  11
-762.0141523196667
+647.0141523196667
  21
 153.00000000000003
  31
@@ -9581,13 +10679,13 @@ LINE
   8
 0
  10
-762.0141523196667
+647.0141523196667
  20
 153.00000000000003
  30
 0.0
  11
-762.0141523196667
+647.0141523196667
  21
 152.5
  31
@@ -9599,13 +10697,13 @@ LINE
   8
 0
  10
-762.0141523196667
+647.0141523196667
  20
 152.5
  30
 0.0
  11
-773.4232432287574
+658.4232432287575
  21
 152.5
  31
@@ -9617,13 +10715,13 @@ LINE
   8
 0
  10
-773.4232432287574
+658.4232432287575
  20
 152.5
  30
 0.0
  11
-773.4232432287574
+658.4232432287575
  21
 153.00000000000003
  31
@@ -9635,13 +10733,13 @@ LINE
   8
 0
  10
-800.6959705014848
+685.6959705014849
  20
 153.00000000000003
  30
 0.0
  11
-789.2868795923939
+674.2868795923939
  21
 153.00000000000003
  31
@@ -9653,13 +10751,13 @@ LINE
   8
 0
  10
-789.2868795923939
+674.2868795923939
  20
 153.00000000000003
  30
 0.0
  11
-789.2868795923939
+674.2868795923939
  21
 152.5
  31
@@ -9671,13 +10769,13 @@ LINE
   8
 0
  10
-789.2868795923939
+674.2868795923939
  20
 152.5
  30
 0.0
  11
-800.6959705014848
+685.6959705014849
  21
 152.5
  31
@@ -9689,13 +10787,13 @@ LINE
   8
 0
  10
-800.6959705014848
+685.6959705014849
  20
 152.5
  30
 0.0
  11
-800.6959705014848
+685.6959705014849
  21
 153.00000000000003
  31
@@ -9707,13 +10805,13 @@ LINE
   8
 0
  10
-803.6050614105758
+688.6050614105757
  20
 169.93181818181822
  30
 0.0
  11
-803.6050614105758
+688.6050614105757
  21
 158.3409090909091
  31
@@ -9725,13 +10823,13 @@ LINE
   8
 0
  10
-803.6050614105758
+688.6050614105757
  20
 158.3409090909091
  30
 0.0
  11
-804.1050614105758
+689.1050614105757
  21
 158.3409090909091
  31
@@ -9743,13 +10841,13 @@ LINE
   8
 0
  10
-804.1050614105758
+689.1050614105757
  20
 158.3409090909091
  30
 0.0
  11
-804.1050614105758
+689.1050614105757
  21
 169.93181818181822
  31
@@ -9761,13 +10859,13 @@ LINE
   8
 0
  10
-804.1050614105758
+689.1050614105757
  20
 169.93181818181822
  30
 0.0
  11
-803.6050614105758
+688.6050614105757
  21
 169.93181818181822
  31
@@ -9779,13 +10877,13 @@ LINE
   8
 0
  10
-803.6050614105758
+688.6050614105757
  20
 197.65909090909093
  30
 0.0
  11
-803.6050614105758
+688.6050614105757
  21
 186.06818181818184
  31
@@ -9797,13 +10895,13 @@ LINE
   8
 0
  10
-803.6050614105758
+688.6050614105757
  20
 186.06818181818184
  30
 0.0
  11
-804.1050614105758
+689.1050614105757
  21
 186.06818181818184
  31
@@ -9815,13 +10913,13 @@ LINE
   8
 0
  10
-804.1050614105758
+689.1050614105757
  20
 186.06818181818184
  30
 0.0
  11
-804.1050614105758
+689.1050614105757
  21
 197.65909090909093
  31
@@ -9833,13 +10931,13 @@ LINE
   8
 0
  10
-804.1050614105758
+689.1050614105757
  20
 197.65909090909093
  30
 0.0
  11
-803.6050614105758
+688.6050614105757
  21
 197.65909090909093
  31
@@ -9851,13 +10949,13 @@ LINE
   8
 0
  10
-643.8550614105758
+528.8550614105758
  20
 160.75000000000003
  30
 0.0
  11
-643.8550614105758
+528.8550614105758
  21
 157.75000000000003
  31
@@ -9869,13 +10967,13 @@ LINE
   8
 0
  10
-643.8550614105758
+528.8550614105758
  20
 157.75000000000003
  30
 0.0
  11
-646.8550614105757
+531.8550614105758
  21
 157.75000000000003
  31
@@ -9887,13 +10985,13 @@ LINE
   8
 0
  10
-646.8550614105757
+531.8550614105758
  20
 157.75000000000003
  30
 0.0
  11
-646.8550614105757
+531.8550614105758
  21
 160.75000000000003
  31
@@ -9905,13 +11003,13 @@ LINE
   8
 0
  10
-646.8550614105757
+531.8550614105758
  20
 160.75000000000003
  30
 0.0
  11
-643.8550614105758
+528.8550614105758
  21
 160.75000000000003
  31
@@ -9923,13 +11021,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 159.75000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 158.75000000000003
  31
@@ -9941,13 +11039,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 158.75000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 158.75000000000003
  31
@@ -9959,13 +11057,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 158.75000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 159.75000000000003
  31
@@ -9977,13 +11075,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 159.75000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 159.75000000000003
  31
@@ -9995,13 +11093,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 162.25000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 161.25
  31
@@ -10013,13 +11111,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 161.25
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 161.25
  31
@@ -10031,13 +11129,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 161.25
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 162.25000000000003
  31
@@ -10049,13 +11147,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 162.25000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 162.25000000000003
  31
@@ -10067,13 +11165,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 162.25000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 161.25
  31
@@ -10085,13 +11183,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 161.25
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 161.25
  31
@@ -10103,13 +11201,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 161.25
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 162.25000000000003
  31
@@ -10121,13 +11219,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 162.25000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 162.25000000000003
  31
@@ -10139,13 +11237,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 164.75000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 163.75
  31
@@ -10157,13 +11255,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 163.75
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 163.75
  31
@@ -10175,13 +11273,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 163.75
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 164.75000000000003
  31
@@ -10193,13 +11291,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 164.75000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 164.75000000000003
  31
@@ -10211,13 +11309,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 164.75000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 163.75
  31
@@ -10229,13 +11327,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 163.75
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 163.75
  31
@@ -10247,13 +11345,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 163.75
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 164.75000000000003
  31
@@ -10265,13 +11363,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 164.75000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 164.75000000000003
  31
@@ -10283,13 +11381,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 167.25000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 166.25
  31
@@ -10301,13 +11399,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 166.25
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 166.25
  31
@@ -10319,13 +11417,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 166.25
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 167.25000000000003
  31
@@ -10337,13 +11435,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 167.25000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 167.25000000000003
  31
@@ -10355,13 +11453,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 167.25000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 166.25
  31
@@ -10373,13 +11471,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 166.25
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 166.25
  31
@@ -10391,13 +11489,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 166.25
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 167.25000000000003
  31
@@ -10409,13 +11507,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 167.25000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 167.25000000000003
  31
@@ -10427,13 +11525,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 169.75000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 168.75000000000003
  31
@@ -10445,13 +11543,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 168.75000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 168.75000000000003
  31
@@ -10463,13 +11561,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 168.75000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 169.75000000000003
  31
@@ -10481,13 +11579,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 169.75000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 169.75000000000003
  31
@@ -10499,13 +11597,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 169.75000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 168.75000000000003
  31
@@ -10517,13 +11615,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 168.75000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 168.75000000000003
  31
@@ -10535,13 +11633,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 168.75000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 169.75000000000003
  31
@@ -10553,13 +11651,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 169.75000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 169.75000000000003
  31
@@ -10571,13 +11669,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 172.25000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 171.25000000000003
  31
@@ -10589,13 +11687,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 171.25000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 171.25000000000003
  31
@@ -10607,13 +11705,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 171.25000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 172.25000000000003
  31
@@ -10625,13 +11723,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 172.25000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 172.25000000000003
  31
@@ -10643,13 +11741,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 172.25000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 171.25000000000003
  31
@@ -10661,13 +11759,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 171.25000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 171.25000000000003
  31
@@ -10679,13 +11777,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 171.25000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 172.25000000000003
  31
@@ -10697,13 +11795,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 172.25000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 172.25000000000003
  31
@@ -10715,13 +11813,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 174.75000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 173.75000000000003
  31
@@ -10733,13 +11831,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 173.75000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 173.75000000000003
  31
@@ -10751,13 +11849,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 173.75000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 174.75000000000003
  31
@@ -10769,13 +11867,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 174.75000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 174.75000000000003
  31
@@ -10787,13 +11885,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 174.75000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 173.75000000000003
  31
@@ -10805,13 +11903,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 173.75000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 173.75000000000003
  31
@@ -10823,13 +11921,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 173.75000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 174.75000000000003
  31
@@ -10841,13 +11939,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 174.75000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 174.75000000000003
  31
@@ -10859,13 +11957,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 177.25
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 176.25000000000003
  31
@@ -10877,13 +11975,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 176.25000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 176.25000000000003
  31
@@ -10895,13 +11993,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 176.25000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 177.25
  31
@@ -10913,13 +12011,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 177.25
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 177.25
  31
@@ -10931,13 +12029,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 177.25
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 176.25000000000003
  31
@@ -10949,13 +12047,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 176.25000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 176.25000000000003
  31
@@ -10967,13 +12065,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 176.25000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 177.25
  31
@@ -10985,13 +12083,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 177.25
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 177.25
  31
@@ -11003,13 +12101,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 179.75
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 178.75000000000003
  31
@@ -11021,13 +12119,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 178.75000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 178.75000000000003
  31
@@ -11039,13 +12137,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 178.75000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 179.75
  31
@@ -11057,13 +12155,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 179.75
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 179.75
  31
@@ -11075,13 +12173,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 179.75
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 178.75000000000003
  31
@@ -11093,13 +12191,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 178.75000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 178.75000000000003
  31
@@ -11111,13 +12209,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 178.75000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 179.75
  31
@@ -11129,13 +12227,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 179.75
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 179.75
  31
@@ -11147,13 +12245,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 182.25
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 181.25000000000003
  31
@@ -11165,13 +12263,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 181.25000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 181.25000000000003
  31
@@ -11183,13 +12281,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 181.25000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 182.25
  31
@@ -11201,13 +12299,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 182.25
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 182.25
  31
@@ -11219,13 +12317,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 182.25
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 181.25000000000003
  31
@@ -11237,13 +12335,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 181.25000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 181.25000000000003
  31
@@ -11255,13 +12353,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 181.25000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 182.25
  31
@@ -11273,13 +12371,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 182.25
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 182.25
  31
@@ -11291,13 +12389,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 184.75000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 183.75000000000003
  31
@@ -11309,13 +12407,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 183.75000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 183.75000000000003
  31
@@ -11327,13 +12425,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 183.75000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 184.75000000000003
  31
@@ -11345,13 +12443,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 184.75000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 184.75000000000003
  31
@@ -11363,13 +12461,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 184.75000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 183.75000000000003
  31
@@ -11381,13 +12479,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 183.75000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 183.75000000000003
  31
@@ -11399,13 +12497,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 183.75000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 184.75000000000003
  31
@@ -11417,13 +12515,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 184.75000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 184.75000000000003
  31
@@ -11435,13 +12533,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 187.25000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 186.25000000000003
  31
@@ -11453,13 +12551,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 186.25000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 186.25000000000003
  31
@@ -11471,13 +12569,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 186.25000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 187.25000000000003
  31
@@ -11489,13 +12587,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 187.25000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 187.25000000000003
  31
@@ -11507,13 +12605,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 187.25000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 186.25000000000003
  31
@@ -11525,13 +12623,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 186.25000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 186.25000000000003
  31
@@ -11543,13 +12641,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 186.25000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 187.25000000000003
  31
@@ -11561,13 +12659,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 187.25000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 187.25000000000003
  31
@@ -11579,13 +12677,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 189.75000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 188.75
  31
@@ -11597,13 +12695,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 188.75
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 188.75
  31
@@ -11615,13 +12713,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 188.75
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 189.75000000000003
  31
@@ -11633,13 +12731,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 189.75000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 189.75000000000003
  31
@@ -11651,13 +12749,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 189.75000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 188.75
  31
@@ -11669,13 +12767,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 188.75
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 188.75
  31
@@ -11687,13 +12785,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 188.75
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 189.75000000000003
  31
@@ -11705,13 +12803,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 189.75000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 189.75000000000003
  31
@@ -11723,13 +12821,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 192.25000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 191.25
  31
@@ -11741,13 +12839,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 191.25
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 191.25
  31
@@ -11759,13 +12857,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 191.25
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 192.25000000000003
  31
@@ -11777,13 +12875,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 192.25000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 192.25000000000003
  31
@@ -11795,13 +12893,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 192.25000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 191.25
  31
@@ -11813,13 +12911,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 191.25
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 191.25
  31
@@ -11831,13 +12929,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 191.25
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 192.25000000000003
  31
@@ -11849,13 +12947,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 192.25000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 192.25000000000003
  31
@@ -11867,13 +12965,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 194.75000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 193.75000000000003
  31
@@ -11885,13 +12983,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 193.75000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 193.75000000000003
  31
@@ -11903,13 +13001,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 193.75000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 194.75000000000003
  31
@@ -11921,13 +13019,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 194.75000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 194.75000000000003
  31
@@ -11939,13 +13037,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 194.75000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 193.75000000000003
  31
@@ -11957,13 +13055,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 193.75000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 193.75000000000003
  31
@@ -11975,13 +13073,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 193.75000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 194.75000000000003
  31
@@ -11993,13 +13091,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 194.75000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 194.75000000000003
  31
@@ -12011,13 +13109,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 197.25000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 196.25000000000003
  31
@@ -12029,13 +13127,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 196.25000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 196.25000000000003
  31
@@ -12047,13 +13145,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 196.25000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 197.25000000000003
  31
@@ -12065,13 +13163,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 197.25000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 197.25000000000003
  31
@@ -12083,13 +13181,13 @@ LINE
   8
 0
  10
-663.8550614105758
+548.8550614105757
  20
 198.25000000000003
  30
 0.0
  11
-663.8550614105758
+548.8550614105757
  21
 195.25000000000003
  31
@@ -12101,13 +13199,13 @@ LINE
   8
 0
  10
-663.8550614105758
+548.8550614105757
  20
 195.25000000000003
  30
 0.0
  11
-666.8550614105757
+551.8550614105758
  21
 195.25000000000003
  31
@@ -12119,13 +13217,13 @@ LINE
   8
 0
  10
-666.8550614105757
+551.8550614105758
  20
 195.25000000000003
  30
 0.0
  11
-666.8550614105757
+551.8550614105758
  21
 198.25000000000003
  31
@@ -12137,13 +13235,13 @@ LINE
   8
 0
  10
-666.8550614105757
+551.8550614105758
  20
 198.25000000000003
  30
 0.0
  11
-663.8550614105758
+548.8550614105757
  21
 198.25000000000003
  31
@@ -12155,13 +13253,13 @@ LINE
   8
 0
  10
-659.6050614105758
+544.6050614105757
  20
 155.25000000000003
  30
 0.0
  11
-651.1050614105757
+536.1050614105757
  21
 155.25000000000003
  31
@@ -12173,13 +13271,13 @@ LINE
   8
 0
  10
-651.1050614105757
+536.1050614105757
  20
 155.25000000000003
  30
 0.0
  11
-651.1050614105757
+536.1050614105757
  21
 154.75
  31
@@ -12191,13 +13289,13 @@ LINE
   8
 0
  10
-651.1050614105757
+536.1050614105757
  20
 154.75
  30
 0.0
  11
-659.6050614105758
+544.6050614105757
  21
 154.75
  31
@@ -12209,13 +13307,13 @@ LINE
   8
 0
  10
-659.6050614105758
+544.6050614105757
  20
 154.75
  30
 0.0
  11
-659.6050614105758
+544.6050614105757
  21
 155.25000000000003
  31
@@ -12227,13 +13325,13 @@ LINE
   8
 0
  10
-651.1050614105757
+536.1050614105757
  20
 203.00000000000003
  30
 0.0
  11
-659.6050614105758
+544.6050614105757
  21
 203.00000000000003
  31
@@ -12245,13 +13343,13 @@ LINE
   8
 0
  10
-659.6050614105758
+544.6050614105757
  20
 203.00000000000003
  30
 0.0
  11
-659.6050614105758
+544.6050614105757
  21
 203.50000000000003
  31
@@ -12263,13 +13361,13 @@ LINE
   8
 0
  10
-659.6050614105758
+544.6050614105757
  20
 203.50000000000003
  30
 0.0
  11
-651.1050614105757
+536.1050614105757
  21
 203.50000000000003
  31
@@ -12281,13 +13379,13 @@ LINE
   8
 0
  10
-651.1050614105757
+536.1050614105757
  20
 203.50000000000003
  30
 0.0
  11
-651.1050614105757
+536.1050614105757
  21
 203.00000000000003
  31
@@ -12299,13 +13397,13 @@ LINE
   8
 0
  10
-635.8550614105758
+520.8550614105757
  20
 158.59090909090912
  30
 0.0
  11
-640.8550614105758
+525.8550614105757
  21
 158.59090909090912
  31
@@ -12317,13 +13415,13 @@ LINE
   8
 0
  10
-640.8550614105758
+525.8550614105757
  20
 158.59090909090912
  30
 0.0
  11
-640.8550614105758
+525.8550614105757
  21
 169.68181818181822
  31
@@ -12335,13 +13433,13 @@ LINE
   8
 0
  10
-640.8550614105758
+525.8550614105757
  20
 169.68181818181822
  30
 0.0
  11
-635.8550614105758
+520.8550614105757
  21
 169.68181818181822
  31
@@ -12353,13 +13451,13 @@ LINE
   8
 0
  10
-635.8550614105758
+520.8550614105757
  20
 186.31818181818184
  30
 0.0
  11
-640.8550614105758
+525.8550614105757
  21
 186.31818181818184
  31
@@ -12371,13 +13469,13 @@ LINE
   8
 0
  10
-640.8550614105758
+525.8550614105757
  20
 186.31818181818184
  30
 0.0
  11
-640.8550614105758
+525.8550614105757
  21
 197.40909090909093
  31
@@ -12389,13 +13487,13 @@ LINE
   8
 0
  10
-640.8550614105758
+525.8550614105757
  20
 197.40909090909093
  30
 0.0
  11
-635.8550614105758
+520.8550614105757
  21
 197.40909090909093
  31
@@ -12407,13 +13505,13 @@ LINE
   8
 0
  10
-661.1050614105757
+546.1050614105758
  20
 131.50000000000003
  30
 0.0
  11
-664.6050614105758
+549.6050614105758
  21
 131.50000000000003
  31
@@ -12425,13 +13523,13 @@ LINE
   8
 0
  10
-664.6050614105758
+549.6050614105758
  20
 131.50000000000003
  30
 0.0
  11
-664.6050614105758
+549.6050614105758
  21
 139.50000000000003
  31
@@ -12443,13 +13541,13 @@ LINE
   8
 0
  10
-664.6050614105758
+549.6050614105758
  20
 139.50000000000003
  30
 0.0
  11
-661.1050614105757
+546.1050614105758
  21
 139.50000000000003
  31
diff --git a/rocolib/output/BoatWithServoStackBattery/graph-lasercutter.svg b/rocolib/output/BoatWithServoStackBattery/graph-lasercutter.svg
index 42ed7b9fa853160ed147229700ec6825eb7fd0a0..38207305db2e0b279eb564cc2be66e304c26876e 100644
--- a/rocolib/output/BoatWithServoStackBattery/graph-lasercutter.svg
+++ b/rocolib/output/BoatWithServoStackBattery/graph-lasercutter.svg
@@ -1,638 +1,699 @@
 <?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="383.004790mm" version="1.1" viewBox="0.000000 0.000000 811.355061 383.004790" width="811.355061mm">
+<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 696.355061 480.500000" width="696.355061mm">
   <defs/>
-  <line stroke="#000000" x1="150.3085560697229" x2="88.65427803486146" y1="105.00000000000001" y2="105.00000000000001"/>
-  <line stroke="#000000" x1="88.65427803486146" x2="150.3085560697229" y1="166.0" y2="166.0"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="88.65427803486146" x2="88.65427803486146" y1="166.0" y2="105.00000000000001"/>
-  <line stroke="#000000" x1="160.30855606972293" x2="150.3085560697229" y1="105.00000000000001" y2="105.00000000000001"/>
-  <line stroke="#000000" x1="160.30855606972293" x2="160.30855606972293" y1="166.0" y2="105.00000000000001"/>
-  <line stroke="#000000" x1="150.3085560697229" x2="160.30855606972293" y1="166.0" y2="166.0"/>
-  <line stroke="#000000" x1="61.65427803486146" x2="88.65427803486146" y1="166.0" y2="166.0"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="61.65427803486146" x2="61.65427803486146" y1="105.00000000000001" y2="166.0"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="88.65427803486146" x2="61.65427803486146" y1="105.00000000000001" y2="105.00000000000001"/>
-  <line stroke="#000000" x1="0.0" x2="61.65427803486146" y1="166.0" y2="166.0"/>
+  <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="61.65427803486146" x2="0.0" y1="105.00000000000001" y2="105.00000000000001"/>
-  <line stroke="#000000" x1="88.65427803486146" x2="88.65427803486146" y1="105.00000000000001" y2="88.00000000000001"/>
-  <line stroke="#000000" x1="61.65427803486146" x2="61.65427803486146" y1="88.00000000000001" y2="105.00000000000001"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="88.65427803486146" x2="61.65427803486146" y1="88.00000000000001" y2="88.00000000000001"/>
-  <line stroke="#000000" x1="88.65427803486146" x2="88.65427803486146" y1="88.00000000000001" y2="27.000000000000004"/>
-  <line stroke="#000000" x1="61.65427803486146" x2="61.65427803486146" y1="27.000000000000004" y2="88.00000000000001"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="88.65427803486146" x2="61.65427803486146" y1="27.000000000000004" y2="27.000000000000004"/>
-  <line stroke="#000000" x1="88.65427803486146" x2="88.65427803486146" y1="27.000000000000004" y2="10.000000000000002"/>
-  <line stroke="#000000" x1="61.65427803486146" x2="61.65427803486146" y1="10.000000000000002" y2="27.000000000000004"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="61.65427803486146" x2="88.65427803486146" y1="10.000000000000002" y2="10.000000000000002"/>
-  <line stroke="#000000" x1="61.65427803486146" x2="61.65427803486146" y1="0.0" y2="10.000000000000002"/>
-  <line stroke="#000000" x1="88.65427803486146" x2="61.65427803486146" y1="0.0" y2="0.0"/>
-  <line stroke="#000000" x1="88.65427803486146" x2="88.65427803486146" y1="10.000000000000002" y2="0.0"/>
-  <line stroke="#888888" x1="157.80855606972293" x2="152.8085560697229" y1="154.90909090909093" y2="154.90909090909093"/>
-  <line stroke="#888888" x1="152.8085560697229" x2="152.8085560697229" y1="154.90909090909093" y2="143.8181818181818"/>
-  <line stroke="#888888" x1="152.8085560697229" x2="157.80855606972293" y1="143.8181818181818" y2="143.8181818181818"/>
-  <line stroke="#888888" x1="157.80855606972293" x2="152.8085560697229" y1="127.1818181818182" y2="127.1818181818182"/>
-  <line stroke="#888888" x1="152.8085560697229" x2="152.8085560697229" y1="127.1818181818182" y2="116.09090909090911"/>
-  <line stroke="#888888" x1="152.8085560697229" x2="157.80855606972293" y1="116.09090909090911" y2="116.09090909090911"/>
-  <line stroke="#888888" x1="84.15427803486145" x2="84.15427803486145" y1="102.50000000000001" y2="108.50000000000001"/>
-  <line stroke="#888888" x1="84.15427803486145" x2="66.15427803486145" y1="108.50000000000001" y2="108.50000000000001"/>
-  <line stroke="#888888" x1="66.15427803486145" x2="66.15427803486145" y1="108.50000000000001" y2="102.50000000000001"/>
-  <line stroke="#888888" x1="66.15427803486145" x2="84.15427803486145" y1="102.50000000000001" y2="102.50000000000001"/>
-  <line stroke="#888888" x1="70.40427803486146" x2="79.90427803486145" y1="158.25000000000003" y2="158.25000000000003"/>
-  <line stroke="#888888" x1="79.90427803486145" x2="79.90427803486145" y1="158.25000000000003" y2="158.75000000000003"/>
-  <line stroke="#888888" x1="79.90427803486145" x2="70.40427803486146" y1="158.75000000000003" y2="158.75000000000003"/>
-  <line stroke="#888888" x1="70.40427803486146" x2="70.40427803486146" y1="158.75000000000003" y2="158.25000000000003"/>
-  <line stroke="#888888" x1="79.65427803486145" x2="79.65427803486145" y1="2.5000000000000004" y2="7.500000000000001"/>
-  <line stroke="#888888" x1="79.65427803486145" x2="70.65427803486145" y1="7.500000000000001" y2="7.500000000000001"/>
-  <line stroke="#888888" x1="70.65427803486145" x2="70.65427803486145" y1="7.500000000000001" y2="2.5000000000000004"/>
-  <line stroke="#000000" x1="317.33180874014937" x2="256.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="351.33180874014937" x2="341.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="412.33180874014937" x2="412.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="256.33180874014937" x2="256.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="317.33180874014937" x2="243.33180874014934" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="351.33180874014937" x2="341.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="412.33180874014937" x2="412.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="341.33180874014937" x2="351.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="243.33180874014934" x2="317.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="243.33180874014934" x2="243.33180874014934" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="341.33180874014937" x2="341.33180874014937" y1="135.50000000000003" y2="101.50000000000001"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="317.33180874014937" x2="317.33180874014937" y1="101.50000000000001" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="317.33180874014937" x2="317.33180874014937" y1="65.5" y2="101.50000000000001"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="317.33180874014937" x2="341.33180874014937" y1="65.5" y2="65.5"/>
-  <line stroke="#000000" x1="341.33180874014937" x2="341.33180874014937" y1="101.50000000000001" y2="65.5"/>
-  <line stroke="#000000" x1="341.33180874014937" x2="341.33180874014937" y1="65.5" y2="20.5"/>
-  <line stroke="#000000" x1="317.33180874014937" x2="317.33180874014937" y1="20.5" y2="65.5"/>
-  <line stroke="#000000" x1="317.33180874014937" x2="317.33180874014937" y1="15.500000000000004" y2="20.5"/>
-  <line stroke="#000000" x1="341.33180874014937" x2="317.33180874014937" y1="15.500000000000004" y2="15.500000000000004"/>
-  <line stroke="#000000" x1="341.33180874014937" x2="341.33180874014937" y1="20.5" y2="15.500000000000004"/>
-  <line stroke="#000000" x1="317.33180874014937" x2="297.3318087401493" y1="101.50000000000001" y2="101.50000000000001"/>
-  <line stroke="#000000" x1="297.3318087401493" x2="317.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="297.3318087401493" x2="297.3318087401493" y1="101.50000000000001" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="297.3318087401493" x2="273.33180874014937" y1="101.50000000000001" y2="101.50000000000001"/>
-  <line stroke="#000000" x1="273.33180874014937" x2="297.3318087401493" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="273.33180874014937" x2="273.33180874014937" y1="101.50000000000001" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="273.33180874014937" x2="253.33180874014934" y1="101.50000000000001" y2="101.50000000000001"/>
-  <line stroke="#000000" x1="253.33180874014934" x2="273.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="253.33180874014934" x2="253.33180874014934" y1="135.50000000000003" y2="101.50000000000001"/>
-  <line stroke="#000000" x1="243.33180874014934" x2="253.33180874014934" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="243.33180874014934" x2="243.33180874014934" y1="101.50000000000001" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="253.33180874014934" x2="243.33180874014934" y1="101.50000000000001" y2="101.50000000000001"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="351.33180874014937" x2="412.33180874014937" y1="99.36137800081471" y2="99.36137800081471"/>
-  <line stroke="#000000" x1="412.33180874014937" x2="412.33180874014937" y1="135.50000000000003" y2="99.36137800081471"/>
-  <line stroke="#000000" x1="351.33180874014937" x2="351.33180874014937" y1="99.36137800081471" y2="135.50000000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="412.33180874014937" x2="351.33180874014937" y1="75.36137800081471" y2="75.36137800081471"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="412.33180874014937" x2="412.33180874014937" y1="75.36137800081471" y2="99.36137800081471"/>
-  <line stroke="#000000" x1="351.33180874014937" x2="351.33180874014937" y1="39.22275600162939" y2="75.36137800081472"/>
-  <line stroke="#000000" x1="412.33180874014937" x2="412.33180874014937" y1="75.36137800081472" y2="39.22275600162939"/>
-  <line stroke="#000000" x1="351.33180874014937" x2="351.33180874014937" y1="29.222756001629396" y2="39.22275600162939"/>
-  <line stroke="#000000" x1="412.33180874014937" x2="351.33180874014937" y1="29.222756001629396" y2="29.222756001629396"/>
-  <line stroke="#000000" x1="412.33180874014937" x2="412.33180874014937" y1="39.22275600162939" y2="29.222756001629396"/>
-  <line stroke="#000000" x1="422.33180874014937" x2="412.33180874014937" y1="75.36137800081471" y2="75.36137800081471"/>
-  <line stroke="#000000" x1="422.33180874014937" x2="422.33180874014937" y1="99.36137800081471" y2="75.36137800081471"/>
-  <line stroke="#000000" x1="412.33180874014937" x2="422.33180874014937" y1="99.36137800081471" y2="99.36137800081471"/>
-  <line stroke="#000000" x1="341.33180874014937" x2="351.33180874014937" y1="99.36137800081471" y2="99.36137800081471"/>
-  <line stroke="#000000" x1="341.33180874014937" x2="341.33180874014937" y1="75.36137800081471" y2="99.36137800081471"/>
-  <line stroke="#000000" x1="351.33180874014937" x2="341.33180874014937" y1="75.36137800081471" y2="75.36137800081471"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="412.33180874014937" x2="256.33180874014937" y1="205.50000000000003" y2="205.50000000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="412.33180874014937" x2="412.33180874014937" y1="205.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="412.33180874014937" x2="464.84617955831095" y1="135.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="412.33180874014937" x2="464.84617955831095" y1="205.50000000000003" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="412.33180874014937" x2="412.33180874014937" y1="117.99520972727949" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="464.84617955831095" x2="412.33180874014937" y1="117.99520972727949" y2="117.99520972727949"/>
-  <line stroke="#000000" x1="464.84617955831095" x2="464.84617955831095" y1="135.50000000000003" y2="117.99520972727949"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="412.33180874014937" x2="479.5369564140486" y1="205.50000000000003" y2="185.91765779766357"/>
-  <line stroke="#000000" x1="479.5369564140486" x2="464.84617955831095" y1="185.91765779766357" y2="135.50000000000003"/>
-  <line stroke="#000000" x1="494.22773326978614" x2="479.5369564140486" y1="236.33531559532716" y2="185.91765779766357"/>
-  <line stroke="#000000" x1="498.3550614105757" x2="494.22773326978614" y1="250.50000000000003" y2="236.33531559532716"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="498.3550614105757" x2="412.33180874014937" y1="250.50000000000003" y2="205.50000000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="412.33180874014937" x2="412.33180874014937" y1="250.50000000000003" y2="205.50000000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="412.3318087401494" x2="412.33180874014937" y1="295.5" y2="250.50000000000006"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="498.35506141057573" x2="412.3318087401494" y1="250.50000000000003" y2="295.50000000000006"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="479.5369564140486" x2="412.33180874014937" y1="315.08234220233646" y2="295.50000000000006"/>
-  <line stroke="#000000" x1="494.22773326978614" x2="498.3550614105757" y1="264.6646844046729" y2="250.50000000000003"/>
-  <line stroke="#000000" x1="479.5369564140486" x2="494.22773326978614" y1="315.08234220233646" y2="264.6646844046729"/>
-  <line stroke="#000000" x1="464.84617955831106" x2="479.5369564140486" y1="365.50000000000006" y2="315.0823422023364"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="464.84617955831106" x2="412.3318087401494" y1="365.50000000000006" y2="295.50000000000006"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="412.3318087401495" x2="412.33180874014937" y1="365.5000000000001" y2="295.5"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="464.84617955831106" x2="412.3318087401495" y1="365.50000000000006" y2="365.5000000000001"/>
-  <line stroke="#000000" x1="256.3318087401494" x2="412.3318087401495" y1="365.5000000000002" y2="365.5000000000001"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="412.3318087401494" x2="256.33180874014937" y1="295.50000000000006" y2="295.50000000000017"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="256.33180874014937" x2="256.3318087401494" y1="295.50000000000017" y2="365.5000000000002"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="256.3318087401494" x2="203.8174379219878" y1="365.5000000000003" y2="365.5000000000003"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="256.33180874014937" x2="203.8174379219878" y1="295.5000000000002" y2="365.5000000000003"/>
-  <line stroke="#000000" x1="256.3318087401494" x2="256.3318087401494" y1="383.00479027272075" y2="365.5000000000003"/>
-  <line stroke="#000000" x1="203.8174379219878" x2="256.3318087401494" y1="383.00479027272087" y2="383.00479027272075"/>
-  <line stroke="#000000" x1="203.8174379219878" x2="203.8174379219878" y1="365.5000000000003" y2="383.00479027272087"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="256.33180874014937" x2="189.12666106625016" y1="295.50000000000017" y2="315.08234220233675"/>
-  <line stroke="#000000" x1="189.12666106625016" x2="203.8174379219878" y1="315.08234220233675" y2="365.5000000000003"/>
-  <line stroke="#000000" x1="174.4358842105125" x2="189.12666106625016" y1="264.6646844046731" y2="315.08234220233675"/>
-  <line stroke="#000000" x1="170.30855606972295" x2="174.4358842105125" y1="250.50000000000028" y2="264.6646844046731"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="170.30855606972295" x2="256.33180874014937" y1="250.50000000000028" y2="295.50000000000017"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="256.3318087401493" x2="256.33180874014937" y1="250.50000000000017" y2="295.50000000000017"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="256.33180874014926" x2="256.3318087401493" y1="205.50000000000017" y2="250.5000000000002"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="170.30855606972293" x2="256.33180874014926" y1="250.5000000000003" y2="205.50000000000014"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="189.12666106624997" x2="256.33180874014926" y1="185.91765779766385" y2="205.50000000000014"/>
-  <line stroke="#000000" x1="174.43588421051246" x2="170.30855606972293" y1="236.33531559532744" y2="250.5000000000003"/>
-  <line stroke="#000000" x1="189.12666106624997" x2="174.43588421051246" y1="185.91765779766385" y2="236.33531559532744"/>
-  <line stroke="#000000" x1="203.81743792198745" x2="189.12666106624997" y1="135.50000000000023" y2="185.91765779766385"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="203.81743792198745" x2="256.33180874014914" y1="135.50000000000023" y2="205.50000000000017"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="256.33180874014903" x2="256.33180874014926" y1="135.5000000000001" y2="205.50000000000017"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="203.81743792198748" x2="256.33180874014903" y1="135.50000000000023" y2="135.5000000000001"/>
-  <line stroke="#000000" x1="203.81743792198742" x2="203.81743792198748" y1="117.9952097272797" y2="135.50000000000023"/>
-  <line stroke="#000000" x1="256.33180874014903" x2="203.81743792198742" y1="117.9952097272796" y2="117.9952097272797"/>
-  <line stroke="#000000" x1="256.33180874014903" x2="256.33180874014903" y1="135.5000000000001" y2="117.9952097272796"/>
-  <line stroke="#000000" x1="464.8461795583111" x2="464.84617955831106" y1="383.0047902727206" y2="365.50000000000006"/>
-  <line stroke="#000000" x1="412.3318087401495" x2="464.8461795583111" y1="383.00479027272064" y2="383.0047902727206"/>
-  <line stroke="#000000" x1="412.3318087401495" x2="412.3318087401495" y1="365.5000000000001" y2="383.00479027272064"/>
-  <line stroke="#888888" x1="278.76362692196756" x2="267.17271783105843" y1="143.25" y2="143.25"/>
-  <line stroke="#888888" x1="267.17271783105843" x2="267.17271783105843" y1="143.25" y2="142.75000000000003"/>
-  <line stroke="#888888" x1="267.17271783105843" x2="278.76362692196756" y1="142.75000000000003" y2="142.75000000000003"/>
-  <line stroke="#888888" x1="278.76362692196756" x2="278.76362692196756" y1="142.75000000000003" y2="143.25"/>
-  <line stroke="#888888" x1="306.4908996492403" x2="294.8999905583312" y1="143.25" y2="143.25"/>
-  <line stroke="#888888" x1="294.8999905583312" x2="294.8999905583312" y1="143.25" y2="142.75000000000003"/>
-  <line stroke="#888888" x1="294.8999905583312" x2="306.4908996492403" y1="142.75000000000003" y2="142.75000000000003"/>
-  <line stroke="#888888" x1="306.4908996492403" x2="306.4908996492403" y1="142.75000000000003" y2="143.25"/>
-  <line stroke="#888888" x1="333.5818087401493" x2="333.5818087401493" y1="124.41666666666669" y2="112.58333333333334"/>
-  <line stroke="#888888" x1="333.5818087401493" x2="334.0818087401493" y1="112.58333333333334" y2="112.58333333333334"/>
-  <line stroke="#888888" x1="334.0818087401493" x2="334.0818087401493" y1="112.58333333333334" y2="124.41666666666669"/>
-  <line stroke="#888888" x1="334.0818087401493" x2="333.5818087401493" y1="124.41666666666669" y2="124.41666666666669"/>
-  <line stroke="#888888" x1="333.33180874014937" x2="335.83180874014937" y1="16.750000000000004" y2="16.750000000000004"/>
-  <line stroke="#888888" x1="335.83180874014937" x2="333.33180874014937" y1="16.750000000000004" y2="19.250000000000004"/>
-  <line stroke="#888888" x1="333.33180874014937" x2="325.3318087401493" y1="19.250000000000004" y2="19.250000000000004"/>
-  <line stroke="#888888" x1="325.3318087401493" x2="322.83180874014937" y1="19.250000000000004" y2="16.750000000000004"/>
-  <line stroke="#888888" x1="322.83180874014937" x2="325.3318087401493" y1="16.750000000000004" y2="16.750000000000004"/>
-  <line stroke="#888888" x1="298.3318087401493" x2="302.3318087401493" y1="112.50000000000001" y2="112.50000000000001"/>
-  <line stroke="#888888" x1="302.3318087401493" x2="302.3318087401493" y1="112.50000000000001" y2="124.50000000000001"/>
-  <line stroke="#888888" x1="302.3318087401493" x2="298.3318087401493" y1="124.50000000000001" y2="124.50000000000001"/>
-  <line stroke="#888888" x1="298.3318087401493" x2="298.3318087401493" y1="124.50000000000001" y2="112.50000000000001"/>
-  <line stroke="#888888" x1="310.33180874014937" x2="314.33180874014937" y1="114.00000000000001" y2="114.00000000000001"/>
-  <line stroke="#888888" x1="314.33180874014937" x2="314.33180874014937" y1="114.00000000000001" y2="123.00000000000001"/>
-  <line stroke="#888888" x1="314.33180874014937" x2="310.33180874014937" y1="123.00000000000001" y2="123.00000000000001"/>
-  <line stroke="#888888" x1="310.33180874014937" x2="310.33180874014937" y1="123.00000000000001" y2="114.00000000000001"/>
-  <line stroke="#888888" x1="273.83180874014937" x2="296.83180874014937" y1="112.50000000000001" y2="112.50000000000001"/>
-  <line stroke="#888888" x1="296.83180874014937" x2="296.83180874014937" y1="112.50000000000001" y2="124.50000000000001"/>
-  <line stroke="#888888" x1="296.83180874014937" x2="273.83180874014937" y1="124.50000000000001" y2="124.50000000000001"/>
-  <line stroke="#888888" x1="273.83180874014937" x2="273.83180874014937" y1="124.50000000000001" y2="112.50000000000001"/>
-  <line stroke="#888888" x1="268.33180874014937" x2="272.33180874014937" y1="112.50000000000001" y2="112.50000000000001"/>
-  <line stroke="#888888" x1="272.33180874014937" x2="272.33180874014937" y1="112.50000000000001" y2="124.50000000000001"/>
-  <line stroke="#888888" x1="272.33180874014937" x2="268.33180874014937" y1="124.50000000000001" y2="124.50000000000001"/>
-  <line stroke="#888888" x1="268.33180874014937" x2="268.33180874014937" y1="124.50000000000001" y2="112.50000000000001"/>
-  <line stroke="#888888" x1="245.83180874014934" x2="250.83180874014934" y1="112.83333333333336" y2="112.83333333333336"/>
-  <line stroke="#888888" x1="250.83180874014934" x2="250.83180874014934" y1="112.83333333333336" y2="124.16666666666669"/>
-  <line stroke="#888888" x1="250.83180874014934" x2="245.83180874014934" y1="124.16666666666669" y2="124.16666666666669"/>
-  <line stroke="#888888" x1="369.33180874014937" x2="380.33180874014937" y1="80.86137800081471" y2="80.86137800081471"/>
-  <line stroke="#888888" x1="380.33180874014937" x2="380.33180874014937" y1="80.86137800081471" y2="93.86137800081471"/>
-  <line stroke="#888888" x1="380.33180874014937" x2="369.33180874014937" y1="93.86137800081471" y2="93.86137800081471"/>
-  <line stroke="#888888" x1="369.33180874014937" x2="369.33180874014937" y1="93.86137800081471" y2="80.86137800081471"/>
-  <line stroke="#888888" x1="400.83180874014937" x2="406.8318087401493" y1="82.36137800081471" y2="82.36137800081471"/>
-  <line stroke="#888888" x1="406.8318087401493" x2="406.8318087401493" y1="82.36137800081471" y2="92.36137800081471"/>
-  <line stroke="#888888" x1="406.8318087401493" x2="400.83180874014937" y1="92.36137800081471" y2="92.36137800081471"/>
-  <line stroke="#888888" x1="400.83180874014937" x2="400.83180874014937" y1="92.36137800081471" y2="82.36137800081471"/>
-  <line stroke="#888888" x1="401.24089964924025" x2="401.24089964924025" y1="31.722756001629396" y2="36.7227560016294"/>
-  <line stroke="#888888" x1="401.24089964924025" x2="390.1499905583312" y1="36.7227560016294" y2="36.7227560016294"/>
-  <line stroke="#888888" x1="390.1499905583312" x2="390.1499905583312" y1="36.7227560016294" y2="31.722756001629396"/>
-  <line stroke="#888888" x1="373.51362692196756" x2="373.51362692196756" y1="31.722756001629396" y2="36.7227560016294"/>
-  <line stroke="#888888" x1="373.51362692196756" x2="362.4227178310585" y1="36.7227560016294" y2="36.7227560016294"/>
-  <line stroke="#888888" x1="362.4227178310585" x2="362.4227178310585" y1="36.7227560016294" y2="31.722756001629396"/>
-  <line stroke="#888888" x1="419.83180874014937" x2="414.83180874014937" y1="91.36137800081471" y2="91.36137800081471"/>
-  <line stroke="#888888" x1="414.83180874014937" x2="414.83180874014937" y1="91.36137800081471" y2="83.36137800081471"/>
-  <line stroke="#888888" x1="414.83180874014937" x2="419.83180874014937" y1="83.36137800081471" y2="83.36137800081471"/>
-  <line stroke="#888888" x1="343.8318087401493" x2="348.83180874014937" y1="83.36137800081471" y2="83.36137800081471"/>
-  <line stroke="#888888" x1="348.83180874014937" x2="348.83180874014937" y1="83.36137800081471" y2="91.36137800081471"/>
-  <line stroke="#888888" x1="348.83180874014937" x2="343.8318087401493" y1="91.36137800081471" y2="91.36137800081471"/>
-  <line stroke="#888888" x1="447.3413892855904" x2="447.3413892855904" y1="122.37140729545962" y2="131.12380243181985"/>
-  <line stroke="#888888" x1="447.3413892855904" x2="429.83659901286984" y1="131.12380243181985" y2="131.12380243181988"/>
-  <line stroke="#888888" x1="429.83659901286984" x2="429.83659901286984" y1="131.12380243181988" y2="122.37140729545962"/>
-  <line stroke="#888888" x1="476.5563117536783" x2="471.5195122622253" y1="223.5120791976936" y2="206.22615649603978"/>
-  <line stroke="#888888" x1="471.5195122622253" x2="471.99954903132453" y1="206.22615649603978" y2="206.08628262316594"/>
-  <line stroke="#888888" x1="471.99954903132453" x2="477.0363485227776" y1="206.08628262316594" y2="223.37220532481973"/>
-  <line stroke="#888888" x1="477.0363485227776" x2="476.5563117536783" y1="223.37220532481973" y2="223.5120791976936"/>
-  <line stroke="#888888" x1="471.5195122622253" x2="476.55631175367836" y1="294.77384350396034" y2="277.4879208023065"/>
-  <line stroke="#888888" x1="476.55631175367836" x2="477.0363485227776" y1="277.4879208023065" y2="277.6277946751803"/>
-  <line stroke="#888888" x1="477.0363485227776" x2="471.9995490313246" y1="277.6277946751803" y2="294.91371737683414"/>
-  <line stroke="#888888" x1="471.9995490313246" x2="471.5195122622253" y1="294.91371737683414" y2="294.77384350396034"/>
-  <line stroke="#888888" x1="221.32222819470834" x2="221.32222819470834" y1="378.6285927045407" y2="369.87619756818043"/>
-  <line stroke="#888888" x1="221.32222819470834" x2="238.82701846742887" y1="369.87619756818043" y2="369.87619756818043"/>
-  <line stroke="#888888" x1="238.82701846742887" x2="238.82701846742887" y1="369.87619756818043" y2="378.6285927045407"/>
-  <line stroke="#888888" x1="192.10730572662035" x2="197.1441052180734" y1="277.4879208023067" y2="294.7738435039605"/>
-  <line stroke="#888888" x1="197.1441052180734" x2="196.66406844897412" y1="294.7738435039605" y2="294.9137173768343"/>
-  <line stroke="#888888" x1="196.66406844897412" x2="191.62726895752107" y1="294.9137173768343" y2="277.62779467518055"/>
-  <line stroke="#888888" x1="191.62726895752107" x2="192.10730572662035" y1="277.62779467518055" y2="277.4879208023067"/>
-  <line stroke="#888888" x1="197.14410521807324" x2="192.10730572662027" y1="206.22615649604003" y2="223.51207919769385"/>
-  <line stroke="#888888" x1="192.10730572662027" x2="191.62726895752098" y1="223.51207919769385" y2="223.37220532482002"/>
-  <line stroke="#888888" x1="191.62726895752098" x2="196.66406844897398" y1="223.37220532482002" y2="206.08628262316617"/>
-  <line stroke="#888888" x1="196.66406844897398" x2="197.14410521807324" y1="206.08628262316617" y2="206.22615649604003"/>
-  <line stroke="#888888" x1="238.8270184674285" x2="238.82701846742853" y1="122.37140729545976" y2="131.12380243182005"/>
-  <line stroke="#888888" x1="238.82701846742853" x2="221.32222819470798" y1="131.12380243182005" y2="131.12380243182008"/>
-  <line stroke="#888888" x1="221.32222819470798" x2="221.32222819470798" y1="131.12380243182008" y2="122.3714072954598"/>
-  <line stroke="#888888" x1="429.83659901286995" x2="429.83659901286995" y1="378.6285927045405" y2="369.87619756818015"/>
-  <line stroke="#888888" x1="429.83659901286995" x2="447.34138928559054" y1="369.87619756818015" y2="369.87619756818015"/>
-  <line stroke="#888888" x1="447.34138928559054" x2="447.34138928559054" y1="369.87619756818015" y2="378.6285927045405"/>
-  <line stroke="#000000" x1="578.3550614105758" x2="542.3550614105758" y1="123.50000000000001" y2="123.50000000000001"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="578.3550614105758" x2="578.3550614105758" y1="123.50000000000001" y2="147.5"/>
-  <line stroke="#000000" x1="542.3550614105758" x2="578.3550614105758" y1="147.5" y2="147.5"/>
-  <line stroke="#000000" x1="578.3550614105758" x2="623.3550614105758" y1="147.5" y2="147.5"/>
-  <line stroke="#000000" x1="623.3550614105758" x2="578.3550614105758" y1="123.50000000000001" y2="123.50000000000001"/>
-  <line stroke="#000000" x1="623.3550614105758" x2="623.3550614105758" y1="147.5" y2="123.50000000000001"/>
-  <line stroke="#000000" x1="542.3550614105758" x2="508.35506141057573" y1="123.50000000000001" y2="123.50000000000001"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="508.35506141057573" x2="542.3550614105758" y1="147.5" y2="147.5"/>
-  <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="113.50000000000001" y2="52.50000000000001"/>
-  <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="123.50000000000001" y2="113.50000000000001"/>
-  <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="221.50000000000003" y2="147.5"/>
-  <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="221.50000000000003" y2="221.50000000000003"/>
-  <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="147.5" y2="221.50000000000003"/>
-  <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="123.50000000000001" y2="147.5"/>
-  <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="113.50000000000001" y2="123.50000000000001"/>
-  <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="52.50000000000001" y2="113.50000000000001"/>
-  <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="52.50000000000001" y2="52.50000000000001"/>
-  <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="147.5" y2="167.50000000000003"/>
-  <line stroke="#000000" x1="542.3550614105758" x2="542.3550614105758" y1="167.50000000000003" y2="147.5"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="508.35506141057573" x2="542.3550614105758" y1="167.50000000000003" y2="167.50000000000003"/>
-  <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="167.50000000000003" y2="191.50000000000003"/>
-  <line stroke="#000000" x1="542.3550614105758" x2="542.3550614105758" y1="191.50000000000003" y2="167.50000000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="508.35506141057573" x2="542.3550614105758" y1="191.50000000000003" y2="191.50000000000003"/>
-  <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="191.50000000000003" y2="211.5"/>
-  <line stroke="#000000" x1="542.3550614105758" x2="542.3550614105758" y1="211.5" y2="191.50000000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="542.3550614105758" x2="508.35506141057573" y1="211.5" y2="211.5"/>
-  <line stroke="#000000" x1="542.3550614105758" x2="542.3550614105758" y1="221.50000000000003" y2="211.5"/>
-  <line stroke="#000000" x1="508.35506141057573" x2="542.3550614105758" y1="221.50000000000003" y2="221.50000000000003"/>
-  <line stroke="#000000" x1="508.35506141057573" x2="508.35506141057573" y1="211.5" y2="221.50000000000003"/>
-  <line stroke="#888888" x1="619.3550614105757" x2="619.3550614105757" y1="139.75000000000003" y2="131.25"/>
-  <line stroke="#888888" x1="619.3550614105757" x2="619.8550614105757" y1="131.25" y2="131.25"/>
-  <line stroke="#888888" x1="619.8550614105757" x2="619.8550614105757" y1="131.25" y2="139.75000000000003"/>
-  <line stroke="#888888" x1="619.8550614105757" x2="619.3550614105757" y1="139.75000000000003" y2="139.75000000000003"/>
-  <line stroke="#888888" x1="531.2717280772423" x2="519.4383947439092" y1="131.25" y2="131.25"/>
-  <line stroke="#888888" x1="519.4383947439092" x2="519.4383947439092" y1="131.25" y2="130.75000000000003"/>
-  <line stroke="#888888" x1="519.4383947439092" x2="531.2717280772423" y1="130.75000000000003" y2="130.75000000000003"/>
-  <line stroke="#888888" x1="531.2717280772423" x2="531.2717280772423" y1="130.75000000000003" y2="131.25"/>
-  <line stroke="#888888" x1="500.60506141057573" x2="500.60506141057573" y1="74.93181818181819" y2="63.3409090909091"/>
-  <line stroke="#888888" x1="500.60506141057573" x2="501.10506141057573" y1="63.3409090909091" y2="63.3409090909091"/>
-  <line stroke="#888888" x1="501.10506141057573" x2="501.10506141057573" y1="63.3409090909091" y2="74.93181818181819"/>
-  <line stroke="#888888" x1="501.10506141057573" x2="500.60506141057573" y1="74.93181818181819" y2="74.93181818181819"/>
-  <line stroke="#888888" x1="500.60506141057573" x2="500.60506141057573" y1="102.65909090909092" y2="91.06818181818183"/>
-  <line stroke="#888888" x1="500.60506141057573" x2="501.10506141057573" y1="91.06818181818183" y2="91.06818181818183"/>
-  <line stroke="#888888" x1="501.10506141057573" x2="501.10506141057573" y1="91.06818181818183" y2="102.65909090909092"/>
-  <line stroke="#888888" x1="501.10506141057573" x2="500.60506141057573" y1="102.65909090909092" y2="102.65909090909092"/>
-  <line stroke="#888888" x1="519.3550614105758" x2="519.3550614105758" y1="166.50000000000003" y2="162.50000000000003"/>
-  <line stroke="#888888" x1="519.3550614105758" x2="531.3550614105757" y1="162.50000000000003" y2="162.50000000000003"/>
-  <line stroke="#888888" x1="531.3550614105757" x2="531.3550614105757" y1="162.50000000000003" y2="166.50000000000003"/>
-  <line stroke="#888888" x1="531.3550614105757" x2="519.3550614105758" y1="166.50000000000003" y2="166.50000000000003"/>
-  <line stroke="#888888" x1="520.8550614105757" x2="520.8550614105757" y1="154.5" y2="150.5"/>
-  <line stroke="#888888" x1="520.8550614105757" x2="529.8550614105758" y1="150.5" y2="150.5"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="150.5" y2="154.5"/>
-  <line stroke="#888888" x1="529.8550614105758" x2="520.8550614105757" y1="154.5" y2="154.5"/>
-  <line stroke="#888888" x1="519.3550614105758" x2="519.3550614105758" y1="191.0" y2="168.0"/>
-  <line stroke="#888888" x1="519.3550614105758" x2="531.3550614105757" y1="168.0" y2="168.0"/>
-  <line stroke="#888888" x1="531.3550614105757" x2="531.3550614105757" y1="168.0" y2="191.0"/>
-  <line stroke="#888888" x1="531.3550614105757" x2="519.3550614105758" y1="191.0" y2="191.0"/>
-  <line stroke="#888888" x1="519.3550614105758" x2="519.3550614105758" y1="196.50000000000003" y2="192.50000000000003"/>
-  <line stroke="#888888" x1="519.3550614105758" x2="531.3550614105757" y1="192.50000000000003" y2="192.50000000000003"/>
-  <line stroke="#888888" x1="531.3550614105757" x2="531.3550614105757" y1="192.50000000000003" y2="196.50000000000003"/>
-  <line stroke="#888888" x1="531.3550614105757" x2="519.3550614105758" y1="196.50000000000003" y2="196.50000000000003"/>
-  <line stroke="#888888" x1="519.6883947439092" x2="519.6883947439092" y1="219.00000000000003" y2="214.0"/>
-  <line stroke="#888888" x1="519.6883947439092" x2="531.0217280772423" y1="214.0" y2="214.0"/>
-  <line stroke="#888888" x1="531.0217280772423" x2="531.0217280772423" y1="214.0" y2="219.00000000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="666.3550614105757" x2="727.3550614105758" y1="123.50000000000001" y2="123.50000000000001"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="727.3550614105758" x2="727.3550614105758" y1="123.50000000000001" y2="147.5"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="727.3550614105758" x2="666.3550614105757" y1="147.5" y2="147.5"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="666.3550614105757" x2="666.3550614105757" y1="147.5" y2="123.50000000000001"/>
-  <line stroke="#000000" x1="666.3550614105757" x2="666.3550614105757" y1="116.50000000000001" y2="123.50000000000001"/>
-  <line stroke="#000000" x1="726.3550614105758" x2="666.3550614105757" y1="116.50000000000001" y2="116.50000000000001"/>
-  <line stroke="#000000" x1="726.3550614105758" x2="726.3550614105758" y1="123.50000000000001" y2="116.50000000000001"/>
-  <line stroke="#000000" x1="734.3550614105758" x2="727.3550614105758" y1="123.50000000000001" y2="123.50000000000001"/>
-  <line stroke="#000000" x1="734.3550614105758" x2="734.3550614105758" y1="147.5" y2="123.50000000000001"/>
-  <line stroke="#000000" x1="727.3550614105758" x2="734.3550614105758" y1="147.5" y2="147.5"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="727.3550614105758" x2="727.3550614105758" y1="147.5" y2="208.50000000000003"/>
-  <line stroke="#000000" x1="667.3550614105757" x2="727.3550614105758" y1="208.50000000000003" y2="208.50000000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="667.3550614105757" x2="667.3550614105757" y1="147.5" y2="208.50000000000003"/>
-  <line stroke="#000000" x1="751.3550614105758" x2="727.3550614105758" y1="147.5" y2="147.5"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="751.3550614105758" x2="751.3550614105758" y1="147.5" y2="208.50000000000003"/>
-  <line stroke="#000000" x1="727.3550614105758" x2="751.3550614105758" y1="208.50000000000003" y2="208.50000000000003"/>
-  <line stroke="#000000" x1="811.3550614105757" x2="751.3550614105758" y1="147.5" y2="147.5"/>
-  <line stroke="#000000" x1="811.3550614105757" x2="811.3550614105757" y1="208.50000000000003" y2="147.5"/>
-  <line stroke="#000000" x1="751.3550614105758" x2="811.3550614105757" y1="208.50000000000003" y2="208.50000000000003"/>
-  <line stroke="#000000" x1="667.3550614105757" x2="643.3550614105758" y1="147.5" y2="147.5"/>
-  <line stroke="#000000" x1="643.3550614105758" x2="667.3550614105757" y1="208.50000000000003" y2="208.50000000000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="643.3550614105758" x2="643.3550614105758" y1="208.50000000000003" y2="147.5"/>
-  <line stroke="#000000" x1="633.3550614105758" x2="643.3550614105758" y1="208.50000000000003" y2="208.50000000000003"/>
-  <line stroke="#000000" x1="633.3550614105758" x2="633.3550614105758" y1="147.5" y2="208.50000000000003"/>
-  <line stroke="#000000" x1="643.3550614105758" x2="633.3550614105758" y1="147.5" y2="147.5"/>
-  <line stroke="#000000" x1="659.3550614105758" x2="666.3550614105757" y1="147.5" y2="147.5"/>
-  <line stroke="#000000" x1="659.3550614105758" x2="659.3550614105758" y1="123.50000000000001" y2="147.5"/>
-  <line stroke="#000000" x1="666.3550614105757" x2="659.3550614105758" y1="123.50000000000001" y2="123.50000000000001"/>
-  <line stroke="#888888" x1="715.4459705014848" x2="718.9459705014849" y1="118.25000000000001" y2="118.25000000000001"/>
-  <line stroke="#888888" x1="718.9459705014849" x2="715.4459705014848" y1="118.25000000000001" y2="121.75000000000001"/>
-  <line stroke="#888888" x1="715.4459705014848" x2="704.5368795923939" y1="121.75000000000001" y2="121.75000000000001"/>
-  <line stroke="#888888" x1="704.5368795923939" x2="701.0368795923939" y1="121.75000000000001" y2="118.25000000000001"/>
-  <line stroke="#888888" x1="701.0368795923939" x2="704.5368795923939" y1="118.25000000000001" y2="118.25000000000001"/>
-  <line stroke="#888888" x1="688.1732432287577" x2="691.6732432287577" y1="118.25000000000001" y2="118.25000000000001"/>
-  <line stroke="#888888" x1="691.6732432287577" x2="688.1732432287577" y1="118.25000000000001" y2="121.75000000000001"/>
-  <line stroke="#888888" x1="688.1732432287577" x2="677.2641523196667" y1="121.75000000000001" y2="121.75000000000001"/>
-  <line stroke="#888888" x1="677.2641523196667" x2="673.7641523196667" y1="121.75000000000001" y2="118.25000000000001"/>
-  <line stroke="#888888" x1="673.7641523196667" x2="677.2641523196667" y1="118.25000000000001" y2="118.25000000000001"/>
-  <line stroke="#888888" x1="732.6050614105758" x2="729.1050614105758" y1="139.50000000000003" y2="139.50000000000003"/>
-  <line stroke="#888888" x1="729.1050614105758" x2="729.1050614105758" y1="139.50000000000003" y2="131.50000000000003"/>
-  <line stroke="#888888" x1="729.1050614105758" x2="732.6050614105758" y1="131.50000000000003" y2="131.50000000000003"/>
-  <line stroke="#888888" x1="674.8550614105757" x2="674.8550614105757" y1="199.00000000000003" y2="181.00000000000003"/>
-  <line stroke="#888888" x1="674.8550614105757" x2="709.8550614105758" y1="181.00000000000003" y2="181.00000000000003"/>
-  <line stroke="#888888" x1="709.8550614105758" x2="709.8550614105758" y1="181.00000000000003" y2="199.00000000000003"/>
-  <line stroke="#888888" x1="709.8550614105758" x2="674.8550614105757" y1="199.00000000000003" y2="199.00000000000003"/>
-  <line stroke="#888888" x1="727.8550614105758" x2="727.8550614105758" y1="160.75000000000003" y2="157.75000000000003"/>
-  <line stroke="#888888" x1="727.8550614105758" x2="730.8550614105757" y1="157.75000000000003" y2="157.75000000000003"/>
-  <line stroke="#888888" x1="730.8550614105757" x2="730.8550614105757" y1="157.75000000000003" y2="160.75000000000003"/>
-  <line stroke="#888888" x1="730.8550614105757" x2="727.8550614105758" y1="160.75000000000003" y2="160.75000000000003"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="159.75000000000003" y2="158.75000000000003"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="158.75000000000003" y2="158.75000000000003"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="158.75000000000003" y2="159.75000000000003"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="159.75000000000003" y2="159.75000000000003"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="162.25000000000003" y2="161.25"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="161.25" y2="161.25"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="161.25" y2="162.25000000000003"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="162.25000000000003" y2="162.25000000000003"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="162.25000000000003" y2="161.25"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="161.25" y2="161.25"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="161.25" y2="162.25000000000003"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="162.25000000000003" y2="162.25000000000003"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="164.75000000000003" y2="163.75"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="163.75" y2="163.75"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="163.75" y2="164.75000000000003"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="164.75000000000003" y2="164.75000000000003"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="164.75000000000003" y2="163.75"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="163.75" y2="163.75"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="163.75" y2="164.75000000000003"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="164.75000000000003" y2="164.75000000000003"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="167.25000000000003" y2="166.25"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="166.25" y2="166.25"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="166.25" y2="167.25000000000003"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="167.25000000000003" y2="167.25000000000003"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="167.25000000000003" y2="166.25"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="166.25" y2="166.25"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="166.25" y2="167.25000000000003"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="167.25000000000003" y2="167.25000000000003"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="169.75000000000003" y2="168.75000000000003"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="168.75000000000003" y2="168.75000000000003"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="168.75000000000003" y2="169.75000000000003"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="169.75000000000003" y2="169.75000000000003"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="169.75000000000003" y2="168.75000000000003"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="168.75000000000003" y2="168.75000000000003"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="168.75000000000003" y2="169.75000000000003"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="169.75000000000003" y2="169.75000000000003"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="172.25000000000003" y2="171.25000000000003"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="171.25000000000003" y2="171.25000000000003"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="171.25000000000003" y2="172.25000000000003"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="172.25000000000003" y2="172.25000000000003"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="172.25000000000003" y2="171.25000000000003"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="171.25000000000003" y2="171.25000000000003"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="171.25000000000003" y2="172.25000000000003"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="172.25000000000003" y2="172.25000000000003"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="174.75000000000003" y2="173.75000000000003"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="173.75000000000003" y2="173.75000000000003"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="173.75000000000003" y2="174.75000000000003"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="174.75000000000003" y2="174.75000000000003"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="174.75000000000003" y2="173.75000000000003"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="173.75000000000003" y2="173.75000000000003"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="173.75000000000003" y2="174.75000000000003"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="174.75000000000003" y2="174.75000000000003"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="177.25" y2="176.25000000000003"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="176.25000000000003" y2="176.25000000000003"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="176.25000000000003" y2="177.25"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="177.25" y2="177.25"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="177.25" y2="176.25000000000003"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="176.25000000000003" y2="176.25000000000003"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="176.25000000000003" y2="177.25"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="177.25" y2="177.25"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="179.75" y2="178.75000000000003"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="178.75000000000003" y2="178.75000000000003"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="178.75000000000003" y2="179.75"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="179.75" y2="179.75"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="179.75" y2="178.75000000000003"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="178.75000000000003" y2="178.75000000000003"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="178.75000000000003" y2="179.75"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="179.75" y2="179.75"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="182.25" y2="181.25000000000003"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="181.25000000000003" y2="181.25000000000003"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="181.25000000000003" y2="182.25"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="182.25" y2="182.25"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="182.25" y2="181.25000000000003"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="181.25000000000003" y2="181.25000000000003"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="181.25000000000003" y2="182.25"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="182.25" y2="182.25"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="184.75000000000003" y2="183.75000000000003"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="183.75000000000003" y2="183.75000000000003"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="183.75000000000003" y2="184.75000000000003"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="184.75000000000003" y2="184.75000000000003"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="184.75000000000003" y2="183.75000000000003"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="183.75000000000003" y2="183.75000000000003"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="183.75000000000003" y2="184.75000000000003"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="184.75000000000003" y2="184.75000000000003"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="187.25000000000003" y2="186.25000000000003"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="186.25000000000003" y2="186.25000000000003"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="186.25000000000003" y2="187.25000000000003"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="187.25000000000003" y2="187.25000000000003"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="187.25000000000003" y2="186.25000000000003"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="186.25000000000003" y2="186.25000000000003"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="186.25000000000003" y2="187.25000000000003"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="187.25000000000003" y2="187.25000000000003"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="189.75000000000003" y2="188.75"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="188.75" y2="188.75"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="188.75" y2="189.75000000000003"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="189.75000000000003" y2="189.75000000000003"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="189.75000000000003" y2="188.75"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="188.75" y2="188.75"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="188.75" y2="189.75000000000003"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="189.75000000000003" y2="189.75000000000003"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="192.25000000000003" y2="191.25"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="191.25" y2="191.25"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="191.25" y2="192.25000000000003"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="192.25000000000003" y2="192.25000000000003"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="192.25000000000003" y2="191.25"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="191.25" y2="191.25"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="191.25" y2="192.25000000000003"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="192.25000000000003" y2="192.25000000000003"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="194.75000000000003" y2="193.75000000000003"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="193.75000000000003" y2="193.75000000000003"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="193.75000000000003" y2="194.75000000000003"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="194.75000000000003" y2="194.75000000000003"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="748.8550614105757" y1="194.75000000000003" y2="193.75000000000003"/>
-  <line stroke="#888888" x1="748.8550614105757" x2="749.8550614105758" y1="193.75000000000003" y2="193.75000000000003"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="749.8550614105758" y1="193.75000000000003" y2="194.75000000000003"/>
-  <line stroke="#888888" x1="749.8550614105758" x2="748.8550614105757" y1="194.75000000000003" y2="194.75000000000003"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="728.8550614105757" y1="197.25000000000003" y2="196.25000000000003"/>
-  <line stroke="#888888" x1="728.8550614105757" x2="729.8550614105757" y1="196.25000000000003" y2="196.25000000000003"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="729.8550614105757" y1="196.25000000000003" y2="197.25000000000003"/>
-  <line stroke="#888888" x1="729.8550614105757" x2="728.8550614105757" y1="197.25000000000003" y2="197.25000000000003"/>
-  <line stroke="#888888" x1="747.8550614105757" x2="747.8550614105757" y1="198.25000000000003" y2="195.25000000000003"/>
-  <line stroke="#888888" x1="747.8550614105757" x2="750.8550614105758" y1="195.25000000000003" y2="195.25000000000003"/>
-  <line stroke="#888888" x1="750.8550614105758" x2="750.8550614105758" y1="195.25000000000003" y2="198.25000000000003"/>
-  <line stroke="#888888" x1="750.8550614105758" x2="747.8550614105757" y1="198.25000000000003" y2="198.25000000000003"/>
-  <line stroke="#888888" x1="743.6050614105757" x2="735.1050614105757" y1="155.25000000000003" y2="155.25000000000003"/>
-  <line stroke="#888888" x1="735.1050614105757" x2="735.1050614105757" y1="155.25000000000003" y2="154.75"/>
-  <line stroke="#888888" x1="735.1050614105757" x2="743.6050614105757" y1="154.75" y2="154.75"/>
-  <line stroke="#888888" x1="743.6050614105757" x2="743.6050614105757" y1="154.75" y2="155.25000000000003"/>
-  <line stroke="#888888" x1="735.1050614105757" x2="743.6050614105757" y1="203.00000000000003" y2="203.00000000000003"/>
-  <line stroke="#888888" x1="743.6050614105757" x2="743.6050614105757" y1="203.00000000000003" y2="203.50000000000003"/>
-  <line stroke="#888888" x1="743.6050614105757" x2="735.1050614105757" y1="203.50000000000003" y2="203.50000000000003"/>
-  <line stroke="#888888" x1="735.1050614105757" x2="735.1050614105757" y1="203.50000000000003" y2="203.00000000000003"/>
-  <line stroke="#888888" x1="766.3550614105757" x2="766.3550614105757" y1="198.50000000000003" y2="185.50000000000003"/>
-  <line stroke="#888888" x1="766.3550614105757" x2="796.3550614105758" y1="185.50000000000003" y2="185.50000000000003"/>
-  <line stroke="#888888" x1="796.3550614105758" x2="796.3550614105758" y1="185.50000000000003" y2="198.50000000000003"/>
-  <line stroke="#888888" x1="796.3550614105758" x2="766.3550614105757" y1="198.50000000000003" y2="198.50000000000003"/>
-  <line stroke="#888888" x1="773.4232432287574" x2="762.0141523196667" y1="153.00000000000003" y2="153.00000000000003"/>
-  <line stroke="#888888" x1="762.0141523196667" x2="762.0141523196667" y1="153.00000000000003" y2="152.5"/>
-  <line stroke="#888888" x1="762.0141523196667" x2="773.4232432287574" y1="152.5" y2="152.5"/>
-  <line stroke="#888888" x1="773.4232432287574" x2="773.4232432287574" y1="152.5" y2="153.00000000000003"/>
-  <line stroke="#888888" x1="800.6959705014848" x2="789.2868795923939" y1="153.00000000000003" y2="153.00000000000003"/>
-  <line stroke="#888888" x1="789.2868795923939" x2="789.2868795923939" y1="153.00000000000003" y2="152.5"/>
-  <line stroke="#888888" x1="789.2868795923939" x2="800.6959705014848" y1="152.5" y2="152.5"/>
-  <line stroke="#888888" x1="800.6959705014848" x2="800.6959705014848" y1="152.5" y2="153.00000000000003"/>
-  <line stroke="#888888" x1="803.6050614105758" x2="803.6050614105758" y1="169.93181818181822" y2="158.3409090909091"/>
-  <line stroke="#888888" x1="803.6050614105758" x2="804.1050614105758" y1="158.3409090909091" y2="158.3409090909091"/>
-  <line stroke="#888888" x1="804.1050614105758" x2="804.1050614105758" y1="158.3409090909091" y2="169.93181818181822"/>
-  <line stroke="#888888" x1="804.1050614105758" x2="803.6050614105758" y1="169.93181818181822" y2="169.93181818181822"/>
-  <line stroke="#888888" x1="803.6050614105758" x2="803.6050614105758" y1="197.65909090909093" y2="186.06818181818184"/>
-  <line stroke="#888888" x1="803.6050614105758" x2="804.1050614105758" y1="186.06818181818184" y2="186.06818181818184"/>
-  <line stroke="#888888" x1="804.1050614105758" x2="804.1050614105758" y1="186.06818181818184" y2="197.65909090909093"/>
-  <line stroke="#888888" x1="804.1050614105758" x2="803.6050614105758" y1="197.65909090909093" y2="197.65909090909093"/>
-  <line stroke="#888888" x1="643.8550614105758" x2="643.8550614105758" y1="160.75000000000003" y2="157.75000000000003"/>
-  <line stroke="#888888" x1="643.8550614105758" x2="646.8550614105757" y1="157.75000000000003" y2="157.75000000000003"/>
-  <line stroke="#888888" x1="646.8550614105757" x2="646.8550614105757" y1="157.75000000000003" y2="160.75000000000003"/>
-  <line stroke="#888888" x1="646.8550614105757" x2="643.8550614105758" y1="160.75000000000003" y2="160.75000000000003"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="159.75000000000003" y2="158.75000000000003"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="158.75000000000003" y2="158.75000000000003"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="158.75000000000003" y2="159.75000000000003"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="159.75000000000003" y2="159.75000000000003"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="162.25000000000003" y2="161.25"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="161.25" y2="161.25"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="161.25" y2="162.25000000000003"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="162.25000000000003" y2="162.25000000000003"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="162.25000000000003" y2="161.25"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="161.25" y2="161.25"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="161.25" y2="162.25000000000003"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="162.25000000000003" y2="162.25000000000003"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="164.75000000000003" y2="163.75"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="163.75" y2="163.75"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="163.75" y2="164.75000000000003"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="164.75000000000003" y2="164.75000000000003"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="164.75000000000003" y2="163.75"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="163.75" y2="163.75"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="163.75" y2="164.75000000000003"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="164.75000000000003" y2="164.75000000000003"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="167.25000000000003" y2="166.25"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="166.25" y2="166.25"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="166.25" y2="167.25000000000003"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="167.25000000000003" y2="167.25000000000003"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="167.25000000000003" y2="166.25"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="166.25" y2="166.25"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="166.25" y2="167.25000000000003"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="167.25000000000003" y2="167.25000000000003"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="169.75000000000003" y2="168.75000000000003"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="168.75000000000003" y2="168.75000000000003"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="168.75000000000003" y2="169.75000000000003"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="169.75000000000003" y2="169.75000000000003"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="169.75000000000003" y2="168.75000000000003"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="168.75000000000003" y2="168.75000000000003"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="168.75000000000003" y2="169.75000000000003"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="169.75000000000003" y2="169.75000000000003"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="172.25000000000003" y2="171.25000000000003"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="171.25000000000003" y2="171.25000000000003"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="171.25000000000003" y2="172.25000000000003"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="172.25000000000003" y2="172.25000000000003"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="172.25000000000003" y2="171.25000000000003"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="171.25000000000003" y2="171.25000000000003"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="171.25000000000003" y2="172.25000000000003"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="172.25000000000003" y2="172.25000000000003"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="174.75000000000003" y2="173.75000000000003"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="173.75000000000003" y2="173.75000000000003"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="173.75000000000003" y2="174.75000000000003"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="174.75000000000003" y2="174.75000000000003"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="174.75000000000003" y2="173.75000000000003"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="173.75000000000003" y2="173.75000000000003"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="173.75000000000003" y2="174.75000000000003"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="174.75000000000003" y2="174.75000000000003"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="177.25" y2="176.25000000000003"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="176.25000000000003" y2="176.25000000000003"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="176.25000000000003" y2="177.25"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="177.25" y2="177.25"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="177.25" y2="176.25000000000003"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="176.25000000000003" y2="176.25000000000003"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="176.25000000000003" y2="177.25"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="177.25" y2="177.25"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="179.75" y2="178.75000000000003"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="178.75000000000003" y2="178.75000000000003"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="178.75000000000003" y2="179.75"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="179.75" y2="179.75"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="179.75" y2="178.75000000000003"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="178.75000000000003" y2="178.75000000000003"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="178.75000000000003" y2="179.75"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="179.75" y2="179.75"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="182.25" y2="181.25000000000003"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="181.25000000000003" y2="181.25000000000003"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="181.25000000000003" y2="182.25"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="182.25" y2="182.25"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="182.25" y2="181.25000000000003"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="181.25000000000003" y2="181.25000000000003"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="181.25000000000003" y2="182.25"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="182.25" y2="182.25"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="184.75000000000003" y2="183.75000000000003"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="183.75000000000003" y2="183.75000000000003"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="183.75000000000003" y2="184.75000000000003"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="184.75000000000003" y2="184.75000000000003"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="184.75000000000003" y2="183.75000000000003"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="183.75000000000003" y2="183.75000000000003"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="183.75000000000003" y2="184.75000000000003"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="184.75000000000003" y2="184.75000000000003"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="187.25000000000003" y2="186.25000000000003"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="186.25000000000003" y2="186.25000000000003"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="186.25000000000003" y2="187.25000000000003"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="187.25000000000003" y2="187.25000000000003"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="187.25000000000003" y2="186.25000000000003"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="186.25000000000003" y2="186.25000000000003"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="186.25000000000003" y2="187.25000000000003"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="187.25000000000003" y2="187.25000000000003"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="189.75000000000003" y2="188.75"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="188.75" y2="188.75"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="188.75" y2="189.75000000000003"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="189.75000000000003" y2="189.75000000000003"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="189.75000000000003" y2="188.75"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="188.75" y2="188.75"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="188.75" y2="189.75000000000003"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="189.75000000000003" y2="189.75000000000003"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="192.25000000000003" y2="191.25"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="191.25" y2="191.25"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="191.25" y2="192.25000000000003"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="192.25000000000003" y2="192.25000000000003"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="192.25000000000003" y2="191.25"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="191.25" y2="191.25"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="191.25" y2="192.25000000000003"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="192.25000000000003" y2="192.25000000000003"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="194.75000000000003" y2="193.75000000000003"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="193.75000000000003" y2="193.75000000000003"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="193.75000000000003" y2="194.75000000000003"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="194.75000000000003" y2="194.75000000000003"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="664.8550614105757" y1="194.75000000000003" y2="193.75000000000003"/>
-  <line stroke="#888888" x1="664.8550614105757" x2="665.8550614105757" y1="193.75000000000003" y2="193.75000000000003"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="665.8550614105757" y1="193.75000000000003" y2="194.75000000000003"/>
-  <line stroke="#888888" x1="665.8550614105757" x2="664.8550614105757" y1="194.75000000000003" y2="194.75000000000003"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="644.8550614105758" y1="197.25000000000003" y2="196.25000000000003"/>
-  <line stroke="#888888" x1="644.8550614105758" x2="645.8550614105758" y1="196.25000000000003" y2="196.25000000000003"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="645.8550614105758" y1="196.25000000000003" y2="197.25000000000003"/>
-  <line stroke="#888888" x1="645.8550614105758" x2="644.8550614105758" y1="197.25000000000003" y2="197.25000000000003"/>
-  <line stroke="#888888" x1="663.8550614105758" x2="663.8550614105758" y1="198.25000000000003" y2="195.25000000000003"/>
-  <line stroke="#888888" x1="663.8550614105758" x2="666.8550614105757" y1="195.25000000000003" y2="195.25000000000003"/>
-  <line stroke="#888888" x1="666.8550614105757" x2="666.8550614105757" y1="195.25000000000003" y2="198.25000000000003"/>
-  <line stroke="#888888" x1="666.8550614105757" x2="663.8550614105758" y1="198.25000000000003" y2="198.25000000000003"/>
-  <line stroke="#888888" x1="659.6050614105758" x2="651.1050614105757" y1="155.25000000000003" y2="155.25000000000003"/>
-  <line stroke="#888888" x1="651.1050614105757" x2="651.1050614105757" y1="155.25000000000003" y2="154.75"/>
-  <line stroke="#888888" x1="651.1050614105757" x2="659.6050614105758" y1="154.75" y2="154.75"/>
-  <line stroke="#888888" x1="659.6050614105758" x2="659.6050614105758" y1="154.75" y2="155.25000000000003"/>
-  <line stroke="#888888" x1="651.1050614105757" x2="659.6050614105758" y1="203.00000000000003" y2="203.00000000000003"/>
-  <line stroke="#888888" x1="659.6050614105758" x2="659.6050614105758" y1="203.00000000000003" y2="203.50000000000003"/>
-  <line stroke="#888888" x1="659.6050614105758" x2="651.1050614105757" y1="203.50000000000003" y2="203.50000000000003"/>
-  <line stroke="#888888" x1="651.1050614105757" x2="651.1050614105757" y1="203.50000000000003" y2="203.00000000000003"/>
-  <line stroke="#888888" x1="635.8550614105758" x2="640.8550614105758" y1="158.59090909090912" y2="158.59090909090912"/>
-  <line stroke="#888888" x1="640.8550614105758" x2="640.8550614105758" y1="158.59090909090912" y2="169.68181818181822"/>
-  <line stroke="#888888" x1="640.8550614105758" x2="635.8550614105758" y1="169.68181818181822" y2="169.68181818181822"/>
-  <line stroke="#888888" x1="635.8550614105758" x2="640.8550614105758" y1="186.31818181818184" y2="186.31818181818184"/>
-  <line stroke="#888888" x1="640.8550614105758" x2="640.8550614105758" y1="186.31818181818184" y2="197.40909090909093"/>
-  <line stroke="#888888" x1="640.8550614105758" x2="635.8550614105758" y1="197.40909090909093" y2="197.40909090909093"/>
-  <line stroke="#888888" x1="661.1050614105757" x2="664.6050614105758" y1="131.50000000000003" y2="131.50000000000003"/>
-  <line stroke="#888888" x1="664.6050614105758" x2="664.6050614105758" y1="131.50000000000003" y2="139.50000000000003"/>
-  <line stroke="#888888" x1="664.6050614105758" x2="661.1050614105757" y1="139.50000000000003" y2="139.50000000000003"/>
+  <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="327.33180874014937" x2="266.3318087401493" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="361.3318087401493" x2="351.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="422.33180874014937" x2="422.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="266.3318087401493" x2="266.3318087401493" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="327.33180874014937" x2="253.33180874014934" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="361.3318087401493" x2="351.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="422.33180874014937" x2="422.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="351.33180874014937" x2="361.3318087401493" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="253.33180874014934" x2="327.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="253.33180874014934" x2="253.33180874014934" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="351.33180874014937" x2="351.33180874014937" y1="135.50000000000003" y2="101.50000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="327.33180874014937" x2="327.33180874014937" y1="101.50000000000001" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="327.33180874014937" x2="327.33180874014937" y1="65.5" y2="101.50000000000001"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="327.33180874014937" x2="351.33180874014937" y1="65.5" y2="65.5"/>
+  <line stroke="#000000" x1="351.33180874014937" x2="351.33180874014937" y1="101.50000000000001" y2="65.5"/>
+  <line stroke="#000000" x1="351.33180874014937" x2="351.33180874014937" y1="65.5" y2="20.5"/>
+  <line stroke="#000000" x1="327.33180874014937" x2="327.33180874014937" y1="20.5" y2="65.5"/>
+  <line stroke="#000000" x1="327.33180874014937" x2="327.33180874014937" y1="15.500000000000004" y2="20.5"/>
+  <line stroke="#000000" x1="351.33180874014937" x2="327.33180874014937" y1="15.500000000000004" y2="15.500000000000004"/>
+  <line stroke="#000000" x1="351.33180874014937" x2="351.33180874014937" y1="20.5" y2="15.500000000000004"/>
+  <line stroke="#000000" x1="327.33180874014937" x2="307.3318087401493" y1="101.50000000000001" y2="101.50000000000001"/>
+  <line stroke="#000000" x1="307.3318087401493" x2="327.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="307.3318087401493" x2="307.3318087401493" y1="101.50000000000001" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="307.3318087401493" x2="283.3318087401493" y1="101.50000000000001" y2="101.50000000000001"/>
+  <line stroke="#000000" x1="283.3318087401493" x2="307.3318087401493" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="283.3318087401493" x2="283.3318087401493" y1="101.50000000000001" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="283.3318087401493" x2="263.33180874014937" y1="101.50000000000001" y2="101.50000000000001"/>
+  <line stroke="#000000" x1="263.33180874014937" x2="283.3318087401493" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="263.33180874014937" x2="263.33180874014937" y1="135.50000000000003" y2="101.50000000000001"/>
+  <line stroke="#000000" x1="253.33180874014934" x2="263.33180874014937" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="253.33180874014934" x2="253.33180874014934" y1="101.50000000000001" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="263.33180874014937" x2="253.33180874014934" y1="101.50000000000001" y2="101.50000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="361.3318087401493" x2="422.33180874014937" y1="99.36137800081471" y2="99.36137800081471"/>
+  <line stroke="#000000" x1="422.33180874014937" x2="422.33180874014937" y1="135.50000000000003" y2="99.36137800081471"/>
+  <line stroke="#000000" x1="361.3318087401493" x2="361.3318087401493" y1="99.36137800081471" y2="135.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="422.33180874014937" x2="361.3318087401493" y1="75.36137800081471" y2="75.36137800081471"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="422.33180874014937" x2="422.33180874014937" y1="75.36137800081471" y2="99.36137800081471"/>
+  <line stroke="#000000" x1="361.3318087401493" x2="361.3318087401493" y1="39.22275600162939" y2="75.36137800081472"/>
+  <line stroke="#000000" x1="422.33180874014937" x2="422.33180874014937" y1="75.36137800081472" y2="39.22275600162939"/>
+  <line stroke="#000000" x1="361.3318087401493" x2="361.3318087401493" y1="29.222756001629396" y2="39.22275600162939"/>
+  <line stroke="#000000" x1="422.33180874014937" x2="361.3318087401493" y1="29.222756001629396" y2="29.222756001629396"/>
+  <line stroke="#000000" x1="422.33180874014937" x2="422.33180874014937" y1="39.22275600162939" y2="29.222756001629396"/>
+  <line stroke="#000000" x1="432.33180874014937" x2="422.33180874014937" y1="75.36137800081471" y2="75.36137800081471"/>
+  <line stroke="#000000" x1="432.33180874014937" x2="432.33180874014937" y1="99.36137800081471" y2="75.36137800081471"/>
+  <line stroke="#000000" x1="422.33180874014937" x2="432.33180874014937" y1="99.36137800081471" y2="99.36137800081471"/>
+  <line stroke="#000000" x1="351.33180874014937" x2="361.3318087401493" y1="99.36137800081471" y2="99.36137800081471"/>
+  <line stroke="#000000" x1="351.33180874014937" x2="351.33180874014937" y1="75.36137800081471" y2="99.36137800081471"/>
+  <line stroke="#000000" x1="361.3318087401493" x2="351.33180874014937" y1="75.36137800081471" y2="75.36137800081471"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="422.33180874014937" x2="266.3318087401493" y1="205.50000000000003" y2="205.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="422.33180874014937" x2="422.33180874014937" y1="205.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="422.33180874014937" x2="474.84617955831095" y1="135.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="422.33180874014937" x2="474.84617955831095" y1="205.50000000000003" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="422.33180874014937" x2="422.33180874014937" y1="127.99794702597693" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="474.84617955831095" x2="422.33180874014937" y1="127.99794702597693" y2="127.99794702597693"/>
+  <line stroke="#000000" x1="474.84617955831095" x2="474.84617955831095" y1="135.50000000000003" y2="127.99794702597693"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="422.33180874014937" x2="489.5369564140486" y1="205.50000000000003" y2="185.91765779766357"/>
+  <line stroke="#000000" x1="489.5369564140486" x2="474.84617955831095" y1="185.91765779766357" y2="135.50000000000003"/>
+  <line stroke="#000000" x1="504.22773326978614" x2="489.5369564140486" y1="236.33531559532716" y2="185.91765779766357"/>
+  <line stroke="#000000" x1="508.3550614105757" x2="504.22773326978614" y1="250.50000000000003" y2="236.33531559532716"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="508.3550614105757" x2="422.33180874014937" y1="250.50000000000003" y2="205.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="422.33180874014937" x2="422.33180874014937" y1="250.50000000000003" y2="205.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="422.3318087401494" x2="422.33180874014937" y1="295.5" y2="250.50000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="508.35506141057573" x2="422.3318087401494" y1="250.50000000000003" y2="295.50000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="489.5369564140486" x2="422.33180874014937" y1="315.08234220233646" y2="295.50000000000006"/>
+  <line stroke="#000000" x1="504.22773326978614" x2="508.3550614105757" y1="264.6646844046729" y2="250.50000000000003"/>
+  <line stroke="#000000" x1="489.5369564140486" x2="504.22773326978614" y1="315.08234220233646" y2="264.6646844046729"/>
+  <line stroke="#000000" x1="474.84617955831106" x2="489.5369564140486" y1="365.50000000000006" y2="315.0823422023364"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="474.84617955831106" x2="422.3318087401494" y1="365.50000000000006" y2="295.50000000000006"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="422.3318087401495" x2="422.33180874014937" y1="365.5000000000001" y2="295.5"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="474.84617955831106" x2="422.3318087401495" y1="365.50000000000006" y2="365.5000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="422.3318087401494" x2="266.3318087401493" y1="295.50000000000006" y2="295.50000000000017"/>
+  <line stroke="#000000" x1="351.3318087401494" x2="361.3318087401494" y1="365.50000000000017" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="266.33180874014937" x2="327.3318087401494" y1="365.5000000000003" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="266.33180874014937" x2="266.33180874014937" y1="365.5000000000003" y2="365.5000000000003"/>
+  <line stroke="#000000" x1="422.3318087401495" x2="422.3318087401495" y1="365.5000000000001" y2="365.5000000000001"/>
+  <line stroke="#000000" x1="361.3318087401494" x2="422.3318087401495" y1="365.50000000000017" y2="365.5000000000001"/>
+  <line stroke="#000000" x1="351.3318087401494" x2="361.3318087401494" y1="365.50000000000017" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="253.33180874014937" x2="327.3318087401494" y1="365.5000000000003" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="253.33180874014937" x2="253.33180874014937" y1="365.5000000000003" y2="365.5000000000003"/>
+  <line stroke="#000000" x1="327.3318087401494" x2="253.33180874014937" y1="365.50000000000017" y2="365.5000000000003"/>
+  <line stroke="#000000" x1="361.3318087401494" x2="351.3318087401494" y1="365.50000000000017" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="422.3318087401495" x2="422.3318087401495" y1="365.5000000000001" y2="365.5000000000001"/>
+  <line stroke="#000000" x1="351.3318087401494" x2="351.3318087401494" y1="399.5000000000001" y2="365.50000000000017"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="327.3318087401494" x2="327.3318087401495" y1="365.50000000000017" y2="399.5000000000001"/>
+  <line stroke="#000000" x1="351.3318087401495" x2="351.3318087401494" y1="435.50000000000017" y2="399.5000000000001"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="351.3318087401495" x2="327.3318087401495" y1="435.50000000000017" y2="435.50000000000017"/>
+  <line stroke="#000000" x1="327.3318087401495" x2="327.3318087401495" y1="399.5000000000001" y2="435.50000000000017"/>
+  <line stroke="#000000" x1="327.3318087401495" x2="327.33180874014954" y1="435.50000000000017" y2="480.50000000000017"/>
+  <line stroke="#000000" x1="351.3318087401495" x2="351.3318087401494" y1="480.50000000000017" y2="435.50000000000017"/>
+  <line stroke="#000000" x1="327.33180874014954" x2="351.3318087401495" y1="480.50000000000017" y2="480.50000000000017"/>
+  <line stroke="#000000" x1="327.3318087401494" x2="307.33180874014937" y1="365.50000000000017" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="307.3318087401495" x2="327.3318087401495" y1="399.5000000000001" y2="399.5000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="307.33180874014937" x2="307.3318087401495" y1="365.50000000000017" y2="399.5000000000001"/>
+  <line stroke="#000000" x1="307.33180874014937" x2="283.33180874014937" y1="365.50000000000017" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="283.3318087401494" x2="307.3318087401495" y1="399.5000000000001" y2="399.5000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="283.33180874014937" x2="283.3318087401494" y1="365.50000000000017" y2="399.5000000000001"/>
+  <line stroke="#000000" x1="283.33180874014937" x2="263.3318087401494" y1="365.50000000000017" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="263.3318087401494" x2="283.3318087401494" y1="399.5000000000001" y2="399.5000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="263.3318087401494" x2="263.3318087401494" y1="399.5000000000001" y2="365.50000000000017"/>
+  <line stroke="#000000" x1="253.33180874014943" x2="263.3318087401494" y1="399.5000000000001" y2="399.5000000000001"/>
+  <line stroke="#000000" x1="253.3318087401494" x2="253.33180874014943" y1="365.50000000000017" y2="399.5000000000001"/>
+  <line stroke="#000000" x1="263.3318087401494" x2="253.3318087401494" y1="365.50000000000017" y2="365.50000000000017"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="266.3318087401493" x2="266.33180874014937" y1="295.50000000000017" y2="365.5000000000002"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="266.33180874014937" x2="213.81743792198782" y1="365.5000000000003" y2="365.5000000000003"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="266.3318087401493" x2="213.81743792198782" y1="295.5000000000002" y2="365.5000000000003"/>
+  <line stroke="#000000" x1="266.33180874014937" x2="266.33180874014937" y1="373.00205297402334" y2="365.5000000000003"/>
+  <line stroke="#000000" x1="213.81743792198782" x2="266.33180874014937" y1="373.0020529740234" y2="373.00205297402334"/>
+  <line stroke="#000000" x1="213.81743792198782" x2="213.81743792198782" y1="365.5000000000003" y2="373.0020529740234"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="266.3318087401493" x2="199.12666106625016" y1="295.50000000000017" y2="315.08234220233675"/>
+  <line stroke="#000000" x1="199.12666106625016" x2="213.81743792198782" y1="315.08234220233675" y2="365.5000000000003"/>
+  <line stroke="#000000" x1="184.43588421051248" x2="199.12666106625016" y1="264.6646844046731" y2="315.08234220233675"/>
+  <line stroke="#000000" x1="180.30855606972295" x2="184.43588421051248" y1="250.50000000000028" y2="264.6646844046731"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="180.30855606972295" x2="266.3318087401493" y1="250.50000000000028" y2="295.50000000000017"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="266.3318087401493" x2="266.3318087401493" y1="250.50000000000017" y2="295.50000000000017"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="266.33180874014926" x2="266.3318087401493" y1="205.50000000000017" y2="250.5000000000002"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="180.3085560697229" x2="266.33180874014926" y1="250.5000000000003" y2="205.50000000000014"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="199.12666106624997" x2="266.33180874014926" y1="185.91765779766385" y2="205.50000000000014"/>
+  <line stroke="#000000" x1="184.43588421051243" x2="180.3085560697229" y1="236.33531559532744" y2="250.5000000000003"/>
+  <line stroke="#000000" x1="199.12666106624997" x2="184.43588421051243" y1="185.91765779766385" y2="236.33531559532744"/>
+  <line stroke="#000000" x1="213.81743792198745" x2="199.12666106624997" y1="135.50000000000023" y2="185.91765779766385"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="213.81743792198745" x2="266.3318087401492" y1="135.50000000000023" y2="205.50000000000017"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="266.3318087401491" x2="266.33180874014926" y1="135.5000000000001" y2="205.50000000000017"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="213.81743792198748" x2="266.3318087401491" y1="135.50000000000023" y2="135.5000000000001"/>
+  <line stroke="#000000" x1="213.81743792198745" x2="213.81743792198748" y1="127.99794702597715" y2="135.50000000000023"/>
+  <line stroke="#000000" x1="266.3318087401491" x2="213.81743792198745" y1="127.99794702597704" y2="127.99794702597715"/>
+  <line stroke="#000000" x1="266.3318087401491" x2="266.3318087401491" y1="135.5000000000001" y2="127.99794702597704"/>
+  <line stroke="#000000" x1="474.84617955831106" x2="474.84617955831106" y1="373.0020529740231" y2="365.50000000000006"/>
+  <line stroke="#000000" x1="422.3318087401495" x2="474.84617955831106" y1="373.00205297402323" y2="373.0020529740231"/>
+  <line stroke="#000000" x1="422.3318087401495" x2="422.3318087401495" y1="365.5000000000001" y2="373.00205297402323"/>
+  <line stroke="#888888" x1="288.76362692196756" x2="277.1727178310585" y1="143.25" y2="143.25"/>
+  <line stroke="#888888" x1="277.1727178310585" x2="277.1727178310585" y1="143.25" y2="142.75000000000003"/>
+  <line stroke="#888888" x1="277.1727178310585" x2="288.76362692196756" y1="142.75000000000003" y2="142.75000000000003"/>
+  <line stroke="#888888" x1="288.76362692196756" x2="288.76362692196756" y1="142.75000000000003" y2="143.25"/>
+  <line stroke="#888888" x1="316.49089964924025" x2="304.8999905583311" y1="143.25" y2="143.25"/>
+  <line stroke="#888888" x1="304.8999905583311" x2="304.8999905583311" y1="143.25" y2="142.75000000000003"/>
+  <line stroke="#888888" x1="304.8999905583311" x2="316.49089964924025" y1="142.75000000000003" y2="142.75000000000003"/>
+  <line stroke="#888888" x1="316.49089964924025" x2="316.49089964924025" y1="142.75000000000003" y2="143.25"/>
+  <line stroke="#888888" x1="343.5818087401493" x2="343.5818087401493" y1="124.41666666666669" y2="112.58333333333334"/>
+  <line stroke="#888888" x1="343.5818087401493" x2="344.08180874014937" y1="112.58333333333334" y2="112.58333333333334"/>
+  <line stroke="#888888" x1="344.08180874014937" x2="344.08180874014937" y1="112.58333333333334" y2="124.41666666666669"/>
+  <line stroke="#888888" x1="344.08180874014937" x2="343.5818087401493" y1="124.41666666666669" y2="124.41666666666669"/>
+  <line stroke="#888888" x1="343.3318087401493" x2="345.83180874014937" y1="16.750000000000004" y2="16.750000000000004"/>
+  <line stroke="#888888" x1="345.83180874014937" x2="343.3318087401493" y1="16.750000000000004" y2="19.250000000000004"/>
+  <line stroke="#888888" x1="343.3318087401493" x2="335.33180874014937" y1="19.250000000000004" y2="19.250000000000004"/>
+  <line stroke="#888888" x1="335.33180874014937" x2="332.83180874014937" y1="19.250000000000004" y2="16.750000000000004"/>
+  <line stroke="#888888" x1="332.83180874014937" x2="335.33180874014937" y1="16.750000000000004" y2="16.750000000000004"/>
+  <line stroke="#888888" x1="308.33180874014937" x2="312.33180874014937" y1="112.50000000000001" y2="112.50000000000001"/>
+  <line stroke="#888888" x1="312.33180874014937" x2="312.33180874014937" y1="112.50000000000001" y2="124.50000000000001"/>
+  <line stroke="#888888" x1="312.33180874014937" x2="308.33180874014937" y1="124.50000000000001" y2="124.50000000000001"/>
+  <line stroke="#888888" x1="308.33180874014937" x2="308.33180874014937" y1="124.50000000000001" y2="112.50000000000001"/>
+  <line stroke="#888888" x1="320.3318087401493" x2="324.33180874014937" y1="114.00000000000001" y2="114.00000000000001"/>
+  <line stroke="#888888" x1="324.33180874014937" x2="324.33180874014937" y1="114.00000000000001" y2="123.00000000000001"/>
+  <line stroke="#888888" x1="324.33180874014937" x2="320.3318087401493" y1="123.00000000000001" y2="123.00000000000001"/>
+  <line stroke="#888888" x1="320.3318087401493" x2="320.3318087401493" y1="123.00000000000001" y2="114.00000000000001"/>
+  <line stroke="#888888" x1="283.8318087401493" x2="306.8318087401493" y1="112.50000000000001" y2="112.50000000000001"/>
+  <line stroke="#888888" x1="306.8318087401493" x2="306.8318087401493" y1="112.50000000000001" y2="124.50000000000001"/>
+  <line stroke="#888888" x1="306.8318087401493" x2="283.8318087401493" y1="124.50000000000001" y2="124.50000000000001"/>
+  <line stroke="#888888" x1="283.8318087401493" x2="283.8318087401493" y1="124.50000000000001" y2="112.50000000000001"/>
+  <line stroke="#888888" x1="278.33180874014937" x2="282.33180874014937" y1="112.50000000000001" y2="112.50000000000001"/>
+  <line stroke="#888888" x1="282.33180874014937" x2="282.33180874014937" y1="112.50000000000001" y2="124.50000000000001"/>
+  <line stroke="#888888" x1="282.33180874014937" x2="278.33180874014937" y1="124.50000000000001" y2="124.50000000000001"/>
+  <line stroke="#888888" x1="278.33180874014937" x2="278.33180874014937" y1="124.50000000000001" y2="112.50000000000001"/>
+  <line stroke="#888888" x1="255.83180874014934" x2="260.83180874014937" y1="112.83333333333336" y2="112.83333333333336"/>
+  <line stroke="#888888" x1="260.83180874014937" x2="260.83180874014937" y1="112.83333333333336" y2="124.16666666666669"/>
+  <line stroke="#888888" x1="260.83180874014937" x2="255.83180874014934" y1="124.16666666666669" y2="124.16666666666669"/>
+  <line stroke="#888888" x1="379.3318087401493" x2="390.33180874014937" y1="80.86137800081471" y2="80.86137800081471"/>
+  <line stroke="#888888" x1="390.33180874014937" x2="390.33180874014937" y1="80.86137800081471" y2="93.86137800081471"/>
+  <line stroke="#888888" x1="390.33180874014937" x2="379.3318087401493" y1="93.86137800081471" y2="93.86137800081471"/>
+  <line stroke="#888888" x1="379.3318087401493" x2="379.3318087401493" y1="93.86137800081471" y2="80.86137800081471"/>
+  <line stroke="#888888" x1="410.83180874014937" x2="416.83180874014937" y1="82.36137800081471" y2="82.36137800081471"/>
+  <line stroke="#888888" x1="416.83180874014937" x2="416.83180874014937" y1="82.36137800081471" y2="92.36137800081471"/>
+  <line stroke="#888888" x1="416.83180874014937" x2="410.83180874014937" y1="92.36137800081471" y2="92.36137800081471"/>
+  <line stroke="#888888" x1="410.83180874014937" x2="410.83180874014937" y1="92.36137800081471" y2="82.36137800081471"/>
+  <line stroke="#888888" x1="411.24089964924025" x2="411.24089964924025" y1="31.722756001629396" y2="36.7227560016294"/>
+  <line stroke="#888888" x1="411.24089964924025" x2="400.1499905583311" y1="36.7227560016294" y2="36.7227560016294"/>
+  <line stroke="#888888" x1="400.1499905583311" x2="400.1499905583311" y1="36.7227560016294" y2="31.722756001629396"/>
+  <line stroke="#888888" x1="383.51362692196756" x2="383.51362692196756" y1="31.722756001629396" y2="36.7227560016294"/>
+  <line stroke="#888888" x1="383.51362692196756" x2="372.4227178310585" y1="36.7227560016294" y2="36.7227560016294"/>
+  <line stroke="#888888" x1="372.4227178310585" x2="372.4227178310585" y1="36.7227560016294" y2="31.722756001629396"/>
+  <line stroke="#888888" x1="429.8318087401493" x2="424.83180874014937" y1="91.36137800081471" y2="91.36137800081471"/>
+  <line stroke="#888888" x1="424.83180874014937" x2="424.83180874014937" y1="91.36137800081471" y2="83.36137800081471"/>
+  <line stroke="#888888" x1="424.83180874014937" x2="429.8318087401493" y1="83.36137800081471" y2="83.36137800081471"/>
+  <line stroke="#888888" x1="353.83180874014937" x2="358.83180874014937" y1="83.36137800081471" y2="83.36137800081471"/>
+  <line stroke="#888888" x1="358.83180874014937" x2="358.83180874014937" y1="83.36137800081471" y2="91.36137800081471"/>
+  <line stroke="#888888" x1="358.83180874014937" x2="353.83180874014937" y1="91.36137800081471" y2="91.36137800081471"/>
+  <line stroke="#888888" x1="465.29811213682694" x2="469.0491386238386" y1="129.8734602694827" y2="129.8734602694827"/>
+  <line stroke="#888888" x1="469.0491386238386" x2="465.29811213682694" y1="129.8734602694827" y2="133.62448675649426"/>
+  <line stroke="#888888" x1="465.29811213682694" x2="455.7500447153431" y1="133.62448675649426" y2="133.62448675649426"/>
+  <line stroke="#888888" x1="455.7500447153431" x2="451.9990182283316" y1="133.62448675649426" y2="129.8734602694827"/>
+  <line stroke="#888888" x1="451.9990182283316" x2="455.7500447153431" y1="129.8734602694827" y2="129.8734602694827"/>
+  <line stroke="#888888" x1="441.4279435831172" x2="445.17897007012874" y1="129.8734602694827" y2="129.8734602694827"/>
+  <line stroke="#888888" x1="445.17897007012874" x2="441.4279435831172" y1="129.8734602694827" y2="133.62448675649426"/>
+  <line stroke="#888888" x1="441.4279435831172" x2="431.8798761616332" y1="133.62448675649426" y2="133.62448675649426"/>
+  <line stroke="#888888" x1="431.8798761616332" x2="428.1288496746218" y1="133.62448675649426" y2="129.8734602694827"/>
+  <line stroke="#888888" x1="428.1288496746218" x2="431.8798761616332" y1="129.8734602694827" y2="129.8734602694827"/>
+  <line stroke="#888888" x1="489.307083733857" x2="486.4961595235763" y1="206.13531866922696" y2="196.48843502782523"/>
+  <line stroke="#888888" x1="486.4961595235763" x2="486.9761962926755" y1="196.48843502782523" y2="196.3485611549514"/>
+  <line stroke="#888888" x1="486.9761962926755" x2="489.78712050295627" y1="196.3485611549514" y2="205.99544479635315"/>
+  <line stroke="#888888" x1="489.78712050295627" x2="489.307083733857" y1="205.99544479635315" y2="206.13531866922696"/>
+  <line stroke="#888888" x1="495.9847095773741" x2="493.1737853670934" y1="229.05243584998314" y2="219.40555220858138"/>
+  <line stroke="#888888" x1="493.1737853670934" x2="493.6538221361927" y1="219.40555220858138" y2="219.26567833570755"/>
+  <line stroke="#888888" x1="493.6538221361927" x2="496.4647463464733" y1="219.26567833570755" y2="228.9125619771093"/>
+  <line stroke="#888888" x1="496.4647463464733" x2="495.9847095773741" y1="228.9125619771093" y2="229.05243584998314"/>
+  <line stroke="#888888" x1="493.17378536709344" x2="495.9847095773741" y1="281.5944477914187" y2="271.94756415001694"/>
+  <line stroke="#888888" x1="495.9847095773741" x2="496.4647463464733" y1="271.94756415001694" y2="272.0874380228908"/>
+  <line stroke="#888888" x1="496.4647463464733" x2="493.6538221361927" y1="272.0874380228908" y2="281.7343216642925"/>
+  <line stroke="#888888" x1="493.6538221361927" x2="493.17378536709344" y1="281.7343216642925" y2="281.5944477914187"/>
+  <line stroke="#888888" x1="486.49615952357635" x2="489.30708373385704" y1="304.5115649721748" y2="294.86468133077307"/>
+  <line stroke="#888888" x1="489.30708373385704" x2="489.78712050295627" y1="294.86468133077307" y2="295.0045552036469"/>
+  <line stroke="#888888" x1="489.78712050295627" x2="486.97619629267564" y1="295.0045552036469" y2="304.6514388450487"/>
+  <line stroke="#888888" x1="486.97619629267564" x2="486.49615952357635" y1="304.6514388450487" y2="304.5115649721748"/>
+  <line stroke="#888888" x1="304.8999905583312" x2="316.4908996492403" y1="357.7500000000002" y2="357.75000000000017"/>
+  <line stroke="#888888" x1="316.4908996492403" x2="316.4908996492403" y1="357.75000000000017" y2="358.25000000000017"/>
+  <line stroke="#888888" x1="316.4908996492403" x2="304.8999905583312" y1="358.25000000000017" y2="358.25000000000017"/>
+  <line stroke="#888888" x1="304.8999905583312" x2="304.8999905583312" y1="358.25000000000017" y2="357.7500000000002"/>
+  <line stroke="#888888" x1="277.1727178310585" x2="288.7636269219676" y1="357.7500000000002" y2="357.7500000000002"/>
+  <line stroke="#888888" x1="288.7636269219676" x2="288.7636269219676" y1="357.7500000000002" y2="358.25000000000017"/>
+  <line stroke="#888888" x1="288.7636269219676" x2="277.1727178310585" y1="358.25000000000017" y2="358.25000000000017"/>
+  <line stroke="#888888" x1="277.1727178310585" x2="277.1727178310585" y1="358.25000000000017" y2="357.7500000000002"/>
+  <line stroke="#888888" x1="399.89999055833124" x2="411.49089964924036" y1="357.75000000000017" y2="357.7500000000001"/>
+  <line stroke="#888888" x1="411.49089964924036" x2="411.49089964924036" y1="357.7500000000001" y2="358.2500000000001"/>
+  <line stroke="#888888" x1="411.49089964924036" x2="399.89999055833124" y1="358.2500000000001" y2="358.25000000000017"/>
+  <line stroke="#888888" x1="399.89999055833124" x2="399.89999055833124" y1="358.25000000000017" y2="357.75000000000017"/>
+  <line stroke="#888888" x1="372.17271783105855" x2="383.7636269219676" y1="357.75000000000017" y2="357.75000000000017"/>
+  <line stroke="#888888" x1="383.7636269219676" x2="383.7636269219676" y1="357.75000000000017" y2="358.25000000000017"/>
+  <line stroke="#888888" x1="383.7636269219676" x2="372.17271783105855" y1="358.25000000000017" y2="358.25000000000017"/>
+  <line stroke="#888888" x1="372.17271783105855" x2="372.17271783105855" y1="358.25000000000017" y2="357.75000000000017"/>
+  <line stroke="#888888" x1="343.5818087401495" x2="343.5818087401495" y1="388.4166666666668" y2="376.5833333333335"/>
+  <line stroke="#888888" x1="343.5818087401495" x2="344.0818087401495" y1="376.5833333333335" y2="376.5833333333335"/>
+  <line stroke="#888888" x1="344.0818087401495" x2="344.0818087401495" y1="376.5833333333335" y2="388.4166666666668"/>
+  <line stroke="#888888" x1="344.0818087401495" x2="343.5818087401495" y1="388.4166666666668" y2="388.4166666666668"/>
+  <line stroke="#888888" x1="335.08180874014954" x2="343.58180874014954" y1="476.50000000000017" y2="476.50000000000017"/>
+  <line stroke="#888888" x1="343.58180874014954" x2="343.58180874014954" y1="476.50000000000017" y2="477.00000000000017"/>
+  <line stroke="#888888" x1="343.58180874014954" x2="335.08180874014954" y1="477.00000000000017" y2="477.00000000000017"/>
+  <line stroke="#888888" x1="335.08180874014954" x2="335.08180874014954" y1="477.00000000000017" y2="476.50000000000017"/>
+  <line stroke="#888888" x1="308.3318087401494" x2="312.3318087401494" y1="376.50000000000017" y2="376.50000000000017"/>
+  <line stroke="#888888" x1="312.3318087401494" x2="312.3318087401495" y1="376.50000000000017" y2="388.50000000000017"/>
+  <line stroke="#888888" x1="312.3318087401495" x2="308.3318087401495" y1="388.50000000000017" y2="388.50000000000017"/>
+  <line stroke="#888888" x1="308.3318087401495" x2="308.3318087401494" y1="388.50000000000017" y2="376.50000000000017"/>
+  <line stroke="#888888" x1="320.33180874014937" x2="324.3318087401494" y1="378.00000000000017" y2="378.00000000000017"/>
+  <line stroke="#888888" x1="324.3318087401494" x2="324.3318087401494" y1="378.00000000000017" y2="387.00000000000017"/>
+  <line stroke="#888888" x1="324.3318087401494" x2="320.3318087401494" y1="387.00000000000017" y2="387.00000000000017"/>
+  <line stroke="#888888" x1="320.3318087401494" x2="320.33180874014937" y1="387.00000000000017" y2="378.00000000000017"/>
+  <line stroke="#888888" x1="283.83180874014937" x2="306.83180874014937" y1="376.50000000000017" y2="376.50000000000017"/>
+  <line stroke="#888888" x1="306.83180874014937" x2="306.8318087401494" y1="376.50000000000017" y2="388.50000000000017"/>
+  <line stroke="#888888" x1="306.8318087401494" x2="283.83180874014937" y1="388.50000000000017" y2="388.50000000000017"/>
+  <line stroke="#888888" x1="283.83180874014937" x2="283.83180874014937" y1="388.50000000000017" y2="376.50000000000017"/>
+  <line stroke="#888888" x1="278.3318087401494" x2="282.3318087401494" y1="376.50000000000017" y2="376.50000000000017"/>
+  <line stroke="#888888" x1="282.3318087401494" x2="282.3318087401494" y1="376.50000000000017" y2="388.50000000000017"/>
+  <line stroke="#888888" x1="282.3318087401494" x2="278.3318087401494" y1="388.50000000000017" y2="388.50000000000017"/>
+  <line stroke="#888888" x1="278.3318087401494" x2="278.3318087401494" y1="388.50000000000017" y2="376.50000000000017"/>
+  <line stroke="#888888" x1="255.8318087401494" x2="260.8318087401494" y1="376.8333333333335" y2="376.8333333333335"/>
+  <line stroke="#888888" x1="260.8318087401494" x2="260.8318087401494" y1="376.8333333333335" y2="388.16666666666686"/>
+  <line stroke="#888888" x1="260.8318087401494" x2="255.8318087401494" y1="388.16666666666686" y2="388.16666666666686"/>
+  <line stroke="#888888" x1="223.36550534347174" x2="219.61447885646018" y1="371.12653973051766" y2="371.12653973051766"/>
+  <line stroke="#888888" x1="219.61447885646018" x2="223.3655053434717" y1="371.12653973051766" y2="367.3755132435061"/>
+  <line stroke="#888888" x1="223.3655053434717" x2="232.91357276495566" y1="367.3755132435061" y2="367.3755132435061"/>
+  <line stroke="#888888" x1="232.91357276495566" x2="236.66459925196722" y1="367.3755132435061" y2="371.1265397305176"/>
+  <line stroke="#888888" x1="236.66459925196722" x2="232.91357276495566" y1="371.1265397305176" y2="371.1265397305176"/>
+  <line stroke="#888888" x1="247.23567389718156" x2="243.48464741017003" y1="371.1265397305176" y2="371.1265397305176"/>
+  <line stroke="#888888" x1="243.48464741017003" x2="247.23567389718156" y1="371.1265397305176" y2="367.3755132435061"/>
+  <line stroke="#888888" x1="247.23567389718156" x2="256.7837413186655" y1="367.3755132435061" y2="367.3755132435061"/>
+  <line stroke="#888888" x1="256.7837413186655" x2="260.534767805677" y1="367.3755132435061" y2="371.1265397305176"/>
+  <line stroke="#888888" x1="260.534767805677" x2="256.78374131866553" y1="371.1265397305176" y2="371.1265397305176"/>
+  <line stroke="#888888" x1="199.35653374644173" x2="202.16745795672242" y1="294.86468133077335" y2="304.5115649721751"/>
+  <line stroke="#888888" x1="202.16745795672242" x2="201.6874211876231" y1="304.5115649721751" y2="304.651438845049"/>
+  <line stroke="#888888" x1="201.6874211876231" x2="198.87649697734244" y1="304.651438845049" y2="295.0045552036471"/>
+  <line stroke="#888888" x1="198.87649697734244" x2="199.35653374644173" y1="295.0045552036471" y2="294.86468133077335"/>
+  <line stroke="#888888" x1="192.67890790292464" x2="195.48983211320527" y1="271.9475641500171" y2="281.5944477914189"/>
+  <line stroke="#888888" x1="195.48983211320527" x2="195.009795344106" y1="281.5944477914189" y2="281.7343216642927"/>
+  <line stroke="#888888" x1="195.009795344106" x2="192.19887113382532" y1="281.7343216642927" y2="272.087438022891"/>
+  <line stroke="#888888" x1="192.19887113382532" x2="192.67890790292464" y1="272.087438022891" y2="271.9475641500171"/>
+  <line stroke="#888888" x1="195.48983211320518" x2="192.67890790292452" y1="219.40555220858164" y2="229.0524358499834"/>
+  <line stroke="#888888" x1="192.67890790292452" x2="192.19887113382526" y1="229.0524358499834" y2="228.91256197710956"/>
+  <line stroke="#888888" x1="192.19887113382526" x2="195.00979534410592" y1="228.91256197710956" y2="219.2656783357078"/>
+  <line stroke="#888888" x1="195.00979534410592" x2="195.48983211320518" y1="219.2656783357078" y2="219.40555220858164"/>
+  <line stroke="#888888" x1="202.16745795672222" x2="199.35653374644158" y1="196.48843502782546" y2="206.13531866922722"/>
+  <line stroke="#888888" x1="199.35653374644158" x2="198.8764969773423" y1="206.13531866922722" y2="205.99544479635338"/>
+  <line stroke="#888888" x1="198.8764969773423" x2="201.68742118762296" y1="205.99544479635338" y2="196.34856115495162"/>
+  <line stroke="#888888" x1="201.68742118762296" x2="202.16745795672222" y1="196.34856115495162" y2="196.48843502782546"/>
+  <line stroke="#888888" x1="256.7837413186651" x2="260.53476780567667" y1="129.87346026948285" y2="129.87346026948285"/>
+  <line stroke="#888888" x1="260.53476780567667" x2="256.78374131866514" y1="129.87346026948285" y2="133.6244867564944"/>
+  <line stroke="#888888" x1="256.78374131866514" x2="247.23567389718121" y1="133.6244867564944" y2="133.6244867564944"/>
+  <line stroke="#888888" x1="247.23567389718121" x2="243.48464741016966" y1="133.6244867564944" y2="129.87346026948285"/>
+  <line stroke="#888888" x1="243.48464741016966" x2="247.23567389718121" y1="129.87346026948285" y2="129.87346026948285"/>
+  <line stroke="#888888" x1="232.91357276495532" x2="236.66459925196685" y1="129.87346026948288" y2="129.87346026948285"/>
+  <line stroke="#888888" x1="236.66459925196685" x2="232.91357276495532" y1="129.87346026948285" y2="133.62448675649443"/>
+  <line stroke="#888888" x1="232.91357276495532" x2="223.36550534347137" y1="133.62448675649443" y2="133.62448675649446"/>
+  <line stroke="#888888" x1="223.36550534347137" x2="219.6144788564598" y1="133.62448675649446" y2="129.8734602694829"/>
+  <line stroke="#888888" x1="219.6144788564598" x2="223.36550534347137" y1="129.8734602694829" y2="129.87346026948288"/>
+  <line stroke="#888888" x1="431.8798761616334" x2="428.1288496746219" y1="371.12653973051744" y2="371.12653973051744"/>
+  <line stroke="#888888" x1="428.1288496746219" x2="431.8798761616334" y1="371.12653973051744" y2="367.37551324350585"/>
+  <line stroke="#888888" x1="431.8798761616334" x2="441.4279435831173" y1="367.37551324350585" y2="367.37551324350585"/>
+  <line stroke="#888888" x1="441.4279435831173" x2="445.17897007012886" y1="367.37551324350585" y2="371.12653973051744"/>
+  <line stroke="#888888" x1="445.17897007012886" x2="441.4279435831173" y1="371.12653973051744" y2="371.12653973051744"/>
+  <line stroke="#888888" x1="455.7500447153432" x2="451.9990182283317" y1="371.12653973051744" y2="371.12653973051744"/>
+  <line stroke="#888888" x1="451.9990182283317" x2="455.7500447153432" y1="371.12653973051744" y2="367.37551324350585"/>
+  <line stroke="#888888" x1="455.7500447153432" x2="465.2981121368271" y1="367.37551324350585" y2="367.37551324350585"/>
+  <line stroke="#888888" x1="465.2981121368271" x2="469.0491386238387" y1="367.37551324350585" y2="371.1265397305174"/>
+  <line stroke="#888888" x1="469.0491386238387" x2="465.2981121368271" y1="371.1265397305174" y2="371.12653973051744"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="551.3550614105758" x2="612.3550614105757" y1="123.50000000000001" y2="123.50000000000001"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="612.3550614105757" x2="612.3550614105757" y1="123.50000000000001" y2="147.5"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="612.3550614105757" x2="551.3550614105758" y1="147.5" y2="147.5"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="551.3550614105758" x2="551.3550614105758" y1="147.5" y2="123.50000000000001"/>
+  <line stroke="#000000" x1="551.3550614105758" x2="551.3550614105758" y1="116.50000000000001" y2="123.50000000000001"/>
+  <line stroke="#000000" x1="611.3550614105757" x2="551.3550614105758" y1="116.50000000000001" y2="116.50000000000001"/>
+  <line stroke="#000000" x1="611.3550614105757" x2="611.3550614105757" y1="123.50000000000001" y2="116.50000000000001"/>
+  <line stroke="#000000" x1="619.3550614105757" x2="612.3550614105757" y1="123.50000000000001" y2="123.50000000000001"/>
+  <line stroke="#000000" x1="619.3550614105757" x2="619.3550614105757" y1="147.5" y2="123.50000000000001"/>
+  <line stroke="#000000" x1="612.3550614105757" x2="619.3550614105757" y1="147.5" y2="147.5"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="612.3550614105757" x2="612.3550614105757" y1="147.5" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="552.3550614105758" x2="612.3550614105757" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="552.3550614105758" x2="552.3550614105758" y1="147.5" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="636.3550614105758" x2="612.3550614105757" y1="147.5" y2="147.5"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="636.3550614105758" x2="636.3550614105758" y1="147.5" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="612.3550614105757" x2="636.3550614105758" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="696.3550614105758" x2="636.3550614105758" y1="147.5" y2="147.5"/>
+  <line stroke="#000000" x1="696.3550614105758" x2="696.3550614105758" y1="208.50000000000003" y2="147.5"/>
+  <line stroke="#000000" x1="636.3550614105758" x2="696.3550614105758" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="552.3550614105758" x2="528.3550614105758" y1="147.5" y2="147.5"/>
+  <line stroke="#000000" x1="528.3550614105758" x2="552.3550614105758" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="528.3550614105758" x2="528.3550614105758" y1="208.50000000000003" y2="147.5"/>
+  <line stroke="#000000" x1="518.3550614105758" x2="528.3550614105758" y1="208.50000000000003" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="518.3550614105758" x2="518.3550614105758" y1="147.5" y2="208.50000000000003"/>
+  <line stroke="#000000" x1="528.3550614105758" x2="518.3550614105758" y1="147.5" y2="147.5"/>
+  <line stroke="#000000" x1="544.3550614105758" x2="551.3550614105758" y1="147.5" y2="147.5"/>
+  <line stroke="#000000" x1="544.3550614105758" x2="544.3550614105758" y1="123.50000000000001" y2="147.5"/>
+  <line stroke="#000000" x1="551.3550614105758" x2="544.3550614105758" y1="123.50000000000001" y2="123.50000000000001"/>
+  <line stroke="#888888" x1="600.4459705014849" x2="603.9459705014848" y1="118.25000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="603.9459705014848" x2="600.4459705014849" y1="118.25000000000001" y2="121.75000000000001"/>
+  <line stroke="#888888" x1="600.4459705014849" x2="589.5368795923938" y1="121.75000000000001" y2="121.75000000000001"/>
+  <line stroke="#888888" x1="589.5368795923938" x2="586.036879592394" y1="121.75000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="586.036879592394" x2="589.5368795923938" y1="118.25000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="573.1732432287577" x2="576.6732432287575" y1="118.25000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="576.6732432287575" x2="573.1732432287577" y1="118.25000000000001" y2="121.75000000000001"/>
+  <line stroke="#888888" x1="573.1732432287577" x2="562.2641523196666" y1="121.75000000000001" y2="121.75000000000001"/>
+  <line stroke="#888888" x1="562.2641523196666" x2="558.7641523196667" y1="121.75000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="558.7641523196667" x2="562.2641523196666" y1="118.25000000000001" y2="118.25000000000001"/>
+  <line stroke="#888888" x1="617.6050614105757" x2="614.1050614105758" y1="139.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="614.1050614105758" x2="614.1050614105758" y1="139.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="614.1050614105758" x2="617.6050614105757" y1="131.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="559.8550614105758" x2="559.8550614105758" y1="199.00000000000003" y2="181.00000000000003"/>
+  <line stroke="#888888" x1="559.8550614105758" x2="594.8550614105757" y1="181.00000000000003" y2="181.00000000000003"/>
+  <line stroke="#888888" x1="594.8550614105757" x2="594.8550614105757" y1="181.00000000000003" y2="199.00000000000003"/>
+  <line stroke="#888888" x1="594.8550614105757" x2="559.8550614105758" y1="199.00000000000003" y2="199.00000000000003"/>
+  <line stroke="#888888" x1="612.8550614105757" x2="612.8550614105757" y1="160.75000000000003" y2="157.75000000000003"/>
+  <line stroke="#888888" x1="612.8550614105757" x2="615.8550614105758" y1="157.75000000000003" y2="157.75000000000003"/>
+  <line stroke="#888888" x1="615.8550614105758" x2="615.8550614105758" y1="157.75000000000003" y2="160.75000000000003"/>
+  <line stroke="#888888" x1="615.8550614105758" x2="612.8550614105757" y1="160.75000000000003" y2="160.75000000000003"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="159.75000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="158.75000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="158.75000000000003" y2="159.75000000000003"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="159.75000000000003" y2="159.75000000000003"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="162.25000000000003" y2="161.25"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="161.25" y2="161.25"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="161.25" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="162.25000000000003" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="162.25000000000003" y2="161.25"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="161.25" y2="161.25"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="161.25" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="162.25000000000003" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="164.75000000000003" y2="163.75"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="163.75" y2="163.75"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="163.75" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="164.75000000000003" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="164.75000000000003" y2="163.75"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="163.75" y2="163.75"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="163.75" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="164.75000000000003" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="167.25000000000003" y2="166.25"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="166.25" y2="166.25"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="166.25" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="167.25000000000003" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="167.25000000000003" y2="166.25"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="166.25" y2="166.25"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="166.25" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="167.25000000000003" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="169.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="168.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="168.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="169.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="169.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="168.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="168.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="169.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="172.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="171.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="171.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="172.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="172.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="171.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="171.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="172.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="174.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="173.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="173.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="174.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="174.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="173.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="173.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="174.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="177.25" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="176.25000000000003" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="176.25000000000003" y2="177.25"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="177.25" y2="177.25"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="177.25" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="176.25000000000003" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="176.25000000000003" y2="177.25"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="177.25" y2="177.25"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="179.75" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="178.75000000000003" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="178.75000000000003" y2="179.75"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="179.75" y2="179.75"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="179.75" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="178.75000000000003" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="178.75000000000003" y2="179.75"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="179.75" y2="179.75"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="182.25" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="181.25000000000003" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="181.25000000000003" y2="182.25"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="182.25" y2="182.25"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="182.25" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="181.25000000000003" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="181.25000000000003" y2="182.25"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="182.25" y2="182.25"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="184.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="183.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="183.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="184.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="184.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="183.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="183.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="184.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="187.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="186.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="186.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="187.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="187.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="186.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="186.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="187.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="189.75000000000003" y2="188.75"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="188.75" y2="188.75"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="188.75" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="189.75000000000003" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="189.75000000000003" y2="188.75"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="188.75" y2="188.75"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="188.75" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="189.75000000000003" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="192.25000000000003" y2="191.25"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="191.25" y2="191.25"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="191.25" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="192.25000000000003" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="192.25000000000003" y2="191.25"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="191.25" y2="191.25"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="191.25" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="192.25000000000003" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="194.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="193.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="193.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="194.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="633.8550614105758" y1="194.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="633.8550614105758" x2="634.8550614105758" y1="193.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="634.8550614105758" y1="193.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="634.8550614105758" x2="633.8550614105758" y1="194.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="613.8550614105758" y1="197.25000000000003" y2="196.25000000000003"/>
+  <line stroke="#888888" x1="613.8550614105758" x2="614.8550614105758" y1="196.25000000000003" y2="196.25000000000003"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="614.8550614105758" y1="196.25000000000003" y2="197.25000000000003"/>
+  <line stroke="#888888" x1="614.8550614105758" x2="613.8550614105758" y1="197.25000000000003" y2="197.25000000000003"/>
+  <line stroke="#888888" x1="632.8550614105758" x2="632.8550614105758" y1="198.25000000000003" y2="195.25000000000003"/>
+  <line stroke="#888888" x1="632.8550614105758" x2="635.8550614105758" y1="195.25000000000003" y2="195.25000000000003"/>
+  <line stroke="#888888" x1="635.8550614105758" x2="635.8550614105758" y1="195.25000000000003" y2="198.25000000000003"/>
+  <line stroke="#888888" x1="635.8550614105758" x2="632.8550614105758" y1="198.25000000000003" y2="198.25000000000003"/>
+  <line stroke="#888888" x1="628.6050614105758" x2="620.1050614105758" y1="155.25000000000003" y2="155.25000000000003"/>
+  <line stroke="#888888" x1="620.1050614105758" x2="620.1050614105758" y1="155.25000000000003" y2="154.75"/>
+  <line stroke="#888888" x1="620.1050614105758" x2="628.6050614105758" y1="154.75" y2="154.75"/>
+  <line stroke="#888888" x1="628.6050614105758" x2="628.6050614105758" y1="154.75" y2="155.25000000000003"/>
+  <line stroke="#888888" x1="620.1050614105758" x2="628.6050614105758" y1="203.00000000000003" y2="203.00000000000003"/>
+  <line stroke="#888888" x1="628.6050614105758" x2="628.6050614105758" y1="203.00000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="628.6050614105758" x2="620.1050614105758" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="620.1050614105758" x2="620.1050614105758" y1="203.50000000000003" y2="203.00000000000003"/>
+  <line stroke="#888888" x1="651.3550614105758" x2="651.3550614105758" y1="198.50000000000003" y2="185.50000000000003"/>
+  <line stroke="#888888" x1="651.3550614105758" x2="681.3550614105758" y1="185.50000000000003" y2="185.50000000000003"/>
+  <line stroke="#888888" x1="681.3550614105758" x2="681.3550614105758" y1="185.50000000000003" y2="198.50000000000003"/>
+  <line stroke="#888888" x1="681.3550614105758" x2="651.3550614105758" y1="198.50000000000003" y2="198.50000000000003"/>
+  <line stroke="#888888" x1="658.4232432287575" x2="647.0141523196667" y1="153.00000000000003" y2="153.00000000000003"/>
+  <line stroke="#888888" x1="647.0141523196667" x2="647.0141523196667" y1="153.00000000000003" y2="152.5"/>
+  <line stroke="#888888" x1="647.0141523196667" x2="658.4232432287575" y1="152.5" y2="152.5"/>
+  <line stroke="#888888" x1="658.4232432287575" x2="658.4232432287575" y1="152.5" y2="153.00000000000003"/>
+  <line stroke="#888888" x1="685.6959705014849" x2="674.2868795923939" y1="153.00000000000003" y2="153.00000000000003"/>
+  <line stroke="#888888" x1="674.2868795923939" x2="674.2868795923939" y1="153.00000000000003" y2="152.5"/>
+  <line stroke="#888888" x1="674.2868795923939" x2="685.6959705014849" y1="152.5" y2="152.5"/>
+  <line stroke="#888888" x1="685.6959705014849" x2="685.6959705014849" y1="152.5" y2="153.00000000000003"/>
+  <line stroke="#888888" x1="688.6050614105757" x2="688.6050614105757" y1="169.93181818181822" y2="158.3409090909091"/>
+  <line stroke="#888888" x1="688.6050614105757" x2="689.1050614105757" y1="158.3409090909091" y2="158.3409090909091"/>
+  <line stroke="#888888" x1="689.1050614105757" x2="689.1050614105757" y1="158.3409090909091" y2="169.93181818181822"/>
+  <line stroke="#888888" x1="689.1050614105757" x2="688.6050614105757" y1="169.93181818181822" y2="169.93181818181822"/>
+  <line stroke="#888888" x1="688.6050614105757" x2="688.6050614105757" y1="197.65909090909093" y2="186.06818181818184"/>
+  <line stroke="#888888" x1="688.6050614105757" x2="689.1050614105757" y1="186.06818181818184" y2="186.06818181818184"/>
+  <line stroke="#888888" x1="689.1050614105757" x2="689.1050614105757" y1="186.06818181818184" y2="197.65909090909093"/>
+  <line stroke="#888888" x1="689.1050614105757" x2="688.6050614105757" y1="197.65909090909093" y2="197.65909090909093"/>
+  <line stroke="#888888" x1="528.8550614105758" x2="528.8550614105758" y1="160.75000000000003" y2="157.75000000000003"/>
+  <line stroke="#888888" x1="528.8550614105758" x2="531.8550614105758" y1="157.75000000000003" y2="157.75000000000003"/>
+  <line stroke="#888888" x1="531.8550614105758" x2="531.8550614105758" y1="157.75000000000003" y2="160.75000000000003"/>
+  <line stroke="#888888" x1="531.8550614105758" x2="528.8550614105758" y1="160.75000000000003" y2="160.75000000000003"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="159.75000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="158.75000000000003" y2="158.75000000000003"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="158.75000000000003" y2="159.75000000000003"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="159.75000000000003" y2="159.75000000000003"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="162.25000000000003" y2="161.25"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="161.25" y2="161.25"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="161.25" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="162.25000000000003" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="162.25000000000003" y2="161.25"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="161.25" y2="161.25"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="161.25" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="162.25000000000003" y2="162.25000000000003"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="164.75000000000003" y2="163.75"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="163.75" y2="163.75"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="163.75" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="164.75000000000003" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="164.75000000000003" y2="163.75"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="163.75" y2="163.75"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="163.75" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="164.75000000000003" y2="164.75000000000003"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="167.25000000000003" y2="166.25"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="166.25" y2="166.25"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="166.25" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="167.25000000000003" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="167.25000000000003" y2="166.25"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="166.25" y2="166.25"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="166.25" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="167.25000000000003" y2="167.25000000000003"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="169.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="168.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="168.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="169.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="169.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="168.75000000000003" y2="168.75000000000003"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="168.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="169.75000000000003" y2="169.75000000000003"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="172.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="171.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="171.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="172.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="172.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="171.25000000000003" y2="171.25000000000003"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="171.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="172.25000000000003" y2="172.25000000000003"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="174.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="173.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="173.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="174.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="174.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="173.75000000000003" y2="173.75000000000003"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="173.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="174.75000000000003" y2="174.75000000000003"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="177.25" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="176.25000000000003" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="176.25000000000003" y2="177.25"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="177.25" y2="177.25"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="177.25" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="176.25000000000003" y2="176.25000000000003"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="176.25000000000003" y2="177.25"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="177.25" y2="177.25"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="179.75" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="178.75000000000003" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="178.75000000000003" y2="179.75"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="179.75" y2="179.75"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="179.75" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="178.75000000000003" y2="178.75000000000003"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="178.75000000000003" y2="179.75"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="179.75" y2="179.75"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="182.25" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="181.25000000000003" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="181.25000000000003" y2="182.25"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="182.25" y2="182.25"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="182.25" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="181.25000000000003" y2="181.25000000000003"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="181.25000000000003" y2="182.25"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="182.25" y2="182.25"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="184.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="183.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="183.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="184.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="184.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="183.75000000000003" y2="183.75000000000003"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="183.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="184.75000000000003" y2="184.75000000000003"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="187.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="186.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="186.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="187.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="187.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="186.25000000000003" y2="186.25000000000003"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="186.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="187.25000000000003" y2="187.25000000000003"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="189.75000000000003" y2="188.75"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="188.75" y2="188.75"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="188.75" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="189.75000000000003" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="189.75000000000003" y2="188.75"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="188.75" y2="188.75"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="188.75" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="189.75000000000003" y2="189.75000000000003"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="192.25000000000003" y2="191.25"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="191.25" y2="191.25"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="191.25" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="192.25000000000003" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="192.25000000000003" y2="191.25"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="191.25" y2="191.25"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="191.25" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="192.25000000000003" y2="192.25000000000003"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="194.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="193.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="193.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="194.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="549.8550614105758" y1="194.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="549.8550614105758" x2="550.8550614105758" y1="193.75000000000003" y2="193.75000000000003"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="550.8550614105758" y1="193.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="550.8550614105758" x2="549.8550614105758" y1="194.75000000000003" y2="194.75000000000003"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="529.8550614105758" y1="197.25000000000003" y2="196.25000000000003"/>
+  <line stroke="#888888" x1="529.8550614105758" x2="530.8550614105757" y1="196.25000000000003" y2="196.25000000000003"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="530.8550614105757" y1="196.25000000000003" y2="197.25000000000003"/>
+  <line stroke="#888888" x1="530.8550614105757" x2="529.8550614105758" y1="197.25000000000003" y2="197.25000000000003"/>
+  <line stroke="#888888" x1="548.8550614105757" x2="548.8550614105757" y1="198.25000000000003" y2="195.25000000000003"/>
+  <line stroke="#888888" x1="548.8550614105757" x2="551.8550614105758" y1="195.25000000000003" y2="195.25000000000003"/>
+  <line stroke="#888888" x1="551.8550614105758" x2="551.8550614105758" y1="195.25000000000003" y2="198.25000000000003"/>
+  <line stroke="#888888" x1="551.8550614105758" x2="548.8550614105757" y1="198.25000000000003" y2="198.25000000000003"/>
+  <line stroke="#888888" x1="544.6050614105757" x2="536.1050614105757" y1="155.25000000000003" y2="155.25000000000003"/>
+  <line stroke="#888888" x1="536.1050614105757" x2="536.1050614105757" y1="155.25000000000003" y2="154.75"/>
+  <line stroke="#888888" x1="536.1050614105757" x2="544.6050614105757" y1="154.75" y2="154.75"/>
+  <line stroke="#888888" x1="544.6050614105757" x2="544.6050614105757" y1="154.75" y2="155.25000000000003"/>
+  <line stroke="#888888" x1="536.1050614105757" x2="544.6050614105757" y1="203.00000000000003" y2="203.00000000000003"/>
+  <line stroke="#888888" x1="544.6050614105757" x2="544.6050614105757" y1="203.00000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="544.6050614105757" x2="536.1050614105757" y1="203.50000000000003" y2="203.50000000000003"/>
+  <line stroke="#888888" x1="536.1050614105757" x2="536.1050614105757" y1="203.50000000000003" y2="203.00000000000003"/>
+  <line stroke="#888888" x1="520.8550614105757" x2="525.8550614105757" y1="158.59090909090912" y2="158.59090909090912"/>
+  <line stroke="#888888" x1="525.8550614105757" x2="525.8550614105757" y1="158.59090909090912" y2="169.68181818181822"/>
+  <line stroke="#888888" x1="525.8550614105757" x2="520.8550614105757" y1="169.68181818181822" y2="169.68181818181822"/>
+  <line stroke="#888888" x1="520.8550614105757" x2="525.8550614105757" y1="186.31818181818184" y2="186.31818181818184"/>
+  <line stroke="#888888" x1="525.8550614105757" x2="525.8550614105757" y1="186.31818181818184" y2="197.40909090909093"/>
+  <line stroke="#888888" x1="525.8550614105757" x2="520.8550614105757" y1="197.40909090909093" y2="197.40909090909093"/>
+  <line stroke="#888888" x1="546.1050614105758" x2="549.6050614105758" y1="131.50000000000003" y2="131.50000000000003"/>
+  <line stroke="#888888" x1="549.6050614105758" x2="549.6050614105758" y1="131.50000000000003" y2="139.50000000000003"/>
+  <line stroke="#888888" x1="549.6050614105758" x2="546.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 dab77ab7697361b48974b412f921efe523fc9195..a8df56288589bef4bd0d8bdfa7924508830fc08a 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 058f9a4feed14a544ed05fa8010311346cd2c992..36f2b431f35da0306c753d74e2cca5ee66d9fe79 100644
--- a/rocolib/output/BoatWithServoStackBattery/graph-model.stl
+++ b/rocolib/output/BoatWithServoStackBattery/graph-model.stl
@@ -323,16 +323,16 @@ endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0180 0.0120 0.0000
-vertex -0.0180 -0.0120 0.0000
-vertex 0.0180 -0.0120 0.0000
+vertex 0.0610 -0.0340 -0.0900
+vertex 0.0850 -0.0340 -0.0900
+vertex 0.0850 -0.0700 -0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0180 -0.0120 0.0000
-vertex 0.0180 0.0120 0.0000
-vertex -0.0180 0.0120 0.0000
+vertex 0.0850 -0.0700 -0.0900
+vertex 0.0610 -0.0700 -0.0900
+vertex 0.0610 -0.0340 -0.0900
 endloop
 endfacet
 facet normal 0 0 0
@@ -575,240 +575,240 @@ endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 -0.0120 -0.0000
-vertex -0.0410 -0.0120 -0.0150
-vertex -0.0290 -0.0120 -0.0150
+vertex 0.0850 0.0000 -0.0900
+vertex 0.0850 -0.0110 -0.0750
+vertex 0.0850 -0.0230 -0.0750
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0410 -0.0120 -0.0150
-vertex -0.0520 -0.0120 -0.0000
-vertex -0.0520 -0.0120 -0.0200
+vertex 0.0850 -0.0110 -0.0750
+vertex 0.0850 0.0000 -0.0900
+vertex 0.0850 0.0000 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0180 -0.0120 -0.0000
-vertex -0.0290 -0.0120 -0.0150
-vertex -0.0180 -0.0120 -0.0200
+vertex 0.0850 -0.0340 -0.0900
+vertex 0.0850 -0.0230 -0.0750
+vertex 0.0850 -0.0340 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0290 -0.0120 -0.0150
-vertex -0.0180 -0.0120 -0.0000
-vertex -0.0520 -0.0120 -0.0000
+vertex 0.0850 -0.0230 -0.0750
+vertex 0.0850 -0.0340 -0.0900
+vertex 0.0850 0.0000 -0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0410 -0.0120 -0.0190
-vertex -0.0520 -0.0120 -0.0200
-vertex -0.0180 -0.0120 -0.0200
+vertex 0.0850 -0.0110 -0.0710
+vertex 0.0850 0.0000 -0.0700
+vertex 0.0850 -0.0340 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 -0.0120 -0.0200
-vertex -0.0410 -0.0120 -0.0190
-vertex -0.0410 -0.0120 -0.0150
+vertex 0.0850 0.0000 -0.0700
+vertex 0.0850 -0.0110 -0.0710
+vertex 0.0850 -0.0110 -0.0750
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0290 -0.0120 -0.0190
-vertex -0.0180 -0.0120 -0.0200
-vertex -0.0290 -0.0120 -0.0150
+vertex 0.0850 -0.0230 -0.0710
+vertex 0.0850 -0.0340 -0.0700
+vertex 0.0850 -0.0230 -0.0750
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0180 -0.0120 -0.0200
-vertex -0.0290 -0.0120 -0.0190
-vertex -0.0410 -0.0120 -0.0190
+vertex 0.0850 -0.0340 -0.0700
+vertex 0.0850 -0.0230 -0.0710
+vertex 0.0850 -0.0110 -0.0710
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 -0.0120 -0.0200
-vertex -0.0410 -0.0115 -0.0200
-vertex -0.0290 -0.0115 -0.0200
+vertex 0.0850 0.0000 -0.0700
+vertex 0.0845 -0.0110 -0.0700
+vertex 0.0845 -0.0230 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0410 -0.0115 -0.0200
-vertex -0.0520 -0.0120 -0.0200
-vertex -0.0520 0.0120 -0.0200
+vertex 0.0845 -0.0110 -0.0700
+vertex 0.0850 0.0000 -0.0700
+vertex 0.0610 0.0000 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0180 -0.0120 -0.0200
-vertex -0.0290 -0.0115 -0.0200
-vertex -0.0290 0.0115 -0.0200
+vertex 0.0850 -0.0340 -0.0700
+vertex 0.0845 -0.0230 -0.0700
+vertex 0.0615 -0.0230 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0290 -0.0115 -0.0200
-vertex -0.0180 -0.0120 -0.0200
-vertex -0.0520 -0.0120 -0.0200
+vertex 0.0845 -0.0230 -0.0700
+vertex 0.0850 -0.0340 -0.0700
+vertex 0.0850 0.0000 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0410 0.0115 -0.0200
-vertex -0.0520 0.0120 -0.0200
-vertex -0.0180 0.0120 -0.0200
+vertex 0.0615 -0.0110 -0.0700
+vertex 0.0610 0.0000 -0.0700
+vertex 0.0610 -0.0340 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 0.0120 -0.0200
-vertex -0.0410 0.0115 -0.0200
-vertex -0.0410 -0.0115 -0.0200
+vertex 0.0610 0.0000 -0.0700
+vertex 0.0615 -0.0110 -0.0700
+vertex 0.0845 -0.0110 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0290 0.0115 -0.0200
-vertex -0.0180 0.0120 -0.0200
-vertex -0.0180 -0.0120 -0.0200
+vertex 0.0615 -0.0230 -0.0700
+vertex 0.0610 -0.0340 -0.0700
+vertex 0.0850 -0.0340 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0180 0.0120 -0.0200
-vertex -0.0290 0.0115 -0.0200
-vertex -0.0410 0.0115 -0.0200
+vertex 0.0610 -0.0340 -0.0700
+vertex 0.0615 -0.0230 -0.0700
+vertex 0.0615 -0.0110 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 0.0120 -0.0200
-vertex -0.0410 0.0120 -0.0150
-vertex -0.0410 0.0120 -0.0190
+vertex 0.0610 0.0000 -0.0700
+vertex 0.0610 -0.0110 -0.0750
+vertex 0.0610 -0.0110 -0.0710
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0410 0.0120 -0.0150
-vertex -0.0520 0.0120 -0.0200
-vertex -0.0520 0.0120 0.0000
+vertex 0.0610 -0.0110 -0.0750
+vertex 0.0610 0.0000 -0.0700
+vertex 0.0610 0.0000 -0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 0.0120 -0.0200
-vertex -0.0410 0.0120 -0.0190
-vertex -0.0290 0.0120 -0.0190
+vertex 0.0610 0.0000 -0.0700
+vertex 0.0610 -0.0110 -0.0710
+vertex 0.0610 -0.0230 -0.0710
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0180 0.0120 -0.0200
-vertex -0.0290 0.0120 -0.0190
-vertex -0.0290 0.0120 -0.0150
+vertex 0.0610 -0.0340 -0.0700
+vertex 0.0610 -0.0230 -0.0710
+vertex 0.0610 -0.0230 -0.0750
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0290 0.0120 -0.0190
-vertex -0.0180 0.0120 -0.0200
-vertex -0.0520 0.0120 -0.0200
+vertex 0.0610 -0.0230 -0.0710
+vertex 0.0610 -0.0340 -0.0700
+vertex 0.0610 0.0000 -0.0700
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0180 0.0120 -0.0200
-vertex -0.0290 0.0120 -0.0150
-vertex -0.0180 0.0120 0.0000
+vertex 0.0610 -0.0340 -0.0700
+vertex 0.0610 -0.0230 -0.0750
+vertex 0.0610 -0.0340 -0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0410 0.0120 -0.0150
-vertex -0.0395 0.0120 -0.0070
-vertex -0.0290 0.0120 -0.0150
+vertex 0.0610 -0.0110 -0.0750
+vertex 0.0610 -0.0125 -0.0830
+vertex 0.0610 -0.0230 -0.0750
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0395 0.0120 -0.0070
-vertex -0.0520 0.0120 0.0000
-vertex -0.0395 0.0120 -0.0030
+vertex 0.0610 -0.0125 -0.0830
+vertex 0.0610 0.0000 -0.0900
+vertex 0.0610 -0.0125 -0.0870
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 0.0120 0.0000
-vertex -0.0395 0.0120 -0.0070
-vertex -0.0410 0.0120 -0.0150
+vertex 0.0610 0.0000 -0.0900
+vertex 0.0610 -0.0125 -0.0830
+vertex 0.0610 -0.0110 -0.0750
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0395 0.0120 -0.0030
-vertex -0.0520 0.0120 0.0000
-vertex -0.0180 0.0120 0.0000
+vertex 0.0610 -0.0125 -0.0870
+vertex 0.0610 0.0000 -0.0900
+vertex 0.0610 -0.0340 -0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0305 0.0120 -0.0070
-vertex -0.0305 0.0120 -0.0030
-vertex -0.0180 0.0120 0.0000
+vertex 0.0610 -0.0215 -0.0830
+vertex 0.0610 -0.0215 -0.0870
+vertex 0.0610 -0.0340 -0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0180 0.0120 0.0000
-vertex -0.0305 0.0120 -0.0030
-vertex -0.0395 0.0120 -0.0030
+vertex 0.0610 -0.0340 -0.0900
+vertex 0.0610 -0.0215 -0.0870
+vertex 0.0610 -0.0125 -0.0870
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0305 0.0120 -0.0070
-vertex -0.0180 0.0120 0.0000
-vertex -0.0290 0.0120 -0.0150
+vertex 0.0610 -0.0215 -0.0830
+vertex 0.0610 -0.0340 -0.0900
+vertex 0.0610 -0.0230 -0.0750
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0395 0.0120 -0.0070
-vertex -0.0305 0.0120 -0.0070
-vertex -0.0290 0.0120 -0.0150
+vertex 0.0610 -0.0125 -0.0830
+vertex 0.0610 -0.0215 -0.0830
+vertex 0.0610 -0.0230 -0.0750
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0180 0.0120 0.0000
-vertex -0.0520 0.0120 0.0000
-vertex -0.0520 -0.0120 0.0000
+vertex 0.0610 -0.0340 -0.0900
+vertex 0.0610 0.0000 -0.0900
+vertex 0.0850 0.0000 -0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 -0.0120 0.0000
-vertex -0.0180 -0.0120 0.0000
-vertex -0.0180 0.0120 0.0000
+vertex 0.0850 0.0000 -0.0900
+vertex 0.0850 -0.0340 -0.0900
+vertex 0.0610 -0.0340 -0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0180 -0.0120 0.0450
-vertex 0.0180 0.0120 0.0450
-vertex 0.0180 0.0120 0.0000
+vertex 0.0850 -0.0700 -0.1350
+vertex 0.0610 -0.0700 -0.1350
+vertex 0.0610 -0.0700 -0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0180 0.0120 0.0000
-vertex 0.0180 -0.0120 0.0000
-vertex 0.0180 -0.0120 0.0450
+vertex 0.0610 -0.0700 -0.0900
+vertex 0.0850 -0.0700 -0.0900
+vertex 0.0850 -0.0700 -0.1350
 endloop
 endfacet
 facet normal 0 0 0
@@ -3809,7 +3809,21 @@ endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1963 0.0174 -0.0338
+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.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.1956 0.0075 -0.0345
 vertex 0.1950 0.0000 -0.0351
 vertex 0.1560 0.0000 0.0000
 endloop
@@ -3817,13 +3831,13 @@ endfacet
 facet normal 0 0 0
 outer loop
 vertex 0.1560 0.0000 0.0000
-vertex 0.1572 0.0174 0.0014
-vertex 0.1963 0.0174 -0.0338
+vertex 0.1565 0.0075 0.0006
+vertex 0.1956 0.0075 -0.0345
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.1572 0.0174 -0.0914
+vertex 0.1565 0.0075 -0.0906
 vertex 0.1560 -0.0000 -0.0900
 vertex 0.1950 -0.0000 -0.0549
 endloop
@@ -3831,13 +3845,13 @@ endfacet
 facet normal 0 0 0
 outer loop
 vertex 0.1950 -0.0000 -0.0549
-vertex 0.1963 0.0174 -0.0562
-vertex 0.1572 0.0174 -0.0914
+vertex 0.1956 0.0075 -0.0555
+vertex 0.1565 0.0075 -0.0906
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0403 0.0174 -0.0562
+vertex -0.0396 0.0075 -0.0555
 vertex -0.0390 0.0000 -0.0549
 vertex -0.0000 0.0000 -0.0900
 endloop
@@ -3845,13 +3859,13 @@ endfacet
 facet normal 0 0 0
 outer loop
 vertex -0.0000 0.0000 -0.0900
-vertex -0.0012 0.0174 -0.0914
-vertex -0.0403 0.0174 -0.0562
+vertex -0.0005 0.0075 -0.0906
+vertex -0.0396 0.0075 -0.0555
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0012 0.0174 0.0014
+vertex -0.0005 0.0075 0.0006
 vertex -0.0000 0.0000 0.0000
 vertex -0.0390 0.0000 -0.0351
 endloop
@@ -3859,8 +3873,8 @@ endfacet
 facet normal 0 0 0
 outer loop
 vertex -0.0390 0.0000 -0.0351
-vertex -0.0403 0.0174 -0.0338
-vertex -0.0012 0.0174 0.0014
+vertex -0.0396 0.0075 -0.0345
+vertex -0.0005 0.0075 0.0006
 endloop
 endfacet
 facet normal 0 0 0
@@ -3879,16 +3893,16 @@ endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0520 -0.0020 -0.0000
-vertex -0.0520 -0.0120 -0.0000
-vertex -0.0180 -0.0120 -0.0000
+vertex 0.0750 0.0000 -0.0900
+vertex 0.0850 0.0000 -0.0900
+vertex 0.0850 -0.0340 -0.0900
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0180 -0.0120 -0.0000
-vertex -0.0180 -0.0020 -0.0000
-vertex -0.0520 -0.0020 -0.0000
+vertex 0.0850 -0.0340 -0.0900
+vertex 0.0750 -0.0340 -0.0900
+vertex 0.0750 0.0000 -0.0900
 endloop
 endfacet
 facet normal 0 0 0
diff --git a/rocolib/output/BoatWithServoStackBattery/graph-silhouette.dxf b/rocolib/output/BoatWithServoStackBattery/graph-silhouette.dxf
index 82c06aaffed75b3dc911ab720316b64c6d25679f..d808f87001dd0d3a70cacfc5b672468f2920bebc 100644
--- a/rocolib/output/BoatWithServoStackBattery/graph-silhouette.dxf
+++ b/rocolib/output/BoatWithServoStackBattery/graph-silhouette.dxf
@@ -943,13 +943,13 @@ LINE
   8
 0
  10
-150.3085560697229
+160.30855606972293
  20
 105.00000000000001
  30
 0.0
  11
-88.65427803486146
+98.65427803486146
  21
 105.00000000000001
  31
@@ -961,13 +961,13 @@ LINE
   8
 0
  10
-88.65427803486146
+98.65427803486146
  20
 166.0
  30
 0.0
  11
-150.3085560697229
+160.30855606972293
  21
 166.0
  31
@@ -981,13 +981,13 @@ DOTTED
   8
 0
  10
-88.65427803486146
+98.65427803486146
  20
 166.0
  30
 0.0
  11
-88.65427803486146
+98.65427803486146
  21
 105.00000000000001
  31
@@ -999,13 +999,13 @@ LINE
   8
 0
  10
-160.30855606972293
+170.30855606972293
  20
 105.00000000000001
  30
 0.0
  11
-150.3085560697229
+160.30855606972293
  21
 105.00000000000001
  31
@@ -1017,13 +1017,13 @@ LINE
   8
 0
  10
-160.30855606972293
+170.30855606972293
  20
 166.0
  30
 0.0
  11
-160.30855606972293
+170.30855606972293
  21
 105.00000000000001
  31
@@ -1035,13 +1035,13 @@ LINE
   8
 0
  10
-150.3085560697229
+160.30855606972293
  20
 166.0
  30
 0.0
  11
-160.30855606972293
+170.30855606972293
  21
 166.0
  31
@@ -1053,13 +1053,13 @@ LINE
   8
 0
  10
-61.65427803486146
+71.65427803486145
  20
 166.0
  30
 0.0
  11
-88.65427803486146
+98.65427803486146
  21
 166.0
  31
@@ -1073,13 +1073,13 @@ DOTTED
   8
 0
  10
-61.65427803486146
+71.65427803486145
  20
 105.00000000000001
  30
 0.0
  11
-61.65427803486146
+71.65427803486145
  21
 166.0
  31
@@ -1093,13 +1093,49 @@ DOTTED
   8
 0
  10
-88.65427803486146
+98.65427803486146
+ 20
+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
+166.0
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+71.65427803486145
  20
 105.00000000000001
  30
 0.0
  11
-61.65427803486146
+10.000000000000002
  21
 105.00000000000001
  31
@@ -1117,7 +1153,7 @@ LINE
  30
 0.0
  11
-61.65427803486146
+10.000000000000002
  21
 166.0
  31
@@ -1147,7 +1183,7 @@ LINE
   8
 0
  10
-61.65427803486146
+10.000000000000002
  20
 105.00000000000001
  30
@@ -1165,13 +1201,13 @@ LINE
   8
 0
  10
-88.65427803486146
+98.65427803486146
  20
 105.00000000000001
  30
 0.0
  11
-88.65427803486146
+98.65427803486146
  21
 88.00000000000001
  31
@@ -1183,13 +1219,13 @@ LINE
   8
 0
  10
-61.65427803486146
+71.65427803486145
  20
 88.00000000000001
  30
 0.0
  11
-61.65427803486146
+71.65427803486145
  21
 105.00000000000001
  31
@@ -1203,13 +1239,13 @@ DOTTED
   8
 0
  10
-88.65427803486146
+98.65427803486146
  20
 88.00000000000001
  30
 0.0
  11
-61.65427803486146
+71.65427803486145
  21
 88.00000000000001
  31
@@ -1221,13 +1257,13 @@ LINE
   8
 0
  10
-88.65427803486146
+98.65427803486146
  20
 88.00000000000001
  30
 0.0
  11
-88.65427803486146
+98.65427803486146
  21
 27.000000000000004
  31
@@ -1239,13 +1275,13 @@ LINE
   8
 0
  10
-61.65427803486146
+71.65427803486145
  20
 27.000000000000004
  30
 0.0
  11
-61.65427803486146
+71.65427803486145
  21
 88.00000000000001
  31
@@ -1259,13 +1295,13 @@ DOTTED
   8
 0
  10
-88.65427803486146
+98.65427803486146
  20
 27.000000000000004
  30
 0.0
  11
-61.65427803486146
+71.65427803486145
  21
 27.000000000000004
  31
@@ -1277,13 +1313,13 @@ LINE
   8
 0
  10
-88.65427803486146
+98.65427803486146
  20
 27.000000000000004
  30
 0.0
  11
-88.65427803486146
+98.65427803486146
  21
 10.000000000000002
  31
@@ -1295,13 +1331,13 @@ LINE
   8
 0
  10
-61.65427803486146
+71.65427803486145
  20
 10.000000000000002
  30
 0.0
  11
-61.65427803486146
+71.65427803486145
  21
 27.000000000000004
  31
@@ -1315,13 +1351,13 @@ DOTTED
   8
 0
  10
-61.65427803486146
+71.65427803486145
  20
 10.000000000000002
  30
 0.0
  11
-88.65427803486146
+98.65427803486146
  21
 10.000000000000002
  31
@@ -1333,13 +1369,13 @@ LINE
   8
 0
  10
-61.65427803486146
+71.65427803486145
  20
 0.0
  30
 0.0
  11
-61.65427803486146
+71.65427803486145
  21
 10.000000000000002
  31
@@ -1351,13 +1387,13 @@ LINE
   8
 0
  10
-88.65427803486146
+98.65427803486146
  20
 0.0
  30
 0.0
  11
-61.65427803486146
+71.65427803486145
  21
 0.0
  31
@@ -1369,13 +1405,13 @@ LINE
   8
 0
  10
-88.65427803486146
+98.65427803486146
  20
 10.000000000000002
  30
 0.0
  11
-88.65427803486146
+98.65427803486146
  21
 0.0
  31
@@ -1387,13 +1423,13 @@ LINE
   8
 0
  10
-157.80855606972293
+167.80855606972293
  20
 154.90909090909093
  30
 0.0
  11
-152.8085560697229
+162.80855606972293
  21
 154.90909090909093
  31
@@ -1405,13 +1441,13 @@ LINE
   8
 0
  10
-152.8085560697229
+162.80855606972293
  20
 154.90909090909093
  30
 0.0
  11
-152.8085560697229
+162.80855606972293
  21
 143.8181818181818
  31
@@ -1423,13 +1459,13 @@ LINE
   8
 0
  10
-152.8085560697229
+162.80855606972293
  20
 143.8181818181818
  30
 0.0
  11
-157.80855606972293
+167.80855606972293
  21
 143.8181818181818
  31
@@ -1441,13 +1477,13 @@ LINE
   8
 0
  10
-157.80855606972293
+167.80855606972293
  20
 127.1818181818182
  30
 0.0
  11
-152.8085560697229
+162.80855606972293
  21
 127.1818181818182
  31
@@ -1459,13 +1495,13 @@ LINE
   8
 0
  10
-152.8085560697229
+162.80855606972293
  20
 127.1818181818182
  30
 0.0
  11
-152.8085560697229
+162.80855606972293
  21
 116.09090909090911
  31
@@ -1477,13 +1513,13 @@ LINE
   8
 0
  10
-152.8085560697229
+162.80855606972293
  20
 116.09090909090911
  30
 0.0
  11
-157.80855606972293
+167.80855606972293
  21
 116.09090909090911
  31
@@ -1495,13 +1531,13 @@ LINE
   8
 0
  10
-84.15427803486145
+94.15427803486146
  20
 102.50000000000001
  30
 0.0
  11
-84.15427803486145
+94.15427803486146
  21
 108.50000000000001
  31
@@ -1513,13 +1549,13 @@ LINE
   8
 0
  10
-84.15427803486145
+94.15427803486146
  20
 108.50000000000001
  30
 0.0
  11
-66.15427803486145
+76.15427803486145
  21
 108.50000000000001
  31
@@ -1531,13 +1567,13 @@ LINE
   8
 0
  10
-66.15427803486145
+76.15427803486145
  20
 108.50000000000001
  30
 0.0
  11
-66.15427803486145
+76.15427803486145
  21
 102.50000000000001
  31
@@ -1549,13 +1585,13 @@ LINE
   8
 0
  10
-66.15427803486145
+76.15427803486145
  20
 102.50000000000001
  30
 0.0
  11
-84.15427803486145
+94.15427803486146
  21
 102.50000000000001
  31
@@ -1567,13 +1603,13 @@ LINE
   8
 0
  10
-70.40427803486146
+80.40427803486146
  20
 158.25000000000003
  30
 0.0
  11
-79.90427803486145
+89.90427803486145
  21
 158.25000000000003
  31
@@ -1585,13 +1621,13 @@ LINE
   8
 0
  10
-79.90427803486145
+89.90427803486145
  20
 158.25000000000003
  30
 0.0
  11
-79.90427803486145
+89.90427803486145
  21
 158.75000000000003
  31
@@ -1603,13 +1639,13 @@ LINE
   8
 0
  10
-79.90427803486145
+89.90427803486145
  20
 158.75000000000003
  30
 0.0
  11
-70.40427803486146
+80.40427803486146
  21
 158.75000000000003
  31
@@ -1621,13 +1657,13 @@ LINE
   8
 0
  10
-70.40427803486146
+80.40427803486146
  20
 158.75000000000003
  30
 0.0
  11
-70.40427803486146
+80.40427803486146
  21
 158.25000000000003
  31
@@ -1639,13 +1675,121 @@ LINE
   8
 0
  10
-79.65427803486145
+2.5000000000000004
+ 20
+116.09090909090911
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+116.09090909090911
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+116.09090909090911
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+127.18181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+127.18181818181822
+ 30
+0.0
+ 11
+2.5000000000000004
+ 21
+127.18181818181822
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+2.5000000000000004
+ 20
+143.81818181818184
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+143.81818181818184
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+143.81818181818184
+ 30
+0.0
+ 11
+7.500000000000001
+ 21
+154.90909090909093
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+7.500000000000001
+ 20
+154.90909090909093
+ 30
+0.0
+ 11
+2.5000000000000004
+ 21
+154.90909090909093
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+89.65427803486146
  20
 2.5000000000000004
  30
 0.0
  11
-79.65427803486145
+89.65427803486146
  21
 7.500000000000001
  31
@@ -1657,13 +1801,13 @@ LINE
   8
 0
  10
-79.65427803486145
+89.65427803486146
  20
 7.500000000000001
  30
 0.0
  11
-70.65427803486145
+80.65427803486146
  21
 7.500000000000001
  31
@@ -1675,13 +1819,13 @@ LINE
   8
 0
  10
-70.65427803486145
+80.65427803486146
  20
 7.500000000000001
  30
 0.0
  11
-70.65427803486145
+80.65427803486146
  21
 2.5000000000000004
  31
@@ -1693,13 +1837,13 @@ LINE
   8
 0
  10
-317.33180874014937
+327.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-256.33180874014937
+266.3318087401493
  21
 135.50000000000003
  31
@@ -1711,13 +1855,13 @@ LINE
   8
 0
  10
-351.33180874014937
+361.3318087401493
  20
 135.50000000000003
  30
 0.0
  11
-341.33180874014937
+351.33180874014937
  21
 135.50000000000003
  31
@@ -1729,13 +1873,13 @@ LINE
   8
 0
  10
-412.33180874014937
+422.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-412.33180874014937
+422.33180874014937
  21
 135.50000000000003
  31
@@ -1747,13 +1891,13 @@ LINE
   8
 0
  10
-256.33180874014937
+266.3318087401493
  20
 135.50000000000003
  30
 0.0
  11
-256.33180874014937
+266.3318087401493
  21
 135.50000000000003
  31
@@ -1765,13 +1909,13 @@ LINE
   8
 0
  10
-317.33180874014937
+327.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-243.33180874014934
+253.33180874014934
  21
 135.50000000000003
  31
@@ -1783,13 +1927,13 @@ LINE
   8
 0
  10
-351.33180874014937
+361.3318087401493
  20
 135.50000000000003
  30
 0.0
  11
-341.33180874014937
+351.33180874014937
  21
 135.50000000000003
  31
@@ -1801,13 +1945,13 @@ LINE
   8
 0
  10
-412.33180874014937
+422.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-412.33180874014937
+422.33180874014937
  21
 135.50000000000003
  31
@@ -1819,13 +1963,13 @@ LINE
   8
 0
  10
-341.33180874014937
+351.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-351.33180874014937
+361.3318087401493
  21
 135.50000000000003
  31
@@ -1837,13 +1981,13 @@ LINE
   8
 0
  10
-243.33180874014934
+253.33180874014934
  20
 135.50000000000003
  30
 0.0
  11
-317.33180874014937
+327.33180874014937
  21
 135.50000000000003
  31
@@ -1855,13 +1999,13 @@ LINE
   8
 0
  10
-243.33180874014934
+253.33180874014934
  20
 135.50000000000003
  30
 0.0
  11
-243.33180874014934
+253.33180874014934
  21
 135.50000000000003
  31
@@ -1873,13 +2017,13 @@ LINE
   8
 0
  10
-341.33180874014937
+351.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-341.33180874014937
+351.33180874014937
  21
 101.50000000000001
  31
@@ -1893,13 +2037,13 @@ DOTTED
   8
 0
  10
-317.33180874014937
+327.33180874014937
  20
 101.50000000000001
  30
 0.0
  11
-317.33180874014937
+327.33180874014937
  21
 135.50000000000003
  31
@@ -1911,13 +2055,13 @@ LINE
   8
 0
  10
-317.33180874014937
+327.33180874014937
  20
 65.5
  30
 0.0
  11
-317.33180874014937
+327.33180874014937
  21
 101.50000000000001
  31
@@ -1931,13 +2075,13 @@ DOTTED
   8
 0
  10
-317.33180874014937
+327.33180874014937
  20
 65.5
  30
 0.0
  11
-341.33180874014937
+351.33180874014937
  21
 65.5
  31
@@ -1949,13 +2093,13 @@ LINE
   8
 0
  10
-341.33180874014937
+351.33180874014937
  20
 101.50000000000001
  30
 0.0
  11
-341.33180874014937
+351.33180874014937
  21
 65.5
  31
@@ -1967,13 +2111,13 @@ LINE
   8
 0
  10
-341.33180874014937
+351.33180874014937
  20
 65.5
  30
 0.0
  11
-341.33180874014937
+351.33180874014937
  21
 20.5
  31
@@ -1985,13 +2129,13 @@ LINE
   8
 0
  10
-317.33180874014937
+327.33180874014937
  20
 20.5
  30
 0.0
  11
-317.33180874014937
+327.33180874014937
  21
 65.5
  31
@@ -2003,13 +2147,13 @@ LINE
   8
 0
  10
-317.33180874014937
+327.33180874014937
  20
 15.500000000000004
  30
 0.0
  11
-317.33180874014937
+327.33180874014937
  21
 20.5
  31
@@ -2021,13 +2165,13 @@ LINE
   8
 0
  10
-341.33180874014937
+351.33180874014937
  20
 15.500000000000004
  30
 0.0
  11
-317.33180874014937
+327.33180874014937
  21
 15.500000000000004
  31
@@ -2039,13 +2183,13 @@ LINE
   8
 0
  10
-341.33180874014937
+351.33180874014937
  20
 20.5
  30
 0.0
  11
-341.33180874014937
+351.33180874014937
  21
 15.500000000000004
  31
@@ -2057,13 +2201,13 @@ LINE
   8
 0
  10
-317.33180874014937
+327.33180874014937
  20
 101.50000000000001
  30
 0.0
  11
-297.3318087401493
+307.3318087401493
  21
 101.50000000000001
  31
@@ -2075,13 +2219,13 @@ LINE
   8
 0
  10
-297.3318087401493
+307.3318087401493
  20
 135.50000000000003
  30
 0.0
  11
-317.33180874014937
+327.33180874014937
  21
 135.50000000000003
  31
@@ -2095,13 +2239,13 @@ DOTTED
   8
 0
  10
-297.3318087401493
+307.3318087401493
  20
 101.50000000000001
  30
 0.0
  11
-297.3318087401493
+307.3318087401493
  21
 135.50000000000003
  31
@@ -2113,13 +2257,13 @@ LINE
   8
 0
  10
-297.3318087401493
+307.3318087401493
  20
 101.50000000000001
  30
 0.0
  11
-273.33180874014937
+283.3318087401493
  21
 101.50000000000001
  31
@@ -2131,13 +2275,13 @@ LINE
   8
 0
  10
-273.33180874014937
+283.3318087401493
  20
 135.50000000000003
  30
 0.0
  11
-297.3318087401493
+307.3318087401493
  21
 135.50000000000003
  31
@@ -2151,13 +2295,13 @@ DOTTED
   8
 0
  10
-273.33180874014937
+283.3318087401493
  20
 101.50000000000001
  30
 0.0
  11
-273.33180874014937
+283.3318087401493
  21
 135.50000000000003
  31
@@ -2169,13 +2313,13 @@ LINE
   8
 0
  10
-273.33180874014937
+283.3318087401493
  20
 101.50000000000001
  30
 0.0
  11
-253.33180874014934
+263.33180874014937
  21
 101.50000000000001
  31
@@ -2187,13 +2331,13 @@ LINE
   8
 0
  10
-253.33180874014934
+263.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-273.33180874014937
+283.3318087401493
  21
 135.50000000000003
  31
@@ -2207,13 +2351,13 @@ DOTTED
   8
 0
  10
-253.33180874014934
+263.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-253.33180874014934
+263.33180874014937
  21
 101.50000000000001
  31
@@ -2225,13 +2369,13 @@ LINE
   8
 0
  10
-243.33180874014934
+253.33180874014934
  20
 135.50000000000003
  30
 0.0
  11
-253.33180874014934
+263.33180874014937
  21
 135.50000000000003
  31
@@ -2243,13 +2387,13 @@ LINE
   8
 0
  10
-243.33180874014934
+253.33180874014934
  20
 101.50000000000001
  30
 0.0
  11
-243.33180874014934
+253.33180874014934
  21
 135.50000000000003
  31
@@ -2261,13 +2405,13 @@ LINE
   8
 0
  10
-253.33180874014934
+263.33180874014937
  20
 101.50000000000001
  30
 0.0
  11
-243.33180874014934
+253.33180874014934
  21
 101.50000000000001
  31
@@ -2281,13 +2425,13 @@ DOTTED
   8
 0
  10
-351.33180874014937
+361.3318087401493
  20
 99.36137800081471
  30
 0.0
  11
-412.33180874014937
+422.33180874014937
  21
 99.36137800081471
  31
@@ -2299,13 +2443,13 @@ LINE
   8
 0
  10
-412.33180874014937
+422.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-412.33180874014937
+422.33180874014937
  21
 99.36137800081471
  31
@@ -2317,13 +2461,13 @@ LINE
   8
 0
  10
-351.33180874014937
+361.3318087401493
  20
 99.36137800081471
  30
 0.0
  11
-351.33180874014937
+361.3318087401493
  21
 135.50000000000003
  31
@@ -2337,13 +2481,13 @@ DOTTED
   8
 0
  10
-412.33180874014937
+422.33180874014937
  20
 75.36137800081471
  30
 0.0
  11
-351.33180874014937
+361.3318087401493
  21
 75.36137800081471
  31
@@ -2357,13 +2501,13 @@ DOTTED
   8
 0
  10
-412.33180874014937
+422.33180874014937
  20
 75.36137800081471
  30
 0.0
  11
-412.33180874014937
+422.33180874014937
  21
 99.36137800081471
  31
@@ -2375,13 +2519,13 @@ LINE
   8
 0
  10
-351.33180874014937
+361.3318087401493
  20
 39.22275600162939
  30
 0.0
  11
-351.33180874014937
+361.3318087401493
  21
 75.36137800081472
  31
@@ -2393,13 +2537,13 @@ LINE
   8
 0
  10
-412.33180874014937
+422.33180874014937
  20
 75.36137800081472
  30
 0.0
  11
-412.33180874014937
+422.33180874014937
  21
 39.22275600162939
  31
@@ -2411,13 +2555,13 @@ LINE
   8
 0
  10
-351.33180874014937
+361.3318087401493
  20
 29.222756001629396
  30
 0.0
  11
-351.33180874014937
+361.3318087401493
  21
 39.22275600162939
  31
@@ -2429,13 +2573,13 @@ LINE
   8
 0
  10
-412.33180874014937
+422.33180874014937
  20
 29.222756001629396
  30
 0.0
  11
-351.33180874014937
+361.3318087401493
  21
 29.222756001629396
  31
@@ -2447,13 +2591,13 @@ LINE
   8
 0
  10
-412.33180874014937
+422.33180874014937
  20
 39.22275600162939
  30
 0.0
  11
-412.33180874014937
+422.33180874014937
  21
 29.222756001629396
  31
@@ -2465,13 +2609,13 @@ LINE
   8
 0
  10
-422.33180874014937
+432.33180874014937
  20
 75.36137800081471
  30
 0.0
  11
-412.33180874014937
+422.33180874014937
  21
 75.36137800081471
  31
@@ -2483,13 +2627,13 @@ LINE
   8
 0
  10
-422.33180874014937
+432.33180874014937
  20
 99.36137800081471
  30
 0.0
  11
-422.33180874014937
+432.33180874014937
  21
 75.36137800081471
  31
@@ -2501,13 +2645,13 @@ LINE
   8
 0
  10
-412.33180874014937
+422.33180874014937
  20
 99.36137800081471
  30
 0.0
  11
-422.33180874014937
+432.33180874014937
  21
 99.36137800081471
  31
@@ -2519,13 +2663,13 @@ LINE
   8
 0
  10
-341.33180874014937
+351.33180874014937
  20
 99.36137800081471
  30
 0.0
  11
-351.33180874014937
+361.3318087401493
  21
 99.36137800081471
  31
@@ -2537,13 +2681,13 @@ LINE
   8
 0
  10
-341.33180874014937
+351.33180874014937
  20
 75.36137800081471
  30
 0.0
  11
-341.33180874014937
+351.33180874014937
  21
 99.36137800081471
  31
@@ -2555,13 +2699,13 @@ LINE
   8
 0
  10
-351.33180874014937
+361.3318087401493
  20
 75.36137800081471
  30
 0.0
  11
-341.33180874014937
+351.33180874014937
  21
 75.36137800081471
  31
@@ -2575,13 +2719,13 @@ DOTTED
   8
 0
  10
-412.33180874014937
+422.33180874014937
  20
 205.50000000000003
  30
 0.0
  11
-256.33180874014937
+266.3318087401493
  21
 205.50000000000003
  31
@@ -2595,13 +2739,13 @@ DOTTED
   8
 0
  10
-412.33180874014937
+422.33180874014937
  20
 205.50000000000003
  30
 0.0
  11
-412.33180874014937
+422.33180874014937
  21
 135.50000000000003
  31
@@ -2615,13 +2759,13 @@ DOTTED
   8
 0
  10
-412.33180874014937
+422.33180874014937
  20
 135.50000000000003
  30
 0.0
  11
-464.84617955831095
+474.84617955831095
  21
 135.50000000000003
  31
@@ -2635,13 +2779,13 @@ DOTTED
   8
 0
  10
-412.33180874014937
+422.33180874014937
  20
 205.50000000000003
  30
 0.0
  11
-464.84617955831095
+474.84617955831095
  21
 135.50000000000003
  31
@@ -2653,13 +2797,13 @@ LINE
   8
 0
  10
-412.33180874014937
+422.33180874014937
  20
-117.99520972727949
+127.99794702597693
  30
 0.0
  11
-412.33180874014937
+422.33180874014937
  21
 135.50000000000003
  31
@@ -2671,15 +2815,15 @@ LINE
   8
 0
  10
-464.84617955831095
+474.84617955831095
  20
-117.99520972727949
+127.99794702597693
  30
 0.0
  11
-412.33180874014937
+422.33180874014937
  21
-117.99520972727949
+127.99794702597693
  31
 0.0
   0
@@ -2689,15 +2833,15 @@ LINE
   8
 0
  10
-464.84617955831095
+474.84617955831095
  20
 135.50000000000003
  30
 0.0
  11
-464.84617955831095
+474.84617955831095
  21
-117.99520972727949
+127.99794702597693
  31
 0.0
   0
@@ -2709,13 +2853,13 @@ DOTTED
   8
 0
  10
-412.33180874014937
+422.33180874014937
  20
 205.50000000000003
  30
 0.0
  11
-479.5369564140486
+489.5369564140486
  21
 185.91765779766357
  31
@@ -2727,13 +2871,13 @@ LINE
   8
 0
  10
-479.5369564140486
+489.5369564140486
  20
 185.91765779766357
  30
 0.0
  11
-464.84617955831095
+474.84617955831095
  21
 135.50000000000003
  31
@@ -2745,13 +2889,13 @@ LINE
   8
 0
  10
-494.22773326978614
+504.22773326978614
  20
 236.33531559532716
  30
 0.0
  11
-479.5369564140486
+489.5369564140486
  21
 185.91765779766357
  31
@@ -2763,13 +2907,13 @@ LINE
   8
 0
  10
-498.3550614105757
+508.3550614105757
  20
 250.50000000000003
  30
 0.0
  11
-494.22773326978614
+504.22773326978614
  21
 236.33531559532716
  31
@@ -2783,13 +2927,13 @@ DOTTED
   8
 0
  10
-498.3550614105757
+508.3550614105757
  20
 250.50000000000003
  30
 0.0
  11
-412.33180874014937
+422.33180874014937
  21
 205.50000000000003
  31
@@ -2803,13 +2947,13 @@ DOTTED
   8
 0
  10
-412.33180874014937
+422.33180874014937
  20
 250.50000000000003
  30
 0.0
  11
-412.33180874014937
+422.33180874014937
  21
 205.50000000000003
  31
@@ -2823,13 +2967,13 @@ DOTTED
   8
 0
  10
-412.3318087401494
+422.3318087401494
  20
 295.5
  30
 0.0
  11
-412.33180874014937
+422.33180874014937
  21
 250.50000000000006
  31
@@ -2843,13 +2987,13 @@ DOTTED
   8
 0
  10
-498.35506141057573
+508.35506141057573
  20
 250.50000000000003
  30
 0.0
  11
-412.3318087401494
+422.3318087401494
  21
 295.50000000000006
  31
@@ -2863,13 +3007,13 @@ DOTTED
   8
 0
  10
-479.5369564140486
+489.5369564140486
  20
 315.08234220233646
  30
 0.0
  11
-412.33180874014937
+422.33180874014937
  21
 295.50000000000006
  31
@@ -2881,13 +3025,13 @@ LINE
   8
 0
  10
-494.22773326978614
+504.22773326978614
  20
 264.6646844046729
  30
 0.0
  11
-498.3550614105757
+508.3550614105757
  21
 250.50000000000003
  31
@@ -2899,13 +3043,13 @@ LINE
   8
 0
  10
-479.5369564140486
+489.5369564140486
  20
 315.08234220233646
  30
 0.0
  11
-494.22773326978614
+504.22773326978614
  21
 264.6646844046729
  31
@@ -2917,13 +3061,13 @@ LINE
   8
 0
  10
-464.84617955831106
+474.84617955831106
  20
 365.50000000000006
  30
 0.0
  11
-479.5369564140486
+489.5369564140486
  21
 315.0823422023364
  31
@@ -2937,13 +3081,13 @@ DOTTED
   8
 0
  10
-464.84617955831106
+474.84617955831106
  20
 365.50000000000006
  30
 0.0
  11
-412.3318087401494
+422.3318087401494
  21
 295.50000000000006
  31
@@ -2957,13 +3101,13 @@ DOTTED
   8
 0
  10
-412.3318087401495
+422.3318087401495
  20
 365.5000000000001
  30
 0.0
  11
-412.33180874014937
+422.33180874014937
  21
 295.5
  31
@@ -2977,113 +3121,107 @@ DOTTED
   8
 0
  10
-464.84617955831106
+474.84617955831106
  20
 365.50000000000006
  30
 0.0
  11
-412.3318087401495
+422.3318087401495
  21
 365.5000000000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-256.3318087401494
+422.3318087401494
  20
-365.5000000000002
+295.50000000000006
  30
 0.0
  11
-412.3318087401495
+266.3318087401493
  21
-365.5000000000001
+295.50000000000017
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-412.3318087401494
+351.3318087401494
  20
-295.50000000000006
+365.50000000000017
  30
 0.0
  11
-256.33180874014937
+361.3318087401494
  21
-295.50000000000017
+365.50000000000017
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-256.33180874014937
+266.33180874014937
  20
-295.50000000000017
+365.5000000000003
  30
 0.0
  11
-256.3318087401494
+327.3318087401494
  21
-365.5000000000002
+365.50000000000017
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-3
+5
   8
 0
  10
-256.3318087401494
+266.33180874014937
  20
 365.5000000000003
  30
 0.0
  11
-203.8174379219878
+266.33180874014937
  21
 365.5000000000003
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-3
+5
   8
 0
  10
-256.33180874014937
+422.3318087401495
  20
-295.5000000000002
+365.5000000000001
  30
 0.0
  11
-203.8174379219878
+422.3318087401495
  21
-365.5000000000003
+365.5000000000001
  31
 0.0
   0
@@ -3093,15 +3231,15 @@ LINE
   8
 0
  10
-256.3318087401494
+361.3318087401494
  20
-383.00479027272075
+365.50000000000017
  30
 0.0
  11
-256.3318087401494
+422.3318087401495
  21
-365.5000000000003
+365.5000000000001
  31
 0.0
   0
@@ -3111,15 +3249,15 @@ LINE
   8
 0
  10
-203.8174379219878
+351.3318087401494
  20
-383.00479027272087
+365.50000000000017
  30
 0.0
  11
-256.3318087401494
+361.3318087401494
  21
-383.00479027272075
+365.50000000000017
  31
 0.0
   0
@@ -3129,35 +3267,33 @@ LINE
   8
 0
  10
-203.8174379219878
+253.33180874014937
  20
 365.5000000000003
  30
 0.0
  11
-203.8174379219878
+327.3318087401494
  21
-383.00479027272087
+365.50000000000017
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-256.33180874014937
+253.33180874014937
  20
-295.50000000000017
+365.5000000000003
  30
 0.0
  11
-189.12666106625016
+253.33180874014937
  21
-315.08234220233675
+365.5000000000003
  31
 0.0
   0
@@ -3167,13 +3303,13 @@ LINE
   8
 0
  10
-189.12666106625016
+327.3318087401494
  20
-315.08234220233675
+365.50000000000017
  30
 0.0
  11
-203.8174379219878
+253.33180874014937
  21
 365.5000000000003
  31
@@ -3185,15 +3321,15 @@ LINE
   8
 0
  10
-174.4358842105125
+361.3318087401494
  20
-264.6646844046731
+365.50000000000017
  30
 0.0
  11
-189.12666106625016
+351.3318087401494
  21
-315.08234220233675
+365.50000000000017
  31
 0.0
   0
@@ -3203,35 +3339,33 @@ LINE
   8
 0
  10
-170.30855606972295
+422.3318087401495
  20
-250.50000000000028
+365.5000000000001
  30
 0.0
  11
-174.4358842105125
+422.3318087401495
  21
-264.6646844046731
+365.5000000000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-170.30855606972295
+351.3318087401494
  20
-250.50000000000028
+399.5000000000001
  30
 0.0
  11
-256.33180874014937
+351.3318087401494
  21
-295.50000000000017
+365.50000000000017
  31
 0.0
   0
@@ -3243,35 +3377,33 @@ DOTTED
   8
 0
  10
-256.3318087401493
+327.3318087401494
  20
-250.50000000000017
+365.50000000000017
  30
 0.0
  11
-256.33180874014937
+327.3318087401495
  21
-295.50000000000017
+399.5000000000001
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-256.33180874014926
+351.3318087401495
  20
-205.50000000000017
+435.50000000000017
  30
 0.0
  11
-256.3318087401493
+351.3318087401494
  21
-250.5000000000002
+399.5000000000001
  31
 0.0
   0
@@ -3279,39 +3411,37 @@ LINE
   6
 DOTTED
  62
-1
+3
   8
 0
  10
-170.30855606972293
+351.3318087401495
  20
-250.5000000000003
+435.50000000000017
  30
 0.0
  11
-256.33180874014926
+327.3318087401495
  21
-205.50000000000014
+435.50000000000017
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-189.12666106624997
+327.3318087401495
  20
-185.91765779766385
+399.5000000000001
  30
 0.0
  11
-256.33180874014926
+327.3318087401495
  21
-205.50000000000014
+435.50000000000017
  31
 0.0
   0
@@ -3321,15 +3451,15 @@ LINE
   8
 0
  10
-174.43588421051246
+327.3318087401495
  20
-236.33531559532744
+435.50000000000017
  30
 0.0
  11
-170.30855606972293
+327.33180874014954
  21
-250.5000000000003
+480.50000000000017
  31
 0.0
   0
@@ -3339,15 +3469,15 @@ LINE
   8
 0
  10
-189.12666106624997
+351.3318087401495
  20
-185.91765779766385
+480.50000000000017
  30
 0.0
  11
-174.43588421051246
+351.3318087401494
  21
-236.33531559532744
+435.50000000000017
  31
 0.0
   0
@@ -3357,35 +3487,51 @@ LINE
   8
 0
  10
-203.81743792198745
+327.33180874014954
  20
-135.50000000000023
+480.50000000000017
  30
 0.0
  11
-189.12666106624997
+351.3318087401495
  21
-185.91765779766385
+480.50000000000017
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-3
+5
   8
 0
  10
-203.81743792198745
+327.3318087401494
  20
-135.50000000000023
+365.50000000000017
  30
 0.0
  11
-256.33180874014914
+307.33180874014937
  21
-205.50000000000017
+365.50000000000017
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+307.3318087401495
+ 20
+399.5000000000001
+ 30
+0.0
+ 11
+327.3318087401495
+ 21
+399.5000000000001
  31
 0.0
   0
@@ -3397,15 +3543,51 @@ DOTTED
   8
 0
  10
-256.33180874014903
+307.33180874014937
  20
-135.5000000000001
+365.50000000000017
  30
 0.0
  11
-256.33180874014926
+307.3318087401495
  21
-205.50000000000017
+399.5000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+307.33180874014937
+ 20
+365.50000000000017
+ 30
+0.0
+ 11
+283.33180874014937
+ 21
+365.50000000000017
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+283.3318087401494
+ 20
+399.5000000000001
+ 30
+0.0
+ 11
+307.3318087401495
+ 21
+399.5000000000001
  31
 0.0
   0
@@ -3413,19 +3595,19 @@ LINE
   6
 DOTTED
  62
-3
+1
   8
 0
  10
-203.81743792198748
+283.33180874014937
  20
-135.50000000000023
+365.50000000000017
  30
 0.0
  11
-256.33180874014903
+283.3318087401494
  21
-135.5000000000001
+399.5000000000001
  31
 0.0
   0
@@ -3435,15 +3617,15 @@ LINE
   8
 0
  10
-203.81743792198742
+283.33180874014937
  20
-117.9952097272797
+365.50000000000017
  30
 0.0
  11
-203.81743792198748
+263.3318087401494
  21
-135.50000000000023
+365.50000000000017
  31
 0.0
   0
@@ -3453,33 +3635,35 @@ LINE
   8
 0
  10
-256.33180874014903
+263.3318087401494
  20
-117.9952097272796
+399.5000000000001
  30
 0.0
  11
-203.81743792198742
+283.3318087401494
  21
-117.9952097272797
+399.5000000000001
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-256.33180874014903
+263.3318087401494
  20
-135.5000000000001
+399.5000000000001
  30
 0.0
  11
-256.33180874014903
+263.3318087401494
  21
-117.9952097272796
+365.50000000000017
  31
 0.0
   0
@@ -3489,15 +3673,15 @@ LINE
   8
 0
  10
-464.8461795583111
+253.33180874014943
  20
-383.0047902727206
+399.5000000000001
  30
 0.0
  11
-464.84617955831106
+263.3318087401494
  21
-365.50000000000006
+399.5000000000001
  31
 0.0
   0
@@ -3507,15 +3691,15 @@ LINE
   8
 0
  10
-412.3318087401495
+253.3318087401494
  20
-383.00479027272064
+365.50000000000017
  30
 0.0
  11
-464.8461795583111
+253.33180874014943
  21
-383.0047902727206
+399.5000000000001
  31
 0.0
   0
@@ -3525,69 +3709,75 @@ LINE
   8
 0
  10
-412.3318087401495
+263.3318087401494
  20
-365.5000000000001
+365.50000000000017
  30
 0.0
  11
-412.3318087401495
+253.3318087401494
  21
-383.00479027272064
+365.50000000000017
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-278.76362692196756
+266.3318087401493
  20
-143.25
+295.50000000000017
  30
 0.0
  11
-267.17271783105843
+266.33180874014937
  21
-143.25
+365.5000000000002
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+3
   8
 0
  10
-267.17271783105843
+266.33180874014937
  20
-143.25
+365.5000000000003
  30
 0.0
  11
-267.17271783105843
+213.81743792198782
  21
-142.75000000000003
+365.5000000000003
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+3
   8
 0
  10
-267.17271783105843
+266.3318087401493
  20
-142.75000000000003
+295.5000000000002
  30
 0.0
  11
-278.76362692196756
+213.81743792198782
  21
-142.75000000000003
+365.5000000000003
  31
 0.0
   0
@@ -3597,15 +3787,15 @@ LINE
   8
 0
  10
-278.76362692196756
+266.33180874014937
  20
-142.75000000000003
+373.00205297402334
  30
 0.0
  11
-278.76362692196756
+266.33180874014937
  21
-143.25
+365.5000000000003
  31
 0.0
   0
@@ -3615,15 +3805,15 @@ LINE
   8
 0
  10
-306.4908996492403
+213.81743792198782
  20
-143.25
+373.0020529740234
  30
 0.0
  11
-294.8999905583312
+266.33180874014937
  21
-143.25
+373.00205297402334
  31
 0.0
   0
@@ -3633,33 +3823,35 @@ LINE
   8
 0
  10
-294.8999905583312
+213.81743792198782
  20
-143.25
+365.5000000000003
  30
 0.0
  11
-294.8999905583312
+213.81743792198782
  21
-142.75000000000003
+373.0020529740234
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-294.8999905583312
+266.3318087401493
  20
-142.75000000000003
+295.50000000000017
  30
 0.0
  11
-306.4908996492403
+199.12666106625016
  21
-142.75000000000003
+315.08234220233675
  31
 0.0
   0
@@ -3669,15 +3861,15 @@ LINE
   8
 0
  10
-306.4908996492403
+199.12666106625016
  20
-142.75000000000003
+315.08234220233675
  30
 0.0
  11
-306.4908996492403
+213.81743792198782
  21
-143.25
+365.5000000000003
  31
 0.0
   0
@@ -3687,15 +3879,15 @@ LINE
   8
 0
  10
-333.5818087401493
+184.43588421051248
  20
-124.41666666666669
+264.6646844046731
  30
 0.0
  11
-333.5818087401493
+199.12666106625016
  21
-112.58333333333334
+315.08234220233675
  31
 0.0
   0
@@ -3705,105 +3897,115 @@ LINE
   8
 0
  10
-333.5818087401493
+180.30855606972295
  20
-112.58333333333334
+250.50000000000028
  30
 0.0
  11
-334.0818087401493
+184.43588421051248
  21
-112.58333333333334
+264.6646844046731
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-334.0818087401493
+180.30855606972295
  20
-112.58333333333334
+250.50000000000028
  30
 0.0
  11
-334.0818087401493
+266.3318087401493
  21
-124.41666666666669
+295.50000000000017
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-334.0818087401493
+266.3318087401493
  20
-124.41666666666669
+250.50000000000017
  30
 0.0
  11
-333.5818087401493
+266.3318087401493
  21
-124.41666666666669
+295.50000000000017
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-333.33180874014937
+266.33180874014926
  20
-16.750000000000004
+205.50000000000017
  30
 0.0
  11
-335.83180874014937
+266.3318087401493
  21
-16.750000000000004
+250.5000000000002
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-335.83180874014937
+180.3085560697229
  20
-16.750000000000004
+250.5000000000003
  30
 0.0
  11
-333.33180874014937
+266.33180874014926
  21
-19.250000000000004
+205.50000000000014
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-333.33180874014937
+199.12666106624997
  20
-19.250000000000004
+185.91765779766385
  30
 0.0
  11
-325.3318087401493
+266.33180874014926
  21
-19.250000000000004
+205.50000000000014
  31
 0.0
   0
@@ -3813,15 +4015,15 @@ LINE
   8
 0
  10
-325.3318087401493
+184.43588421051243
  20
-19.250000000000004
+236.33531559532744
  30
 0.0
  11
-322.83180874014937
+180.3085560697229
  21
-16.750000000000004
+250.5000000000003
  31
 0.0
   0
@@ -3831,15 +4033,15 @@ LINE
   8
 0
  10
-322.83180874014937
+199.12666106624997
  20
-16.750000000000004
+185.91765779766385
  30
 0.0
  11
-325.3318087401493
+184.43588421051243
  21
-16.750000000000004
+236.33531559532744
  31
 0.0
   0
@@ -3849,69 +4051,75 @@ LINE
   8
 0
  10
-298.3318087401493
+213.81743792198745
  20
-112.50000000000001
+135.50000000000023
  30
 0.0
  11
-302.3318087401493
+199.12666106624997
  21
-112.50000000000001
+185.91765779766385
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+3
   8
 0
  10
-302.3318087401493
+213.81743792198745
  20
-112.50000000000001
+135.50000000000023
  30
 0.0
  11
-302.3318087401493
+266.3318087401492
  21
-124.50000000000001
+205.50000000000017
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-302.3318087401493
+266.3318087401491
  20
-124.50000000000001
+135.5000000000001
  30
 0.0
  11
-298.3318087401493
+266.33180874014926
  21
-124.50000000000001
+205.50000000000017
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+3
   8
 0
  10
-298.3318087401493
+213.81743792198748
  20
-124.50000000000001
+135.50000000000023
  30
 0.0
  11
-298.3318087401493
+266.3318087401491
  21
-112.50000000000001
+135.5000000000001
  31
 0.0
   0
@@ -3921,15 +4129,915 @@ LINE
   8
 0
  10
-310.33180874014937
+213.81743792198745
  20
-114.00000000000001
+127.99794702597715
+ 30
+0.0
+ 11
+213.81743792198748
+ 21
+135.50000000000023
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+266.3318087401491
+ 20
+127.99794702597704
+ 30
+0.0
+ 11
+213.81743792198745
+ 21
+127.99794702597715
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+266.3318087401491
+ 20
+135.5000000000001
+ 30
+0.0
+ 11
+266.3318087401491
+ 21
+127.99794702597704
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+474.84617955831106
+ 20
+373.0020529740231
+ 30
+0.0
+ 11
+474.84617955831106
+ 21
+365.50000000000006
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+422.3318087401495
+ 20
+373.00205297402323
+ 30
+0.0
+ 11
+474.84617955831106
+ 21
+373.0020529740231
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+422.3318087401495
+ 20
+365.5000000000001
+ 30
+0.0
+ 11
+422.3318087401495
+ 21
+373.00205297402323
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+288.76362692196756
+ 20
+143.25
+ 30
+0.0
+ 11
+277.1727178310585
+ 21
+143.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+277.1727178310585
+ 20
+143.25
+ 30
+0.0
+ 11
+277.1727178310585
+ 21
+142.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+277.1727178310585
+ 20
+142.75000000000003
+ 30
+0.0
+ 11
+288.76362692196756
+ 21
+142.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+288.76362692196756
+ 20
+142.75000000000003
+ 30
+0.0
+ 11
+288.76362692196756
+ 21
+143.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+316.49089964924025
+ 20
+143.25
+ 30
+0.0
+ 11
+304.8999905583311
+ 21
+143.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+304.8999905583311
+ 20
+143.25
+ 30
+0.0
+ 11
+304.8999905583311
+ 21
+142.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+304.8999905583311
+ 20
+142.75000000000003
+ 30
+0.0
+ 11
+316.49089964924025
+ 21
+142.75000000000003
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+316.49089964924025
+ 20
+142.75000000000003
+ 30
+0.0
+ 11
+316.49089964924025
+ 21
+143.25
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+343.5818087401493
+ 20
+124.41666666666669
+ 30
+0.0
+ 11
+343.5818087401493
+ 21
+112.58333333333334
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+343.5818087401493
+ 20
+112.58333333333334
+ 30
+0.0
+ 11
+344.08180874014937
+ 21
+112.58333333333334
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+344.08180874014937
+ 20
+112.58333333333334
+ 30
+0.0
+ 11
+344.08180874014937
+ 21
+124.41666666666669
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+344.08180874014937
+ 20
+124.41666666666669
+ 30
+0.0
+ 11
+343.5818087401493
+ 21
+124.41666666666669
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+343.3318087401493
+ 20
+16.750000000000004
+ 30
+0.0
+ 11
+345.83180874014937
+ 21
+16.750000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+345.83180874014937
+ 20
+16.750000000000004
+ 30
+0.0
+ 11
+343.3318087401493
+ 21
+19.250000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+343.3318087401493
+ 20
+19.250000000000004
+ 30
+0.0
+ 11
+335.33180874014937
+ 21
+19.250000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+335.33180874014937
+ 20
+19.250000000000004
+ 30
+0.0
+ 11
+332.83180874014937
+ 21
+16.750000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+332.83180874014937
+ 20
+16.750000000000004
+ 30
+0.0
+ 11
+335.33180874014937
+ 21
+16.750000000000004
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+308.33180874014937
+ 20
+112.50000000000001
+ 30
+0.0
+ 11
+312.33180874014937
+ 21
+112.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+312.33180874014937
+ 20
+112.50000000000001
+ 30
+0.0
+ 11
+312.33180874014937
+ 21
+124.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+312.33180874014937
+ 20
+124.50000000000001
+ 30
+0.0
+ 11
+308.33180874014937
+ 21
+124.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+308.33180874014937
+ 20
+124.50000000000001
+ 30
+0.0
+ 11
+308.33180874014937
+ 21
+112.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+320.3318087401493
+ 20
+114.00000000000001
+ 30
+0.0
+ 11
+324.33180874014937
+ 21
+114.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+324.33180874014937
+ 20
+114.00000000000001
+ 30
+0.0
+ 11
+324.33180874014937
+ 21
+123.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+324.33180874014937
+ 20
+123.00000000000001
+ 30
+0.0
+ 11
+320.3318087401493
+ 21
+123.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+320.3318087401493
+ 20
+123.00000000000001
+ 30
+0.0
+ 11
+320.3318087401493
+ 21
+114.00000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+283.8318087401493
+ 20
+112.50000000000001
+ 30
+0.0
+ 11
+306.8318087401493
+ 21
+112.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+306.8318087401493
+ 20
+112.50000000000001
+ 30
+0.0
+ 11
+306.8318087401493
+ 21
+124.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+306.8318087401493
+ 20
+124.50000000000001
+ 30
+0.0
+ 11
+283.8318087401493
+ 21
+124.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+283.8318087401493
+ 20
+124.50000000000001
+ 30
+0.0
+ 11
+283.8318087401493
+ 21
+112.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+278.33180874014937
+ 20
+112.50000000000001
+ 30
+0.0
+ 11
+282.33180874014937
+ 21
+112.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+282.33180874014937
+ 20
+112.50000000000001
+ 30
+0.0
+ 11
+282.33180874014937
+ 21
+124.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+282.33180874014937
+ 20
+124.50000000000001
+ 30
+0.0
+ 11
+278.33180874014937
+ 21
+124.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+278.33180874014937
+ 20
+124.50000000000001
+ 30
+0.0
+ 11
+278.33180874014937
+ 21
+112.50000000000001
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+255.83180874014934
+ 20
+112.83333333333336
+ 30
+0.0
+ 11
+260.83180874014937
+ 21
+112.83333333333336
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+260.83180874014937
+ 20
+112.83333333333336
+ 30
+0.0
+ 11
+260.83180874014937
+ 21
+124.16666666666669
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+260.83180874014937
+ 20
+124.16666666666669
+ 30
+0.0
+ 11
+255.83180874014934
+ 21
+124.16666666666669
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+379.3318087401493
+ 20
+80.86137800081471
+ 30
+0.0
+ 11
+390.33180874014937
+ 21
+80.86137800081471
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+390.33180874014937
+ 20
+80.86137800081471
+ 30
+0.0
+ 11
+390.33180874014937
+ 21
+93.86137800081471
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+390.33180874014937
+ 20
+93.86137800081471
+ 30
+0.0
+ 11
+379.3318087401493
+ 21
+93.86137800081471
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+379.3318087401493
+ 20
+93.86137800081471
+ 30
+0.0
+ 11
+379.3318087401493
+ 21
+80.86137800081471
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+410.83180874014937
+ 20
+82.36137800081471
+ 30
+0.0
+ 11
+416.83180874014937
+ 21
+82.36137800081471
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+416.83180874014937
+ 20
+82.36137800081471
+ 30
+0.0
+ 11
+416.83180874014937
+ 21
+92.36137800081471
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+416.83180874014937
+ 20
+92.36137800081471
+ 30
+0.0
+ 11
+410.83180874014937
+ 21
+92.36137800081471
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+410.83180874014937
+ 20
+92.36137800081471
+ 30
+0.0
+ 11
+410.83180874014937
+ 21
+82.36137800081471
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+411.24089964924025
+ 20
+31.722756001629396
  30
 0.0
  11
-314.33180874014937
+411.24089964924025
  21
-114.00000000000001
+36.7227560016294
  31
 0.0
   0
@@ -3939,15 +5047,15 @@ LINE
   8
 0
  10
-314.33180874014937
+411.24089964924025
  20
-114.00000000000001
+36.7227560016294
  30
 0.0
  11
-314.33180874014937
+400.1499905583311
  21
-123.00000000000001
+36.7227560016294
  31
 0.0
   0
@@ -3957,15 +5065,15 @@ LINE
   8
 0
  10
-314.33180874014937
+400.1499905583311
  20
-123.00000000000001
+36.7227560016294
  30
 0.0
  11
-310.33180874014937
+400.1499905583311
  21
-123.00000000000001
+31.722756001629396
  31
 0.0
   0
@@ -3975,15 +5083,15 @@ LINE
   8
 0
  10
-310.33180874014937
+383.51362692196756
  20
-123.00000000000001
+31.722756001629396
  30
 0.0
  11
-310.33180874014937
+383.51362692196756
  21
-114.00000000000001
+36.7227560016294
  31
 0.0
   0
@@ -3993,15 +5101,15 @@ LINE
   8
 0
  10
-273.83180874014937
+383.51362692196756
  20
-112.50000000000001
+36.7227560016294
  30
 0.0
  11
-296.83180874014937
+372.4227178310585
  21
-112.50000000000001
+36.7227560016294
  31
 0.0
   0
@@ -4011,15 +5119,15 @@ LINE
   8
 0
  10
-296.83180874014937
+372.4227178310585
  20
-112.50000000000001
+36.7227560016294
  30
 0.0
  11
-296.83180874014937
+372.4227178310585
  21
-124.50000000000001
+31.722756001629396
  31
 0.0
   0
@@ -4029,15 +5137,15 @@ LINE
   8
 0
  10
-296.83180874014937
+429.8318087401493
  20
-124.50000000000001
+91.36137800081471
  30
 0.0
  11
-273.83180874014937
+424.83180874014937
  21
-124.50000000000001
+91.36137800081471
  31
 0.0
   0
@@ -4047,15 +5155,15 @@ LINE
   8
 0
  10
-273.83180874014937
+424.83180874014937
  20
-124.50000000000001
+91.36137800081471
  30
 0.0
  11
-273.83180874014937
+424.83180874014937
  21
-112.50000000000001
+83.36137800081471
  31
 0.0
   0
@@ -4065,15 +5173,15 @@ LINE
   8
 0
  10
-268.33180874014937
+424.83180874014937
  20
-112.50000000000001
+83.36137800081471
  30
 0.0
  11
-272.33180874014937
+429.8318087401493
  21
-112.50000000000001
+83.36137800081471
  31
 0.0
   0
@@ -4083,15 +5191,15 @@ LINE
   8
 0
  10
-272.33180874014937
+353.83180874014937
  20
-112.50000000000001
+83.36137800081471
  30
 0.0
  11
-272.33180874014937
+358.83180874014937
  21
-124.50000000000001
+83.36137800081471
  31
 0.0
   0
@@ -4101,15 +5209,15 @@ LINE
   8
 0
  10
-272.33180874014937
+358.83180874014937
  20
-124.50000000000001
+83.36137800081471
  30
 0.0
  11
-268.33180874014937
+358.83180874014937
  21
-124.50000000000001
+91.36137800081471
  31
 0.0
   0
@@ -4119,15 +5227,15 @@ LINE
   8
 0
  10
-268.33180874014937
+358.83180874014937
  20
-124.50000000000001
+91.36137800081471
  30
 0.0
  11
-268.33180874014937
+353.83180874014937
  21
-112.50000000000001
+91.36137800081471
  31
 0.0
   0
@@ -4137,15 +5245,15 @@ LINE
   8
 0
  10
-245.83180874014934
+465.29811213682694
  20
-112.83333333333336
+129.8734602694827
  30
 0.0
  11
-250.83180874014934
+469.0491386238386
  21
-112.83333333333336
+129.8734602694827
  31
 0.0
   0
@@ -4155,15 +5263,15 @@ LINE
   8
 0
  10
-250.83180874014934
+469.0491386238386
  20
-112.83333333333336
+129.8734602694827
  30
 0.0
  11
-250.83180874014934
+465.29811213682694
  21
-124.16666666666669
+133.62448675649426
  31
 0.0
   0
@@ -4173,15 +5281,15 @@ LINE
   8
 0
  10
-250.83180874014934
+465.29811213682694
  20
-124.16666666666669
+133.62448675649426
  30
 0.0
  11
-245.83180874014934
+455.7500447153431
  21
-124.16666666666669
+133.62448675649426
  31
 0.0
   0
@@ -4191,15 +5299,15 @@ LINE
   8
 0
  10
-369.33180874014937
+455.7500447153431
  20
-80.86137800081471
+133.62448675649426
  30
 0.0
  11
-380.33180874014937
+451.9990182283316
  21
-80.86137800081471
+129.8734602694827
  31
 0.0
   0
@@ -4209,15 +5317,15 @@ LINE
   8
 0
  10
-380.33180874014937
+451.9990182283316
  20
-80.86137800081471
+129.8734602694827
  30
 0.0
  11
-380.33180874014937
+455.7500447153431
  21
-93.86137800081471
+129.8734602694827
  31
 0.0
   0
@@ -4227,15 +5335,15 @@ LINE
   8
 0
  10
-380.33180874014937
+441.4279435831172
  20
-93.86137800081471
+129.8734602694827
  30
 0.0
  11
-369.33180874014937
+445.17897007012874
  21
-93.86137800081471
+129.8734602694827
  31
 0.0
   0
@@ -4245,15 +5353,15 @@ LINE
   8
 0
  10
-369.33180874014937
+445.17897007012874
  20
-93.86137800081471
+129.8734602694827
  30
 0.0
  11
-369.33180874014937
+441.4279435831172
  21
-80.86137800081471
+133.62448675649426
  31
 0.0
   0
@@ -4263,15 +5371,15 @@ LINE
   8
 0
  10
-400.83180874014937
+441.4279435831172
  20
-82.36137800081471
+133.62448675649426
  30
 0.0
  11
-406.8318087401493
+431.8798761616332
  21
-82.36137800081471
+133.62448675649426
  31
 0.0
   0
@@ -4281,15 +5389,15 @@ LINE
   8
 0
  10
-406.8318087401493
+431.8798761616332
  20
-82.36137800081471
+133.62448675649426
  30
 0.0
  11
-406.8318087401493
+428.1288496746218
  21
-92.36137800081471
+129.8734602694827
  31
 0.0
   0
@@ -4299,15 +5407,15 @@ LINE
   8
 0
  10
-406.8318087401493
+428.1288496746218
  20
-92.36137800081471
+129.8734602694827
  30
 0.0
  11
-400.83180874014937
+431.8798761616332
  21
-92.36137800081471
+129.8734602694827
  31
 0.0
   0
@@ -4317,15 +5425,15 @@ LINE
   8
 0
  10
-400.83180874014937
+489.307083733857
  20
-92.36137800081471
+206.13531866922696
  30
 0.0
  11
-400.83180874014937
+486.4961595235763
  21
-82.36137800081471
+196.48843502782523
  31
 0.0
   0
@@ -4335,15 +5443,15 @@ LINE
   8
 0
  10
-401.24089964924025
+486.4961595235763
  20
-31.722756001629396
+196.48843502782523
  30
 0.0
  11
-401.24089964924025
+486.9761962926755
  21
-36.7227560016294
+196.3485611549514
  31
 0.0
   0
@@ -4353,15 +5461,15 @@ LINE
   8
 0
  10
-401.24089964924025
+486.9761962926755
  20
-36.7227560016294
+196.3485611549514
  30
 0.0
  11
-390.1499905583312
+489.78712050295627
  21
-36.7227560016294
+205.99544479635315
  31
 0.0
   0
@@ -4371,15 +5479,15 @@ LINE
   8
 0
  10
-390.1499905583312
+489.78712050295627
  20
-36.7227560016294
+205.99544479635315
  30
 0.0
  11
-390.1499905583312
+489.307083733857
  21
-31.722756001629396
+206.13531866922696
  31
 0.0
   0
@@ -4389,15 +5497,15 @@ LINE
   8
 0
  10
-373.51362692196756
+495.9847095773741
  20
-31.722756001629396
+229.05243584998314
  30
 0.0
  11
-373.51362692196756
+493.1737853670934
  21
-36.7227560016294
+219.40555220858138
  31
 0.0
   0
@@ -4407,15 +5515,15 @@ LINE
   8
 0
  10
-373.51362692196756
+493.1737853670934
  20
-36.7227560016294
+219.40555220858138
  30
 0.0
  11
-362.4227178310585
+493.6538221361927
  21
-36.7227560016294
+219.26567833570755
  31
 0.0
   0
@@ -4425,15 +5533,15 @@ LINE
   8
 0
  10
-362.4227178310585
+493.6538221361927
  20
-36.7227560016294
+219.26567833570755
  30
 0.0
  11
-362.4227178310585
+496.4647463464733
  21
-31.722756001629396
+228.9125619771093
  31
 0.0
   0
@@ -4443,15 +5551,15 @@ LINE
   8
 0
  10
-419.83180874014937
+496.4647463464733
  20
-91.36137800081471
+228.9125619771093
  30
 0.0
  11
-414.83180874014937
+495.9847095773741
  21
-91.36137800081471
+229.05243584998314
  31
 0.0
   0
@@ -4461,15 +5569,15 @@ LINE
   8
 0
  10
-414.83180874014937
+493.17378536709344
  20
-91.36137800081471
+281.5944477914187
  30
 0.0
  11
-414.83180874014937
+495.9847095773741
  21
-83.36137800081471
+271.94756415001694
  31
 0.0
   0
@@ -4479,15 +5587,15 @@ LINE
   8
 0
  10
-414.83180874014937
+495.9847095773741
  20
-83.36137800081471
+271.94756415001694
  30
 0.0
  11
-419.83180874014937
+496.4647463464733
  21
-83.36137800081471
+272.0874380228908
  31
 0.0
   0
@@ -4497,15 +5605,15 @@ LINE
   8
 0
  10
-343.8318087401493
+496.4647463464733
  20
-83.36137800081471
+272.0874380228908
  30
 0.0
  11
-348.83180874014937
+493.6538221361927
  21
-83.36137800081471
+281.7343216642925
  31
 0.0
   0
@@ -4515,15 +5623,15 @@ LINE
   8
 0
  10
-348.83180874014937
+493.6538221361927
  20
-83.36137800081471
+281.7343216642925
  30
 0.0
  11
-348.83180874014937
+493.17378536709344
  21
-91.36137800081471
+281.5944477914187
  31
 0.0
   0
@@ -4533,15 +5641,15 @@ LINE
   8
 0
  10
-348.83180874014937
+486.49615952357635
  20
-91.36137800081471
+304.5115649721748
  30
 0.0
  11
-343.8318087401493
+489.30708373385704
  21
-91.36137800081471
+294.86468133077307
  31
 0.0
   0
@@ -4551,15 +5659,15 @@ LINE
   8
 0
  10
-447.3413892855904
+489.30708373385704
  20
-122.37140729545962
+294.86468133077307
  30
 0.0
  11
-447.3413892855904
+489.78712050295627
  21
-131.12380243181985
+295.0045552036469
  31
 0.0
   0
@@ -4569,15 +5677,15 @@ LINE
   8
 0
  10
-447.3413892855904
+489.78712050295627
  20
-131.12380243181985
+295.0045552036469
  30
 0.0
  11
-429.83659901286984
+486.97619629267564
  21
-131.12380243181988
+304.6514388450487
  31
 0.0
   0
@@ -4587,15 +5695,15 @@ LINE
   8
 0
  10
-429.83659901286984
+486.97619629267564
  20
-131.12380243181988
+304.6514388450487
  30
 0.0
  11
-429.83659901286984
+486.49615952357635
  21
-122.37140729545962
+304.5115649721748
  31
 0.0
   0
@@ -4605,15 +5713,15 @@ LINE
   8
 0
  10
-476.5563117536783
+304.8999905583312
  20
-223.5120791976936
+357.7500000000002
  30
 0.0
  11
-471.5195122622253
+316.4908996492403
  21
-206.22615649603978
+357.75000000000017
  31
 0.0
   0
@@ -4623,15 +5731,15 @@ LINE
   8
 0
  10
-471.5195122622253
+316.4908996492403
  20
-206.22615649603978
+357.75000000000017
  30
 0.0
  11
-471.99954903132453
+316.4908996492403
  21
-206.08628262316594
+358.25000000000017
  31
 0.0
   0
@@ -4641,15 +5749,15 @@ LINE
   8
 0
  10
-471.99954903132453
+316.4908996492403
  20
-206.08628262316594
+358.25000000000017
  30
 0.0
  11
-477.0363485227776
+304.8999905583312
  21
-223.37220532481973
+358.25000000000017
  31
 0.0
   0
@@ -4659,15 +5767,15 @@ LINE
   8
 0
  10
-477.0363485227776
+304.8999905583312
  20
-223.37220532481973
+358.25000000000017
  30
 0.0
  11
-476.5563117536783
+304.8999905583312
  21
-223.5120791976936
+357.7500000000002
  31
 0.0
   0
@@ -4677,15 +5785,15 @@ LINE
   8
 0
  10
-471.5195122622253
+277.1727178310585
  20
-294.77384350396034
+357.7500000000002
  30
 0.0
  11
-476.55631175367836
+288.7636269219676
  21
-277.4879208023065
+357.7500000000002
  31
 0.0
   0
@@ -4695,15 +5803,15 @@ LINE
   8
 0
  10
-476.55631175367836
+288.7636269219676
  20
-277.4879208023065
+357.7500000000002
  30
 0.0
  11
-477.0363485227776
+288.7636269219676
  21
-277.6277946751803
+358.25000000000017
  31
 0.0
   0
@@ -4713,15 +5821,15 @@ LINE
   8
 0
  10
-477.0363485227776
+288.7636269219676
  20
-277.6277946751803
+358.25000000000017
  30
 0.0
  11
-471.9995490313246
+277.1727178310585
  21
-294.91371737683414
+358.25000000000017
  31
 0.0
   0
@@ -4731,15 +5839,15 @@ LINE
   8
 0
  10
-471.9995490313246
+277.1727178310585
  20
-294.91371737683414
+358.25000000000017
  30
 0.0
  11
-471.5195122622253
+277.1727178310585
  21
-294.77384350396034
+357.7500000000002
  31
 0.0
   0
@@ -4749,15 +5857,15 @@ LINE
   8
 0
  10
-221.32222819470834
+399.89999055833124
  20
-378.6285927045407
+357.75000000000017
  30
 0.0
  11
-221.32222819470834
+411.49089964924036
  21
-369.87619756818043
+357.7500000000001
  31
 0.0
   0
@@ -4767,15 +5875,15 @@ LINE
   8
 0
  10
-221.32222819470834
+411.49089964924036
  20
-369.87619756818043
+357.7500000000001
  30
 0.0
  11
-238.82701846742887
+411.49089964924036
  21
-369.87619756818043
+358.2500000000001
  31
 0.0
   0
@@ -4785,15 +5893,15 @@ LINE
   8
 0
  10
-238.82701846742887
+411.49089964924036
  20
-369.87619756818043
+358.2500000000001
  30
 0.0
  11
-238.82701846742887
+399.89999055833124
  21
-378.6285927045407
+358.25000000000017
  31
 0.0
   0
@@ -4803,15 +5911,15 @@ LINE
   8
 0
  10
-192.10730572662035
+399.89999055833124
  20
-277.4879208023067
+358.25000000000017
  30
 0.0
  11
-197.1441052180734
+399.89999055833124
  21
-294.7738435039605
+357.75000000000017
  31
 0.0
   0
@@ -4821,15 +5929,15 @@ LINE
   8
 0
  10
-197.1441052180734
+372.17271783105855
  20
-294.7738435039605
+357.75000000000017
  30
 0.0
  11
-196.66406844897412
+383.7636269219676
  21
-294.9137173768343
+357.75000000000017
  31
 0.0
   0
@@ -4839,15 +5947,15 @@ LINE
   8
 0
  10
-196.66406844897412
+383.7636269219676
  20
-294.9137173768343
+357.75000000000017
  30
 0.0
  11
-191.62726895752107
+383.7636269219676
  21
-277.62779467518055
+358.25000000000017
  31
 0.0
   0
@@ -4857,15 +5965,15 @@ LINE
   8
 0
  10
-191.62726895752107
+383.7636269219676
  20
-277.62779467518055
+358.25000000000017
  30
 0.0
  11
-192.10730572662035
+372.17271783105855
  21
-277.4879208023067
+358.25000000000017
  31
 0.0
   0
@@ -4875,15 +5983,15 @@ LINE
   8
 0
  10
-197.14410521807324
+372.17271783105855
  20
-206.22615649604003
+358.25000000000017
  30
 0.0
  11
-192.10730572662027
+372.17271783105855
  21
-223.51207919769385
+357.75000000000017
  31
 0.0
   0
@@ -4893,15 +6001,15 @@ LINE
   8
 0
  10
-192.10730572662027
+343.5818087401495
  20
-223.51207919769385
+388.4166666666668
  30
 0.0
  11
-191.62726895752098
+343.5818087401495
  21
-223.37220532482002
+376.5833333333335
  31
 0.0
   0
@@ -4911,15 +6019,15 @@ LINE
   8
 0
  10
-191.62726895752098
+343.5818087401495
  20
-223.37220532482002
+376.5833333333335
  30
 0.0
  11
-196.66406844897398
+344.0818087401495
  21
-206.08628262316617
+376.5833333333335
  31
 0.0
   0
@@ -4929,15 +6037,15 @@ LINE
   8
 0
  10
-196.66406844897398
+344.0818087401495
  20
-206.08628262316617
+376.5833333333335
  30
 0.0
  11
-197.14410521807324
+344.0818087401495
  21
-206.22615649604003
+388.4166666666668
  31
 0.0
   0
@@ -4947,15 +6055,15 @@ LINE
   8
 0
  10
-238.8270184674285
+344.0818087401495
  20
-122.37140729545976
+388.4166666666668
  30
 0.0
  11
-238.82701846742853
+343.5818087401495
  21
-131.12380243182005
+388.4166666666668
  31
 0.0
   0
@@ -4965,15 +6073,15 @@ LINE
   8
 0
  10
-238.82701846742853
+335.08180874014954
  20
-131.12380243182005
+476.50000000000017
  30
 0.0
  11
-221.32222819470798
+343.58180874014954
  21
-131.12380243182008
+476.50000000000017
  31
 0.0
   0
@@ -4983,15 +6091,15 @@ LINE
   8
 0
  10
-221.32222819470798
+343.58180874014954
  20
-131.12380243182008
+476.50000000000017
  30
 0.0
  11
-221.32222819470798
+343.58180874014954
  21
-122.3714072954598
+477.00000000000017
  31
 0.0
   0
@@ -5001,15 +6109,15 @@ LINE
   8
 0
  10
-429.83659901286995
+343.58180874014954
  20
-378.6285927045405
+477.00000000000017
  30
 0.0
  11
-429.83659901286995
+335.08180874014954
  21
-369.87619756818015
+477.00000000000017
  31
 0.0
   0
@@ -5019,15 +6127,15 @@ LINE
   8
 0
  10
-429.83659901286995
+335.08180874014954
  20
-369.87619756818015
+477.00000000000017
  30
 0.0
  11
-447.34138928559054
+335.08180874014954
  21
-369.87619756818015
+476.50000000000017
  31
 0.0
   0
@@ -5037,15 +6145,15 @@ LINE
   8
 0
  10
-447.34138928559054
+308.3318087401494
  20
-369.87619756818015
+376.50000000000017
  30
 0.0
  11
-447.34138928559054
+312.3318087401494
  21
-378.6285927045405
+376.50000000000017
  31
 0.0
   0
@@ -5055,35 +6163,33 @@ LINE
   8
 0
  10
-578.3550614105758
+312.3318087401494
  20
-123.50000000000001
+376.50000000000017
  30
 0.0
  11
-542.3550614105758
+312.3318087401495
  21
-123.50000000000001
+388.50000000000017
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-3
+5
   8
 0
  10
-578.3550614105758
+312.3318087401495
  20
-123.50000000000001
+388.50000000000017
  30
 0.0
  11
-578.3550614105758
+308.3318087401495
  21
-147.5
+388.50000000000017
  31
 0.0
   0
@@ -5093,15 +6199,15 @@ LINE
   8
 0
  10
-542.3550614105758
+308.3318087401495
  20
-147.5
+388.50000000000017
  30
 0.0
  11
-578.3550614105758
+308.3318087401494
  21
-147.5
+376.50000000000017
  31
 0.0
   0
@@ -5111,15 +6217,15 @@ LINE
   8
 0
  10
-578.3550614105758
+320.33180874014937
  20
-147.5
+378.00000000000017
  30
 0.0
  11
-623.3550614105758
+324.3318087401494
  21
-147.5
+378.00000000000017
  31
 0.0
   0
@@ -5129,15 +6235,15 @@ LINE
   8
 0
  10
-623.3550614105758
+324.3318087401494
  20
-123.50000000000001
+378.00000000000017
  30
 0.0
  11
-578.3550614105758
+324.3318087401494
  21
-123.50000000000001
+387.00000000000017
  31
 0.0
   0
@@ -5147,15 +6253,15 @@ LINE
   8
 0
  10
-623.3550614105758
+324.3318087401494
  20
-147.5
+387.00000000000017
  30
 0.0
  11
-623.3550614105758
+320.3318087401494
  21
-123.50000000000001
+387.00000000000017
  31
 0.0
   0
@@ -5165,35 +6271,33 @@ LINE
   8
 0
  10
-542.3550614105758
+320.3318087401494
  20
-123.50000000000001
+387.00000000000017
  30
 0.0
  11
-508.35506141057573
+320.33180874014937
  21
-123.50000000000001
+378.00000000000017
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-508.35506141057573
+283.83180874014937
  20
-147.5
+376.50000000000017
  30
 0.0
  11
-542.3550614105758
+306.83180874014937
  21
-147.5
+376.50000000000017
  31
 0.0
   0
@@ -5203,15 +6307,15 @@ LINE
   8
 0
  10
-508.35506141057573
+306.83180874014937
  20
-113.50000000000001
+376.50000000000017
  30
 0.0
  11
-508.35506141057573
+306.8318087401494
  21
-52.50000000000001
+388.50000000000017
  31
 0.0
   0
@@ -5221,15 +6325,15 @@ LINE
   8
 0
  10
-508.35506141057573
+306.8318087401494
  20
-123.50000000000001
+388.50000000000017
  30
 0.0
  11
-508.35506141057573
+283.83180874014937
  21
-113.50000000000001
+388.50000000000017
  31
 0.0
   0
@@ -5239,15 +6343,15 @@ LINE
   8
 0
  10
-508.35506141057573
+283.83180874014937
  20
-221.50000000000003
+388.50000000000017
  30
 0.0
  11
-508.35506141057573
+283.83180874014937
  21
-147.5
+376.50000000000017
  31
 0.0
   0
@@ -5257,15 +6361,15 @@ LINE
   8
 0
  10
-508.35506141057573
+278.3318087401494
  20
-221.50000000000003
+376.50000000000017
  30
 0.0
  11
-508.35506141057573
+282.3318087401494
  21
-221.50000000000003
+376.50000000000017
  31
 0.0
   0
@@ -5275,15 +6379,15 @@ LINE
   8
 0
  10
-508.35506141057573
+282.3318087401494
  20
-147.5
+376.50000000000017
  30
 0.0
  11
-508.35506141057573
+282.3318087401494
  21
-221.50000000000003
+388.50000000000017
  31
 0.0
   0
@@ -5293,15 +6397,15 @@ LINE
   8
 0
  10
-508.35506141057573
+282.3318087401494
  20
-123.50000000000001
+388.50000000000017
  30
 0.0
  11
-508.35506141057573
+278.3318087401494
  21
-147.5
+388.50000000000017
  31
 0.0
   0
@@ -5311,15 +6415,15 @@ LINE
   8
 0
  10
-508.35506141057573
+278.3318087401494
  20
-113.50000000000001
+388.50000000000017
  30
 0.0
  11
-508.35506141057573
+278.3318087401494
  21
-123.50000000000001
+376.50000000000017
  31
 0.0
   0
@@ -5329,15 +6433,15 @@ LINE
   8
 0
  10
-508.35506141057573
+255.8318087401494
  20
-52.50000000000001
+376.8333333333335
  30
 0.0
  11
-508.35506141057573
+260.8318087401494
  21
-113.50000000000001
+376.8333333333335
  31
 0.0
   0
@@ -5347,15 +6451,15 @@ LINE
   8
 0
  10
-508.35506141057573
+260.8318087401494
  20
-52.50000000000001
+376.8333333333335
  30
 0.0
  11
-508.35506141057573
+260.8318087401494
  21
-52.50000000000001
+388.16666666666686
  31
 0.0
   0
@@ -5365,15 +6469,15 @@ LINE
   8
 0
  10
-508.35506141057573
+260.8318087401494
  20
-147.5
+388.16666666666686
  30
 0.0
  11
-508.35506141057573
+255.8318087401494
  21
-167.50000000000003
+388.16666666666686
  31
 0.0
   0
@@ -5383,35 +6487,33 @@ LINE
   8
 0
  10
-542.3550614105758
+223.36550534347174
  20
-167.50000000000003
+371.12653973051766
  30
 0.0
  11
-542.3550614105758
+219.61447885646018
  21
-147.5
+371.12653973051766
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-508.35506141057573
+219.61447885646018
  20
-167.50000000000003
+371.12653973051766
  30
 0.0
  11
-542.3550614105758
+223.3655053434717
  21
-167.50000000000003
+367.3755132435061
  31
 0.0
   0
@@ -5421,15 +6523,15 @@ LINE
   8
 0
  10
-508.35506141057573
+223.3655053434717
  20
-167.50000000000003
+367.3755132435061
  30
 0.0
  11
-508.35506141057573
+232.91357276495566
  21
-191.50000000000003
+367.3755132435061
  31
 0.0
   0
@@ -5439,35 +6541,33 @@ LINE
   8
 0
  10
-542.3550614105758
+232.91357276495566
  20
-191.50000000000003
+367.3755132435061
  30
 0.0
  11
-542.3550614105758
+236.66459925196722
  21
-167.50000000000003
+371.1265397305176
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-508.35506141057573
+236.66459925196722
  20
-191.50000000000003
+371.1265397305176
  30
 0.0
  11
-542.3550614105758
+232.91357276495566
  21
-191.50000000000003
+371.1265397305176
  31
 0.0
   0
@@ -5477,15 +6577,15 @@ LINE
   8
 0
  10
-508.35506141057573
+247.23567389718156
  20
-191.50000000000003
+371.1265397305176
  30
 0.0
  11
-508.35506141057573
+243.48464741017003
  21
-211.5
+371.1265397305176
  31
 0.0
   0
@@ -5495,35 +6595,33 @@ LINE
   8
 0
  10
-542.3550614105758
+243.48464741017003
  20
-211.5
+371.1265397305176
  30
 0.0
  11
-542.3550614105758
+247.23567389718156
  21
-191.50000000000003
+367.3755132435061
  31
 0.0
   0
 LINE
-  6
-DOTTED
  62
-1
+5
   8
 0
  10
-542.3550614105758
+247.23567389718156
  20
-211.5
+367.3755132435061
  30
 0.0
  11
-508.35506141057573
+256.7837413186655
  21
-211.5
+367.3755132435061
  31
 0.0
   0
@@ -5533,15 +6631,15 @@ LINE
   8
 0
  10
-542.3550614105758
+256.7837413186655
  20
-221.50000000000003
+367.3755132435061
  30
 0.0
  11
-542.3550614105758
+260.534767805677
  21
-211.5
+371.1265397305176
  31
 0.0
   0
@@ -5551,15 +6649,15 @@ LINE
   8
 0
  10
-508.35506141057573
+260.534767805677
  20
-221.50000000000003
+371.1265397305176
  30
 0.0
  11
-542.3550614105758
+256.78374131866553
  21
-221.50000000000003
+371.1265397305176
  31
 0.0
   0
@@ -5569,15 +6667,15 @@ LINE
   8
 0
  10
-508.35506141057573
+199.35653374644173
  20
-211.5
+294.86468133077335
  30
 0.0
  11
-508.35506141057573
+202.16745795672242
  21
-221.50000000000003
+304.5115649721751
  31
 0.0
   0
@@ -5587,15 +6685,15 @@ LINE
   8
 0
  10
-619.3550614105757
+202.16745795672242
  20
-139.75000000000003
+304.5115649721751
  30
 0.0
  11
-619.3550614105757
+201.6874211876231
  21
-131.25
+304.651438845049
  31
 0.0
   0
@@ -5605,15 +6703,15 @@ LINE
   8
 0
  10
-619.3550614105757
+201.6874211876231
  20
-131.25
+304.651438845049
  30
 0.0
  11
-619.8550614105757
+198.87649697734244
  21
-131.25
+295.0045552036471
  31
 0.0
   0
@@ -5623,15 +6721,15 @@ LINE
   8
 0
  10
-619.8550614105757
+198.87649697734244
  20
-131.25
+295.0045552036471
  30
 0.0
  11
-619.8550614105757
+199.35653374644173
  21
-139.75000000000003
+294.86468133077335
  31
 0.0
   0
@@ -5641,15 +6739,15 @@ LINE
   8
 0
  10
-619.8550614105757
+192.67890790292464
  20
-139.75000000000003
+271.9475641500171
  30
 0.0
  11
-619.3550614105757
+195.48983211320527
  21
-139.75000000000003
+281.5944477914189
  31
 0.0
   0
@@ -5659,15 +6757,15 @@ LINE
   8
 0
  10
-531.2717280772423
+195.48983211320527
  20
-131.25
+281.5944477914189
  30
 0.0
  11
-519.4383947439092
+195.009795344106
  21
-131.25
+281.7343216642927
  31
 0.0
   0
@@ -5677,15 +6775,15 @@ LINE
   8
 0
  10
-519.4383947439092
+195.009795344106
  20
-131.25
+281.7343216642927
  30
 0.0
  11
-519.4383947439092
+192.19887113382532
  21
-130.75000000000003
+272.087438022891
  31
 0.0
   0
@@ -5695,15 +6793,15 @@ LINE
   8
 0
  10
-519.4383947439092
+192.19887113382532
  20
-130.75000000000003
+272.087438022891
  30
 0.0
  11
-531.2717280772423
+192.67890790292464
  21
-130.75000000000003
+271.9475641500171
  31
 0.0
   0
@@ -5713,15 +6811,15 @@ LINE
   8
 0
  10
-531.2717280772423
+195.48983211320518
  20
-130.75000000000003
+219.40555220858164
  30
 0.0
  11
-531.2717280772423
+192.67890790292452
  21
-131.25
+229.0524358499834
  31
 0.0
   0
@@ -5731,15 +6829,15 @@ LINE
   8
 0
  10
-500.60506141057573
+192.67890790292452
  20
-74.93181818181819
+229.0524358499834
  30
 0.0
  11
-500.60506141057573
+192.19887113382526
  21
-63.3409090909091
+228.91256197710956
  31
 0.0
   0
@@ -5749,15 +6847,15 @@ LINE
   8
 0
  10
-500.60506141057573
+192.19887113382526
  20
-63.3409090909091
+228.91256197710956
  30
 0.0
  11
-501.10506141057573
+195.00979534410592
  21
-63.3409090909091
+219.2656783357078
  31
 0.0
   0
@@ -5767,15 +6865,15 @@ LINE
   8
 0
  10
-501.10506141057573
+195.00979534410592
  20
-63.3409090909091
+219.2656783357078
  30
 0.0
  11
-501.10506141057573
+195.48983211320518
  21
-74.93181818181819
+219.40555220858164
  31
 0.0
   0
@@ -5785,15 +6883,15 @@ LINE
   8
 0
  10
-501.10506141057573
+202.16745795672222
  20
-74.93181818181819
+196.48843502782546
  30
 0.0
  11
-500.60506141057573
+199.35653374644158
  21
-74.93181818181819
+206.13531866922722
  31
 0.0
   0
@@ -5803,15 +6901,15 @@ LINE
   8
 0
  10
-500.60506141057573
+199.35653374644158
  20
-102.65909090909092
+206.13531866922722
  30
 0.0
  11
-500.60506141057573
+198.8764969773423
  21
-91.06818181818183
+205.99544479635338
  31
 0.0
   0
@@ -5821,15 +6919,15 @@ LINE
   8
 0
  10
-500.60506141057573
+198.8764969773423
  20
-91.06818181818183
+205.99544479635338
  30
 0.0
  11
-501.10506141057573
+201.68742118762296
  21
-91.06818181818183
+196.34856115495162
  31
 0.0
   0
@@ -5839,15 +6937,15 @@ LINE
   8
 0
  10
-501.10506141057573
+201.68742118762296
  20
-91.06818181818183
+196.34856115495162
  30
 0.0
  11
-501.10506141057573
+202.16745795672222
  21
-102.65909090909092
+196.48843502782546
  31
 0.0
   0
@@ -5857,15 +6955,15 @@ LINE
   8
 0
  10
-501.10506141057573
+256.7837413186651
  20
-102.65909090909092
+129.87346026948285
  30
 0.0
  11
-500.60506141057573
+260.53476780567667
  21
-102.65909090909092
+129.87346026948285
  31
 0.0
   0
@@ -5875,15 +6973,15 @@ LINE
   8
 0
  10
-519.3550614105758
+260.53476780567667
  20
-166.50000000000003
+129.87346026948285
  30
 0.0
  11
-519.3550614105758
+256.78374131866514
  21
-162.50000000000003
+133.6244867564944
  31
 0.0
   0
@@ -5893,15 +6991,15 @@ LINE
   8
 0
  10
-519.3550614105758
+256.78374131866514
  20
-162.50000000000003
+133.6244867564944
  30
 0.0
  11
-531.3550614105757
+247.23567389718121
  21
-162.50000000000003
+133.6244867564944
  31
 0.0
   0
@@ -5911,15 +7009,15 @@ LINE
   8
 0
  10
-531.3550614105757
+247.23567389718121
  20
-162.50000000000003
+133.6244867564944
  30
 0.0
  11
-531.3550614105757
+243.48464741016966
  21
-166.50000000000003
+129.87346026948285
  31
 0.0
   0
@@ -5929,15 +7027,15 @@ LINE
   8
 0
  10
-531.3550614105757
+243.48464741016966
  20
-166.50000000000003
+129.87346026948285
  30
 0.0
  11
-519.3550614105758
+247.23567389718121
  21
-166.50000000000003
+129.87346026948285
  31
 0.0
   0
@@ -5947,15 +7045,15 @@ LINE
   8
 0
  10
-520.8550614105757
+232.91357276495532
  20
-154.5
+129.87346026948288
  30
 0.0
  11
-520.8550614105757
+236.66459925196685
  21
-150.5
+129.87346026948285
  31
 0.0
   0
@@ -5965,15 +7063,15 @@ LINE
   8
 0
  10
-520.8550614105757
+236.66459925196685
  20
-150.5
+129.87346026948285
  30
 0.0
  11
-529.8550614105758
+232.91357276495532
  21
-150.5
+133.62448675649443
  31
 0.0
   0
@@ -5983,15 +7081,15 @@ LINE
   8
 0
  10
-529.8550614105758
+232.91357276495532
  20
-150.5
+133.62448675649443
  30
 0.0
  11
-529.8550614105758
+223.36550534347137
  21
-154.5
+133.62448675649446
  31
 0.0
   0
@@ -6001,15 +7099,15 @@ LINE
   8
 0
  10
-529.8550614105758
+223.36550534347137
  20
-154.5
+133.62448675649446
  30
 0.0
  11
-520.8550614105757
+219.6144788564598
  21
-154.5
+129.8734602694829
  31
 0.0
   0
@@ -6019,15 +7117,15 @@ LINE
   8
 0
  10
-519.3550614105758
+219.6144788564598
  20
-191.0
+129.8734602694829
  30
 0.0
  11
-519.3550614105758
+223.36550534347137
  21
-168.0
+129.87346026948288
  31
 0.0
   0
@@ -6037,15 +7135,15 @@ LINE
   8
 0
  10
-519.3550614105758
+431.8798761616334
  20
-168.0
+371.12653973051744
  30
 0.0
  11
-531.3550614105757
+428.1288496746219
  21
-168.0
+371.12653973051744
  31
 0.0
   0
@@ -6055,15 +7153,15 @@ LINE
   8
 0
  10
-531.3550614105757
+428.1288496746219
  20
-168.0
+371.12653973051744
  30
 0.0
  11
-531.3550614105757
+431.8798761616334
  21
-191.0
+367.37551324350585
  31
 0.0
   0
@@ -6073,15 +7171,15 @@ LINE
   8
 0
  10
-531.3550614105757
+431.8798761616334
  20
-191.0
+367.37551324350585
  30
 0.0
  11
-519.3550614105758
+441.4279435831173
  21
-191.0
+367.37551324350585
  31
 0.0
   0
@@ -6091,15 +7189,15 @@ LINE
   8
 0
  10
-519.3550614105758
+441.4279435831173
  20
-196.50000000000003
+367.37551324350585
  30
 0.0
  11
-519.3550614105758
+445.17897007012886
  21
-192.50000000000003
+371.12653973051744
  31
 0.0
   0
@@ -6109,15 +7207,15 @@ LINE
   8
 0
  10
-519.3550614105758
+445.17897007012886
  20
-192.50000000000003
+371.12653973051744
  30
 0.0
  11
-531.3550614105757
+441.4279435831173
  21
-192.50000000000003
+371.12653973051744
  31
 0.0
   0
@@ -6127,15 +7225,15 @@ LINE
   8
 0
  10
-531.3550614105757
+455.7500447153432
  20
-192.50000000000003
+371.12653973051744
  30
 0.0
  11
-531.3550614105757
+451.9990182283317
  21
-196.50000000000003
+371.12653973051744
  31
 0.0
   0
@@ -6145,15 +7243,15 @@ LINE
   8
 0
  10
-531.3550614105757
+451.9990182283317
  20
-196.50000000000003
+371.12653973051744
  30
 0.0
  11
-519.3550614105758
+455.7500447153432
  21
-196.50000000000003
+367.37551324350585
  31
 0.0
   0
@@ -6163,15 +7261,15 @@ LINE
   8
 0
  10
-519.6883947439092
+455.7500447153432
  20
-219.00000000000003
+367.37551324350585
  30
 0.0
  11
-519.6883947439092
+465.2981121368271
  21
-214.0
+367.37551324350585
  31
 0.0
   0
@@ -6181,15 +7279,15 @@ LINE
   8
 0
  10
-519.6883947439092
+465.2981121368271
  20
-214.0
+367.37551324350585
  30
 0.0
  11
-531.0217280772423
+469.0491386238387
  21
-214.0
+371.1265397305174
  31
 0.0
   0
@@ -6199,15 +7297,15 @@ LINE
   8
 0
  10
-531.0217280772423
+469.0491386238387
  20
-214.0
+371.1265397305174
  30
 0.0
  11
-531.0217280772423
+465.2981121368271
  21
-219.00000000000003
+371.12653973051744
  31
 0.0
   0
@@ -6219,13 +7317,13 @@ DOTTED
   8
 0
  10
-666.3550614105757
+551.3550614105758
  20
 123.50000000000001
  30
 0.0
  11
-727.3550614105758
+612.3550614105757
  21
 123.50000000000001
  31
@@ -6239,13 +7337,13 @@ DOTTED
   8
 0
  10
-727.3550614105758
+612.3550614105757
  20
 123.50000000000001
  30
 0.0
  11
-727.3550614105758
+612.3550614105757
  21
 147.5
  31
@@ -6259,13 +7357,13 @@ DOTTED
   8
 0
  10
-727.3550614105758
+612.3550614105757
  20
 147.5
  30
 0.0
  11
-666.3550614105757
+551.3550614105758
  21
 147.5
  31
@@ -6279,13 +7377,13 @@ DOTTED
   8
 0
  10
-666.3550614105757
+551.3550614105758
  20
 147.5
  30
 0.0
  11
-666.3550614105757
+551.3550614105758
  21
 123.50000000000001
  31
@@ -6297,13 +7395,13 @@ LINE
   8
 0
  10
-666.3550614105757
+551.3550614105758
  20
 116.50000000000001
  30
 0.0
  11
-666.3550614105757
+551.3550614105758
  21
 123.50000000000001
  31
@@ -6315,13 +7413,13 @@ LINE
   8
 0
  10
-726.3550614105758
+611.3550614105757
  20
 116.50000000000001
  30
 0.0
  11
-666.3550614105757
+551.3550614105758
  21
 116.50000000000001
  31
@@ -6333,13 +7431,13 @@ LINE
   8
 0
  10
-726.3550614105758
+611.3550614105757
  20
 123.50000000000001
  30
 0.0
  11
-726.3550614105758
+611.3550614105757
  21
 116.50000000000001
  31
@@ -6351,13 +7449,13 @@ LINE
   8
 0
  10
-734.3550614105758
+619.3550614105757
  20
 123.50000000000001
  30
 0.0
  11
-727.3550614105758
+612.3550614105757
  21
 123.50000000000001
  31
@@ -6369,13 +7467,13 @@ LINE
   8
 0
  10
-734.3550614105758
+619.3550614105757
  20
 147.5
  30
 0.0
  11
-734.3550614105758
+619.3550614105757
  21
 123.50000000000001
  31
@@ -6387,13 +7485,13 @@ LINE
   8
 0
  10
-727.3550614105758
+612.3550614105757
  20
 147.5
  30
 0.0
  11
-734.3550614105758
+619.3550614105757
  21
 147.5
  31
@@ -6407,13 +7505,13 @@ DOTTED
   8
 0
  10
-727.3550614105758
+612.3550614105757
  20
 147.5
  30
 0.0
  11
-727.3550614105758
+612.3550614105757
  21
 208.50000000000003
  31
@@ -6425,13 +7523,13 @@ LINE
   8
 0
  10
-667.3550614105757
+552.3550614105758
  20
 208.50000000000003
  30
 0.0
  11
-727.3550614105758
+612.3550614105757
  21
 208.50000000000003
  31
@@ -6445,13 +7543,13 @@ DOTTED
   8
 0
  10
-667.3550614105757
+552.3550614105758
  20
 147.5
  30
 0.0
  11
-667.3550614105757
+552.3550614105758
  21
 208.50000000000003
  31
@@ -6463,13 +7561,13 @@ LINE
   8
 0
  10
-751.3550614105758
+636.3550614105758
  20
 147.5
  30
 0.0
  11
-727.3550614105758
+612.3550614105757
  21
 147.5
  31
@@ -6483,13 +7581,13 @@ DOTTED
   8
 0
  10
-751.3550614105758
+636.3550614105758
  20
 147.5
  30
 0.0
  11
-751.3550614105758
+636.3550614105758
  21
 208.50000000000003
  31
@@ -6501,13 +7599,13 @@ LINE
   8
 0
  10
-727.3550614105758
+612.3550614105757
  20
 208.50000000000003
  30
 0.0
  11
-751.3550614105758
+636.3550614105758
  21
 208.50000000000003
  31
@@ -6519,13 +7617,13 @@ LINE
   8
 0
  10
-811.3550614105757
+696.3550614105758
  20
 147.5
  30
 0.0
  11
-751.3550614105758
+636.3550614105758
  21
 147.5
  31
@@ -6537,13 +7635,13 @@ LINE
   8
 0
  10
-811.3550614105757
+696.3550614105758
  20
 208.50000000000003
  30
 0.0
  11
-811.3550614105757
+696.3550614105758
  21
 147.5
  31
@@ -6555,13 +7653,13 @@ LINE
   8
 0
  10
-751.3550614105758
+636.3550614105758
  20
 208.50000000000003
  30
 0.0
  11
-811.3550614105757
+696.3550614105758
  21
 208.50000000000003
  31
@@ -6573,13 +7671,13 @@ LINE
   8
 0
  10
-667.3550614105757
+552.3550614105758
  20
 147.5
  30
 0.0
  11
-643.3550614105758
+528.3550614105758
  21
 147.5
  31
@@ -6591,13 +7689,13 @@ LINE
   8
 0
  10
-643.3550614105758
+528.3550614105758
  20
 208.50000000000003
  30
 0.0
  11
-667.3550614105757
+552.3550614105758
  21
 208.50000000000003
  31
@@ -6611,13 +7709,13 @@ DOTTED
   8
 0
  10
-643.3550614105758
+528.3550614105758
  20
 208.50000000000003
  30
 0.0
  11
-643.3550614105758
+528.3550614105758
  21
 147.5
  31
@@ -6629,13 +7727,13 @@ LINE
   8
 0
  10
-633.3550614105758
+518.3550614105758
  20
 208.50000000000003
  30
 0.0
  11
-643.3550614105758
+528.3550614105758
  21
 208.50000000000003
  31
@@ -6647,13 +7745,13 @@ LINE
   8
 0
  10
-633.3550614105758
+518.3550614105758
  20
 147.5
  30
 0.0
  11
-633.3550614105758
+518.3550614105758
  21
 208.50000000000003
  31
@@ -6665,13 +7763,13 @@ LINE
   8
 0
  10
-643.3550614105758
+528.3550614105758
  20
 147.5
  30
 0.0
  11
-633.3550614105758
+518.3550614105758
  21
 147.5
  31
@@ -6683,13 +7781,13 @@ LINE
   8
 0
  10
-659.3550614105758
+544.3550614105758
  20
 147.5
  30
 0.0
  11
-666.3550614105757
+551.3550614105758
  21
 147.5
  31
@@ -6701,13 +7799,13 @@ LINE
   8
 0
  10
-659.3550614105758
+544.3550614105758
  20
 123.50000000000001
  30
 0.0
  11
-659.3550614105758
+544.3550614105758
  21
 147.5
  31
@@ -6719,13 +7817,13 @@ LINE
   8
 0
  10
-666.3550614105757
+551.3550614105758
  20
 123.50000000000001
  30
 0.0
  11
-659.3550614105758
+544.3550614105758
  21
 123.50000000000001
  31
@@ -6737,13 +7835,13 @@ LINE
   8
 0
  10
-715.4459705014848
+600.4459705014849
  20
 118.25000000000001
  30
 0.0
  11
-718.9459705014849
+603.9459705014848
  21
 118.25000000000001
  31
@@ -6755,13 +7853,13 @@ LINE
   8
 0
  10
-718.9459705014849
+603.9459705014848
  20
 118.25000000000001
  30
 0.0
  11
-715.4459705014848
+600.4459705014849
  21
 121.75000000000001
  31
@@ -6773,13 +7871,13 @@ LINE
   8
 0
  10
-715.4459705014848
+600.4459705014849
  20
 121.75000000000001
  30
 0.0
  11
-704.5368795923939
+589.5368795923938
  21
 121.75000000000001
  31
@@ -6791,13 +7889,13 @@ LINE
   8
 0
  10
-704.5368795923939
+589.5368795923938
  20
 121.75000000000001
  30
 0.0
  11
-701.0368795923939
+586.036879592394
  21
 118.25000000000001
  31
@@ -6809,13 +7907,13 @@ LINE
   8
 0
  10
-701.0368795923939
+586.036879592394
  20
 118.25000000000001
  30
 0.0
  11
-704.5368795923939
+589.5368795923938
  21
 118.25000000000001
  31
@@ -6827,13 +7925,13 @@ LINE
   8
 0
  10
-688.1732432287577
+573.1732432287577
  20
 118.25000000000001
  30
 0.0
  11
-691.6732432287577
+576.6732432287575
  21
 118.25000000000001
  31
@@ -6845,13 +7943,13 @@ LINE
   8
 0
  10
-691.6732432287577
+576.6732432287575
  20
 118.25000000000001
  30
 0.0
  11
-688.1732432287577
+573.1732432287577
  21
 121.75000000000001
  31
@@ -6863,13 +7961,13 @@ LINE
   8
 0
  10
-688.1732432287577
+573.1732432287577
  20
 121.75000000000001
  30
 0.0
  11
-677.2641523196667
+562.2641523196666
  21
 121.75000000000001
  31
@@ -6881,13 +7979,13 @@ LINE
   8
 0
  10
-677.2641523196667
+562.2641523196666
  20
 121.75000000000001
  30
 0.0
  11
-673.7641523196667
+558.7641523196667
  21
 118.25000000000001
  31
@@ -6899,13 +7997,13 @@ LINE
   8
 0
  10
-673.7641523196667
+558.7641523196667
  20
 118.25000000000001
  30
 0.0
  11
-677.2641523196667
+562.2641523196666
  21
 118.25000000000001
  31
@@ -6917,13 +8015,13 @@ LINE
   8
 0
  10
-732.6050614105758
+617.6050614105757
  20
 139.50000000000003
  30
 0.0
  11
-729.1050614105758
+614.1050614105758
  21
 139.50000000000003
  31
@@ -6935,13 +8033,13 @@ LINE
   8
 0
  10
-729.1050614105758
+614.1050614105758
  20
 139.50000000000003
  30
 0.0
  11
-729.1050614105758
+614.1050614105758
  21
 131.50000000000003
  31
@@ -6953,13 +8051,13 @@ LINE
   8
 0
  10
-729.1050614105758
+614.1050614105758
  20
 131.50000000000003
  30
 0.0
  11
-732.6050614105758
+617.6050614105757
  21
 131.50000000000003
  31
@@ -6971,13 +8069,13 @@ LINE
   8
 0
  10
-674.8550614105757
+559.8550614105758
  20
 199.00000000000003
  30
 0.0
  11
-674.8550614105757
+559.8550614105758
  21
 181.00000000000003
  31
@@ -6989,13 +8087,13 @@ LINE
   8
 0
  10
-674.8550614105757
+559.8550614105758
  20
 181.00000000000003
  30
 0.0
  11
-709.8550614105758
+594.8550614105757
  21
 181.00000000000003
  31
@@ -7007,13 +8105,13 @@ LINE
   8
 0
  10
-709.8550614105758
+594.8550614105757
  20
 181.00000000000003
  30
 0.0
  11
-709.8550614105758
+594.8550614105757
  21
 199.00000000000003
  31
@@ -7025,13 +8123,13 @@ LINE
   8
 0
  10
-709.8550614105758
+594.8550614105757
  20
 199.00000000000003
  30
 0.0
  11
-674.8550614105757
+559.8550614105758
  21
 199.00000000000003
  31
@@ -7043,13 +8141,13 @@ LINE
   8
 0
  10
-727.8550614105758
+612.8550614105757
  20
 160.75000000000003
  30
 0.0
  11
-727.8550614105758
+612.8550614105757
  21
 157.75000000000003
  31
@@ -7061,13 +8159,13 @@ LINE
   8
 0
  10
-727.8550614105758
+612.8550614105757
  20
 157.75000000000003
  30
 0.0
  11
-730.8550614105757
+615.8550614105758
  21
 157.75000000000003
  31
@@ -7079,13 +8177,13 @@ LINE
   8
 0
  10
-730.8550614105757
+615.8550614105758
  20
 157.75000000000003
  30
 0.0
  11
-730.8550614105757
+615.8550614105758
  21
 160.75000000000003
  31
@@ -7097,13 +8195,13 @@ LINE
   8
 0
  10
-730.8550614105757
+615.8550614105758
  20
 160.75000000000003
  30
 0.0
  11
-727.8550614105758
+612.8550614105757
  21
 160.75000000000003
  31
@@ -7115,13 +8213,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 159.75000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 158.75000000000003
  31
@@ -7133,13 +8231,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 158.75000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 158.75000000000003
  31
@@ -7151,13 +8249,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 158.75000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 159.75000000000003
  31
@@ -7169,13 +8267,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 159.75000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 159.75000000000003
  31
@@ -7187,13 +8285,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 162.25000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 161.25
  31
@@ -7205,13 +8303,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 161.25
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 161.25
  31
@@ -7223,13 +8321,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 161.25
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 162.25000000000003
  31
@@ -7241,13 +8339,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 162.25000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 162.25000000000003
  31
@@ -7259,13 +8357,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 162.25000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 161.25
  31
@@ -7277,13 +8375,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 161.25
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 161.25
  31
@@ -7295,13 +8393,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 161.25
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 162.25000000000003
  31
@@ -7313,13 +8411,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 162.25000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 162.25000000000003
  31
@@ -7331,13 +8429,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 164.75000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 163.75
  31
@@ -7349,13 +8447,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 163.75
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 163.75
  31
@@ -7367,13 +8465,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 163.75
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 164.75000000000003
  31
@@ -7385,13 +8483,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 164.75000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 164.75000000000003
  31
@@ -7403,13 +8501,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 164.75000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 163.75
  31
@@ -7421,13 +8519,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 163.75
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 163.75
  31
@@ -7439,13 +8537,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 163.75
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 164.75000000000003
  31
@@ -7457,13 +8555,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 164.75000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 164.75000000000003
  31
@@ -7475,13 +8573,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 167.25000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 166.25
  31
@@ -7493,13 +8591,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 166.25
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 166.25
  31
@@ -7511,13 +8609,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 166.25
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 167.25000000000003
  31
@@ -7529,13 +8627,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 167.25000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 167.25000000000003
  31
@@ -7547,13 +8645,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 167.25000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 166.25
  31
@@ -7565,13 +8663,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 166.25
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 166.25
  31
@@ -7583,13 +8681,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 166.25
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 167.25000000000003
  31
@@ -7601,13 +8699,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 167.25000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 167.25000000000003
  31
@@ -7619,13 +8717,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 169.75000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 168.75000000000003
  31
@@ -7637,13 +8735,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 168.75000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 168.75000000000003
  31
@@ -7655,13 +8753,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 168.75000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 169.75000000000003
  31
@@ -7673,13 +8771,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 169.75000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 169.75000000000003
  31
@@ -7691,13 +8789,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 169.75000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 168.75000000000003
  31
@@ -7709,13 +8807,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 168.75000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 168.75000000000003
  31
@@ -7727,13 +8825,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 168.75000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 169.75000000000003
  31
@@ -7745,13 +8843,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 169.75000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 169.75000000000003
  31
@@ -7763,13 +8861,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 172.25000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 171.25000000000003
  31
@@ -7781,13 +8879,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 171.25000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 171.25000000000003
  31
@@ -7799,13 +8897,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 171.25000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 172.25000000000003
  31
@@ -7817,13 +8915,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 172.25000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 172.25000000000003
  31
@@ -7835,13 +8933,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 172.25000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 171.25000000000003
  31
@@ -7853,13 +8951,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 171.25000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 171.25000000000003
  31
@@ -7871,13 +8969,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 171.25000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 172.25000000000003
  31
@@ -7889,13 +8987,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 172.25000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 172.25000000000003
  31
@@ -7907,13 +9005,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 174.75000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 173.75000000000003
  31
@@ -7925,13 +9023,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 173.75000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 173.75000000000003
  31
@@ -7943,13 +9041,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 173.75000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 174.75000000000003
  31
@@ -7961,13 +9059,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 174.75000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 174.75000000000003
  31
@@ -7979,13 +9077,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 174.75000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 173.75000000000003
  31
@@ -7997,13 +9095,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 173.75000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 173.75000000000003
  31
@@ -8015,13 +9113,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 173.75000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 174.75000000000003
  31
@@ -8033,13 +9131,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 174.75000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 174.75000000000003
  31
@@ -8051,13 +9149,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 177.25
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 176.25000000000003
  31
@@ -8069,13 +9167,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 176.25000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 176.25000000000003
  31
@@ -8087,13 +9185,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 176.25000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 177.25
  31
@@ -8105,13 +9203,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 177.25
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 177.25
  31
@@ -8123,13 +9221,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 177.25
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 176.25000000000003
  31
@@ -8141,13 +9239,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 176.25000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 176.25000000000003
  31
@@ -8159,13 +9257,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 176.25000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 177.25
  31
@@ -8177,13 +9275,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 177.25
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 177.25
  31
@@ -8195,13 +9293,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 179.75
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 178.75000000000003
  31
@@ -8213,13 +9311,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 178.75000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 178.75000000000003
  31
@@ -8231,13 +9329,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 178.75000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 179.75
  31
@@ -8249,13 +9347,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 179.75
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 179.75
  31
@@ -8267,13 +9365,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 179.75
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 178.75000000000003
  31
@@ -8285,13 +9383,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 178.75000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 178.75000000000003
  31
@@ -8303,13 +9401,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 178.75000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 179.75
  31
@@ -8321,13 +9419,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 179.75
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 179.75
  31
@@ -8339,13 +9437,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 182.25
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 181.25000000000003
  31
@@ -8357,13 +9455,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 181.25000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 181.25000000000003
  31
@@ -8375,13 +9473,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 181.25000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 182.25
  31
@@ -8393,13 +9491,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 182.25
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 182.25
  31
@@ -8411,13 +9509,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 182.25
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 181.25000000000003
  31
@@ -8429,13 +9527,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 181.25000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 181.25000000000003
  31
@@ -8447,13 +9545,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 181.25000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 182.25
  31
@@ -8465,13 +9563,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 182.25
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 182.25
  31
@@ -8483,13 +9581,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 184.75000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 183.75000000000003
  31
@@ -8501,13 +9599,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 183.75000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 183.75000000000003
  31
@@ -8519,13 +9617,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 183.75000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 184.75000000000003
  31
@@ -8537,13 +9635,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 184.75000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 184.75000000000003
  31
@@ -8555,13 +9653,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 184.75000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 183.75000000000003
  31
@@ -8573,13 +9671,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 183.75000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 183.75000000000003
  31
@@ -8591,13 +9689,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 183.75000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 184.75000000000003
  31
@@ -8609,13 +9707,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 184.75000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 184.75000000000003
  31
@@ -8627,13 +9725,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 187.25000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 186.25000000000003
  31
@@ -8645,13 +9743,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 186.25000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 186.25000000000003
  31
@@ -8663,13 +9761,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 186.25000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 187.25000000000003
  31
@@ -8681,13 +9779,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 187.25000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 187.25000000000003
  31
@@ -8699,13 +9797,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 187.25000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 186.25000000000003
  31
@@ -8717,13 +9815,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 186.25000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 186.25000000000003
  31
@@ -8735,13 +9833,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 186.25000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 187.25000000000003
  31
@@ -8753,13 +9851,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 187.25000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 187.25000000000003
  31
@@ -8771,13 +9869,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 189.75000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 188.75
  31
@@ -8789,13 +9887,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 188.75
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 188.75
  31
@@ -8807,13 +9905,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 188.75
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 189.75000000000003
  31
@@ -8825,13 +9923,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 189.75000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 189.75000000000003
  31
@@ -8843,13 +9941,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 189.75000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 188.75
  31
@@ -8861,13 +9959,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 188.75
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 188.75
  31
@@ -8879,13 +9977,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 188.75
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 189.75000000000003
  31
@@ -8897,13 +9995,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 189.75000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 189.75000000000003
  31
@@ -8915,13 +10013,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 192.25000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 191.25
  31
@@ -8933,13 +10031,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 191.25
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 191.25
  31
@@ -8951,13 +10049,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 191.25
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 192.25000000000003
  31
@@ -8969,13 +10067,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 192.25000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 192.25000000000003
  31
@@ -8987,13 +10085,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 192.25000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 191.25
  31
@@ -9005,13 +10103,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 191.25
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 191.25
  31
@@ -9023,13 +10121,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 191.25
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 192.25000000000003
  31
@@ -9041,13 +10139,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 192.25000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 192.25000000000003
  31
@@ -9059,13 +10157,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 194.75000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 193.75000000000003
  31
@@ -9077,13 +10175,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 193.75000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 193.75000000000003
  31
@@ -9095,13 +10193,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 193.75000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 194.75000000000003
  31
@@ -9113,13 +10211,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 194.75000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 194.75000000000003
  31
@@ -9131,13 +10229,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 194.75000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 193.75000000000003
  31
@@ -9149,13 +10247,13 @@ LINE
   8
 0
  10
-748.8550614105757
+633.8550614105758
  20
 193.75000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 193.75000000000003
  31
@@ -9167,13 +10265,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 193.75000000000003
  30
 0.0
  11
-749.8550614105758
+634.8550614105758
  21
 194.75000000000003
  31
@@ -9185,13 +10283,13 @@ LINE
   8
 0
  10
-749.8550614105758
+634.8550614105758
  20
 194.75000000000003
  30
 0.0
  11
-748.8550614105757
+633.8550614105758
  21
 194.75000000000003
  31
@@ -9203,13 +10301,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 197.25000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 196.25000000000003
  31
@@ -9221,13 +10319,13 @@ LINE
   8
 0
  10
-728.8550614105757
+613.8550614105758
  20
 196.25000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 196.25000000000003
  31
@@ -9239,13 +10337,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 196.25000000000003
  30
 0.0
  11
-729.8550614105757
+614.8550614105758
  21
 197.25000000000003
  31
@@ -9257,13 +10355,13 @@ LINE
   8
 0
  10
-729.8550614105757
+614.8550614105758
  20
 197.25000000000003
  30
 0.0
  11
-728.8550614105757
+613.8550614105758
  21
 197.25000000000003
  31
@@ -9275,13 +10373,13 @@ LINE
   8
 0
  10
-747.8550614105757
+632.8550614105758
  20
 198.25000000000003
  30
 0.0
  11
-747.8550614105757
+632.8550614105758
  21
 195.25000000000003
  31
@@ -9293,13 +10391,13 @@ LINE
   8
 0
  10
-747.8550614105757
+632.8550614105758
  20
 195.25000000000003
  30
 0.0
  11
-750.8550614105758
+635.8550614105758
  21
 195.25000000000003
  31
@@ -9311,13 +10409,13 @@ LINE
   8
 0
  10
-750.8550614105758
+635.8550614105758
  20
 195.25000000000003
  30
 0.0
  11
-750.8550614105758
+635.8550614105758
  21
 198.25000000000003
  31
@@ -9329,13 +10427,13 @@ LINE
   8
 0
  10
-750.8550614105758
+635.8550614105758
  20
 198.25000000000003
  30
 0.0
  11
-747.8550614105757
+632.8550614105758
  21
 198.25000000000003
  31
@@ -9347,13 +10445,13 @@ LINE
   8
 0
  10
-743.6050614105757
+628.6050614105758
  20
 155.25000000000003
  30
 0.0
  11
-735.1050614105757
+620.1050614105758
  21
 155.25000000000003
  31
@@ -9365,13 +10463,13 @@ LINE
   8
 0
  10
-735.1050614105757
+620.1050614105758
  20
 155.25000000000003
  30
 0.0
  11
-735.1050614105757
+620.1050614105758
  21
 154.75
  31
@@ -9383,13 +10481,13 @@ LINE
   8
 0
  10
-735.1050614105757
+620.1050614105758
  20
 154.75
  30
 0.0
  11
-743.6050614105757
+628.6050614105758
  21
 154.75
  31
@@ -9401,13 +10499,13 @@ LINE
   8
 0
  10
-743.6050614105757
+628.6050614105758
  20
 154.75
  30
 0.0
  11
-743.6050614105757
+628.6050614105758
  21
 155.25000000000003
  31
@@ -9419,13 +10517,13 @@ LINE
   8
 0
  10
-735.1050614105757
+620.1050614105758
  20
 203.00000000000003
  30
 0.0
  11
-743.6050614105757
+628.6050614105758
  21
 203.00000000000003
  31
@@ -9437,13 +10535,13 @@ LINE
   8
 0
  10
-743.6050614105757
+628.6050614105758
  20
 203.00000000000003
  30
 0.0
  11
-743.6050614105757
+628.6050614105758
  21
 203.50000000000003
  31
@@ -9455,13 +10553,13 @@ LINE
   8
 0
  10
-743.6050614105757
+628.6050614105758
  20
 203.50000000000003
  30
 0.0
  11
-735.1050614105757
+620.1050614105758
  21
 203.50000000000003
  31
@@ -9473,13 +10571,13 @@ LINE
   8
 0
  10
-735.1050614105757
+620.1050614105758
  20
 203.50000000000003
  30
 0.0
  11
-735.1050614105757
+620.1050614105758
  21
 203.00000000000003
  31
@@ -9491,13 +10589,13 @@ LINE
   8
 0
  10
-766.3550614105757
+651.3550614105758
  20
 198.50000000000003
  30
 0.0
  11
-766.3550614105757
+651.3550614105758
  21
 185.50000000000003
  31
@@ -9509,13 +10607,13 @@ LINE
   8
 0
  10
-766.3550614105757
+651.3550614105758
  20
 185.50000000000003
  30
 0.0
  11
-796.3550614105758
+681.3550614105758
  21
 185.50000000000003
  31
@@ -9527,13 +10625,13 @@ LINE
   8
 0
  10
-796.3550614105758
+681.3550614105758
  20
 185.50000000000003
  30
 0.0
  11
-796.3550614105758
+681.3550614105758
  21
 198.50000000000003
  31
@@ -9545,13 +10643,13 @@ LINE
   8
 0
  10
-796.3550614105758
+681.3550614105758
  20
 198.50000000000003
  30
 0.0
  11
-766.3550614105757
+651.3550614105758
  21
 198.50000000000003
  31
@@ -9563,13 +10661,13 @@ LINE
   8
 0
  10
-773.4232432287574
+658.4232432287575
  20
 153.00000000000003
  30
 0.0
  11
-762.0141523196667
+647.0141523196667
  21
 153.00000000000003
  31
@@ -9581,13 +10679,13 @@ LINE
   8
 0
  10
-762.0141523196667
+647.0141523196667
  20
 153.00000000000003
  30
 0.0
  11
-762.0141523196667
+647.0141523196667
  21
 152.5
  31
@@ -9599,13 +10697,13 @@ LINE
   8
 0
  10
-762.0141523196667
+647.0141523196667
  20
 152.5
  30
 0.0
  11
-773.4232432287574
+658.4232432287575
  21
 152.5
  31
@@ -9617,13 +10715,13 @@ LINE
   8
 0
  10
-773.4232432287574
+658.4232432287575
  20
 152.5
  30
 0.0
  11
-773.4232432287574
+658.4232432287575
  21
 153.00000000000003
  31
@@ -9635,13 +10733,13 @@ LINE
   8
 0
  10
-800.6959705014848
+685.6959705014849
  20
 153.00000000000003
  30
 0.0
  11
-789.2868795923939
+674.2868795923939
  21
 153.00000000000003
  31
@@ -9653,13 +10751,13 @@ LINE
   8
 0
  10
-789.2868795923939
+674.2868795923939
  20
 153.00000000000003
  30
 0.0
  11
-789.2868795923939
+674.2868795923939
  21
 152.5
  31
@@ -9671,13 +10769,13 @@ LINE
   8
 0
  10
-789.2868795923939
+674.2868795923939
  20
 152.5
  30
 0.0
  11
-800.6959705014848
+685.6959705014849
  21
 152.5
  31
@@ -9689,13 +10787,13 @@ LINE
   8
 0
  10
-800.6959705014848
+685.6959705014849
  20
 152.5
  30
 0.0
  11
-800.6959705014848
+685.6959705014849
  21
 153.00000000000003
  31
@@ -9707,13 +10805,13 @@ LINE
   8
 0
  10
-803.6050614105758
+688.6050614105757
  20
 169.93181818181822
  30
 0.0
  11
-803.6050614105758
+688.6050614105757
  21
 158.3409090909091
  31
@@ -9725,13 +10823,13 @@ LINE
   8
 0
  10
-803.6050614105758
+688.6050614105757
  20
 158.3409090909091
  30
 0.0
  11
-804.1050614105758
+689.1050614105757
  21
 158.3409090909091
  31
@@ -9743,13 +10841,13 @@ LINE
   8
 0
  10
-804.1050614105758
+689.1050614105757
  20
 158.3409090909091
  30
 0.0
  11
-804.1050614105758
+689.1050614105757
  21
 169.93181818181822
  31
@@ -9761,13 +10859,13 @@ LINE
   8
 0
  10
-804.1050614105758
+689.1050614105757
  20
 169.93181818181822
  30
 0.0
  11
-803.6050614105758
+688.6050614105757
  21
 169.93181818181822
  31
@@ -9779,13 +10877,13 @@ LINE
   8
 0
  10
-803.6050614105758
+688.6050614105757
  20
 197.65909090909093
  30
 0.0
  11
-803.6050614105758
+688.6050614105757
  21
 186.06818181818184
  31
@@ -9797,13 +10895,13 @@ LINE
   8
 0
  10
-803.6050614105758
+688.6050614105757
  20
 186.06818181818184
  30
 0.0
  11
-804.1050614105758
+689.1050614105757
  21
 186.06818181818184
  31
@@ -9815,13 +10913,13 @@ LINE
   8
 0
  10
-804.1050614105758
+689.1050614105757
  20
 186.06818181818184
  30
 0.0
  11
-804.1050614105758
+689.1050614105757
  21
 197.65909090909093
  31
@@ -9833,13 +10931,13 @@ LINE
   8
 0
  10
-804.1050614105758
+689.1050614105757
  20
 197.65909090909093
  30
 0.0
  11
-803.6050614105758
+688.6050614105757
  21
 197.65909090909093
  31
@@ -9851,13 +10949,13 @@ LINE
   8
 0
  10
-643.8550614105758
+528.8550614105758
  20
 160.75000000000003
  30
 0.0
  11
-643.8550614105758
+528.8550614105758
  21
 157.75000000000003
  31
@@ -9869,13 +10967,13 @@ LINE
   8
 0
  10
-643.8550614105758
+528.8550614105758
  20
 157.75000000000003
  30
 0.0
  11
-646.8550614105757
+531.8550614105758
  21
 157.75000000000003
  31
@@ -9887,13 +10985,13 @@ LINE
   8
 0
  10
-646.8550614105757
+531.8550614105758
  20
 157.75000000000003
  30
 0.0
  11
-646.8550614105757
+531.8550614105758
  21
 160.75000000000003
  31
@@ -9905,13 +11003,13 @@ LINE
   8
 0
  10
-646.8550614105757
+531.8550614105758
  20
 160.75000000000003
  30
 0.0
  11
-643.8550614105758
+528.8550614105758
  21
 160.75000000000003
  31
@@ -9923,13 +11021,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 159.75000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 158.75000000000003
  31
@@ -9941,13 +11039,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 158.75000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 158.75000000000003
  31
@@ -9959,13 +11057,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 158.75000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 159.75000000000003
  31
@@ -9977,13 +11075,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 159.75000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 159.75000000000003
  31
@@ -9995,13 +11093,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 162.25000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 161.25
  31
@@ -10013,13 +11111,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 161.25
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 161.25
  31
@@ -10031,13 +11129,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 161.25
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 162.25000000000003
  31
@@ -10049,13 +11147,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 162.25000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 162.25000000000003
  31
@@ -10067,13 +11165,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 162.25000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 161.25
  31
@@ -10085,13 +11183,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 161.25
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 161.25
  31
@@ -10103,13 +11201,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 161.25
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 162.25000000000003
  31
@@ -10121,13 +11219,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 162.25000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 162.25000000000003
  31
@@ -10139,13 +11237,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 164.75000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 163.75
  31
@@ -10157,13 +11255,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 163.75
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 163.75
  31
@@ -10175,13 +11273,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 163.75
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 164.75000000000003
  31
@@ -10193,13 +11291,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 164.75000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 164.75000000000003
  31
@@ -10211,13 +11309,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 164.75000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 163.75
  31
@@ -10229,13 +11327,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 163.75
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 163.75
  31
@@ -10247,13 +11345,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 163.75
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 164.75000000000003
  31
@@ -10265,13 +11363,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 164.75000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 164.75000000000003
  31
@@ -10283,13 +11381,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 167.25000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 166.25
  31
@@ -10301,13 +11399,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 166.25
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 166.25
  31
@@ -10319,13 +11417,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 166.25
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 167.25000000000003
  31
@@ -10337,13 +11435,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 167.25000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 167.25000000000003
  31
@@ -10355,13 +11453,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 167.25000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 166.25
  31
@@ -10373,13 +11471,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 166.25
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 166.25
  31
@@ -10391,13 +11489,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 166.25
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 167.25000000000003
  31
@@ -10409,13 +11507,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 167.25000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 167.25000000000003
  31
@@ -10427,13 +11525,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 169.75000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 168.75000000000003
  31
@@ -10445,13 +11543,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 168.75000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 168.75000000000003
  31
@@ -10463,13 +11561,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 168.75000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 169.75000000000003
  31
@@ -10481,13 +11579,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 169.75000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 169.75000000000003
  31
@@ -10499,13 +11597,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 169.75000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 168.75000000000003
  31
@@ -10517,13 +11615,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 168.75000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 168.75000000000003
  31
@@ -10535,13 +11633,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 168.75000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 169.75000000000003
  31
@@ -10553,13 +11651,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 169.75000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 169.75000000000003
  31
@@ -10571,13 +11669,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 172.25000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 171.25000000000003
  31
@@ -10589,13 +11687,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 171.25000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 171.25000000000003
  31
@@ -10607,13 +11705,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 171.25000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 172.25000000000003
  31
@@ -10625,13 +11723,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 172.25000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 172.25000000000003
  31
@@ -10643,13 +11741,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 172.25000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 171.25000000000003
  31
@@ -10661,13 +11759,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 171.25000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 171.25000000000003
  31
@@ -10679,13 +11777,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 171.25000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 172.25000000000003
  31
@@ -10697,13 +11795,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 172.25000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 172.25000000000003
  31
@@ -10715,13 +11813,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 174.75000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 173.75000000000003
  31
@@ -10733,13 +11831,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 173.75000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 173.75000000000003
  31
@@ -10751,13 +11849,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 173.75000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 174.75000000000003
  31
@@ -10769,13 +11867,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 174.75000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 174.75000000000003
  31
@@ -10787,13 +11885,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 174.75000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 173.75000000000003
  31
@@ -10805,13 +11903,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 173.75000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 173.75000000000003
  31
@@ -10823,13 +11921,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 173.75000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 174.75000000000003
  31
@@ -10841,13 +11939,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 174.75000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 174.75000000000003
  31
@@ -10859,13 +11957,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 177.25
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 176.25000000000003
  31
@@ -10877,13 +11975,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 176.25000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 176.25000000000003
  31
@@ -10895,13 +11993,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 176.25000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 177.25
  31
@@ -10913,13 +12011,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 177.25
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 177.25
  31
@@ -10931,13 +12029,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 177.25
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 176.25000000000003
  31
@@ -10949,13 +12047,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 176.25000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 176.25000000000003
  31
@@ -10967,13 +12065,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 176.25000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 177.25
  31
@@ -10985,13 +12083,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 177.25
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 177.25
  31
@@ -11003,13 +12101,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 179.75
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 178.75000000000003
  31
@@ -11021,13 +12119,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 178.75000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 178.75000000000003
  31
@@ -11039,13 +12137,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 178.75000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 179.75
  31
@@ -11057,13 +12155,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 179.75
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 179.75
  31
@@ -11075,13 +12173,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 179.75
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 178.75000000000003
  31
@@ -11093,13 +12191,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 178.75000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 178.75000000000003
  31
@@ -11111,13 +12209,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 178.75000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 179.75
  31
@@ -11129,13 +12227,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 179.75
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 179.75
  31
@@ -11147,13 +12245,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 182.25
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 181.25000000000003
  31
@@ -11165,13 +12263,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 181.25000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 181.25000000000003
  31
@@ -11183,13 +12281,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 181.25000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 182.25
  31
@@ -11201,13 +12299,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 182.25
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 182.25
  31
@@ -11219,13 +12317,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 182.25
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 181.25000000000003
  31
@@ -11237,13 +12335,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 181.25000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 181.25000000000003
  31
@@ -11255,13 +12353,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 181.25000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 182.25
  31
@@ -11273,13 +12371,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 182.25
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 182.25
  31
@@ -11291,13 +12389,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 184.75000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 183.75000000000003
  31
@@ -11309,13 +12407,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 183.75000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 183.75000000000003
  31
@@ -11327,13 +12425,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 183.75000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 184.75000000000003
  31
@@ -11345,13 +12443,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 184.75000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 184.75000000000003
  31
@@ -11363,13 +12461,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 184.75000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 183.75000000000003
  31
@@ -11381,13 +12479,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 183.75000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 183.75000000000003
  31
@@ -11399,13 +12497,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 183.75000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 184.75000000000003
  31
@@ -11417,13 +12515,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 184.75000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 184.75000000000003
  31
@@ -11435,13 +12533,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 187.25000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 186.25000000000003
  31
@@ -11453,13 +12551,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 186.25000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 186.25000000000003
  31
@@ -11471,13 +12569,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 186.25000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 187.25000000000003
  31
@@ -11489,13 +12587,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 187.25000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 187.25000000000003
  31
@@ -11507,13 +12605,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 187.25000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 186.25000000000003
  31
@@ -11525,13 +12623,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 186.25000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 186.25000000000003
  31
@@ -11543,13 +12641,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 186.25000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 187.25000000000003
  31
@@ -11561,13 +12659,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 187.25000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 187.25000000000003
  31
@@ -11579,13 +12677,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 189.75000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 188.75
  31
@@ -11597,13 +12695,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 188.75
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 188.75
  31
@@ -11615,13 +12713,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 188.75
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 189.75000000000003
  31
@@ -11633,13 +12731,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 189.75000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 189.75000000000003
  31
@@ -11651,13 +12749,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 189.75000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 188.75
  31
@@ -11669,13 +12767,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 188.75
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 188.75
  31
@@ -11687,13 +12785,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 188.75
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 189.75000000000003
  31
@@ -11705,13 +12803,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 189.75000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 189.75000000000003
  31
@@ -11723,13 +12821,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 192.25000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 191.25
  31
@@ -11741,13 +12839,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 191.25
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 191.25
  31
@@ -11759,13 +12857,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 191.25
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 192.25000000000003
  31
@@ -11777,13 +12875,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 192.25000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 192.25000000000003
  31
@@ -11795,13 +12893,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 192.25000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 191.25
  31
@@ -11813,13 +12911,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 191.25
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 191.25
  31
@@ -11831,13 +12929,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 191.25
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 192.25000000000003
  31
@@ -11849,13 +12947,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 192.25000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 192.25000000000003
  31
@@ -11867,13 +12965,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 194.75000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 193.75000000000003
  31
@@ -11885,13 +12983,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 193.75000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 193.75000000000003
  31
@@ -11903,13 +13001,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 193.75000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 194.75000000000003
  31
@@ -11921,13 +13019,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 194.75000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 194.75000000000003
  31
@@ -11939,13 +13037,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 194.75000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 193.75000000000003
  31
@@ -11957,13 +13055,13 @@ LINE
   8
 0
  10
-664.8550614105757
+549.8550614105758
  20
 193.75000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 193.75000000000003
  31
@@ -11975,13 +13073,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 193.75000000000003
  30
 0.0
  11
-665.8550614105757
+550.8550614105758
  21
 194.75000000000003
  31
@@ -11993,13 +13091,13 @@ LINE
   8
 0
  10
-665.8550614105757
+550.8550614105758
  20
 194.75000000000003
  30
 0.0
  11
-664.8550614105757
+549.8550614105758
  21
 194.75000000000003
  31
@@ -12011,13 +13109,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 197.25000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 196.25000000000003
  31
@@ -12029,13 +13127,13 @@ LINE
   8
 0
  10
-644.8550614105758
+529.8550614105758
  20
 196.25000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 196.25000000000003
  31
@@ -12047,13 +13145,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 196.25000000000003
  30
 0.0
  11
-645.8550614105758
+530.8550614105757
  21
 197.25000000000003
  31
@@ -12065,13 +13163,13 @@ LINE
   8
 0
  10
-645.8550614105758
+530.8550614105757
  20
 197.25000000000003
  30
 0.0
  11
-644.8550614105758
+529.8550614105758
  21
 197.25000000000003
  31
@@ -12083,13 +13181,13 @@ LINE
   8
 0
  10
-663.8550614105758
+548.8550614105757
  20
 198.25000000000003
  30
 0.0
  11
-663.8550614105758
+548.8550614105757
  21
 195.25000000000003
  31
@@ -12101,13 +13199,13 @@ LINE
   8
 0
  10
-663.8550614105758
+548.8550614105757
  20
 195.25000000000003
  30
 0.0
  11
-666.8550614105757
+551.8550614105758
  21
 195.25000000000003
  31
@@ -12119,13 +13217,13 @@ LINE
   8
 0
  10
-666.8550614105757
+551.8550614105758
  20
 195.25000000000003
  30
 0.0
  11
-666.8550614105757
+551.8550614105758
  21
 198.25000000000003
  31
@@ -12137,13 +13235,13 @@ LINE
   8
 0
  10
-666.8550614105757
+551.8550614105758
  20
 198.25000000000003
  30
 0.0
  11
-663.8550614105758
+548.8550614105757
  21
 198.25000000000003
  31
@@ -12155,13 +13253,13 @@ LINE
   8
 0
  10
-659.6050614105758
+544.6050614105757
  20
 155.25000000000003
  30
 0.0
  11
-651.1050614105757
+536.1050614105757
  21
 155.25000000000003
  31
@@ -12173,13 +13271,13 @@ LINE
   8
 0
  10
-651.1050614105757
+536.1050614105757
  20
 155.25000000000003
  30
 0.0
  11
-651.1050614105757
+536.1050614105757
  21
 154.75
  31
@@ -12191,13 +13289,13 @@ LINE
   8
 0
  10
-651.1050614105757
+536.1050614105757
  20
 154.75
  30
 0.0
  11
-659.6050614105758
+544.6050614105757
  21
 154.75
  31
@@ -12209,13 +13307,13 @@ LINE
   8
 0
  10
-659.6050614105758
+544.6050614105757
  20
 154.75
  30
 0.0
  11
-659.6050614105758
+544.6050614105757
  21
 155.25000000000003
  31
@@ -12227,13 +13325,13 @@ LINE
   8
 0
  10
-651.1050614105757
+536.1050614105757
  20
 203.00000000000003
  30
 0.0
  11
-659.6050614105758
+544.6050614105757
  21
 203.00000000000003
  31
@@ -12245,13 +13343,13 @@ LINE
   8
 0
  10
-659.6050614105758
+544.6050614105757
  20
 203.00000000000003
  30
 0.0
  11
-659.6050614105758
+544.6050614105757
  21
 203.50000000000003
  31
@@ -12263,13 +13361,13 @@ LINE
   8
 0
  10
-659.6050614105758
+544.6050614105757
  20
 203.50000000000003
  30
 0.0
  11
-651.1050614105757
+536.1050614105757
  21
 203.50000000000003
  31
@@ -12281,13 +13379,13 @@ LINE
   8
 0
  10
-651.1050614105757
+536.1050614105757
  20
 203.50000000000003
  30
 0.0
  11
-651.1050614105757
+536.1050614105757
  21
 203.00000000000003
  31
@@ -12299,13 +13397,13 @@ LINE
   8
 0
  10
-635.8550614105758
+520.8550614105757
  20
 158.59090909090912
  30
 0.0
  11
-640.8550614105758
+525.8550614105757
  21
 158.59090909090912
  31
@@ -12317,13 +13415,13 @@ LINE
   8
 0
  10
-640.8550614105758
+525.8550614105757
  20
 158.59090909090912
  30
 0.0
  11
-640.8550614105758
+525.8550614105757
  21
 169.68181818181822
  31
@@ -12335,13 +13433,13 @@ LINE
   8
 0
  10
-640.8550614105758
+525.8550614105757
  20
 169.68181818181822
  30
 0.0
  11
-635.8550614105758
+520.8550614105757
  21
 169.68181818181822
  31
@@ -12353,13 +13451,13 @@ LINE
   8
 0
  10
-635.8550614105758
+520.8550614105757
  20
 186.31818181818184
  30
 0.0
  11
-640.8550614105758
+525.8550614105757
  21
 186.31818181818184
  31
@@ -12371,13 +13469,13 @@ LINE
   8
 0
  10
-640.8550614105758
+525.8550614105757
  20
 186.31818181818184
  30
 0.0
  11
-640.8550614105758
+525.8550614105757
  21
 197.40909090909093
  31
@@ -12389,13 +13487,13 @@ LINE
   8
 0
  10
-640.8550614105758
+525.8550614105757
  20
 197.40909090909093
  30
 0.0
  11
-635.8550614105758
+520.8550614105757
  21
 197.40909090909093
  31
@@ -12407,13 +13505,13 @@ LINE
   8
 0
  10
-661.1050614105757
+546.1050614105758
  20
 131.50000000000003
  30
 0.0
  11
-664.6050614105758
+549.6050614105758
  21
 131.50000000000003
  31
@@ -12425,13 +13523,13 @@ LINE
   8
 0
  10
-664.6050614105758
+549.6050614105758
  20
 131.50000000000003
  30
 0.0
  11
-664.6050614105758
+549.6050614105758
  21
 139.50000000000003
  31
@@ -12443,13 +13541,13 @@ LINE
   8
 0
  10
-664.6050614105758
+549.6050614105758
  20
 139.50000000000003
  30
 0.0
  11
-661.1050614105757
+546.1050614105758
  21
 139.50000000000003
  31
diff --git a/rocolib/output/BoatWithServoStackBattery/tree.png b/rocolib/output/BoatWithServoStackBattery/tree.png
index a3c4f29681360cea0734179e7855865329e62712..9d9f59fb47c54c6cb069f269db3e45cea6cf0c2d 100644
Binary files a/rocolib/output/BoatWithServoStackBattery/tree.png and b/rocolib/output/BoatWithServoStackBattery/tree.png differ