diff --git a/rocolib/builders/PaddleboatWithCameraBuilder.py b/rocolib/builders/PaddleboatWithCameraBuilder.py
index 6b08f0cf679934bd43e3f76c804003c0d72e0bd9..fe0773013aa501b6b124247419b91ddaa568d883 100644
--- a/rocolib/builders/PaddleboatWithCameraBuilder.py
+++ b/rocolib/builders/PaddleboatWithCameraBuilder.py
@@ -14,22 +14,19 @@ c.addParameter("driveservo", "fs90r", paramType="dimension")
 for i in range(2):
     c.addSubcomponent("mount%d" %i, "SideServoMount", prefix=None)
     c.addConstraint(("mount%d" %i, "servo"), "driveservo")
-    c.addConstraint(("mount%d" %i, "length"), "boat.width")
+    # c.addConstraint(("mount%d" %i, "length"), "boat.width")
     # c.addConstConstraint(("mount%d" %i, "center"), False)
 
 for i in range(2):
     c.addSubcomponent("split%d" %i, "SplitEdge")
-    c.addConstraint(("split%d" %i, "toplength"), "boat.length", "(x,)")
-    c.addConstraint(("split%d" %i, "botlength"), ("boat.length", "driveservo"),
-                    '(getDim(x[1], "motorwidth"), getDim(x[1], "motorwidth"), getDim(x[1], "motorwidth"),'
-                    'getDim(x[1], "motorwidth"), getDim(x[1], "motorwidth"), x[0]- 9 * getDim(x[1], "motorwidth"), getDim(x[1], "motorwidth"),'
-                    'getDim(x[1], "motorwidth"), getDim(x[1], "motorwidth"), getDim(x[1], "motorwidth"))')
+    c.addConstraint(("split%d" %i, "toplength"), "boat.length", "(x,)") #'((x[0] - getDim(x[1], "width")))'
+    c.addConstraint(("split%d" %i, "botlength"), ("boat.length", "driveservo"), '("24", "24", "24", "24","24", x[0] - 5 * 24)')
 
-c.addConnection(("boat", "staredge"), ("split0", "topedge0"))
+c.addConnection(("boat", "staredge"), ("split0", "topedge0")) #topedge so that the motor mounts are placed outside of the boat hull
 c.addConnection(("boat", "portedge"), ("split1", "topedge0"))
 #
-c.addConnection(("mount0", "slotedge"), ("split0", "botedge4"), angle=-180)
-c.addConnection(("mount1", "slotedge"), ("split1", "botedge5"), angle=-180)
+c.addConnection(("mount0", "botedge3"), ("split0", "botedge1"), angle=-180)
+c.addConnection(("mount1", "topedge3"), ("split1", "botedge3"), angle=-180)
 
 #Seats
 c.addSubcomponent("camHolder", "Rectangle")
@@ -37,16 +34,16 @@ c.addConstraint(("camHolder", "l"), "boat.width")
 c.addConstraint(("camHolder", "w"), "boat.width", "13") #asks for another param, so I just put boat.width
 # c.addConnection(("split0", "botedge0"), ("boat", "portedge"), angle=90)
 # c.addConnection(("split1", "topedge0"), ("boat", "staredge"), angle=90, tabWidth=10)
-c.addConnection(("split0", "botedge0"), ("camHolder", "r"), angle=90)
-c.addConnection(("split1", "botedge9"), ("camHolder", "l"), tabWidth=6, angle=90)
-
-c.addSubcomponent("boatSupport", "Rectangle")
-c.addConstraint(("boatSupport", "l"), "boat.width")
-c.addConstraint(("boatSupport", "w"), "boat.width", "13") #asks for another param, so I just put boat.width
-# c.addConnection(("split0", "botedge0"), ("boat", "portedge"), angle=90)
-# c.addConnection(("split1", "topedge0"), ("boat", "staredge"), angle=90, tabWidth=10)
-c.addConnection(("split0", "botedge9"), ("boatSupport", "r"), tabWidth=6, angle=90)
-c.addConnection(("split1", "botedge0"), ("boatSupport", "l"), angle=90)
+# c.addConnection(("split0", "botedge0"), ("camHolder", "r"), angle=90)
+# c.addConnection(("split1", "botedge9"), ("camHolder", "l"), tabWidth=6, angle=90)
+#
+# c.addSubcomponent("boatSupport", "Rectangle")
+# c.addConstraint(("boatSupport", "l"), "boat.width")
+# c.addConstraint(("boatSupport", "w"), "boat.width", "13") #asks for another param, so I just put boat.width
+# # c.addConnection(("split0", "botedge0"), ("boat", "portedge"), angle=90)
+# # c.addConnection(("split1", "topedge0"), ("boat", "staredge"), angle=90, tabWidth=10)
+# c.addConnection(("split0", "botedge9"), ("boatSupport", "r"), tabWidth=6, angle=90)
+# c.addConnection(("split1", "botedge0"), ("boatSupport", "l"), angle=90)
 
 c.addSubcomponent("stack", "SubESP32Stack")
 
diff --git a/rocolib/library/PaddleboatWithCamera.yaml b/rocolib/library/PaddleboatWithCamera.yaml
index 453e27536e198563b79f140f3d8dff859940bd9a..8f7c654fc7df5329173b5841502cefa0d0560604 100644
--- a/rocolib/library/PaddleboatWithCamera.yaml
+++ b/rocolib/library/PaddleboatWithCamera.yaml
@@ -13,42 +13,16 @@ connections:
   - {}
   connection2:
   - - mount0
-    - slotedge
+    - botedge3
   - - split0
-    - botedge4
+    - botedge1
   - angle: -180
   connection3:
   - - mount1
-    - slotedge
+    - topedge3
   - - split1
-    - botedge5
+    - botedge3
   - angle: -180
-  connection4:
-  - - split0
-    - botedge0
-  - - camHolder
-    - r
-  - angle: 90
-  connection5:
-  - - split1
-    - botedge9
-  - - camHolder
-    - l
-  - angle: 90
-    tabWidth: 6
-  connection6:
-  - - split0
-    - botedge9
-  - - boatSupport
-    - r
-  - angle: 90
-    tabWidth: 6
-  connection7:
-  - - split1
-    - botedge0
-  - - boatSupport
-    - l
-  - angle: 90
 interfaces: {}
 parameters:
   boat.boat._dx:
@@ -261,15 +235,6 @@ subcomponents:
         parameter: boat.stern._q_k
       width:
         parameter: boat.width
-  boatSupport:
-    classname: Rectangle
-    kwargs: {}
-    parameters:
-      l:
-        parameter: boat.width
-      w:
-        function: '13'
-        parameter: boat.width
   camHolder:
     classname: Rectangle
     kwargs: {}
@@ -283,16 +248,12 @@ subcomponents:
     classname: SideServoMount
     kwargs: {}
     parameters:
-      length:
-        parameter: boat.width
       servo:
         parameter: driveservo
   mount1:
     classname: SideServoMount
     kwargs: {}
     parameters:
-      length:
-        parameter: boat.width
       servo:
         parameter: driveservo
   split0:
@@ -300,10 +261,7 @@ subcomponents:
     kwargs: {}
     parameters:
       botlength:
-        function: (getDim(x[1], "motorwidth"), getDim(x[1], "motorwidth"), getDim(x[1],
-          "motorwidth"),getDim(x[1], "motorwidth"), getDim(x[1], "motorwidth"), x[0]-
-          9 * getDim(x[1], "motorwidth"), getDim(x[1], "motorwidth"),getDim(x[1],
-          "motorwidth"), getDim(x[1], "motorwidth"), getDim(x[1], "motorwidth"))
+        function: ("24", "24", "24", "24","24", x[0]- 5 * 24)
         parameter: &id001
         - boat.length
         - driveservo
@@ -315,10 +273,7 @@ subcomponents:
     kwargs: {}
     parameters:
       botlength:
-        function: (getDim(x[1], "motorwidth"), getDim(x[1], "motorwidth"), getDim(x[1],
-          "motorwidth"),getDim(x[1], "motorwidth"), getDim(x[1], "motorwidth"), x[0]-
-          9 * getDim(x[1], "motorwidth"), getDim(x[1], "motorwidth"),getDim(x[1],
-          "motorwidth"), getDim(x[1], "motorwidth"), getDim(x[1], "motorwidth"))
+        function: ("24", "24", "24", "24","24", x[0]- 5 * 24)
         parameter: *id001
       toplength:
         function: (x,)
diff --git a/rocolib/output/.DS_Store b/rocolib/output/.DS_Store
index 525205c16d839505d23322e711d46625da63d232..af48048b647eab584ff22218c61624ca50008442 100644
Binary files a/rocolib/output/.DS_Store and b/rocolib/output/.DS_Store differ
diff --git a/rocolib/output/PaddleboatWithCamera/graph-anim.svg b/rocolib/output/PaddleboatWithCamera/graph-anim.svg
index 9538844e0884c71456672710bcbdbfe60b72b997..b3c5f9df36192235d37724b282c3d58d34a25920 100644
--- a/rocolib/output/PaddleboatWithCamera/graph-anim.svg
+++ b/rocolib/output/PaddleboatWithCamera/graph-anim.svg
@@ -1,238 +1,230 @@
 <?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="234.031242mm" version="1.1" viewBox="0.000000 0.000000 478.000000 234.031242" width="478.000000mm">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="234.031242mm" version="1.1" viewBox="0.000000 0.000000 486.000000 234.031242" width="486.000000mm">
   <defs/>
-  <line opacity="0.5" stroke="#0000ff" x1="179.99999999999997" x2="179.99999999999997" y1="64.03124199999999" y2="194.03124200000002"/>
-  <line opacity="0.5" stroke="#0000ff" x1="109.99999999999999" x2="109.99999999999999" y1="64.03124199999999" y2="194.03124200000002"/>
-  <line opacity="0.21477671252272268" stroke="#0000ff" x1="145.0" x2="109.99999999999999" y1="64.03124199999999" y2="64.03124199999999"/>
-  <line opacity="0.21477671252272268" stroke="#0000ff" x1="179.99999999999997" x2="145.0" y1="64.03124199999999" y2="64.03124199999999"/>
-  <line opacity="0.3833772688091895" stroke="#0000ff" x1="145.0" x2="109.99999999999999" y1="-3.7432849353535863e-07" y2="64.03124199999999"/>
-  <line stroke="#000000" x1="112.32105756343546" x2="91.16052878171773" y1="17.44773491586702" y2="28.745631275293622"/>
-  <line stroke="#000000" x1="145.0" x2="112.32105756343546" y1="-3.743284651136492e-07" y2="17.44773491586702"/>
-  <line opacity="1.0" stroke="#0000ff" x1="109.99999999999999" x2="91.16052878171773" y1="64.03124199999999" y2="28.745631275293622"/>
-  <line opacity="1.0" stroke="#ff0000" x1="109.99999999999999" x2="69.99999999999999" y1="64.03124199999999" y2="40.04352763472023"/>
-  <line stroke="#000000" x1="91.16052878171773" x2="69.99999999999999" y1="28.745631275293608" y2="40.04352763472023"/>
-  <line opacity="0.9666666666666667" stroke="#ff0000" x1="69.99999999999999" x2="69.99999999999999" y1="64.031242" y2="40.04352763472023"/>
-  <line opacity="0.1944001122142148" stroke="#0000ff" x1="109.99999999999999" x2="69.99999999999999" y1="64.03124199999999" y2="64.031242"/>
-  <line stroke="#000000" x1="62.00409521157338" x2="69.99999999999999" y1="64.031242" y2="64.031242"/>
-  <line stroke="#000000" x1="62.004095211573365" x2="62.00409521157338" y1="40.04352763472023" y2="64.031242"/>
-  <line stroke="#000000" x1="69.99999999999997" x2="62.004095211573365" y1="40.04352763472023" y2="40.04352763472023"/>
-  <line opacity="0.5" stroke="#0000ff" x1="70.00000000000004" x2="110.00000000000004" y1="194.031242" y2="194.031242"/>
-  <line opacity="1.0" stroke="#ff0000" x1="70.00000000000004" x2="110.00000000000003" y1="234.031242" y2="194.031242"/>
-  <line opacity="0.9666666666666667" stroke="#ff0000" x1="70.00000000000004" x2="70.00000000000003" y1="234.031242" y2="194.031242"/>
-  <line stroke="#000000" x1="70.00000000000004" x2="110.00000000000004" y1="234.031242" y2="234.031242"/>
-  <line opacity="1.0" stroke="#0000ff" x1="110.00000000000004" x2="110.00000000000003" y1="234.031242" y2="194.031242"/>
-  <line stroke="#000000" x1="150.0" x2="145.00000000000003" y1="234.031242" y2="234.031242"/>
-  <line stroke="#000000" x1="110.00000000000003" x2="150.0" y1="234.031242" y2="234.031242"/>
-  <line opacity="0.5" stroke="#0000ff" x1="110.00000000000003" x2="145.00000000000003" y1="194.031242" y2="194.031242"/>
-  <line opacity="0.5" stroke="#0000ff" x1="145.00000000000003" x2="180.0" y1="194.031242" y2="194.031242"/>
-  <line stroke="#000000" x1="140.00000000000003" x2="180.0" y1="234.031242" y2="234.031242"/>
-  <line stroke="#000000" x1="145.00000000000003" x2="140.00000000000003" y1="234.031242" y2="234.031242"/>
-  <line opacity="1.0" stroke="#0000ff" x1="180.0" x2="180.0" y1="194.031242" y2="234.031242"/>
-  <line opacity="1.0" stroke="#ff0000" x1="180.0" x2="220.00000000000003" y1="194.031242" y2="234.031242"/>
-  <line stroke="#000000" x1="180.0" x2="220.00000000000003" y1="234.031242" y2="234.031242"/>
-  <line opacity="0.9666666666666667" stroke="#ff0000" x1="220.00000000000003" x2="220.00000000000003" y1="194.031242" y2="234.031242"/>
-  <line opacity="0.5" stroke="#0000ff" x1="180.0" x2="220.00000000000003" y1="194.031242" y2="194.031242"/>
-  <line stroke="#000000" x1="233.33333333333334" x2="220.00000000000003" y1="194.03124200000002" y2="194.03124200000002"/>
-  <line stroke="#000000" x1="233.33333333333334" x2="233.33333333333334" y1="234.031242" y2="194.03124200000002"/>
-  <line stroke="#000000" x1="220.00000000000003" x2="233.33333333333334" y1="234.031242" y2="234.031242"/>
-  <line opacity="0.1944001122142148" stroke="#0000ff" x1="220.00000000000003" x2="180.00000000000006" y1="64.031242" y2="64.03124199999999"/>
-  <line opacity="1.0" stroke="#ff0000" x1="220.00000000000003" x2="180.00000000000006" y1="40.04352763472023" y2="64.03124199999999"/>
-  <line opacity="0.9666666666666667" stroke="#ff0000" x1="220.00000000000003" x2="220.00000000000003" y1="40.04352763472023" y2="64.031242"/>
-  <line stroke="#000000" x1="220.00000000000003" x2="198.8394712182823" y1="40.043527634720235" y2="28.745631275293622"/>
-  <line opacity="1.0" stroke="#0000ff" x1="198.8394712182823" x2="180.00000000000006" y1="28.745631275293622" y2="64.03124199999999"/>
-  <line opacity="0.3833772688091895" stroke="#0000ff" x1="145.00000000000006" x2="180.00000000000006" y1="-3.743284651136492e-07" y2="64.03124199999999"/>
-  <line stroke="#000000" x1="177.67894243656454" x2="145.00000000000006" y1="17.44773491586702" y2="-3.743284651136492e-07"/>
-  <line stroke="#000000" x1="198.83947121828228" x2="177.67894243656454" y1="28.745631275293622" y2="17.44773491586702"/>
-  <line stroke="#000000" x1="227.99590478842666" x2="220.00000000000006" y1="40.04352763472023" y2="40.04352763472023"/>
-  <line stroke="#000000" x1="227.99590478842666" x2="227.99590478842666" y1="64.031242" y2="40.04352763472023"/>
-  <line stroke="#000000" x1="220.00000000000006" x2="227.99590478842666" y1="64.031242" y2="64.031242"/>
-  <line opacity="0.5" stroke="#0000ff" x1="220.00000000000003" x2="220.00000000000003" y1="64.03124199999999" y2="77.031242"/>
-  <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="90.03124199999999" y2="77.031242"/>
-  <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="103.031242" y2="90.03124199999999"/>
-  <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="116.03124199999999" y2="103.031242"/>
-  <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="129.03124199999996" y2="116.03124199999999"/>
-  <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="142.031242" y2="129.03124199999996"/>
-  <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="155.03124199999996" y2="142.031242"/>
-  <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="168.031242" y2="155.03124199999996"/>
-  <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="181.031242" y2="168.031242"/>
-  <line opacity="0.5" stroke="#0000ff" x1="220.00000000000003" x2="220.00000000000003" y1="181.031242" y2="194.031242"/>
-  <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="194.031242" y2="194.031242"/>
-  <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="64.03124199999999" y2="64.03124199999999"/>
-  <line stroke="#000000" x1="226.00000000000003" x2="220.00000000000003" y1="64.03124199999999" y2="64.03124199999999"/>
-  <line stroke="#000000" x1="226.00000000000003" x2="226.00000000000003" y1="77.031242" y2="64.03124199999999"/>
-  <line stroke="#000000" x1="220.00000000000003" x2="226.00000000000003" y1="77.031242" y2="77.031242"/>
-  <line stroke="#000000" x1="220.00000000000003" x2="244.0" y1="199.031242" y2="199.031242"/>
-  <line stroke="#000000" x1="244.00000000000003" x2="220.00000000000003" y1="129.031242" y2="129.03124199999996"/>
-  <line opacity="0.5" stroke="#0000ff" x1="244.0" x2="244.00000000000003" y1="199.031242" y2="129.031242"/>
-  <line stroke="#000000" x1="200.0" x2="220.00000000000003" y1="199.031242" y2="199.031242"/>
-  <line opacity="0.5" stroke="#0000ff" x1="200.0" x2="200.0" y1="199.031242" y2="129.03124199999996"/>
-  <line stroke="#000000" x1="220.00000000000003" x2="200.0" y1="129.03124199999996" y2="129.03124199999996"/>
-  <line stroke="#000000" x1="176.00000000000003" x2="200.0" y1="199.031242" y2="199.031242"/>
-  <line opacity="0.5" stroke="#0000ff" x1="176.00000000000003" x2="176.00000000000003" y1="199.031242" y2="129.03124199999996"/>
-  <line stroke="#000000" x1="200.0" x2="176.00000000000003" y1="129.031242" y2="129.03124199999996"/>
-  <line stroke="#000000" x1="156.00000000000003" x2="176.00000000000003" y1="199.031242" y2="199.031242"/>
-  <line stroke="#000000" x1="176.00000000000003" x2="156.00000000000003" y1="129.03124199999996" y2="129.03124199999996"/>
-  <line stroke="#000000" x1="220.00000000000003" x2="290.00000000000006" y1="194.031242" y2="194.031242"/>
-  <line stroke="#000000" x1="290.00000000000006" x2="220.00000000000003" y1="181.031242" y2="181.031242"/>
-  <line stroke="#000000" x1="290.00000000000006" x2="290.00000000000006" y1="194.031242" y2="181.031242"/>
-  <line stroke="#000000" x1="56.66666666666671" x2="70.00000000000004" y1="234.031242" y2="234.031242"/>
-  <line stroke="#000000" x1="56.66666666666669" x2="56.66666666666671" y1="194.031242" y2="234.031242"/>
-  <line stroke="#000000" x1="70.00000000000003" x2="56.66666666666669" y1="194.031242" y2="194.031242"/>
-  <line opacity="0.5" stroke="#0000ff" x1="70.00000000000004" x2="70.00000000000004" y1="194.03124200000002" y2="181.03124200000002"/>
-  <line stroke="#000000" x1="70.00000000000003" x2="70.00000000000004" y1="168.03124200000002" y2="181.03124200000002"/>
-  <line stroke="#000000" x1="70.00000000000003" x2="70.00000000000003" y1="155.031242" y2="168.03124200000002"/>
-  <line stroke="#000000" x1="70.00000000000003" x2="70.00000000000003" y1="142.03124200000002" y2="155.031242"/>
-  <line stroke="#000000" x1="70.00000000000001" x2="70.00000000000003" y1="129.03124200000002" y2="142.03124200000002"/>
-  <line stroke="#000000" x1="70.00000000000001" x2="70.00000000000001" y1="116.03124200000002" y2="129.03124200000002"/>
-  <line stroke="#000000" x1="70.00000000000001" x2="70.00000000000001" y1="103.03124200000002" y2="116.03124200000002"/>
-  <line stroke="#000000" x1="70.00000000000001" x2="70.00000000000001" y1="90.031242" y2="103.03124200000002"/>
-  <line stroke="#000000" x1="70.0" x2="70.00000000000001" y1="77.03124200000002" y2="90.031242"/>
-  <line opacity="0.5" stroke="#0000ff" x1="70.0" x2="70.0" y1="77.03124200000002" y2="64.03124200000003"/>
-  <line stroke="#000000" x1="70.0" x2="70.0" y1="64.03124200000003" y2="64.03124200000003"/>
-  <line stroke="#000000" x1="70.00000000000004" x2="70.00000000000004" y1="194.03124200000002" y2="194.03124200000002"/>
-  <line stroke="#000000" x1="64.00000000000004" x2="70.00000000000004" y1="194.03124200000002" y2="194.03124200000002"/>
-  <line stroke="#000000" x1="64.00000000000004" x2="64.00000000000004" y1="181.03124200000002" y2="194.03124200000002"/>
-  <line stroke="#000000" x1="70.00000000000004" x2="64.00000000000004" y1="181.03124200000002" y2="181.03124200000002"/>
-  <line stroke="#000000" x1="70.0" x2="45.99999999999999" y1="72.03124200000002" y2="72.03124200000003"/>
-  <line stroke="#000000" x1="46.000000000000014" x2="70.00000000000003" y1="142.03124200000005" y2="142.03124200000002"/>
-  <line opacity="0.5" stroke="#0000ff" x1="45.99999999999999" x2="46.000000000000014" y1="72.03124200000003" y2="142.03124200000005"/>
-  <line stroke="#000000" x1="89.99999999999999" x2="70.0" y1="72.03124200000002" y2="72.03124200000003"/>
-  <line opacity="0.5" stroke="#0000ff" x1="89.99999999999999" x2="90.00000000000003" y1="72.03124200000002" y2="142.03124200000002"/>
-  <line stroke="#000000" x1="70.00000000000003" x2="90.00000000000003" y1="142.03124200000005" y2="142.03124200000002"/>
-  <line stroke="#000000" x1="114.0" x2="89.99999999999999" y1="72.03124199999999" y2="72.03124200000002"/>
-  <line opacity="0.5" stroke="#0000ff" x1="114.0" x2="114.00000000000003" y1="72.03124199999999" y2="142.03124200000002"/>
-  <line stroke="#000000" x1="90.00000000000003" x2="114.00000000000003" y1="142.03124200000002" y2="142.03124200000002"/>
-  <line stroke="#000000" x1="134.0" x2="114.0" y1="72.03124199999999" y2="72.03124199999999"/>
-  <line stroke="#000000" x1="114.00000000000001" x2="134.00000000000003" y1="142.03124200000002" y2="142.03124200000002"/>
-  <line stroke="#000000" x1="0.0" x2="69.99999999999999" y1="77.03124200000003" y2="77.03124200000002"/>
-  <line stroke="#000000" x1="0.0" x2="0.0" y1="64.03124200000003" y2="77.03124200000003"/>
-  <line stroke="#000000" x1="69.99999999999999" x2="0.0" y1="64.031242" y2="64.03124200000003"/>
-  <line stroke="#888888" x1="108.43030382152989" x2="100.93572409356514" y1="26.606620936353796" y2="30.608079779724527"/>
-  <line stroke="#888888" x1="100.93572409356514" x2="100.70023070333662" y1="30.608079779724527" y2="30.167009645665704"/>
-  <line stroke="#888888" x1="100.70023070333662" x2="108.19481043130136" y1="30.167009645665704" y2="26.165550802294977"/>
-  <line stroke="#888888" x1="108.19481043130136" x2="108.43030382152989" y1="26.165550802294977" y2="26.606620936353796"/>
-  <line stroke="#888888" x1="64.00307140868003" x2="68.00102380289331" y1="48.03943242314682" y2="48.03943242314682"/>
-  <line stroke="#888888" x1="68.00102380289331" x2="68.00102380289331" y1="48.03943242314682" y2="56.03533721157341"/>
-  <line stroke="#888888" x1="68.00102380289331" x2="64.00307140868003" y1="56.03533721157341" y2="56.03533721157343"/>
-  <line stroke="#888888" x1="123.08333333333336" x2="136.9166666666667" y1="223.781242" y2="223.781242"/>
-  <line stroke="#888888" x1="136.9166666666667" x2="136.9166666666667" y1="223.781242" y2="224.281242"/>
-  <line stroke="#888888" x1="136.9166666666667" x2="123.08333333333336" y1="224.281242" y2="224.281242"/>
-  <line stroke="#888888" x1="123.08333333333336" x2="123.08333333333336" y1="224.281242" y2="223.781242"/>
-  <line stroke="#888888" x1="153.08333333333337" x2="166.9166666666667" y1="223.781242" y2="223.781242"/>
-  <line stroke="#888888" x1="166.9166666666667" x2="166.9166666666667" y1="223.781242" y2="224.281242"/>
-  <line stroke="#888888" x1="166.9166666666667" x2="153.08333333333337" y1="224.281242" y2="224.281242"/>
-  <line stroke="#888888" x1="153.08333333333337" x2="153.08333333333337" y1="224.281242" y2="223.781242"/>
-  <line stroke="#888888" x1="230.00000000000003" x2="223.33333333333334" y1="220.69790866666668" y2="220.69790866666668"/>
-  <line stroke="#888888" x1="223.33333333333334" x2="223.33333333333334" y1="220.69790866666668" y2="207.3645753333333"/>
-  <line stroke="#888888" x1="223.33333333333334" x2="230.00000000000003" y1="207.3645753333333" y2="207.3645753333333"/>
-  <line stroke="#888888" x1="189.0642759064349" x2="181.56969617847014" y1="30.608079779724527" y2="26.60662093635381"/>
-  <line stroke="#888888" x1="181.56969617847014" x2="181.80518956869867" y1="26.60662093635381" y2="26.165550802294977"/>
-  <line stroke="#888888" x1="181.80518956869867" x2="189.2997692966634" y1="26.165550802294977" y2="30.167009645665704"/>
-  <line stroke="#888888" x1="189.2997692966634" x2="189.0642759064349" y1="30.167009645665704" y2="30.608079779724527"/>
-  <line stroke="#888888" x1="225.99692859132" x2="221.99897619710669" y1="56.03533721157341" y2="56.03533721157341"/>
-  <line stroke="#888888" x1="221.99897619710669" x2="221.99897619710669" y1="56.03533721157341" y2="48.03943242314682"/>
-  <line stroke="#888888" x1="221.99897619710669" x2="225.99692859132" y1="48.03943242314682" y2="48.03943242314682"/>
-  <line stroke="#888888" x1="224.50000000000003" x2="221.50000000000003" y1="72.69790866666666" y2="72.69790866666666"/>
-  <line stroke="#888888" x1="221.50000000000003" x2="221.50000000000003" y1="72.69790866666666" y2="68.36457533333333"/>
-  <line stroke="#888888" x1="221.50000000000003" x2="224.50000000000003" y1="68.36457533333333" y2="68.36457533333333"/>
-  <line stroke="#888888" x1="205.00000000000003" x2="201.00000000000003" y1="170.031242" y2="170.031242"/>
-  <line stroke="#888888" x1="201.00000000000003" x2="201.00000000000003" y1="170.031242" y2="158.031242"/>
-  <line stroke="#888888" x1="201.00000000000003" x2="205.00000000000003" y1="158.031242" y2="158.031242"/>
-  <line stroke="#888888" x1="205.00000000000003" x2="205.00000000000003" y1="158.031242" y2="170.031242"/>
-  <line stroke="#888888" x1="199.50000000000003" x2="176.50000000000003" y1="170.031242" y2="170.031242"/>
-  <line stroke="#888888" x1="176.50000000000003" x2="176.50000000000003" y1="170.031242" y2="158.031242"/>
-  <line stroke="#888888" x1="176.50000000000003" x2="199.50000000000003" y1="158.031242" y2="158.031242"/>
-  <line stroke="#888888" x1="199.50000000000003" x2="199.50000000000003" y1="158.031242" y2="170.031242"/>
-  <line stroke="#888888" x1="175.0" x2="171.00000000000003" y1="170.031242" y2="170.031242"/>
-  <line stroke="#888888" x1="171.00000000000003" x2="171.00000000000003" y1="170.031242" y2="158.031242"/>
-  <line stroke="#888888" x1="171.00000000000003" x2="175.0" y1="158.031242" y2="158.031242"/>
-  <line stroke="#888888" x1="175.0" x2="175.0" y1="158.031242" y2="170.031242"/>
-  <line stroke="#888888" x1="163.00000000000003" x2="159.0" y1="168.53124199999996" y2="168.53124199999996"/>
-  <line stroke="#888888" x1="159.0" x2="159.0" y1="168.53124199999996" y2="159.53124199999996"/>
-  <line stroke="#888888" x1="159.0" x2="163.00000000000003" y1="159.53124199999996" y2="159.53124199999996"/>
-  <line stroke="#888888" x1="163.00000000000003" x2="163.00000000000003" y1="159.53124199999996" y2="168.53124199999996"/>
-  <line stroke="#888888" x1="285.25000000000006" x2="285.25000000000006" y1="189.94790866666668" y2="185.11457533333333"/>
-  <line stroke="#888888" x1="285.25000000000006" x2="285.75" y1="185.11457533333333" y2="185.11457533333333"/>
-  <line stroke="#888888" x1="285.75" x2="285.75" y1="185.11457533333333" y2="189.94790866666668"/>
-  <line stroke="#888888" x1="285.75" x2="285.25000000000006" y1="189.94790866666668" y2="189.94790866666668"/>
-  <line stroke="#888888" x1="60.00000000000002" x2="66.66666666666669" y1="207.3645753333333" y2="207.3645753333333"/>
-  <line stroke="#888888" x1="66.66666666666669" x2="66.66666666666671" y1="207.3645753333333" y2="220.69790866666668"/>
-  <line stroke="#888888" x1="66.66666666666671" x2="60.000000000000036" y1="220.69790866666668" y2="220.69790866666668"/>
-  <line stroke="#888888" x1="65.50000000000003" x2="68.50000000000004" y1="185.36457533333336" y2="185.36457533333336"/>
-  <line stroke="#888888" x1="68.50000000000004" x2="68.50000000000004" y1="185.36457533333336" y2="189.69790866666668"/>
-  <line stroke="#888888" x1="68.50000000000004" x2="65.50000000000003" y1="189.69790866666668" y2="189.69790866666668"/>
-  <line stroke="#888888" x1="85.00000000000001" x2="89.00000000000001" y1="101.03124200000002" y2="101.03124200000002"/>
-  <line stroke="#888888" x1="89.00000000000001" x2="89.00000000000001" y1="101.03124200000002" y2="113.03124200000002"/>
-  <line stroke="#888888" x1="89.00000000000001" x2="85.00000000000001" y1="113.03124200000002" y2="113.03124200000002"/>
-  <line stroke="#888888" x1="85.00000000000001" x2="85.00000000000001" y1="113.03124200000002" y2="101.03124200000002"/>
-  <line stroke="#888888" x1="90.50000000000001" x2="113.50000000000001" y1="101.03124200000002" y2="101.031242"/>
-  <line stroke="#888888" x1="113.50000000000001" x2="113.50000000000001" y1="101.031242" y2="113.031242"/>
-  <line stroke="#888888" x1="113.50000000000001" x2="90.50000000000001" y1="113.031242" y2="113.03124200000002"/>
-  <line stroke="#888888" x1="90.50000000000001" x2="90.50000000000001" y1="113.03124200000002" y2="101.03124200000002"/>
-  <line stroke="#888888" x1="115.00000000000001" x2="119.0" y1="101.031242" y2="101.031242"/>
-  <line stroke="#888888" x1="119.0" x2="119.00000000000001" y1="101.031242" y2="113.031242"/>
-  <line stroke="#888888" x1="119.00000000000001" x2="115.00000000000001" y1="113.031242" y2="113.031242"/>
-  <line stroke="#888888" x1="115.00000000000001" x2="115.00000000000001" y1="113.031242" y2="101.031242"/>
-  <line stroke="#888888" x1="127.00000000000001" x2="131.0" y1="102.53124199999999" y2="102.53124199999999"/>
-  <line stroke="#888888" x1="131.0" x2="131.0" y1="102.53124199999999" y2="111.531242"/>
-  <line stroke="#888888" x1="131.0" x2="127.00000000000001" y1="111.531242" y2="111.531242"/>
-  <line stroke="#888888" x1="127.00000000000001" x2="127.00000000000001" y1="111.531242" y2="102.53124199999999"/>
-  <line stroke="#888888" x1="4.750000000000001" x2="4.750000000000001" y1="68.11457533333336" y2="72.94790866666668"/>
-  <line stroke="#888888" x1="4.750000000000001" x2="4.25" y1="72.94790866666668" y2="72.94790866666668"/>
-  <line stroke="#888888" x1="4.25" x2="4.25" y1="72.94790866666668" y2="68.11457533333336"/>
-  <line stroke="#888888" x1="4.25" x2="4.750000000000001" y1="68.11457533333336" y2="68.11457533333336"/>
-  <line stroke="#000000" x1="334.00000000000006" x2="310.0" y1="98.531242" y2="98.531242"/>
-  <line opacity="0.5" stroke="#0000ff" x1="334.00000000000006" x2="334.00000000000006" y1="98.531242" y2="159.531242"/>
-  <line stroke="#000000" x1="310.0" x2="334.00000000000006" y1="159.531242" y2="159.531242"/>
-  <line opacity="0.5" stroke="#0000ff" x1="310.0" x2="310.0" y1="159.531242" y2="98.531242"/>
-  <line stroke="#000000" x1="394.00000000000006" x2="334.00000000000006" y1="98.531242" y2="98.531242"/>
-  <line opacity="0.5" stroke="#0000ff" x1="394.00000000000006" x2="394.00000000000006" y1="98.531242" y2="159.531242"/>
-  <line stroke="#000000" x1="334.00000000000006" x2="394.00000000000006" y1="159.531242" y2="159.531242"/>
-  <line stroke="#000000" x1="418.00000000000006" x2="394.00000000000006" y1="98.531242" y2="98.531242"/>
-  <line opacity="0.5" stroke="#0000ff" x1="418.00000000000006" x2="418.00000000000006" y1="98.531242" y2="159.531242"/>
-  <line stroke="#000000" x1="394.00000000000006" x2="418.00000000000006" y1="159.531242" y2="159.531242"/>
-  <line stroke="#000000" x1="478.00000000000006" x2="418.00000000000006" y1="98.531242" y2="98.531242"/>
-  <line stroke="#000000" x1="478.00000000000006" x2="478.00000000000006" y1="159.531242" y2="98.531242"/>
-  <line stroke="#000000" x1="418.00000000000006" x2="478.00000000000006" y1="159.531242" y2="159.531242"/>
-  <line stroke="#000000" x1="300.0" x2="310.0" y1="159.531242" y2="159.531242"/>
-  <line stroke="#000000" x1="300.0" x2="300.0" y1="98.531242" y2="159.531242"/>
-  <line stroke="#000000" x1="310.0" x2="300.0" y1="98.531242" y2="98.531242"/>
-  <line stroke="#888888" x1="311.40000000000003" x2="312.6" y1="108.531242" y2="108.531242"/>
-  <line stroke="#888888" x1="312.6" x2="312.6" y1="108.531242" y2="149.53124200000002"/>
-  <line stroke="#888888" x1="312.6" x2="311.40000000000003" y1="149.53124200000002" y2="149.53124200000002"/>
-  <line stroke="#888888" x1="311.40000000000003" x2="311.40000000000003" y1="149.53124200000002" y2="108.531242"/>
-  <line stroke="#888888" x1="331.40000000000003" x2="332.6000000000001" y1="109.031242" y2="109.031242"/>
-  <line stroke="#888888" x1="332.6000000000001" x2="332.6000000000001" y1="109.031242" y2="139.031242"/>
-  <line stroke="#888888" x1="332.6000000000001" x2="331.40000000000003" y1="139.031242" y2="139.031242"/>
-  <line stroke="#888888" x1="331.40000000000003" x2="331.40000000000003" y1="139.031242" y2="109.031242"/>
-  <line stroke="#888888" x1="342.00000000000006" x2="342.00000000000006" y1="150.031242" y2="132.03124200000002"/>
-  <line stroke="#888888" x1="342.00000000000006" x2="372.00000000000006" y1="132.03124200000002" y2="132.03124200000002"/>
-  <line stroke="#888888" x1="372.00000000000006" x2="372.00000000000006" y1="132.03124200000002" y2="150.031242"/>
-  <line stroke="#888888" x1="372.00000000000006" x2="342.00000000000006" y1="150.031242" y2="150.031242"/>
-  <line stroke="#888888" x1="415.4" x2="416.6000000000001" y1="108.531242" y2="108.531242"/>
-  <line stroke="#888888" x1="416.6000000000001" x2="416.6000000000001" y1="108.531242" y2="149.53124200000002"/>
-  <line stroke="#888888" x1="416.6000000000001" x2="415.4" y1="149.53124200000002" y2="149.53124200000002"/>
-  <line stroke="#888888" x1="415.4" x2="415.4" y1="149.53124200000002" y2="108.531242"/>
-  <line stroke="#888888" x1="395.40000000000003" x2="396.6000000000001" y1="109.031242" y2="109.031242"/>
-  <line stroke="#888888" x1="396.6000000000001" x2="396.6000000000001" y1="109.031242" y2="139.031242"/>
-  <line stroke="#888888" x1="396.6000000000001" x2="395.40000000000003" y1="139.031242" y2="139.031242"/>
-  <line stroke="#888888" x1="395.40000000000003" x2="395.40000000000003" y1="139.031242" y2="109.031242"/>
-  <line stroke="#888888" x1="433.00000000000006" x2="433.00000000000006" y1="112.531242" y2="105.531242"/>
-  <line stroke="#888888" x1="433.00000000000006" x2="453.00000000000006" y1="105.531242" y2="105.531242"/>
-  <line stroke="#888888" x1="453.00000000000006" x2="453.00000000000006" y1="105.531242" y2="112.531242"/>
-  <line stroke="#888888" x1="453.00000000000006" x2="433.00000000000006" y1="112.531242" y2="112.531242"/>
-  <line stroke="#888888" x1="470.25000000000006" x2="470.25000000000006" y1="120.9630601818182" y2="109.3721510909091"/>
-  <line stroke="#888888" x1="470.25000000000006" x2="470.75000000000006" y1="109.3721510909091" y2="109.3721510909091"/>
-  <line stroke="#888888" x1="470.75000000000006" x2="470.75000000000006" y1="109.3721510909091" y2="120.9630601818182"/>
-  <line stroke="#888888" x1="470.75000000000006" x2="470.25000000000006" y1="120.9630601818182" y2="120.9630601818182"/>
-  <line stroke="#888888" x1="470.25000000000006" x2="470.25000000000006" y1="148.69033290909093" y2="137.09942381818183"/>
-  <line stroke="#888888" x1="470.25000000000006" x2="470.75000000000006" y1="137.09942381818183" y2="137.09942381818183"/>
-  <line stroke="#888888" x1="470.75000000000006" x2="470.75000000000006" y1="137.09942381818183" y2="148.69033290909093"/>
-  <line stroke="#888888" x1="470.75000000000006" x2="470.25000000000006" y1="148.69033290909093" y2="148.69033290909093"/>
-  <line stroke="#888888" x1="302.50000000000006" x2="307.50000000000006" y1="109.6221510909091" y2="109.6221510909091"/>
-  <line stroke="#888888" x1="307.50000000000006" x2="307.50000000000006" y1="109.6221510909091" y2="120.7130601818182"/>
-  <line stroke="#888888" x1="307.50000000000006" x2="302.50000000000006" y1="120.7130601818182" y2="120.7130601818182"/>
-  <line stroke="#888888" x1="302.50000000000006" x2="307.50000000000006" y1="137.34942381818186" y2="137.34942381818186"/>
-  <line stroke="#888888" x1="307.50000000000006" x2="307.50000000000006" y1="137.34942381818186" y2="148.44033290909093"/>
-  <line stroke="#888888" x1="307.50000000000006" x2="302.50000000000006" y1="148.44033290909093" y2="148.44033290909093"/>
+  <line opacity="0.5" stroke="#0000ff" x1="144.00000000000003" x2="144.00000000000003" y1="64.03124199999999" y2="194.03124200000002"/>
+  <line opacity="0.5" stroke="#0000ff" x1="74.0" x2="74.0" y1="64.03124199999999" y2="194.03124200000002"/>
+  <line opacity="0.21477671252272268" stroke="#0000ff" x1="109.00000000000001" x2="74.0" y1="64.03124199999999" y2="64.03124199999999"/>
+  <line opacity="0.21477671252272268" stroke="#0000ff" x1="144.00000000000003" x2="109.00000000000001" y1="64.03124199999999" y2="64.03124199999999"/>
+  <line opacity="0.3833772688091895" stroke="#0000ff" x1="109.00000000000001" x2="74.0" y1="-3.7432849353535863e-07" y2="64.03124199999999"/>
+  <line stroke="#000000" x1="76.3210575634355" x2="55.16052878171775" y1="17.44773491586702" y2="28.745631275293622"/>
+  <line stroke="#000000" x1="109.00000000000001" x2="76.3210575634355" y1="-3.743284651136492e-07" y2="17.44773491586702"/>
+  <line opacity="1.0" stroke="#0000ff" x1="74.0" x2="55.16052878171775" y1="64.03124199999999" y2="28.745631275293622"/>
+  <line opacity="1.0" stroke="#ff0000" x1="74.0" x2="34.0" y1="64.03124199999999" y2="40.04352763472023"/>
+  <line stroke="#000000" x1="55.160528781717744" x2="34.0" y1="28.745631275293608" y2="40.04352763472023"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="34.0" x2="34.0" y1="64.031242" y2="40.04352763472023"/>
+  <line opacity="0.1944001122142148" stroke="#0000ff" x1="74.0" x2="34.0" y1="64.03124199999999" y2="64.031242"/>
+  <line stroke="#000000" x1="26.0040952115734" x2="34.0" y1="64.031242" y2="64.031242"/>
+  <line stroke="#000000" x1="26.00409521157339" x2="26.0040952115734" y1="40.04352763472023" y2="64.031242"/>
+  <line stroke="#000000" x1="33.99999999999999" x2="26.00409521157339" y1="40.04352763472023" y2="40.04352763472023"/>
+  <line opacity="0.5" stroke="#0000ff" x1="34.000000000000064" x2="74.00000000000007" y1="194.031242" y2="194.031242"/>
+  <line opacity="1.0" stroke="#ff0000" x1="34.000000000000064" x2="74.00000000000006" y1="234.031242" y2="194.031242"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="34.000000000000064" x2="34.00000000000004" y1="234.031242" y2="194.031242"/>
+  <line stroke="#000000" x1="34.000000000000064" x2="74.00000000000007" y1="234.031242" y2="234.031242"/>
+  <line opacity="1.0" stroke="#0000ff" x1="74.00000000000007" x2="74.00000000000006" y1="234.031242" y2="194.031242"/>
+  <line stroke="#000000" x1="114.00000000000004" x2="109.00000000000004" y1="234.031242" y2="234.031242"/>
+  <line stroke="#000000" x1="74.00000000000006" x2="114.00000000000004" y1="234.031242" y2="234.031242"/>
+  <line opacity="0.5" stroke="#0000ff" x1="74.00000000000006" x2="109.00000000000004" y1="194.031242" y2="194.031242"/>
+  <line opacity="0.5" stroke="#0000ff" x1="109.00000000000004" x2="144.00000000000006" y1="194.031242" y2="194.031242"/>
+  <line stroke="#000000" x1="104.00000000000006" x2="144.00000000000006" y1="234.031242" y2="234.031242"/>
+  <line stroke="#000000" x1="109.00000000000004" x2="104.00000000000006" y1="234.031242" y2="234.031242"/>
+  <line opacity="1.0" stroke="#0000ff" x1="144.00000000000006" x2="144.00000000000006" y1="194.031242" y2="234.031242"/>
+  <line opacity="1.0" stroke="#ff0000" x1="144.00000000000006" x2="184.00000000000003" y1="194.031242" y2="234.031242"/>
+  <line stroke="#000000" x1="144.00000000000006" x2="184.00000000000003" y1="234.031242" y2="234.031242"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="184.00000000000003" x2="184.00000000000003" y1="194.031242" y2="234.031242"/>
+  <line opacity="0.5" stroke="#0000ff" x1="144.00000000000006" x2="184.00000000000003" y1="194.031242" y2="194.031242"/>
+  <line stroke="#000000" x1="197.3333333333334" x2="184.00000000000003" y1="194.03124200000002" y2="194.03124200000002"/>
+  <line stroke="#000000" x1="197.3333333333334" x2="197.3333333333334" y1="234.031242" y2="194.03124200000002"/>
+  <line stroke="#000000" x1="184.00000000000003" x2="197.3333333333334" y1="234.031242" y2="234.031242"/>
+  <line opacity="0.1944001122142148" stroke="#0000ff" x1="184.00000000000006" x2="144.00000000000009" y1="64.031242" y2="64.03124199999999"/>
+  <line opacity="1.0" stroke="#ff0000" x1="184.00000000000006" x2="144.00000000000009" y1="40.04352763472023" y2="64.03124199999999"/>
+  <line opacity="0.9666666666666667" stroke="#ff0000" x1="184.00000000000006" x2="184.00000000000003" y1="40.04352763472023" y2="64.031242"/>
+  <line stroke="#000000" x1="184.00000000000006" x2="162.83947121828234" y1="40.043527634720235" y2="28.745631275293622"/>
+  <line opacity="1.0" stroke="#0000ff" x1="162.83947121828234" x2="144.00000000000009" y1="28.745631275293622" y2="64.03124199999999"/>
+  <line opacity="0.3833772688091895" stroke="#0000ff" x1="109.00000000000006" x2="144.00000000000009" y1="-3.743284651136492e-07" y2="64.03124199999999"/>
+  <line stroke="#000000" x1="141.6789424365646" x2="109.00000000000006" y1="17.44773491586702" y2="-3.743284651136492e-07"/>
+  <line stroke="#000000" x1="162.83947121828234" x2="141.6789424365646" y1="28.745631275293622" y2="17.44773491586702"/>
+  <line stroke="#000000" x1="191.99590478842666" x2="184.00000000000006" y1="40.04352763472023" y2="40.04352763472023"/>
+  <line stroke="#000000" x1="191.99590478842666" x2="191.99590478842666" y1="64.031242" y2="40.04352763472023"/>
+  <line stroke="#000000" x1="184.00000000000006" x2="191.99590478842666" y1="64.031242" y2="64.031242"/>
+  <line stroke="#000000" x1="184.00000000000006" x2="184.00000000000006" y1="79.031242" y2="64.03124199999999"/>
+  <line stroke="#000000" x1="184.00000000000006" x2="184.00000000000006" y1="102.031242" y2="79.031242"/>
+  <line stroke="#000000" x1="184.00000000000003" x2="184.00000000000006" y1="125.03124199999999" y2="102.031242"/>
+  <line stroke="#000000" x1="184.00000000000003" x2="184.00000000000003" y1="148.03124199999996" y2="125.03124199999999"/>
+  <line opacity="1.0" stroke="#ff0000" x1="184.00000000000003" x2="184.00000000000003" y1="171.03124199999996" y2="148.03124199999996"/>
+  <line stroke="#000000" x1="184.00000000000003" x2="184.00000000000003" y1="194.031242" y2="171.03124199999996"/>
+  <line stroke="#000000" x1="184.00000000000003" x2="184.00000000000003" y1="194.031242" y2="194.031242"/>
+  <line stroke="#000000" x1="184.00000000000006" x2="184.00000000000006" y1="64.03124199999999" y2="64.03124199999999"/>
+  <line stroke="#000000" x1="218.00000000000006" x2="218.00000000000006" y1="172.031242" y2="148.031242"/>
+  <line stroke="#000000" x1="184.00000000000003" x2="218.00000000000006" y1="172.031242" y2="172.031242"/>
+  <line opacity="0.5" stroke="#0000ff" x1="218.00000000000006" x2="184.00000000000003" y1="148.031242" y2="148.03124199999996"/>
+  <line stroke="#000000" x1="218.00000000000006" x2="218.00000000000006" y1="148.031242" y2="128.031242"/>
+  <line stroke="#000000" x1="184.00000000000003" x2="184.00000000000003" y1="128.031242" y2="148.03124199999996"/>
+  <line opacity="0.5" stroke="#0000ff" x1="218.00000000000006" x2="184.00000000000003" y1="128.031242" y2="128.031242"/>
+  <line stroke="#000000" x1="218.00000000000006" x2="218.00000000000006" y1="128.031242" y2="104.031242"/>
+  <line stroke="#000000" x1="184.00000000000003" x2="184.00000000000003" y1="104.031242" y2="128.031242"/>
+  <line opacity="0.5" stroke="#0000ff" x1="218.00000000000006" x2="184.00000000000003" y1="104.031242" y2="104.031242"/>
+  <line stroke="#000000" x1="218.00000000000006" x2="218.00000000000006" y1="104.031242" y2="84.031242"/>
+  <line stroke="#000000" x1="184.00000000000003" x2="184.00000000000003" y1="84.031242" y2="104.031242"/>
+  <line opacity="0.5" stroke="#0000ff" x1="184.00000000000003" x2="218.00000000000006" y1="84.031242" y2="84.031242"/>
+  <line stroke="#000000" x1="184.00000000000003" x2="184.00000000000003" y1="74.03124199999999" y2="84.031242"/>
+  <line stroke="#000000" x1="218.00000000000006" x2="184.00000000000003" y1="74.03124199999999" y2="74.03124199999999"/>
+  <line stroke="#000000" x1="218.00000000000006" x2="218.00000000000006" y1="84.031242" y2="74.03124199999999"/>
+  <line stroke="#000000" x1="20.666666666666732" x2="34.000000000000064" y1="234.031242" y2="234.031242"/>
+  <line stroke="#000000" x1="20.666666666666718" x2="20.666666666666732" y1="194.031242" y2="234.031242"/>
+  <line stroke="#000000" x1="34.00000000000004" x2="20.666666666666718" y1="194.031242" y2="194.031242"/>
+  <line stroke="#000000" x1="34.000000000000064" x2="34.000000000000064" y1="179.03124200000002" y2="194.03124200000002"/>
+  <line stroke="#000000" x1="34.00000000000004" x2="34.000000000000064" y1="156.03124200000002" y2="179.03124200000002"/>
+  <line opacity="1.0" stroke="#ff0000" x1="34.00000000000004" x2="34.00000000000004" y1="133.03124200000002" y2="156.03124200000002"/>
+  <line stroke="#000000" x1="34.00000000000003" x2="34.00000000000004" y1="110.03124200000002" y2="133.03124200000002"/>
+  <line stroke="#000000" x1="34.000000000000014" x2="34.00000000000003" y1="87.03124200000002" y2="110.03124200000002"/>
+  <line stroke="#000000" x1="34.000000000000014" x2="34.000000000000014" y1="64.03124200000003" y2="87.03124200000002"/>
+  <line stroke="#000000" x1="34.000000000000014" x2="34.000000000000014" y1="64.03124200000003" y2="64.03124200000003"/>
+  <line stroke="#000000" x1="34.000000000000064" x2="34.000000000000064" y1="194.03124200000002" y2="194.03124200000002"/>
+  <line stroke="#000000" x1="5.684341886080803e-14" x2="34.00000000000004" y1="156.03124200000005" y2="156.03124200000002"/>
+  <line stroke="#000000" x1="4.263256414560602e-14" x2="5.684341886080803e-14" y1="132.03124200000002" y2="156.03124200000005"/>
+  <line opacity="0.5" stroke="#0000ff" x1="34.00000000000003" x2="4.263256414560602e-14" y1="132.03124200000002" y2="132.03124200000002"/>
+  <line stroke="#000000" x1="34.00000000000003" x2="34.00000000000003" y1="132.03124200000002" y2="112.03124200000002"/>
+  <line stroke="#000000" x1="2.8421709430404014e-14" x2="2.8421709430404014e-14" y1="112.03124200000003" y2="132.03124200000002"/>
+  <line opacity="0.5" stroke="#0000ff" x1="34.00000000000003" x2="2.8421709430404014e-14" y1="112.03124200000002" y2="112.03124200000003"/>
+  <line stroke="#000000" x1="34.00000000000003" x2="34.00000000000003" y1="112.03124200000002" y2="88.03124200000003"/>
+  <line stroke="#000000" x1="2.8421709430404014e-14" x2="2.8421709430404014e-14" y1="88.03124200000003" y2="112.03124200000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="34.00000000000003" x2="2.8421709430404014e-14" y1="88.03124200000003" y2="88.03124200000003"/>
+  <line stroke="#000000" x1="34.0" x2="34.0" y1="88.03124200000003" y2="68.03124200000002"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="68.03124200000002" y2="88.03124200000003"/>
+  <line opacity="0.5" stroke="#0000ff" x1="0.0" x2="34.0" y1="68.03124200000002" y2="68.03124200000002"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="58.03124200000002" y2="68.03124200000002"/>
+  <line stroke="#000000" x1="34.0" x2="0.0" y1="58.03124200000002" y2="58.03124200000002"/>
+  <line stroke="#000000" x1="34.0" x2="34.0" y1="68.03124200000002" y2="58.03124200000002"/>
+  <line stroke="#888888" x1="72.43030382152992" x2="64.93572409356516" y1="26.606620936353796" y2="30.608079779724527"/>
+  <line stroke="#888888" x1="64.93572409356516" x2="64.70023070333663" y1="30.608079779724527" y2="30.167009645665704"/>
+  <line stroke="#888888" x1="64.70023070333663" x2="72.19481043130139" y1="30.167009645665704" y2="26.165550802294977"/>
+  <line stroke="#888888" x1="72.19481043130139" x2="72.43030382152992" y1="26.165550802294977" y2="26.606620936353796"/>
+  <line stroke="#888888" x1="28.003071408680043" x2="32.00102380289334" y1="48.03943242314682" y2="48.03943242314682"/>
+  <line stroke="#888888" x1="32.00102380289334" x2="32.00102380289334" y1="48.03943242314682" y2="56.03533721157341"/>
+  <line stroke="#888888" x1="32.00102380289334" x2="28.003071408680043" y1="56.03533721157341" y2="56.03533721157343"/>
+  <line stroke="#888888" x1="87.08333333333339" x2="100.91666666666671" y1="223.781242" y2="223.781242"/>
+  <line stroke="#888888" x1="100.91666666666671" x2="100.91666666666671" y1="223.781242" y2="224.281242"/>
+  <line stroke="#888888" x1="100.91666666666671" x2="87.08333333333339" y1="224.281242" y2="224.281242"/>
+  <line stroke="#888888" x1="87.08333333333339" x2="87.08333333333339" y1="224.281242" y2="223.781242"/>
+  <line stroke="#888888" x1="117.08333333333339" x2="130.91666666666669" y1="223.781242" y2="223.781242"/>
+  <line stroke="#888888" x1="130.91666666666669" x2="130.91666666666669" y1="223.781242" y2="224.281242"/>
+  <line stroke="#888888" x1="130.91666666666669" x2="117.08333333333339" y1="224.281242" y2="224.281242"/>
+  <line stroke="#888888" x1="117.08333333333339" x2="117.08333333333339" y1="224.281242" y2="223.781242"/>
+  <line stroke="#888888" x1="194.00000000000006" x2="187.3333333333334" y1="220.69790866666668" y2="220.69790866666668"/>
+  <line stroke="#888888" x1="187.3333333333334" x2="187.3333333333334" y1="220.69790866666668" y2="207.3645753333333"/>
+  <line stroke="#888888" x1="187.3333333333334" x2="194.00000000000006" y1="207.3645753333333" y2="207.3645753333333"/>
+  <line stroke="#888888" x1="153.0642759064349" x2="145.56969617847014" y1="30.608079779724527" y2="26.60662093635381"/>
+  <line stroke="#888888" x1="145.56969617847014" x2="145.80518956869867" y1="26.60662093635381" y2="26.165550802294977"/>
+  <line stroke="#888888" x1="145.80518956869867" x2="153.2997692966634" y1="26.165550802294977" y2="30.167009645665704"/>
+  <line stroke="#888888" x1="153.2997692966634" x2="153.0642759064349" y1="30.167009645665704" y2="30.608079779724527"/>
+  <line stroke="#888888" x1="189.99692859132003" x2="185.9989761971067" y1="56.03533721157341" y2="56.03533721157341"/>
+  <line stroke="#888888" x1="185.9989761971067" x2="185.9989761971067" y1="56.03533721157341" y2="48.03943242314682"/>
+  <line stroke="#888888" x1="185.9989761971067" x2="189.99692859132003" y1="48.03943242314682" y2="48.03943242314682"/>
+  <line stroke="#888888" x1="195.0833333333334" x2="206.91666666666669" y1="164.28124199999996" y2="164.28124199999996"/>
+  <line stroke="#888888" x1="206.91666666666669" x2="206.91666666666669" y1="164.28124199999996" y2="164.781242"/>
+  <line stroke="#888888" x1="206.91666666666669" x2="195.0833333333334" y1="164.781242" y2="164.781242"/>
+  <line stroke="#888888" x1="195.0833333333334" x2="195.0833333333334" y1="164.781242" y2="164.28124199999996"/>
+  <line stroke="#888888" x1="207.00000000000003" x2="207.00000000000003" y1="129.031242" y2="133.03124200000002"/>
+  <line stroke="#888888" x1="207.00000000000003" x2="195.00000000000006" y1="133.03124200000002" y2="133.03124200000002"/>
+  <line stroke="#888888" x1="195.00000000000006" x2="195.00000000000006" y1="133.03124200000002" y2="129.031242"/>
+  <line stroke="#888888" x1="195.00000000000006" x2="207.00000000000003" y1="129.031242" y2="129.031242"/>
+  <line stroke="#888888" x1="205.50000000000006" x2="205.50000000000006" y1="141.031242" y2="145.03124200000002"/>
+  <line stroke="#888888" x1="205.50000000000006" x2="196.50000000000006" y1="145.03124200000002" y2="145.03124200000002"/>
+  <line stroke="#888888" x1="196.50000000000006" x2="196.50000000000006" y1="145.03124200000002" y2="141.031242"/>
+  <line stroke="#888888" x1="196.50000000000006" x2="205.50000000000006" y1="141.031242" y2="141.031242"/>
+  <line stroke="#888888" x1="207.00000000000003" x2="207.00000000000003" y1="104.531242" y2="127.53124200000002"/>
+  <line stroke="#888888" x1="207.00000000000003" x2="195.00000000000006" y1="127.53124200000002" y2="127.53124200000002"/>
+  <line stroke="#888888" x1="195.00000000000006" x2="195.00000000000006" y1="127.53124200000002" y2="104.531242"/>
+  <line stroke="#888888" x1="195.00000000000006" x2="207.00000000000003" y1="104.531242" y2="104.531242"/>
+  <line stroke="#888888" x1="207.00000000000003" x2="207.00000000000003" y1="99.03124199999999" y2="103.031242"/>
+  <line stroke="#888888" x1="207.00000000000003" x2="195.00000000000006" y1="103.031242" y2="103.031242"/>
+  <line stroke="#888888" x1="195.00000000000006" x2="195.00000000000006" y1="103.031242" y2="99.03124199999999"/>
+  <line stroke="#888888" x1="195.00000000000006" x2="207.00000000000003" y1="99.03124199999999" y2="99.03124199999999"/>
+  <line stroke="#888888" x1="206.6666666666667" x2="206.6666666666667" y1="76.53124199999999" y2="81.531242"/>
+  <line stroke="#888888" x1="206.6666666666667" x2="195.33333333333337" y1="81.531242" y2="81.531242"/>
+  <line stroke="#888888" x1="195.33333333333337" x2="195.33333333333337" y1="81.531242" y2="76.53124199999999"/>
+  <line stroke="#888888" x1="24.000000000000043" x2="30.666666666666718" y1="207.3645753333333" y2="207.3645753333333"/>
+  <line stroke="#888888" x1="30.666666666666718" x2="30.666666666666732" y1="207.3645753333333" y2="220.69790866666668"/>
+  <line stroke="#888888" x1="30.666666666666732" x2="24.00000000000006" y1="220.69790866666668" y2="220.69790866666668"/>
+  <line stroke="#888888" x1="11.083333333333371" x2="22.9166666666667" y1="148.28124200000002" y2="148.281242"/>
+  <line stroke="#888888" x1="22.9166666666667" x2="22.9166666666667" y1="148.281242" y2="148.78124200000002"/>
+  <line stroke="#888888" x1="22.9166666666667" x2="11.083333333333371" y1="148.78124200000002" y2="148.78124200000005"/>
+  <line stroke="#888888" x1="11.083333333333371" x2="11.083333333333371" y1="148.78124200000005" y2="148.28124200000002"/>
+  <line stroke="#888888" x1="23.000000000000032" x2="23.000000000000032" y1="113.03124200000002" y2="117.03124200000002"/>
+  <line stroke="#888888" x1="23.000000000000032" x2="11.00000000000003" y1="117.03124200000002" y2="117.03124200000002"/>
+  <line stroke="#888888" x1="11.00000000000003" x2="11.00000000000003" y1="117.03124200000002" y2="113.03124200000002"/>
+  <line stroke="#888888" x1="11.00000000000003" x2="23.000000000000032" y1="113.03124200000002" y2="113.03124200000002"/>
+  <line stroke="#888888" x1="21.50000000000003" x2="21.50000000000003" y1="125.03124200000002" y2="129.031242"/>
+  <line stroke="#888888" x1="21.50000000000003" x2="12.50000000000003" y1="129.031242" y2="129.03124200000002"/>
+  <line stroke="#888888" x1="12.50000000000003" x2="12.50000000000003" y1="129.03124200000002" y2="125.03124200000002"/>
+  <line stroke="#888888" x1="12.50000000000003" x2="21.50000000000003" y1="125.03124200000002" y2="125.03124200000002"/>
+  <line stroke="#888888" x1="23.000000000000032" x2="23.000000000000032" y1="88.53124200000003" y2="111.53124200000002"/>
+  <line stroke="#888888" x1="23.000000000000032" x2="11.00000000000003" y1="111.53124200000002" y2="111.53124200000002"/>
+  <line stroke="#888888" x1="11.00000000000003" x2="11.00000000000003" y1="111.53124200000002" y2="88.53124200000003"/>
+  <line stroke="#888888" x1="11.00000000000003" x2="23.000000000000032" y1="88.53124200000003" y2="88.53124200000003"/>
+  <line stroke="#888888" x1="23.000000000000004" x2="23.000000000000004" y1="83.03124200000002" y2="87.03124200000003"/>
+  <line stroke="#888888" x1="23.000000000000004" x2="11.000000000000002" y1="87.03124200000003" y2="87.03124200000003"/>
+  <line stroke="#888888" x1="11.000000000000002" x2="11.000000000000002" y1="87.03124200000003" y2="83.03124200000002"/>
+  <line stroke="#888888" x1="11.000000000000002" x2="23.000000000000004" y1="83.03124200000002" y2="83.03124200000002"/>
+  <line stroke="#888888" x1="22.666666666666675" x2="22.666666666666675" y1="60.53124200000003" y2="65.53124200000002"/>
+  <line stroke="#888888" x1="22.666666666666675" x2="11.333333333333343" y1="65.53124200000002" y2="65.53124200000002"/>
+  <line stroke="#888888" x1="11.333333333333343" x2="11.333333333333343" y1="65.53124200000002" y2="60.53124200000003"/>
+  <line stroke="#000000" x1="298.00000000000006" x2="228.00000000000003" y1="122.531242" y2="122.531242"/>
+  <line stroke="#000000" x1="298.00000000000006" x2="298.00000000000006" y1="135.53124200000002" y2="122.531242"/>
+  <line stroke="#000000" x1="228.00000000000003" x2="298.00000000000006" y1="135.53124200000002" y2="135.53124200000002"/>
+  <line stroke="#000000" x1="228.00000000000003" x2="228.00000000000003" y1="122.531242" y2="135.53124200000002"/>
+  <line stroke="#000000" x1="342.00000000000006" x2="318.0" y1="98.531242" y2="98.531242"/>
+  <line opacity="0.5" stroke="#0000ff" x1="342.00000000000006" x2="342.00000000000006" y1="98.531242" y2="159.531242"/>
+  <line stroke="#000000" x1="318.0" x2="342.00000000000006" y1="159.531242" y2="159.531242"/>
+  <line opacity="0.5" stroke="#0000ff" x1="318.0" x2="318.0" y1="159.531242" y2="98.531242"/>
+  <line stroke="#000000" x1="402.00000000000006" x2="342.00000000000006" y1="98.531242" y2="98.531242"/>
+  <line opacity="0.5" stroke="#0000ff" x1="402.00000000000006" x2="402.00000000000006" y1="98.531242" y2="159.531242"/>
+  <line stroke="#000000" x1="342.00000000000006" x2="402.00000000000006" y1="159.531242" y2="159.531242"/>
+  <line stroke="#000000" x1="426.00000000000006" x2="402.00000000000006" y1="98.531242" y2="98.531242"/>
+  <line opacity="0.5" stroke="#0000ff" x1="426.00000000000006" x2="426.00000000000006" y1="98.531242" y2="159.531242"/>
+  <line stroke="#000000" x1="402.00000000000006" x2="426.00000000000006" y1="159.531242" y2="159.531242"/>
+  <line stroke="#000000" x1="486.00000000000006" x2="426.00000000000006" y1="98.531242" y2="98.531242"/>
+  <line stroke="#000000" x1="486.00000000000006" x2="486.00000000000006" y1="159.531242" y2="98.531242"/>
+  <line stroke="#000000" x1="426.00000000000006" x2="486.00000000000006" y1="159.531242" y2="159.531242"/>
+  <line stroke="#000000" x1="308.00000000000006" x2="318.0" y1="159.531242" y2="159.531242"/>
+  <line stroke="#000000" x1="308.00000000000006" x2="308.00000000000006" y1="98.531242" y2="159.531242"/>
+  <line stroke="#000000" x1="318.0" x2="308.00000000000006" y1="98.531242" y2="98.531242"/>
+  <line stroke="#888888" x1="319.4" x2="320.6000000000001" y1="108.531242" y2="108.531242"/>
+  <line stroke="#888888" x1="320.6000000000001" x2="320.6000000000001" y1="108.531242" y2="149.53124200000002"/>
+  <line stroke="#888888" x1="320.6000000000001" x2="319.4" y1="149.53124200000002" y2="149.53124200000002"/>
+  <line stroke="#888888" x1="319.4" x2="319.4" y1="149.53124200000002" y2="108.531242"/>
+  <line stroke="#888888" x1="339.40000000000003" x2="340.6" y1="109.031242" y2="109.031242"/>
+  <line stroke="#888888" x1="340.6" x2="340.6" y1="109.031242" y2="139.031242"/>
+  <line stroke="#888888" x1="340.6" x2="339.40000000000003" y1="139.031242" y2="139.031242"/>
+  <line stroke="#888888" x1="339.40000000000003" x2="339.40000000000003" y1="139.031242" y2="109.031242"/>
+  <line stroke="#888888" x1="350.0" x2="350.0" y1="150.031242" y2="132.03124200000002"/>
+  <line stroke="#888888" x1="350.0" x2="380.00000000000006" y1="132.03124200000002" y2="132.03124200000002"/>
+  <line stroke="#888888" x1="380.00000000000006" x2="380.00000000000006" y1="132.03124200000002" y2="150.031242"/>
+  <line stroke="#888888" x1="380.00000000000006" x2="350.0" y1="150.031242" y2="150.031242"/>
+  <line stroke="#888888" x1="423.40000000000003" x2="424.6000000000001" y1="108.531242" y2="108.531242"/>
+  <line stroke="#888888" x1="424.6000000000001" x2="424.6000000000001" y1="108.531242" y2="149.53124200000002"/>
+  <line stroke="#888888" x1="424.6000000000001" x2="423.40000000000003" y1="149.53124200000002" y2="149.53124200000002"/>
+  <line stroke="#888888" x1="423.40000000000003" x2="423.40000000000003" y1="149.53124200000002" y2="108.531242"/>
+  <line stroke="#888888" x1="403.40000000000003" x2="404.6000000000001" y1="109.031242" y2="109.031242"/>
+  <line stroke="#888888" x1="404.6000000000001" x2="404.6000000000001" y1="109.031242" y2="139.031242"/>
+  <line stroke="#888888" x1="404.6000000000001" x2="403.40000000000003" y1="139.031242" y2="139.031242"/>
+  <line stroke="#888888" x1="403.40000000000003" x2="403.40000000000003" y1="139.031242" y2="109.031242"/>
+  <line stroke="#888888" x1="441.00000000000006" x2="441.00000000000006" y1="112.531242" y2="105.531242"/>
+  <line stroke="#888888" x1="441.00000000000006" x2="461.00000000000006" y1="105.531242" y2="105.531242"/>
+  <line stroke="#888888" x1="461.00000000000006" x2="461.00000000000006" y1="105.531242" y2="112.531242"/>
+  <line stroke="#888888" x1="461.00000000000006" x2="441.00000000000006" y1="112.531242" y2="112.531242"/>
+  <line stroke="#888888" x1="478.25000000000006" x2="478.25000000000006" y1="120.9630601818182" y2="109.3721510909091"/>
+  <line stroke="#888888" x1="478.25000000000006" x2="478.75000000000006" y1="109.3721510909091" y2="109.3721510909091"/>
+  <line stroke="#888888" x1="478.75000000000006" x2="478.75000000000006" y1="109.3721510909091" y2="120.9630601818182"/>
+  <line stroke="#888888" x1="478.75000000000006" x2="478.25000000000006" y1="120.9630601818182" y2="120.9630601818182"/>
+  <line stroke="#888888" x1="478.25000000000006" x2="478.25000000000006" y1="148.69033290909093" y2="137.09942381818183"/>
+  <line stroke="#888888" x1="478.25000000000006" x2="478.75000000000006" y1="137.09942381818183" y2="137.09942381818183"/>
+  <line stroke="#888888" x1="478.75000000000006" x2="478.75000000000006" y1="137.09942381818183" y2="148.69033290909093"/>
+  <line stroke="#888888" x1="478.75000000000006" x2="478.25000000000006" y1="148.69033290909093" y2="148.69033290909093"/>
+  <line stroke="#888888" x1="310.50000000000006" x2="315.50000000000006" y1="109.6221510909091" y2="109.6221510909091"/>
+  <line stroke="#888888" x1="315.50000000000006" x2="315.50000000000006" y1="109.6221510909091" y2="120.7130601818182"/>
+  <line stroke="#888888" x1="315.50000000000006" x2="310.50000000000006" y1="120.7130601818182" y2="120.7130601818182"/>
+  <line stroke="#888888" x1="310.50000000000006" x2="315.50000000000006" y1="137.34942381818186" y2="137.34942381818186"/>
+  <line stroke="#888888" x1="315.50000000000006" x2="315.50000000000006" y1="137.34942381818186" y2="148.44033290909093"/>
+  <line stroke="#888888" x1="315.50000000000006" x2="310.50000000000006" y1="148.44033290909093" y2="148.44033290909093"/>
 </svg>
diff --git a/rocolib/output/PaddleboatWithCamera/graph-autofold-default.dxf b/rocolib/output/PaddleboatWithCamera/graph-autofold-default.dxf
index 5ae31edb21f1929294c8bf043376a754c8bd966c..3feafcff7fc97adcf572490b9b942417a0ee22a0 100644
--- a/rocolib/output/PaddleboatWithCamera/graph-autofold-default.dxf
+++ b/rocolib/output/PaddleboatWithCamera/graph-autofold-default.dxf
@@ -1035,13 +1035,13 @@ DOTTED
   8
 90
  10
-179.99999999999997
+144.00000000000003
  20
 64.03124199999999
  30
 0.0
  11
-179.99999999999997
+144.00000000000003
  21
 194.03124200000002
  31
@@ -1055,13 +1055,13 @@ DOTTED
   8
 90
  10
-109.99999999999999
+74.0
  20
 64.03124199999999
  30
 0.0
  11
-109.99999999999999
+74.0
  21
 194.03124200000002
  31
@@ -1075,13 +1075,13 @@ DOTTED
   8
 38.65980825409008
  10
-145.0
+109.00000000000001
  20
 64.03124199999999
  30
 0.0
  11
-109.99999999999999
+74.0
  21
 64.03124199999999
  31
@@ -1095,13 +1095,13 @@ DOTTED
   8
 38.65980825409008
  10
-179.99999999999997
+144.00000000000003
  20
 64.03124199999999
  30
 0.0
  11
-145.0
+109.00000000000001
  21
 64.03124199999999
  31
@@ -1115,13 +1115,13 @@ DOTTED
   8
 69.0079083856541
  10
-145.0
+109.00000000000001
  20
 -3.7432849353535863e-07
  30
 0.0
  11
-109.99999999999999
+74.0
  21
 64.03124199999999
  31
@@ -1133,13 +1133,13 @@ LINE
   8
 cut
  10
-112.32105756343546
+76.3210575634355
  20
 17.44773491586702
  30
 0.0
  11
-91.16052878171773
+55.16052878171775
  21
 28.745631275293622
  31
@@ -1151,13 +1151,13 @@ LINE
   8
 cut
  10
-145.0
+109.00000000000001
  20
 -3.743284651136492e-07
  30
 0.0
  11
-112.32105756343546
+76.3210575634355
  21
 17.44773491586702
  31
@@ -1171,13 +1171,13 @@ DOTTED
   8
 180
  10
-109.99999999999999
+74.0
  20
 64.03124199999999
  30
 0.0
  11
-91.16052878171773
+55.16052878171775
  21
 28.745631275293622
  31
@@ -1191,13 +1191,13 @@ DOTTED
   8
 -180
  10
-109.99999999999999
+74.0
  20
 64.03124199999999
  30
 0.0
  11
-69.99999999999999
+34.0
  21
 40.04352763472023
  31
@@ -1209,13 +1209,13 @@ LINE
   8
 cut
  10
-91.16052878171773
+55.160528781717744
  20
 28.745631275293608
  30
 0.0
  11
-69.99999999999999
+34.0
  21
 40.04352763472023
  31
@@ -1229,13 +1229,13 @@ DOTTED
   8
 -174
  10
-69.99999999999999
+34.0
  20
 64.031242
  30
 0.0
  11
-69.99999999999999
+34.0
  21
 40.04352763472023
  31
@@ -1249,13 +1249,13 @@ DOTTED
   8
 34.99202019855866
  10
-109.99999999999999
+74.0
  20
 64.03124199999999
  30
 0.0
  11
-69.99999999999999
+34.0
  21
 64.031242
  31
@@ -1267,13 +1267,13 @@ LINE
   8
 cut
  10
-62.00409521157338
+26.0040952115734
  20
 64.031242
  30
 0.0
  11
-69.99999999999999
+34.0
  21
 64.031242
  31
@@ -1285,13 +1285,13 @@ LINE
   8
 cut
  10
-62.004095211573365
+26.00409521157339
  20
 40.04352763472023
  30
 0.0
  11
-62.00409521157338
+26.0040952115734
  21
 64.031242
  31
@@ -1303,13 +1303,13 @@ LINE
   8
 cut
  10
-69.99999999999997
+33.99999999999999
  20
 40.04352763472023
  30
 0.0
  11
-62.004095211573365
+26.00409521157339
  21
 40.04352763472023
  31
@@ -1323,13 +1323,13 @@ DOTTED
   8
 90.0
  10
-70.00000000000004
+34.000000000000064
  20
 194.031242
  30
 0.0
  11
-110.00000000000004
+74.00000000000007
  21
 194.031242
  31
@@ -1343,13 +1343,13 @@ DOTTED
   8
 -180
  10
-70.00000000000004
+34.000000000000064
  20
 234.031242
  30
 0.0
  11
-110.00000000000003
+74.00000000000006
  21
 194.031242
  31
@@ -1363,13 +1363,13 @@ DOTTED
   8
 -174
  10
-70.00000000000004
+34.000000000000064
  20
 234.031242
  30
 0.0
  11
-70.00000000000003
+34.00000000000004
  21
 194.031242
  31
@@ -1381,13 +1381,13 @@ LINE
   8
 cut
  10
-70.00000000000004
+34.000000000000064
  20
 234.031242
  30
 0.0
  11
-110.00000000000004
+74.00000000000007
  21
 234.031242
  31
@@ -1401,13 +1401,13 @@ DOTTED
   8
 180
  10
-110.00000000000004
+74.00000000000007
  20
 234.031242
  30
 0.0
  11
-110.00000000000003
+74.00000000000006
  21
 194.031242
  31
@@ -1419,13 +1419,13 @@ LINE
   8
 cut
  10
-150.0
+114.00000000000004
  20
 234.031242
  30
 0.0
  11
-145.00000000000003
+109.00000000000004
  21
 234.031242
  31
@@ -1437,13 +1437,13 @@ LINE
   8
 cut
  10
-110.00000000000003
+74.00000000000006
  20
 234.031242
  30
 0.0
  11
-150.0
+114.00000000000004
  21
 234.031242
  31
@@ -1457,13 +1457,13 @@ DOTTED
   8
 90.0
  10
-110.00000000000003
+74.00000000000006
  20
 194.031242
  30
 0.0
  11
-145.00000000000003
+109.00000000000004
  21
 194.031242
  31
@@ -1477,13 +1477,13 @@ DOTTED
   8
 90.0
  10
-145.00000000000003
+109.00000000000004
  20
 194.031242
  30
 0.0
  11
-180.0
+144.00000000000006
  21
 194.031242
  31
@@ -1495,13 +1495,13 @@ LINE
   8
 cut
  10
-140.00000000000003
+104.00000000000006
  20
 234.031242
  30
 0.0
  11
-180.0
+144.00000000000006
  21
 234.031242
  31
@@ -1513,13 +1513,13 @@ LINE
   8
 cut
  10
-145.00000000000003
+109.00000000000004
  20
 234.031242
  30
 0.0
  11
-140.00000000000003
+104.00000000000006
  21
 234.031242
  31
@@ -1533,13 +1533,13 @@ DOTTED
   8
 180
  10
-180.0
+144.00000000000006
  20
 194.031242
  30
 0.0
  11
-180.0
+144.00000000000006
  21
 234.031242
  31
@@ -1553,13 +1553,13 @@ DOTTED
   8
 -180
  10
-180.0
+144.00000000000006
  20
 194.031242
  30
 0.0
  11
-220.00000000000003
+184.00000000000003
  21
 234.031242
  31
@@ -1571,13 +1571,13 @@ LINE
   8
 cut
  10
-180.0
+144.00000000000006
  20
 234.031242
  30
 0.0
  11
-220.00000000000003
+184.00000000000003
  21
 234.031242
  31
@@ -1591,13 +1591,13 @@ DOTTED
   8
 -174
  10
-220.00000000000003
+184.00000000000003
  20
 194.031242
  30
 0.0
  11
-220.00000000000003
+184.00000000000003
  21
 234.031242
  31
@@ -1611,13 +1611,13 @@ DOTTED
   8
 90.0
  10
-180.0
+144.00000000000006
  20
 194.031242
  30
 0.0
  11
-220.00000000000003
+184.00000000000003
  21
 194.031242
  31
@@ -1629,13 +1629,13 @@ LINE
   8
 cut
  10
-233.33333333333334
+197.3333333333334
  20
 194.03124200000002
  30
 0.0
  11
-220.00000000000003
+184.00000000000003
  21
 194.03124200000002
  31
@@ -1647,13 +1647,13 @@ LINE
   8
 cut
  10
-233.33333333333334
+197.3333333333334
  20
 234.031242
  30
 0.0
  11
-233.33333333333334
+197.3333333333334
  21
 194.03124200000002
  31
@@ -1665,13 +1665,13 @@ LINE
   8
 cut
  10
-220.00000000000003
+184.00000000000003
  20
 234.031242
  30
 0.0
  11
-233.33333333333334
+197.3333333333334
  21
 234.031242
  31
@@ -1685,13 +1685,13 @@ DOTTED
   8
 34.99202019855866
  10
-220.00000000000003
+184.00000000000006
  20
 64.031242
  30
 0.0
  11
-180.00000000000006
+144.00000000000009
  21
 64.03124199999999
  31
@@ -1705,13 +1705,13 @@ DOTTED
   8
 -180
  10
-220.00000000000003
+184.00000000000006
  20
 40.04352763472023
  30
 0.0
  11
-180.00000000000006
+144.00000000000009
  21
 64.03124199999999
  31
@@ -1725,13 +1725,13 @@ DOTTED
   8
 -174
  10
-220.00000000000003
+184.00000000000006
  20
 40.04352763472023
  30
 0.0
  11
-220.00000000000003
+184.00000000000003
  21
 64.031242
  31
@@ -1743,13 +1743,13 @@ LINE
   8
 cut
  10
-220.00000000000003
+184.00000000000006
  20
 40.043527634720235
  30
 0.0
  11
-198.8394712182823
+162.83947121828234
  21
 28.745631275293622
  31
@@ -1763,13 +1763,13 @@ DOTTED
   8
 180
  10
-198.8394712182823
+162.83947121828234
  20
 28.745631275293622
  30
 0.0
  11
-180.00000000000006
+144.00000000000009
  21
 64.03124199999999
  31
@@ -1783,13 +1783,13 @@ DOTTED
   8
 69.0079083856541
  10
-145.00000000000006
+109.00000000000006
  20
 -3.743284651136492e-07
  30
 0.0
  11
-180.00000000000006
+144.00000000000009
  21
 64.03124199999999
  31
@@ -1801,13 +1801,13 @@ LINE
   8
 cut
  10
-177.67894243656454
+141.6789424365646
  20
 17.44773491586702
  30
 0.0
  11
-145.00000000000006
+109.00000000000006
  21
 -3.743284651136492e-07
  31
@@ -1819,13 +1819,13 @@ LINE
   8
 cut
  10
-198.83947121828228
+162.83947121828234
  20
 28.745631275293622
  30
 0.0
  11
-177.67894243656454
+141.6789424365646
  21
 17.44773491586702
  31
@@ -1837,13 +1837,13 @@ LINE
   8
 cut
  10
-227.99590478842666
+191.99590478842666
  20
 40.04352763472023
  30
 0.0
  11
-220.00000000000006
+184.00000000000006
  21
 40.04352763472023
  31
@@ -1855,13 +1855,13 @@ LINE
   8
 cut
  10
-227.99590478842666
+191.99590478842666
  20
 64.031242
  30
 0.0
  11
-227.99590478842666
+191.99590478842666
  21
 40.04352763472023
  31
@@ -1873,125 +1873,33 @@ LINE
   8
 cut
  10
-220.00000000000006
+184.00000000000006
  20
 64.031242
  30
 0.0
  11
-227.99590478842666
+191.99590478842666
  21
 64.031242
  31
 0.0
   0
-LINE
-  6
-DOTTED
- 62
-1
-  8
-90
- 10
-220.00000000000003
- 20
-64.03124199999999
- 30
-0.0
- 11
-220.00000000000003
- 21
-77.031242
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-220.00000000000003
- 20
-90.03124199999999
- 30
-0.0
- 11
-220.00000000000003
- 21
-77.031242
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-220.00000000000003
- 20
-103.031242
- 30
-0.0
- 11
-220.00000000000003
- 21
-90.03124199999999
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-220.00000000000003
- 20
-116.03124199999999
- 30
-0.0
- 11
-220.00000000000003
- 21
-103.031242
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-220.00000000000003
- 20
-129.03124199999996
- 30
-0.0
- 11
-220.00000000000003
- 21
-116.03124199999999
- 31
-0.0
-  0
 LINE
  62
 5
   8
 cut
  10
-220.00000000000003
+184.00000000000006
  20
-142.031242
+79.031242
  30
 0.0
  11
-220.00000000000003
+184.00000000000006
  21
-129.03124199999996
+64.03124199999999
  31
 0.0
   0
@@ -2001,15 +1909,15 @@ LINE
   8
 cut
  10
-220.00000000000003
+184.00000000000006
  20
-155.03124199999996
+102.031242
  30
 0.0
  11
-220.00000000000003
+184.00000000000006
  21
-142.031242
+79.031242
  31
 0.0
   0
@@ -2019,15 +1927,15 @@ LINE
   8
 cut
  10
-220.00000000000003
+184.00000000000003
  20
-168.031242
+125.03124199999999
  30
 0.0
  11
-220.00000000000003
+184.00000000000006
  21
-155.03124199999996
+102.031242
  31
 0.0
   0
@@ -2037,15 +1945,15 @@ LINE
   8
 cut
  10
-220.00000000000003
+184.00000000000003
  20
-181.031242
+148.03124199999996
  30
 0.0
  11
-220.00000000000003
+184.00000000000003
  21
-168.031242
+125.03124199999999
  31
 0.0
   0
@@ -2055,17 +1963,17 @@ DOTTED
  62
 1
   8
-90
+-180
  10
-220.00000000000003
+184.00000000000003
  20
-181.031242
+171.03124199999996
  30
 0.0
  11
-220.00000000000003
+184.00000000000003
  21
-194.031242
+148.03124199999996
  31
 0.0
   0
@@ -2075,15 +1983,15 @@ LINE
   8
 cut
  10
-220.00000000000003
+184.00000000000003
  20
 194.031242
  30
 0.0
  11
-220.00000000000003
+184.00000000000003
  21
-194.031242
+171.03124199999996
  31
 0.0
   0
@@ -2093,15 +2001,15 @@ LINE
   8
 cut
  10
-220.00000000000003
+184.00000000000003
  20
-64.03124199999999
+194.031242
  30
 0.0
  11
-220.00000000000003
+184.00000000000003
  21
-64.03124199999999
+194.031242
  31
 0.0
   0
@@ -2111,13 +2019,13 @@ LINE
   8
 cut
  10
-226.00000000000003
+184.00000000000006
  20
 64.03124199999999
  30
 0.0
  11
-220.00000000000003
+184.00000000000006
  21
 64.03124199999999
  31
@@ -2129,15 +2037,15 @@ LINE
   8
 cut
  10
-226.00000000000003
+218.00000000000006
  20
-77.031242
+172.031242
  30
 0.0
  11
-226.00000000000003
+218.00000000000006
  21
-64.03124199999999
+148.031242
  31
 0.0
   0
@@ -2147,33 +2055,35 @@ LINE
   8
 cut
  10
-220.00000000000003
+184.00000000000003
  20
-77.031242
+172.031242
  30
 0.0
  11
-226.00000000000003
+218.00000000000006
  21
-77.031242
+172.031242
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-220.00000000000003
+218.00000000000006
  20
-199.031242
+148.031242
  30
 0.0
  11
-244.0
+184.00000000000003
  21
-199.031242
+148.03124199999996
  31
 0.0
   0
@@ -2183,35 +2093,15 @@ LINE
   8
 cut
  10
-244.00000000000003
- 20
-129.031242
- 30
-0.0
- 11
-220.00000000000003
- 21
-129.03124199999996
- 31
-0.0
-  0
-LINE
-  6
-DOTTED
- 62
-1
-  8
-90
- 10
-244.0
+218.00000000000006
  20
-199.031242
+148.031242
  30
 0.0
  11
-244.00000000000003
+218.00000000000006
  21
-129.031242
+128.031242
  31
 0.0
   0
@@ -2221,15 +2111,15 @@ LINE
   8
 cut
  10
-200.0
+184.00000000000003
  20
-199.031242
+128.031242
  30
 0.0
  11
-220.00000000000003
+184.00000000000003
  21
-199.031242
+148.03124199999996
  31
 0.0
   0
@@ -2241,15 +2131,15 @@ DOTTED
   8
 90
  10
-200.0
+218.00000000000006
  20
-199.031242
+128.031242
  30
 0.0
  11
-200.0
+184.00000000000003
  21
-129.03124199999996
+128.031242
  31
 0.0
   0
@@ -2259,15 +2149,15 @@ LINE
   8
 cut
  10
-220.00000000000003
+218.00000000000006
  20
-129.03124199999996
+128.031242
  30
 0.0
  11
-200.0
+218.00000000000006
  21
-129.03124199999996
+104.031242
  31
 0.0
   0
@@ -2277,15 +2167,15 @@ LINE
   8
 cut
  10
-176.00000000000003
+184.00000000000003
  20
-199.031242
+104.031242
  30
 0.0
  11
-200.0
+184.00000000000003
  21
-199.031242
+128.031242
  31
 0.0
   0
@@ -2297,15 +2187,15 @@ DOTTED
   8
 90
  10
-176.00000000000003
+218.00000000000006
  20
-199.031242
+104.031242
  30
 0.0
  11
-176.00000000000003
+184.00000000000003
  21
-129.03124199999996
+104.031242
  31
 0.0
   0
@@ -2315,15 +2205,15 @@ LINE
   8
 cut
  10
-200.0
+218.00000000000006
  20
-129.031242
+104.031242
  30
 0.0
  11
-176.00000000000003
+218.00000000000006
  21
-129.03124199999996
+84.031242
  31
 0.0
   0
@@ -2333,33 +2223,35 @@ LINE
   8
 cut
  10
-156.00000000000003
+184.00000000000003
  20
-199.031242
+84.031242
  30
 0.0
  11
-176.00000000000003
+184.00000000000003
  21
-199.031242
+104.031242
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-176.00000000000003
+184.00000000000003
  20
-129.03124199999996
+84.031242
  30
 0.0
  11
-156.00000000000003
+218.00000000000006
  21
-129.03124199999996
+84.031242
  31
 0.0
   0
@@ -2369,15 +2261,15 @@ LINE
   8
 cut
  10
-220.00000000000003
+184.00000000000003
  20
-194.031242
+74.03124199999999
  30
 0.0
  11
-290.00000000000006
+184.00000000000003
  21
-194.031242
+84.031242
  31
 0.0
   0
@@ -2387,15 +2279,15 @@ LINE
   8
 cut
  10
-290.00000000000006
+218.00000000000006
  20
-181.031242
+74.03124199999999
  30
 0.0
  11
-220.00000000000003
+184.00000000000003
  21
-181.031242
+74.03124199999999
  31
 0.0
   0
@@ -2405,15 +2297,15 @@ LINE
   8
 cut
  10
-290.00000000000006
+218.00000000000006
  20
-194.031242
+84.031242
  30
 0.0
  11
-290.00000000000006
+218.00000000000006
  21
-181.031242
+74.03124199999999
  31
 0.0
   0
@@ -2423,13 +2315,13 @@ LINE
   8
 cut
  10
-56.66666666666671
+20.666666666666732
  20
 234.031242
  30
 0.0
  11
-70.00000000000004
+34.000000000000064
  21
 234.031242
  31
@@ -2441,13 +2333,13 @@ LINE
   8
 cut
  10
-56.66666666666669
+20.666666666666718
  20
 194.031242
  30
 0.0
  11
-56.66666666666671
+20.666666666666732
  21
 234.031242
  31
@@ -2459,89 +2351,33 @@ LINE
   8
 cut
  10
-70.00000000000003
+34.00000000000004
  20
 194.031242
  30
 0.0
  11
-56.66666666666669
+20.666666666666718
  21
 194.031242
  31
 0.0
   0
-LINE
-  6
-DOTTED
- 62
-1
-  8
-90
- 10
-70.00000000000004
- 20
-194.03124200000002
- 30
-0.0
- 11
-70.00000000000004
- 21
-181.03124200000002
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-70.00000000000003
- 20
-168.03124200000002
- 30
-0.0
- 11
-70.00000000000004
- 21
-181.03124200000002
- 31
-0.0
-  0
 LINE
  62
 5
   8
 cut
  10
-70.00000000000003
+34.000000000000064
  20
-155.031242
+179.03124200000002
  30
 0.0
  11
-70.00000000000003
+34.000000000000064
  21
-168.03124200000002
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-70.00000000000003
- 20
-142.03124200000002
- 30
-0.0
- 11
-70.00000000000003
- 21
-155.031242
+194.03124200000002
  31
 0.0
   0
@@ -2551,33 +2387,35 @@ LINE
   8
 cut
  10
-70.00000000000001
+34.00000000000004
  20
-129.03124200000002
+156.03124200000002
  30
 0.0
  11
-70.00000000000003
+34.000000000000064
  21
-142.03124200000002
+179.03124200000002
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+-180
  10
-70.00000000000001
+34.00000000000004
  20
-116.03124200000002
+133.03124200000002
  30
 0.0
  11
-70.00000000000001
+34.00000000000004
  21
-129.03124200000002
+156.03124200000002
  31
 0.0
   0
@@ -2587,15 +2425,15 @@ LINE
   8
 cut
  10
-70.00000000000001
+34.00000000000003
  20
-103.03124200000002
+110.03124200000002
  30
 0.0
  11
-70.00000000000001
+34.00000000000004
  21
-116.03124200000002
+133.03124200000002
  31
 0.0
   0
@@ -2605,15 +2443,15 @@ LINE
   8
 cut
  10
-70.00000000000001
+34.000000000000014
  20
-90.031242
+87.03124200000002
  30
 0.0
  11
-70.00000000000001
+34.00000000000003
  21
-103.03124200000002
+110.03124200000002
  31
 0.0
   0
@@ -2623,35 +2461,15 @@ LINE
   8
 cut
  10
-70.0
- 20
-77.03124200000002
- 30
-0.0
- 11
-70.00000000000001
- 21
-90.031242
- 31
-0.0
-  0
-LINE
-  6
-DOTTED
- 62
-1
-  8
-90
- 10
-70.0
+34.000000000000014
  20
-77.03124200000002
+64.03124200000003
  30
 0.0
  11
-70.0
+34.000000000000014
  21
-64.03124200000003
+87.03124200000002
  31
 0.0
   0
@@ -2661,13 +2479,13 @@ LINE
   8
 cut
  10
-70.0
+34.000000000000014
  20
 64.03124200000003
  30
 0.0
  11
-70.0
+34.000000000000014
  21
 64.03124200000003
  31
@@ -2679,13 +2497,13 @@ LINE
   8
 cut
  10
-70.00000000000004
+34.000000000000064
  20
 194.03124200000002
  30
 0.0
  11
-70.00000000000004
+34.000000000000064
  21
 194.03124200000002
  31
@@ -2697,15 +2515,15 @@ LINE
   8
 cut
  10
-64.00000000000004
+5.684341886080803e-14
  20
-194.03124200000002
+156.03124200000005
  30
 0.0
  11
-70.00000000000004
+34.00000000000004
  21
-194.03124200000002
+156.03124200000002
  31
 0.0
   0
@@ -2715,51 +2533,35 @@ LINE
   8
 cut
  10
-64.00000000000004
+4.263256414560602e-14
  20
-181.03124200000002
- 30
-0.0
- 11
-64.00000000000004
- 21
-194.03124200000002
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-cut
- 10
-70.00000000000004
- 20
-181.03124200000002
+132.03124200000002
  30
 0.0
  11
-64.00000000000004
+5.684341886080803e-14
  21
-181.03124200000002
+156.03124200000005
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-70.0
+34.00000000000003
  20
-72.03124200000002
+132.03124200000002
  30
 0.0
  11
-45.99999999999999
+4.263256414560602e-14
  21
-72.03124200000003
+132.03124200000002
  31
 0.0
   0
@@ -2769,35 +2571,15 @@ LINE
   8
 cut
  10
-46.000000000000014
- 20
-142.03124200000005
- 30
-0.0
- 11
-70.00000000000003
- 21
-142.03124200000002
- 31
-0.0
-  0
-LINE
-  6
-DOTTED
- 62
-1
-  8
-90
- 10
-45.99999999999999
+34.00000000000003
  20
-72.03124200000003
+132.03124200000002
  30
 0.0
  11
-46.000000000000014
+34.00000000000003
  21
-142.03124200000005
+112.03124200000002
  31
 0.0
   0
@@ -2807,15 +2589,15 @@ LINE
   8
 cut
  10
-89.99999999999999
+2.8421709430404014e-14
  20
-72.03124200000002
+112.03124200000003
  30
 0.0
  11
-70.0
+2.8421709430404014e-14
  21
-72.03124200000003
+132.03124200000002
  31
 0.0
   0
@@ -2827,15 +2609,15 @@ DOTTED
   8
 90
  10
-89.99999999999999
+34.00000000000003
  20
-72.03124200000002
+112.03124200000002
  30
 0.0
  11
-90.00000000000003
+2.8421709430404014e-14
  21
-142.03124200000002
+112.03124200000003
  31
 0.0
   0
@@ -2845,15 +2627,15 @@ LINE
   8
 cut
  10
-70.00000000000003
+34.00000000000003
  20
-142.03124200000005
+112.03124200000002
  30
 0.0
  11
-90.00000000000003
+34.00000000000003
  21
-142.03124200000002
+88.03124200000003
  31
 0.0
   0
@@ -2863,15 +2645,15 @@ LINE
   8
 cut
  10
-114.0
+2.8421709430404014e-14
  20
-72.03124199999999
+88.03124200000003
  30
 0.0
  11
-89.99999999999999
+2.8421709430404014e-14
  21
-72.03124200000002
+112.03124200000003
  31
 0.0
   0
@@ -2883,15 +2665,15 @@ DOTTED
   8
 90
  10
-114.0
+34.00000000000003
  20
-72.03124199999999
+88.03124200000003
  30
 0.0
  11
-114.00000000000003
+2.8421709430404014e-14
  21
-142.03124200000002
+88.03124200000003
  31
 0.0
   0
@@ -2901,15 +2683,15 @@ LINE
   8
 cut
  10
-90.00000000000003
+34.0
  20
-142.03124200000002
+88.03124200000003
  30
 0.0
  11
-114.00000000000003
+34.0
  21
-142.03124200000002
+68.03124200000002
  31
 0.0
   0
@@ -2919,33 +2701,35 @@ LINE
   8
 cut
  10
-134.0
+0.0
  20
-72.03124199999999
+68.03124200000002
  30
 0.0
  11
-114.0
+0.0
  21
-72.03124199999999
+88.03124200000003
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
-cut
+90
  10
-114.00000000000001
+0.0
  20
-142.03124200000002
+68.03124200000002
  30
 0.0
  11
-134.00000000000003
+34.0
  21
-142.03124200000002
+68.03124200000002
  31
 0.0
   0
@@ -2957,13 +2741,13 @@ cut
  10
 0.0
  20
-77.03124200000003
+58.03124200000002
  30
 0.0
  11
-69.99999999999999
+0.0
  21
-77.03124200000002
+68.03124200000002
  31
 0.0
   0
@@ -2973,15 +2757,15 @@ LINE
   8
 cut
  10
-0.0
+34.0
  20
-64.03124200000003
+58.03124200000002
  30
 0.0
  11
 0.0
  21
-77.03124200000003
+58.03124200000002
  31
 0.0
   0
@@ -2991,15 +2775,15 @@ LINE
   8
 cut
  10
-69.99999999999999
+34.0
  20
-64.031242
+68.03124200000002
  30
 0.0
  11
-0.0
+34.0
  21
-64.03124200000003
+58.03124200000002
  31
 0.0
   0
@@ -3009,13 +2793,13 @@ LINE
   8
 cut
  10
-108.43030382152989
+72.43030382152992
  20
 26.606620936353796
  30
 0.0
  11
-100.93572409356514
+64.93572409356516
  21
 30.608079779724527
  31
@@ -3027,13 +2811,13 @@ LINE
   8
 cut
  10
-100.93572409356514
+64.93572409356516
  20
 30.608079779724527
  30
 0.0
  11
-100.70023070333662
+64.70023070333663
  21
 30.167009645665704
  31
@@ -3045,13 +2829,13 @@ LINE
   8
 cut
  10
-100.70023070333662
+64.70023070333663
  20
 30.167009645665704
  30
 0.0
  11
-108.19481043130136
+72.19481043130139
  21
 26.165550802294977
  31
@@ -3063,13 +2847,13 @@ LINE
   8
 cut
  10
-108.19481043130136
+72.19481043130139
  20
 26.165550802294977
  30
 0.0
  11
-108.43030382152989
+72.43030382152992
  21
 26.606620936353796
  31
@@ -3081,13 +2865,13 @@ LINE
   8
 cut
  10
-64.00307140868003
+28.003071408680043
  20
 48.03943242314682
  30
 0.0
  11
-68.00102380289331
+32.00102380289334
  21
 48.03943242314682
  31
@@ -3099,13 +2883,13 @@ LINE
   8
 cut
  10
-68.00102380289331
+32.00102380289334
  20
 48.03943242314682
  30
 0.0
  11
-68.00102380289331
+32.00102380289334
  21
 56.03533721157341
  31
@@ -3117,13 +2901,13 @@ LINE
   8
 cut
  10
-68.00102380289331
+32.00102380289334
  20
 56.03533721157341
  30
 0.0
  11
-64.00307140868003
+28.003071408680043
  21
 56.03533721157343
  31
@@ -3135,13 +2919,13 @@ LINE
   8
 cut
  10
-123.08333333333336
+87.08333333333339
  20
 223.781242
  30
 0.0
  11
-136.9166666666667
+100.91666666666671
  21
 223.781242
  31
@@ -3153,13 +2937,13 @@ LINE
   8
 cut
  10
-136.9166666666667
+100.91666666666671
  20
 223.781242
  30
 0.0
  11
-136.9166666666667
+100.91666666666671
  21
 224.281242
  31
@@ -3171,13 +2955,13 @@ LINE
   8
 cut
  10
-136.9166666666667
+100.91666666666671
  20
 224.281242
  30
 0.0
  11
-123.08333333333336
+87.08333333333339
  21
 224.281242
  31
@@ -3189,13 +2973,13 @@ LINE
   8
 cut
  10
-123.08333333333336
+87.08333333333339
  20
 224.281242
  30
 0.0
  11
-123.08333333333336
+87.08333333333339
  21
 223.781242
  31
@@ -3207,13 +2991,13 @@ LINE
   8
 cut
  10
-153.08333333333337
+117.08333333333339
  20
 223.781242
  30
 0.0
  11
-166.9166666666667
+130.91666666666669
  21
 223.781242
  31
@@ -3225,13 +3009,13 @@ LINE
   8
 cut
  10
-166.9166666666667
+130.91666666666669
  20
 223.781242
  30
 0.0
  11
-166.9166666666667
+130.91666666666669
  21
 224.281242
  31
@@ -3243,13 +3027,13 @@ LINE
   8
 cut
  10
-166.9166666666667
+130.91666666666669
  20
 224.281242
  30
 0.0
  11
-153.08333333333337
+117.08333333333339
  21
 224.281242
  31
@@ -3261,13 +3045,13 @@ LINE
   8
 cut
  10
-153.08333333333337
+117.08333333333339
  20
 224.281242
  30
 0.0
  11
-153.08333333333337
+117.08333333333339
  21
 223.781242
  31
@@ -3279,13 +3063,13 @@ LINE
   8
 cut
  10
-230.00000000000003
+194.00000000000006
  20
 220.69790866666668
  30
 0.0
  11
-223.33333333333334
+187.3333333333334
  21
 220.69790866666668
  31
@@ -3297,13 +3081,13 @@ LINE
   8
 cut
  10
-223.33333333333334
+187.3333333333334
  20
 220.69790866666668
  30
 0.0
  11
-223.33333333333334
+187.3333333333334
  21
 207.3645753333333
  31
@@ -3315,13 +3099,13 @@ LINE
   8
 cut
  10
-223.33333333333334
+187.3333333333334
  20
 207.3645753333333
  30
 0.0
  11
-230.00000000000003
+194.00000000000006
  21
 207.3645753333333
  31
@@ -3333,13 +3117,13 @@ LINE
   8
 cut
  10
-189.0642759064349
+153.0642759064349
  20
 30.608079779724527
  30
 0.0
  11
-181.56969617847014
+145.56969617847014
  21
 26.60662093635381
  31
@@ -3351,13 +3135,13 @@ LINE
   8
 cut
  10
-181.56969617847014
+145.56969617847014
  20
 26.60662093635381
  30
 0.0
  11
-181.80518956869867
+145.80518956869867
  21
 26.165550802294977
  31
@@ -3369,13 +3153,13 @@ LINE
   8
 cut
  10
-181.80518956869867
+145.80518956869867
  20
 26.165550802294977
  30
 0.0
  11
-189.2997692966634
+153.2997692966634
  21
 30.167009645665704
  31
@@ -3387,13 +3171,13 @@ LINE
   8
 cut
  10
-189.2997692966634
+153.2997692966634
  20
 30.167009645665704
  30
 0.0
  11
-189.0642759064349
+153.0642759064349
  21
 30.608079779724527
  31
@@ -3405,13 +3189,13 @@ LINE
   8
 cut
  10
-225.99692859132
+189.99692859132003
  20
 56.03533721157341
  30
 0.0
  11
-221.99897619710669
+185.9989761971067
  21
 56.03533721157341
  31
@@ -3423,13 +3207,13 @@ LINE
   8
 cut
  10
-221.99897619710669
+185.9989761971067
  20
 56.03533721157341
  30
 0.0
  11
-221.99897619710669
+185.9989761971067
  21
 48.03943242314682
  31
@@ -3441,13 +3225,13 @@ LINE
   8
 cut
  10
-221.99897619710669
+185.9989761971067
  20
 48.03943242314682
  30
 0.0
  11
-225.99692859132
+189.99692859132003
  21
 48.03943242314682
  31
@@ -3459,15 +3243,15 @@ LINE
   8
 cut
  10
-224.50000000000003
+195.0833333333334
  20
-72.69790866666666
+164.28124199999996
  30
 0.0
  11
-221.50000000000003
+206.91666666666669
  21
-72.69790866666666
+164.28124199999996
  31
 0.0
   0
@@ -3477,15 +3261,15 @@ LINE
   8
 cut
  10
-221.50000000000003
+206.91666666666669
  20
-72.69790866666666
+164.28124199999996
  30
 0.0
  11
-221.50000000000003
+206.91666666666669
  21
-68.36457533333333
+164.781242
  31
 0.0
   0
@@ -3495,15 +3279,15 @@ LINE
   8
 cut
  10
-221.50000000000003
+206.91666666666669
  20
-68.36457533333333
+164.781242
  30
 0.0
  11
-224.50000000000003
+195.0833333333334
  21
-68.36457533333333
+164.781242
  31
 0.0
   0
@@ -3513,15 +3297,15 @@ LINE
   8
 cut
  10
-205.00000000000003
+195.0833333333334
  20
-170.031242
+164.781242
  30
 0.0
  11
-201.00000000000003
+195.0833333333334
  21
-170.031242
+164.28124199999996
  31
 0.0
   0
@@ -3531,15 +3315,15 @@ LINE
   8
 cut
  10
-201.00000000000003
+207.00000000000003
  20
-170.031242
+129.031242
  30
 0.0
  11
-201.00000000000003
+207.00000000000003
  21
-158.031242
+133.03124200000002
  31
 0.0
   0
@@ -3549,15 +3333,15 @@ LINE
   8
 cut
  10
-201.00000000000003
+207.00000000000003
  20
-158.031242
+133.03124200000002
  30
 0.0
  11
-205.00000000000003
+195.00000000000006
  21
-158.031242
+133.03124200000002
  31
 0.0
   0
@@ -3567,15 +3351,15 @@ LINE
   8
 cut
  10
-205.00000000000003
+195.00000000000006
  20
-158.031242
+133.03124200000002
  30
 0.0
  11
-205.00000000000003
+195.00000000000006
  21
-170.031242
+129.031242
  31
 0.0
   0
@@ -3585,15 +3369,15 @@ LINE
   8
 cut
  10
-199.50000000000003
+195.00000000000006
  20
-170.031242
+129.031242
  30
 0.0
  11
-176.50000000000003
+207.00000000000003
  21
-170.031242
+129.031242
  31
 0.0
   0
@@ -3603,15 +3387,15 @@ LINE
   8
 cut
  10
-176.50000000000003
+205.50000000000006
  20
-170.031242
+141.031242
  30
 0.0
  11
-176.50000000000003
+205.50000000000006
  21
-158.031242
+145.03124200000002
  31
 0.0
   0
@@ -3621,15 +3405,15 @@ LINE
   8
 cut
  10
-176.50000000000003
+205.50000000000006
  20
-158.031242
+145.03124200000002
  30
 0.0
  11
-199.50000000000003
+196.50000000000006
  21
-158.031242
+145.03124200000002
  31
 0.0
   0
@@ -3639,15 +3423,15 @@ LINE
   8
 cut
  10
-199.50000000000003
+196.50000000000006
  20
-158.031242
+145.03124200000002
  30
 0.0
  11
-199.50000000000003
+196.50000000000006
  21
-170.031242
+141.031242
  31
 0.0
   0
@@ -3657,15 +3441,15 @@ LINE
   8
 cut
  10
-175.0
+196.50000000000006
  20
-170.031242
+141.031242
  30
 0.0
  11
-171.00000000000003
+205.50000000000006
  21
-170.031242
+141.031242
  31
 0.0
   0
@@ -3675,15 +3459,15 @@ LINE
   8
 cut
  10
-171.00000000000003
+207.00000000000003
  20
-170.031242
+104.531242
  30
 0.0
  11
-171.00000000000003
+207.00000000000003
  21
-158.031242
+127.53124200000002
  31
 0.0
   0
@@ -3693,15 +3477,15 @@ LINE
   8
 cut
  10
-171.00000000000003
+207.00000000000003
  20
-158.031242
+127.53124200000002
  30
 0.0
  11
-175.0
+195.00000000000006
  21
-158.031242
+127.53124200000002
  31
 0.0
   0
@@ -3711,15 +3495,15 @@ LINE
   8
 cut
  10
-175.0
+195.00000000000006
  20
-158.031242
+127.53124200000002
  30
 0.0
  11
-175.0
+195.00000000000006
  21
-170.031242
+104.531242
  31
 0.0
   0
@@ -3729,15 +3513,15 @@ LINE
   8
 cut
  10
-163.00000000000003
+195.00000000000006
  20
-168.53124199999996
+104.531242
  30
 0.0
  11
-159.0
+207.00000000000003
  21
-168.53124199999996
+104.531242
  31
 0.0
   0
@@ -3747,15 +3531,15 @@ LINE
   8
 cut
  10
-159.0
+207.00000000000003
  20
-168.53124199999996
+99.03124199999999
  30
 0.0
  11
-159.0
+207.00000000000003
  21
-159.53124199999996
+103.031242
  31
 0.0
   0
@@ -3765,15 +3549,15 @@ LINE
   8
 cut
  10
-159.0
+207.00000000000003
  20
-159.53124199999996
+103.031242
  30
 0.0
  11
-163.00000000000003
+195.00000000000006
  21
-159.53124199999996
+103.031242
  31
 0.0
   0
@@ -3783,15 +3567,15 @@ LINE
   8
 cut
  10
-163.00000000000003
+195.00000000000006
  20
-159.53124199999996
+103.031242
  30
 0.0
  11
-163.00000000000003
+195.00000000000006
  21
-168.53124199999996
+99.03124199999999
  31
 0.0
   0
@@ -3801,15 +3585,15 @@ LINE
   8
 cut
  10
-285.25000000000006
+195.00000000000006
  20
-189.94790866666668
+99.03124199999999
  30
 0.0
  11
-285.25000000000006
+207.00000000000003
  21
-185.11457533333333
+99.03124199999999
  31
 0.0
   0
@@ -3819,15 +3603,15 @@ LINE
   8
 cut
  10
-285.25000000000006
+206.6666666666667
  20
-185.11457533333333
+76.53124199999999
  30
 0.0
  11
-285.75
+206.6666666666667
  21
-185.11457533333333
+81.531242
  31
 0.0
   0
@@ -3837,15 +3621,15 @@ LINE
   8
 cut
  10
-285.75
+206.6666666666667
  20
-185.11457533333333
+81.531242
  30
 0.0
  11
-285.75
+195.33333333333337
  21
-189.94790866666668
+81.531242
  31
 0.0
   0
@@ -3855,15 +3639,15 @@ LINE
   8
 cut
  10
-285.75
+195.33333333333337
  20
-189.94790866666668
+81.531242
  30
 0.0
  11
-285.25000000000006
+195.33333333333337
  21
-189.94790866666668
+76.53124199999999
  31
 0.0
   0
@@ -3873,13 +3657,13 @@ LINE
   8
 cut
  10
-60.00000000000002
+24.000000000000043
  20
 207.3645753333333
  30
 0.0
  11
-66.66666666666669
+30.666666666666718
  21
 207.3645753333333
  31
@@ -3891,13 +3675,13 @@ LINE
   8
 cut
  10
-66.66666666666669
+30.666666666666718
  20
 207.3645753333333
  30
 0.0
  11
-66.66666666666671
+30.666666666666732
  21
 220.69790866666668
  31
@@ -3909,13 +3693,13 @@ LINE
   8
 cut
  10
-66.66666666666671
+30.666666666666732
  20
 220.69790866666668
  30
 0.0
  11
-60.000000000000036
+24.00000000000006
  21
 220.69790866666668
  31
@@ -3927,15 +3711,51 @@ LINE
   8
 cut
  10
-65.50000000000003
+11.083333333333371
+ 20
+148.28124200000002
+ 30
+0.0
+ 11
+22.9166666666667
+ 21
+148.281242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+22.9166666666667
+ 20
+148.281242
+ 30
+0.0
+ 11
+22.9166666666667
+ 21
+148.78124200000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+22.9166666666667
  20
-185.36457533333336
+148.78124200000002
  30
 0.0
  11
-68.50000000000004
+11.083333333333371
  21
-185.36457533333336
+148.78124200000005
  31
 0.0
   0
@@ -3945,15 +3765,15 @@ LINE
   8
 cut
  10
-68.50000000000004
+11.083333333333371
  20
-185.36457533333336
+148.78124200000005
  30
 0.0
  11
-68.50000000000004
+11.083333333333371
  21
-189.69790866666668
+148.28124200000002
  31
 0.0
   0
@@ -3963,15 +3783,15 @@ LINE
   8
 cut
  10
-68.50000000000004
+23.000000000000032
  20
-189.69790866666668
+113.03124200000002
  30
 0.0
  11
-65.50000000000003
+23.000000000000032
  21
-189.69790866666668
+117.03124200000002
  31
 0.0
   0
@@ -3981,15 +3801,15 @@ LINE
   8
 cut
  10
-85.00000000000001
+23.000000000000032
  20
-101.03124200000002
+117.03124200000002
  30
 0.0
  11
-89.00000000000001
+11.00000000000003
  21
-101.03124200000002
+117.03124200000002
  31
 0.0
   0
@@ -3999,13 +3819,13 @@ LINE
   8
 cut
  10
-89.00000000000001
+11.00000000000003
  20
-101.03124200000002
+117.03124200000002
  30
 0.0
  11
-89.00000000000001
+11.00000000000003
  21
 113.03124200000002
  31
@@ -4017,13 +3837,13 @@ LINE
   8
 cut
  10
-89.00000000000001
+11.00000000000003
  20
 113.03124200000002
  30
 0.0
  11
-85.00000000000001
+23.000000000000032
  21
 113.03124200000002
  31
@@ -4035,15 +3855,15 @@ LINE
   8
 cut
  10
-85.00000000000001
+21.50000000000003
  20
-113.03124200000002
+125.03124200000002
  30
 0.0
  11
-85.00000000000001
+21.50000000000003
  21
-101.03124200000002
+129.031242
  31
 0.0
   0
@@ -4053,15 +3873,15 @@ LINE
   8
 cut
  10
-90.50000000000001
+21.50000000000003
  20
-101.03124200000002
+129.031242
  30
 0.0
  11
-113.50000000000001
+12.50000000000003
  21
-101.031242
+129.03124200000002
  31
 0.0
   0
@@ -4071,15 +3891,15 @@ LINE
   8
 cut
  10
-113.50000000000001
+12.50000000000003
  20
-101.031242
+129.03124200000002
  30
 0.0
  11
-113.50000000000001
+12.50000000000003
  21
-113.031242
+125.03124200000002
  31
 0.0
   0
@@ -4089,15 +3909,15 @@ LINE
   8
 cut
  10
-113.50000000000001
+12.50000000000003
  20
-113.031242
+125.03124200000002
  30
 0.0
  11
-90.50000000000001
+21.50000000000003
  21
-113.03124200000002
+125.03124200000002
  31
 0.0
   0
@@ -4107,15 +3927,15 @@ LINE
   8
 cut
  10
-90.50000000000001
+23.000000000000032
  20
-113.03124200000002
+88.53124200000003
  30
 0.0
  11
-90.50000000000001
+23.000000000000032
  21
-101.03124200000002
+111.53124200000002
  31
 0.0
   0
@@ -4125,15 +3945,15 @@ LINE
   8
 cut
  10
-115.00000000000001
+23.000000000000032
  20
-101.031242
+111.53124200000002
  30
 0.0
  11
-119.0
+11.00000000000003
  21
-101.031242
+111.53124200000002
  31
 0.0
   0
@@ -4143,15 +3963,15 @@ LINE
   8
 cut
  10
-119.0
+11.00000000000003
  20
-101.031242
+111.53124200000002
  30
 0.0
  11
-119.00000000000001
+11.00000000000003
  21
-113.031242
+88.53124200000003
  31
 0.0
   0
@@ -4161,15 +3981,15 @@ LINE
   8
 cut
  10
-119.00000000000001
+11.00000000000003
  20
-113.031242
+88.53124200000003
  30
 0.0
  11
-115.00000000000001
+23.000000000000032
  21
-113.031242
+88.53124200000003
  31
 0.0
   0
@@ -4179,15 +3999,15 @@ LINE
   8
 cut
  10
-115.00000000000001
+23.000000000000004
  20
-113.031242
+83.03124200000002
  30
 0.0
  11
-115.00000000000001
+23.000000000000004
  21
-101.031242
+87.03124200000003
  31
 0.0
   0
@@ -4197,15 +4017,15 @@ LINE
   8
 cut
  10
-127.00000000000001
+23.000000000000004
  20
-102.53124199999999
+87.03124200000003
  30
 0.0
  11
-131.0
+11.000000000000002
  21
-102.53124199999999
+87.03124200000003
  31
 0.0
   0
@@ -4215,15 +4035,15 @@ LINE
   8
 cut
  10
-131.0
+11.000000000000002
  20
-102.53124199999999
+87.03124200000003
  30
 0.0
  11
-131.0
+11.000000000000002
  21
-111.531242
+83.03124200000002
  31
 0.0
   0
@@ -4233,15 +4053,15 @@ LINE
   8
 cut
  10
-131.0
+11.000000000000002
  20
-111.531242
+83.03124200000002
  30
 0.0
  11
-127.00000000000001
+23.000000000000004
  21
-111.531242
+83.03124200000002
  31
 0.0
   0
@@ -4251,15 +4071,15 @@ LINE
   8
 cut
  10
-127.00000000000001
+22.666666666666675
  20
-111.531242
+60.53124200000003
  30
 0.0
  11
-127.00000000000001
+22.666666666666675
  21
-102.53124199999999
+65.53124200000002
  31
 0.0
   0
@@ -4269,15 +4089,15 @@ LINE
   8
 cut
  10
-4.750000000000001
+22.666666666666675
  20
-68.11457533333336
+65.53124200000002
  30
 0.0
  11
-4.750000000000001
+11.333333333333343
  21
-72.94790866666668
+65.53124200000002
  31
 0.0
   0
@@ -4287,15 +4107,15 @@ LINE
   8
 cut
  10
-4.750000000000001
+11.333333333333343
  20
-72.94790866666668
+65.53124200000002
  30
 0.0
  11
-4.25
+11.333333333333343
  21
-72.94790866666668
+60.53124200000003
  31
 0.0
   0
@@ -4305,15 +4125,15 @@ LINE
   8
 cut
  10
-4.25
+298.00000000000006
  20
-72.94790866666668
+122.531242
  30
 0.0
  11
-4.25
+228.00000000000003
  21
-68.11457533333336
+122.531242
  31
 0.0
   0
@@ -4323,15 +4143,51 @@ LINE
   8
 cut
  10
-4.25
+298.00000000000006
+ 20
+135.53124200000002
+ 30
+0.0
+ 11
+298.00000000000006
+ 21
+122.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+228.00000000000003
+ 20
+135.53124200000002
+ 30
+0.0
+ 11
+298.00000000000006
+ 21
+135.53124200000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+cut
+ 10
+228.00000000000003
  20
-68.11457533333336
+122.531242
  30
 0.0
  11
-4.750000000000001
+228.00000000000003
  21
-68.11457533333336
+135.53124200000002
  31
 0.0
   0
@@ -4341,13 +4197,13 @@ LINE
   8
 cut
  10
-334.00000000000006
+342.00000000000006
  20
 98.531242
  30
 0.0
  11
-310.0
+318.0
  21
 98.531242
  31
@@ -4361,13 +4217,13 @@ DOTTED
   8
 90
  10
-334.00000000000006
+342.00000000000006
  20
 98.531242
  30
 0.0
  11
-334.00000000000006
+342.00000000000006
  21
 159.531242
  31
@@ -4379,13 +4235,13 @@ LINE
   8
 cut
  10
-310.0
+318.0
  20
 159.531242
  30
 0.0
  11
-334.00000000000006
+342.00000000000006
  21
 159.531242
  31
@@ -4399,13 +4255,13 @@ DOTTED
   8
 90
  10
-310.0
+318.0
  20
 159.531242
  30
 0.0
  11
-310.0
+318.0
  21
 98.531242
  31
@@ -4417,13 +4273,13 @@ LINE
   8
 cut
  10
-394.00000000000006
+402.00000000000006
  20
 98.531242
  30
 0.0
  11
-334.00000000000006
+342.00000000000006
  21
 98.531242
  31
@@ -4437,13 +4293,13 @@ DOTTED
   8
 90
  10
-394.00000000000006
+402.00000000000006
  20
 98.531242
  30
 0.0
  11
-394.00000000000006
+402.00000000000006
  21
 159.531242
  31
@@ -4455,13 +4311,13 @@ LINE
   8
 cut
  10
-334.00000000000006
+342.00000000000006
  20
 159.531242
  30
 0.0
  11
-394.00000000000006
+402.00000000000006
  21
 159.531242
  31
@@ -4473,13 +4329,13 @@ LINE
   8
 cut
  10
-418.00000000000006
+426.00000000000006
  20
 98.531242
  30
 0.0
  11
-394.00000000000006
+402.00000000000006
  21
 98.531242
  31
@@ -4493,13 +4349,13 @@ DOTTED
   8
 90
  10
-418.00000000000006
+426.00000000000006
  20
 98.531242
  30
 0.0
  11
-418.00000000000006
+426.00000000000006
  21
 159.531242
  31
@@ -4511,13 +4367,13 @@ LINE
   8
 cut
  10
-394.00000000000006
+402.00000000000006
  20
 159.531242
  30
 0.0
  11
-418.00000000000006
+426.00000000000006
  21
 159.531242
  31
@@ -4529,13 +4385,13 @@ LINE
   8
 cut
  10
-478.00000000000006
+486.00000000000006
  20
 98.531242
  30
 0.0
  11
-418.00000000000006
+426.00000000000006
  21
 98.531242
  31
@@ -4547,13 +4403,13 @@ LINE
   8
 cut
  10
-478.00000000000006
+486.00000000000006
  20
 159.531242
  30
 0.0
  11
-478.00000000000006
+486.00000000000006
  21
 98.531242
  31
@@ -4565,13 +4421,13 @@ LINE
   8
 cut
  10
-418.00000000000006
+426.00000000000006
  20
 159.531242
  30
 0.0
  11
-478.00000000000006
+486.00000000000006
  21
 159.531242
  31
@@ -4583,13 +4439,13 @@ LINE
   8
 cut
  10
-300.0
+308.00000000000006
  20
 159.531242
  30
 0.0
  11
-310.0
+318.0
  21
 159.531242
  31
@@ -4601,13 +4457,13 @@ LINE
   8
 cut
  10
-300.0
+308.00000000000006
  20
 98.531242
  30
 0.0
  11
-300.0
+308.00000000000006
  21
 159.531242
  31
@@ -4619,13 +4475,13 @@ LINE
   8
 cut
  10
-310.0
+318.0
  20
 98.531242
  30
 0.0
  11
-300.0
+308.00000000000006
  21
 98.531242
  31
@@ -4637,13 +4493,13 @@ LINE
   8
 cut
  10
-311.40000000000003
+319.4
  20
 108.531242
  30
 0.0
  11
-312.6
+320.6000000000001
  21
 108.531242
  31
@@ -4655,13 +4511,13 @@ LINE
   8
 cut
  10
-312.6
+320.6000000000001
  20
 108.531242
  30
 0.0
  11
-312.6
+320.6000000000001
  21
 149.53124200000002
  31
@@ -4673,13 +4529,13 @@ LINE
   8
 cut
  10
-312.6
+320.6000000000001
  20
 149.53124200000002
  30
 0.0
  11
-311.40000000000003
+319.4
  21
 149.53124200000002
  31
@@ -4691,13 +4547,13 @@ LINE
   8
 cut
  10
-311.40000000000003
+319.4
  20
 149.53124200000002
  30
 0.0
  11
-311.40000000000003
+319.4
  21
 108.531242
  31
@@ -4709,13 +4565,13 @@ LINE
   8
 cut
  10
-331.40000000000003
+339.40000000000003
  20
 109.031242
  30
 0.0
  11
-332.6000000000001
+340.6
  21
 109.031242
  31
@@ -4727,13 +4583,13 @@ LINE
   8
 cut
  10
-332.6000000000001
+340.6
  20
 109.031242
  30
 0.0
  11
-332.6000000000001
+340.6
  21
 139.031242
  31
@@ -4745,13 +4601,13 @@ LINE
   8
 cut
  10
-332.6000000000001
+340.6
  20
 139.031242
  30
 0.0
  11
-331.40000000000003
+339.40000000000003
  21
 139.031242
  31
@@ -4763,13 +4619,13 @@ LINE
   8
 cut
  10
-331.40000000000003
+339.40000000000003
  20
 139.031242
  30
 0.0
  11
-331.40000000000003
+339.40000000000003
  21
 109.031242
  31
@@ -4781,13 +4637,13 @@ LINE
   8
 cut
  10
-342.00000000000006
+350.0
  20
 150.031242
  30
 0.0
  11
-342.00000000000006
+350.0
  21
 132.03124200000002
  31
@@ -4799,13 +4655,13 @@ LINE
   8
 cut
  10
-342.00000000000006
+350.0
  20
 132.03124200000002
  30
 0.0
  11
-372.00000000000006
+380.00000000000006
  21
 132.03124200000002
  31
@@ -4817,13 +4673,13 @@ LINE
   8
 cut
  10
-372.00000000000006
+380.00000000000006
  20
 132.03124200000002
  30
 0.0
  11
-372.00000000000006
+380.00000000000006
  21
 150.031242
  31
@@ -4835,13 +4691,13 @@ LINE
   8
 cut
  10
-372.00000000000006
+380.00000000000006
  20
 150.031242
  30
 0.0
  11
-342.00000000000006
+350.0
  21
 150.031242
  31
@@ -4853,13 +4709,13 @@ LINE
   8
 cut
  10
-415.4
+423.40000000000003
  20
 108.531242
  30
 0.0
  11
-416.6000000000001
+424.6000000000001
  21
 108.531242
  31
@@ -4871,13 +4727,13 @@ LINE
   8
 cut
  10
-416.6000000000001
+424.6000000000001
  20
 108.531242
  30
 0.0
  11
-416.6000000000001
+424.6000000000001
  21
 149.53124200000002
  31
@@ -4889,13 +4745,13 @@ LINE
   8
 cut
  10
-416.6000000000001
+424.6000000000001
  20
 149.53124200000002
  30
 0.0
  11
-415.4
+423.40000000000003
  21
 149.53124200000002
  31
@@ -4907,13 +4763,13 @@ LINE
   8
 cut
  10
-415.4
+423.40000000000003
  20
 149.53124200000002
  30
 0.0
  11
-415.4
+423.40000000000003
  21
 108.531242
  31
@@ -4925,13 +4781,13 @@ LINE
   8
 cut
  10
-395.40000000000003
+403.40000000000003
  20
 109.031242
  30
 0.0
  11
-396.6000000000001
+404.6000000000001
  21
 109.031242
  31
@@ -4943,13 +4799,13 @@ LINE
   8
 cut
  10
-396.6000000000001
+404.6000000000001
  20
 109.031242
  30
 0.0
  11
-396.6000000000001
+404.6000000000001
  21
 139.031242
  31
@@ -4961,13 +4817,13 @@ LINE
   8
 cut
  10
-396.6000000000001
+404.6000000000001
  20
 139.031242
  30
 0.0
  11
-395.40000000000003
+403.40000000000003
  21
 139.031242
  31
@@ -4979,13 +4835,13 @@ LINE
   8
 cut
  10
-395.40000000000003
+403.40000000000003
  20
 139.031242
  30
 0.0
  11
-395.40000000000003
+403.40000000000003
  21
 109.031242
  31
@@ -4997,13 +4853,13 @@ LINE
   8
 cut
  10
-433.00000000000006
+441.00000000000006
  20
 112.531242
  30
 0.0
  11
-433.00000000000006
+441.00000000000006
  21
 105.531242
  31
@@ -5015,13 +4871,13 @@ LINE
   8
 cut
  10
-433.00000000000006
+441.00000000000006
  20
 105.531242
  30
 0.0
  11
-453.00000000000006
+461.00000000000006
  21
 105.531242
  31
@@ -5033,13 +4889,13 @@ LINE
   8
 cut
  10
-453.00000000000006
+461.00000000000006
  20
 105.531242
  30
 0.0
  11
-453.00000000000006
+461.00000000000006
  21
 112.531242
  31
@@ -5051,13 +4907,13 @@ LINE
   8
 cut
  10
-453.00000000000006
+461.00000000000006
  20
 112.531242
  30
 0.0
  11
-433.00000000000006
+441.00000000000006
  21
 112.531242
  31
@@ -5069,13 +4925,13 @@ LINE
   8
 cut
  10
-470.25000000000006
+478.25000000000006
  20
 120.9630601818182
  30
 0.0
  11
-470.25000000000006
+478.25000000000006
  21
 109.3721510909091
  31
@@ -5087,13 +4943,13 @@ LINE
   8
 cut
  10
-470.25000000000006
+478.25000000000006
  20
 109.3721510909091
  30
 0.0
  11
-470.75000000000006
+478.75000000000006
  21
 109.3721510909091
  31
@@ -5105,13 +4961,13 @@ LINE
   8
 cut
  10
-470.75000000000006
+478.75000000000006
  20
 109.3721510909091
  30
 0.0
  11
-470.75000000000006
+478.75000000000006
  21
 120.9630601818182
  31
@@ -5123,13 +4979,13 @@ LINE
   8
 cut
  10
-470.75000000000006
+478.75000000000006
  20
 120.9630601818182
  30
 0.0
  11
-470.25000000000006
+478.25000000000006
  21
 120.9630601818182
  31
@@ -5141,13 +4997,13 @@ LINE
   8
 cut
  10
-470.25000000000006
+478.25000000000006
  20
 148.69033290909093
  30
 0.0
  11
-470.25000000000006
+478.25000000000006
  21
 137.09942381818183
  31
@@ -5159,13 +5015,13 @@ LINE
   8
 cut
  10
-470.25000000000006
+478.25000000000006
  20
 137.09942381818183
  30
 0.0
  11
-470.75000000000006
+478.75000000000006
  21
 137.09942381818183
  31
@@ -5177,13 +5033,13 @@ LINE
   8
 cut
  10
-470.75000000000006
+478.75000000000006
  20
 137.09942381818183
  30
 0.0
  11
-470.75000000000006
+478.75000000000006
  21
 148.69033290909093
  31
@@ -5195,13 +5051,13 @@ LINE
   8
 cut
  10
-470.75000000000006
+478.75000000000006
  20
 148.69033290909093
  30
 0.0
  11
-470.25000000000006
+478.25000000000006
  21
 148.69033290909093
  31
@@ -5213,13 +5069,13 @@ LINE
   8
 cut
  10
-302.50000000000006
+310.50000000000006
  20
 109.6221510909091
  30
 0.0
  11
-307.50000000000006
+315.50000000000006
  21
 109.6221510909091
  31
@@ -5231,13 +5087,13 @@ LINE
   8
 cut
  10
-307.50000000000006
+315.50000000000006
  20
 109.6221510909091
  30
 0.0
  11
-307.50000000000006
+315.50000000000006
  21
 120.7130601818182
  31
@@ -5249,13 +5105,13 @@ LINE
   8
 cut
  10
-307.50000000000006
+315.50000000000006
  20
 120.7130601818182
  30
 0.0
  11
-302.50000000000006
+310.50000000000006
  21
 120.7130601818182
  31
@@ -5267,13 +5123,13 @@ LINE
   8
 cut
  10
-302.50000000000006
+310.50000000000006
  20
 137.34942381818186
  30
 0.0
  11
-307.50000000000006
+315.50000000000006
  21
 137.34942381818186
  31
@@ -5285,13 +5141,13 @@ LINE
   8
 cut
  10
-307.50000000000006
+315.50000000000006
  20
 137.34942381818186
  30
 0.0
  11
-307.50000000000006
+315.50000000000006
  21
 148.44033290909093
  31
@@ -5303,13 +5159,13 @@ LINE
   8
 cut
  10
-307.50000000000006
+315.50000000000006
  20
 148.44033290909093
  30
 0.0
  11
-302.50000000000006
+310.50000000000006
  21
 148.44033290909093
  31
diff --git a/rocolib/output/PaddleboatWithCamera/graph-autofold-graph.dxf b/rocolib/output/PaddleboatWithCamera/graph-autofold-graph.dxf
index 47078a62006fe9071044d4bdea732e8aa4b24e0f..09be3d6125800b7b7deaac6c41fae2836824a19a 100644
--- a/rocolib/output/PaddleboatWithCamera/graph-autofold-graph.dxf
+++ b/rocolib/output/PaddleboatWithCamera/graph-autofold-graph.dxf
@@ -945,13 +945,13 @@ DOTTED
   8
 0
  10
-179.99999999999997
+144.00000000000003
  20
 64.03124199999999
  30
 0.0
  11
-179.99999999999997
+144.00000000000003
  21
 194.03124200000002
  31
@@ -965,13 +965,13 @@ DOTTED
   8
 0
  10
-109.99999999999999
+74.0
  20
 64.03124199999999
  30
 0.0
  11
-109.99999999999999
+74.0
  21
 194.03124200000002
  31
@@ -985,13 +985,13 @@ DOTTED
   8
 0
  10
-145.0
+109.00000000000001
  20
 64.03124199999999
  30
 0.0
  11
-109.99999999999999
+74.0
  21
 64.03124199999999
  31
@@ -1005,13 +1005,13 @@ DOTTED
   8
 0
  10
-179.99999999999997
+144.00000000000003
  20
 64.03124199999999
  30
 0.0
  11
-145.0
+109.00000000000001
  21
 64.03124199999999
  31
@@ -1025,13 +1025,13 @@ DOTTED
   8
 0
  10
-145.0
+109.00000000000001
  20
 -3.7432849353535863e-07
  30
 0.0
  11
-109.99999999999999
+74.0
  21
 64.03124199999999
  31
@@ -1043,13 +1043,13 @@ LINE
   8
 0
  10
-112.32105756343546
+76.3210575634355
  20
 17.44773491586702
  30
 0.0
  11
-91.16052878171773
+55.16052878171775
  21
 28.745631275293622
  31
@@ -1061,13 +1061,13 @@ LINE
   8
 0
  10
-145.0
+109.00000000000001
  20
 -3.743284651136492e-07
  30
 0.0
  11
-112.32105756343546
+76.3210575634355
  21
 17.44773491586702
  31
@@ -1081,13 +1081,13 @@ DOTTED
   8
 0
  10
-109.99999999999999
+74.0
  20
 64.03124199999999
  30
 0.0
  11
-91.16052878171773
+55.16052878171775
  21
 28.745631275293622
  31
@@ -1101,13 +1101,13 @@ DOTTED
   8
 0
  10
-109.99999999999999
+74.0
  20
 64.03124199999999
  30
 0.0
  11
-69.99999999999999
+34.0
  21
 40.04352763472023
  31
@@ -1119,13 +1119,13 @@ LINE
   8
 0
  10
-91.16052878171773
+55.160528781717744
  20
 28.745631275293608
  30
 0.0
  11
-69.99999999999999
+34.0
  21
 40.04352763472023
  31
@@ -1139,13 +1139,13 @@ DOTTED
   8
 0
  10
-69.99999999999999
+34.0
  20
 64.031242
  30
 0.0
  11
-69.99999999999999
+34.0
  21
 40.04352763472023
  31
@@ -1159,13 +1159,13 @@ DOTTED
   8
 0
  10
-109.99999999999999
+74.0
  20
 64.03124199999999
  30
 0.0
  11
-69.99999999999999
+34.0
  21
 64.031242
  31
@@ -1177,13 +1177,13 @@ LINE
   8
 0
  10
-62.00409521157338
+26.0040952115734
  20
 64.031242
  30
 0.0
  11
-69.99999999999999
+34.0
  21
 64.031242
  31
@@ -1195,13 +1195,13 @@ LINE
   8
 0
  10
-62.004095211573365
+26.00409521157339
  20
 40.04352763472023
  30
 0.0
  11
-62.00409521157338
+26.0040952115734
  21
 64.031242
  31
@@ -1213,13 +1213,13 @@ LINE
   8
 0
  10
-69.99999999999997
+33.99999999999999
  20
 40.04352763472023
  30
 0.0
  11
-62.004095211573365
+26.00409521157339
  21
 40.04352763472023
  31
@@ -1233,13 +1233,13 @@ DOTTED
   8
 0
  10
-70.00000000000004
+34.000000000000064
  20
 194.031242
  30
 0.0
  11
-110.00000000000004
+74.00000000000007
  21
 194.031242
  31
@@ -1253,13 +1253,13 @@ DOTTED
   8
 0
  10
-70.00000000000004
+34.000000000000064
  20
 234.031242
  30
 0.0
  11
-110.00000000000003
+74.00000000000006
  21
 194.031242
  31
@@ -1273,13 +1273,13 @@ DOTTED
   8
 0
  10
-70.00000000000004
+34.000000000000064
  20
 234.031242
  30
 0.0
  11
-70.00000000000003
+34.00000000000004
  21
 194.031242
  31
@@ -1291,13 +1291,13 @@ LINE
   8
 0
  10
-70.00000000000004
+34.000000000000064
  20
 234.031242
  30
 0.0
  11
-110.00000000000004
+74.00000000000007
  21
 234.031242
  31
@@ -1311,13 +1311,13 @@ DOTTED
   8
 0
  10
-110.00000000000004
+74.00000000000007
  20
 234.031242
  30
 0.0
  11
-110.00000000000003
+74.00000000000006
  21
 194.031242
  31
@@ -1329,13 +1329,13 @@ LINE
   8
 0
  10
-150.0
+114.00000000000004
  20
 234.031242
  30
 0.0
  11
-145.00000000000003
+109.00000000000004
  21
 234.031242
  31
@@ -1347,13 +1347,13 @@ LINE
   8
 0
  10
-110.00000000000003
+74.00000000000006
  20
 234.031242
  30
 0.0
  11
-150.0
+114.00000000000004
  21
 234.031242
  31
@@ -1367,13 +1367,13 @@ DOTTED
   8
 0
  10
-110.00000000000003
+74.00000000000006
  20
 194.031242
  30
 0.0
  11
-145.00000000000003
+109.00000000000004
  21
 194.031242
  31
@@ -1387,13 +1387,13 @@ DOTTED
   8
 0
  10
-145.00000000000003
+109.00000000000004
  20
 194.031242
  30
 0.0
  11
-180.0
+144.00000000000006
  21
 194.031242
  31
@@ -1405,13 +1405,13 @@ LINE
   8
 0
  10
-140.00000000000003
+104.00000000000006
  20
 234.031242
  30
 0.0
  11
-180.0
+144.00000000000006
  21
 234.031242
  31
@@ -1423,13 +1423,13 @@ LINE
   8
 0
  10
-145.00000000000003
+109.00000000000004
  20
 234.031242
  30
 0.0
  11
-140.00000000000003
+104.00000000000006
  21
 234.031242
  31
@@ -1443,13 +1443,13 @@ DOTTED
   8
 0
  10
-180.0
+144.00000000000006
  20
 194.031242
  30
 0.0
  11
-180.0
+144.00000000000006
  21
 234.031242
  31
@@ -1463,13 +1463,13 @@ DOTTED
   8
 0
  10
-180.0
+144.00000000000006
  20
 194.031242
  30
 0.0
  11
-220.00000000000003
+184.00000000000003
  21
 234.031242
  31
@@ -1481,13 +1481,13 @@ LINE
   8
 0
  10
-180.0
+144.00000000000006
  20
 234.031242
  30
 0.0
  11
-220.00000000000003
+184.00000000000003
  21
 234.031242
  31
@@ -1501,13 +1501,13 @@ DOTTED
   8
 0
  10
-220.00000000000003
+184.00000000000003
  20
 194.031242
  30
 0.0
  11
-220.00000000000003
+184.00000000000003
  21
 234.031242
  31
@@ -1521,13 +1521,13 @@ DOTTED
   8
 0
  10
-180.0
+144.00000000000006
  20
 194.031242
  30
 0.0
  11
-220.00000000000003
+184.00000000000003
  21
 194.031242
  31
@@ -1539,13 +1539,13 @@ LINE
   8
 0
  10
-233.33333333333334
+197.3333333333334
  20
 194.03124200000002
  30
 0.0
  11
-220.00000000000003
+184.00000000000003
  21
 194.03124200000002
  31
@@ -1557,13 +1557,13 @@ LINE
   8
 0
  10
-233.33333333333334
+197.3333333333334
  20
 234.031242
  30
 0.0
  11
-233.33333333333334
+197.3333333333334
  21
 194.03124200000002
  31
@@ -1575,13 +1575,13 @@ LINE
   8
 0
  10
-220.00000000000003
+184.00000000000003
  20
 234.031242
  30
 0.0
  11
-233.33333333333334
+197.3333333333334
  21
 234.031242
  31
@@ -1595,13 +1595,13 @@ DOTTED
   8
 0
  10
-220.00000000000003
+184.00000000000006
  20
 64.031242
  30
 0.0
  11
-180.00000000000006
+144.00000000000009
  21
 64.03124199999999
  31
@@ -1615,13 +1615,13 @@ DOTTED
   8
 0
  10
-220.00000000000003
+184.00000000000006
  20
 40.04352763472023
  30
 0.0
  11
-180.00000000000006
+144.00000000000009
  21
 64.03124199999999
  31
@@ -1635,13 +1635,13 @@ DOTTED
   8
 0
  10
-220.00000000000003
+184.00000000000006
  20
 40.04352763472023
  30
 0.0
  11
-220.00000000000003
+184.00000000000003
  21
 64.031242
  31
@@ -1653,13 +1653,13 @@ LINE
   8
 0
  10
-220.00000000000003
+184.00000000000006
  20
 40.043527634720235
  30
 0.0
  11
-198.8394712182823
+162.83947121828234
  21
 28.745631275293622
  31
@@ -1673,13 +1673,13 @@ DOTTED
   8
 0
  10
-198.8394712182823
+162.83947121828234
  20
 28.745631275293622
  30
 0.0
  11
-180.00000000000006
+144.00000000000009
  21
 64.03124199999999
  31
@@ -1693,13 +1693,13 @@ DOTTED
   8
 0
  10
-145.00000000000006
+109.00000000000006
  20
 -3.743284651136492e-07
  30
 0.0
  11
-180.00000000000006
+144.00000000000009
  21
 64.03124199999999
  31
@@ -1711,13 +1711,13 @@ LINE
   8
 0
  10
-177.67894243656454
+141.6789424365646
  20
 17.44773491586702
  30
 0.0
  11
-145.00000000000006
+109.00000000000006
  21
 -3.743284651136492e-07
  31
@@ -1729,13 +1729,13 @@ LINE
   8
 0
  10
-198.83947121828228
+162.83947121828234
  20
 28.745631275293622
  30
 0.0
  11
-177.67894243656454
+141.6789424365646
  21
 17.44773491586702
  31
@@ -1747,13 +1747,13 @@ LINE
   8
 0
  10
-227.99590478842666
+191.99590478842666
  20
 40.04352763472023
  30
 0.0
  11
-220.00000000000006
+184.00000000000006
  21
 40.04352763472023
  31
@@ -1765,13 +1765,13 @@ LINE
   8
 0
  10
-227.99590478842666
+191.99590478842666
  20
 64.031242
  30
 0.0
  11
-227.99590478842666
+191.99590478842666
  21
 40.04352763472023
  31
@@ -1783,125 +1783,33 @@ LINE
   8
 0
  10
-220.00000000000006
+184.00000000000006
  20
 64.031242
  30
 0.0
  11
-227.99590478842666
+191.99590478842666
  21
 64.031242
  31
 0.0
   0
-LINE
-  6
-DOTTED
- 62
-1
-  8
-0
- 10
-220.00000000000003
- 20
-64.03124199999999
- 30
-0.0
- 11
-220.00000000000003
- 21
-77.031242
- 31
-0.0
-  0
 LINE
  62
 5
   8
 0
  10
-220.00000000000003
+184.00000000000006
  20
-90.03124199999999
+79.031242
  30
 0.0
  11
-220.00000000000003
+184.00000000000006
  21
-77.031242
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-220.00000000000003
- 20
-103.031242
- 30
-0.0
- 11
-220.00000000000003
- 21
-90.03124199999999
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-220.00000000000003
- 20
-116.03124199999999
- 30
-0.0
- 11
-220.00000000000003
- 21
-103.031242
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-220.00000000000003
- 20
-129.03124199999996
- 30
-0.0
- 11
-220.00000000000003
- 21
-116.03124199999999
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-220.00000000000003
- 20
-142.031242
- 30
-0.0
- 11
-220.00000000000003
- 21
-129.03124199999996
+64.03124199999999
  31
 0.0
   0
@@ -1911,15 +1819,15 @@ LINE
   8
 0
  10
-220.00000000000003
+184.00000000000006
  20
-155.03124199999996
+102.031242
  30
 0.0
  11
-220.00000000000003
+184.00000000000006
  21
-142.031242
+79.031242
  31
 0.0
   0
@@ -1929,15 +1837,15 @@ LINE
   8
 0
  10
-220.00000000000003
+184.00000000000003
  20
-168.031242
+125.03124199999999
  30
 0.0
  11
-220.00000000000003
+184.00000000000006
  21
-155.03124199999996
+102.031242
  31
 0.0
   0
@@ -1947,15 +1855,15 @@ LINE
   8
 0
  10
-220.00000000000003
+184.00000000000003
  20
-181.031242
+148.03124199999996
  30
 0.0
  11
-220.00000000000003
+184.00000000000003
  21
-168.031242
+125.03124199999999
  31
 0.0
   0
@@ -1967,15 +1875,15 @@ DOTTED
   8
 0
  10
-220.00000000000003
+184.00000000000003
  20
-181.031242
+171.03124199999996
  30
 0.0
  11
-220.00000000000003
+184.00000000000003
  21
-194.031242
+148.03124199999996
  31
 0.0
   0
@@ -1985,15 +1893,15 @@ LINE
   8
 0
  10
-220.00000000000003
+184.00000000000003
  20
 194.031242
  30
 0.0
  11
-220.00000000000003
+184.00000000000003
  21
-194.031242
+171.03124199999996
  31
 0.0
   0
@@ -2003,15 +1911,15 @@ LINE
   8
 0
  10
-220.00000000000003
+184.00000000000003
  20
-64.03124199999999
+194.031242
  30
 0.0
  11
-220.00000000000003
+184.00000000000003
  21
-64.03124199999999
+194.031242
  31
 0.0
   0
@@ -2021,13 +1929,13 @@ LINE
   8
 0
  10
-226.00000000000003
+184.00000000000006
  20
 64.03124199999999
  30
 0.0
  11
-220.00000000000003
+184.00000000000006
  21
 64.03124199999999
  31
@@ -2039,15 +1947,15 @@ LINE
   8
 0
  10
-226.00000000000003
+218.00000000000006
  20
-77.031242
+172.031242
  30
 0.0
  11
-226.00000000000003
+218.00000000000006
  21
-64.03124199999999
+148.031242
  31
 0.0
   0
@@ -2057,33 +1965,35 @@ LINE
   8
 0
  10
-220.00000000000003
+184.00000000000003
  20
-77.031242
+172.031242
  30
 0.0
  11
-226.00000000000003
+218.00000000000006
  21
-77.031242
+172.031242
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-220.00000000000003
+218.00000000000006
  20
-199.031242
+148.031242
  30
 0.0
  11
-244.0
+184.00000000000003
  21
-199.031242
+148.03124199999996
  31
 0.0
   0
@@ -2093,35 +2003,15 @@ LINE
   8
 0
  10
-244.00000000000003
+218.00000000000006
  20
-129.031242
+148.031242
  30
 0.0
  11
-220.00000000000003
+218.00000000000006
  21
-129.03124199999996
- 31
-0.0
-  0
-LINE
-  6
-DOTTED
- 62
-1
-  8
-0
- 10
-244.0
- 20
-199.031242
- 30
-0.0
- 11
-244.00000000000003
- 21
-129.031242
+128.031242
  31
 0.0
   0
@@ -2131,15 +2021,15 @@ LINE
   8
 0
  10
-200.0
+184.00000000000003
  20
-199.031242
+128.031242
  30
 0.0
  11
-220.00000000000003
+184.00000000000003
  21
-199.031242
+148.03124199999996
  31
 0.0
   0
@@ -2151,15 +2041,15 @@ DOTTED
   8
 0
  10
-200.0
+218.00000000000006
  20
-199.031242
+128.031242
  30
 0.0
  11
-200.0
+184.00000000000003
  21
-129.03124199999996
+128.031242
  31
 0.0
   0
@@ -2169,15 +2059,15 @@ LINE
   8
 0
  10
-220.00000000000003
+218.00000000000006
  20
-129.03124199999996
+128.031242
  30
 0.0
  11
-200.0
+218.00000000000006
  21
-129.03124199999996
+104.031242
  31
 0.0
   0
@@ -2187,15 +2077,15 @@ LINE
   8
 0
  10
-176.00000000000003
+184.00000000000003
  20
-199.031242
+104.031242
  30
 0.0
  11
-200.0
+184.00000000000003
  21
-199.031242
+128.031242
  31
 0.0
   0
@@ -2207,15 +2097,15 @@ DOTTED
   8
 0
  10
-176.00000000000003
+218.00000000000006
  20
-199.031242
+104.031242
  30
 0.0
  11
-176.00000000000003
+184.00000000000003
  21
-129.03124199999996
+104.031242
  31
 0.0
   0
@@ -2225,15 +2115,15 @@ LINE
   8
 0
  10
-200.0
+218.00000000000006
  20
-129.031242
+104.031242
  30
 0.0
  11
-176.00000000000003
+218.00000000000006
  21
-129.03124199999996
+84.031242
  31
 0.0
   0
@@ -2243,33 +2133,35 @@ LINE
   8
 0
  10
-156.00000000000003
+184.00000000000003
  20
-199.031242
+84.031242
  30
 0.0
  11
-176.00000000000003
+184.00000000000003
  21
-199.031242
+104.031242
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-176.00000000000003
+184.00000000000003
  20
-129.03124199999996
+84.031242
  30
 0.0
  11
-156.00000000000003
+218.00000000000006
  21
-129.03124199999996
+84.031242
  31
 0.0
   0
@@ -2279,15 +2171,15 @@ LINE
   8
 0
  10
-220.00000000000003
+184.00000000000003
  20
-194.031242
+74.03124199999999
  30
 0.0
  11
-290.00000000000006
+184.00000000000003
  21
-194.031242
+84.031242
  31
 0.0
   0
@@ -2297,15 +2189,15 @@ LINE
   8
 0
  10
-290.00000000000006
+218.00000000000006
  20
-181.031242
+74.03124199999999
  30
 0.0
  11
-220.00000000000003
+184.00000000000003
  21
-181.031242
+74.03124199999999
  31
 0.0
   0
@@ -2315,15 +2207,15 @@ LINE
   8
 0
  10
-290.00000000000006
+218.00000000000006
  20
-194.031242
+84.031242
  30
 0.0
  11
-290.00000000000006
+218.00000000000006
  21
-181.031242
+74.03124199999999
  31
 0.0
   0
@@ -2333,13 +2225,13 @@ LINE
   8
 0
  10
-56.66666666666671
+20.666666666666732
  20
 234.031242
  30
 0.0
  11
-70.00000000000004
+34.000000000000064
  21
 234.031242
  31
@@ -2351,13 +2243,13 @@ LINE
   8
 0
  10
-56.66666666666669
+20.666666666666718
  20
 194.031242
  30
 0.0
  11
-56.66666666666671
+20.666666666666732
  21
 234.031242
  31
@@ -2369,89 +2261,33 @@ LINE
   8
 0
  10
-70.00000000000003
+34.00000000000004
  20
 194.031242
  30
 0.0
  11
-56.66666666666669
+20.666666666666718
  21
 194.031242
  31
 0.0
   0
-LINE
-  6
-DOTTED
- 62
-1
-  8
-0
- 10
-70.00000000000004
- 20
-194.03124200000002
- 30
-0.0
- 11
-70.00000000000004
- 21
-181.03124200000002
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-70.00000000000003
- 20
-168.03124200000002
- 30
-0.0
- 11
-70.00000000000004
- 21
-181.03124200000002
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-70.00000000000003
- 20
-155.031242
- 30
-0.0
- 11
-70.00000000000003
- 21
-168.03124200000002
- 31
-0.0
-  0
 LINE
  62
 5
   8
 0
  10
-70.00000000000003
+34.000000000000064
  20
-142.03124200000002
+179.03124200000002
  30
 0.0
  11
-70.00000000000003
+34.000000000000064
  21
-155.031242
+194.03124200000002
  31
 0.0
   0
@@ -2461,33 +2297,35 @@ LINE
   8
 0
  10
-70.00000000000001
+34.00000000000004
  20
-129.03124200000002
+156.03124200000002
  30
 0.0
  11
-70.00000000000003
+34.000000000000064
  21
-142.03124200000002
+179.03124200000002
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-70.00000000000001
+34.00000000000004
  20
-116.03124200000002
+133.03124200000002
  30
 0.0
  11
-70.00000000000001
+34.00000000000004
  21
-129.03124200000002
+156.03124200000002
  31
 0.0
   0
@@ -2497,15 +2335,15 @@ LINE
   8
 0
  10
-70.00000000000001
+34.00000000000003
  20
-103.03124200000002
+110.03124200000002
  30
 0.0
  11
-70.00000000000001
+34.00000000000004
  21
-116.03124200000002
+133.03124200000002
  31
 0.0
   0
@@ -2515,15 +2353,15 @@ LINE
   8
 0
  10
-70.00000000000001
+34.000000000000014
  20
-90.031242
+87.03124200000002
  30
 0.0
  11
-70.00000000000001
+34.00000000000003
  21
-103.03124200000002
+110.03124200000002
  31
 0.0
   0
@@ -2533,35 +2371,15 @@ LINE
   8
 0
  10
-70.0
+34.000000000000014
  20
-77.03124200000002
- 30
-0.0
- 11
-70.00000000000001
- 21
-90.031242
- 31
-0.0
-  0
-LINE
-  6
-DOTTED
- 62
-1
-  8
-0
- 10
-70.0
- 20
-77.03124200000002
+64.03124200000003
  30
 0.0
  11
-70.0
+34.000000000000014
  21
-64.03124200000003
+87.03124200000002
  31
 0.0
   0
@@ -2571,13 +2389,13 @@ LINE
   8
 0
  10
-70.0
+34.000000000000014
  20
 64.03124200000003
  30
 0.0
  11
-70.0
+34.000000000000014
  21
 64.03124200000003
  31
@@ -2589,13 +2407,13 @@ LINE
   8
 0
  10
-70.00000000000004
+34.000000000000064
  20
 194.03124200000002
  30
 0.0
  11
-70.00000000000004
+34.000000000000064
  21
 194.03124200000002
  31
@@ -2607,33 +2425,15 @@ LINE
   8
 0
  10
-64.00000000000004
+5.684341886080803e-14
  20
-194.03124200000002
- 30
-0.0
- 11
-70.00000000000004
- 21
-194.03124200000002
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-64.00000000000004
- 20
-181.03124200000002
+156.03124200000005
  30
 0.0
  11
-64.00000000000004
+34.00000000000004
  21
-194.03124200000002
+156.03124200000002
  31
 0.0
   0
@@ -2643,33 +2443,35 @@ LINE
   8
 0
  10
-70.00000000000004
+4.263256414560602e-14
  20
-181.03124200000002
+132.03124200000002
  30
 0.0
  11
-64.00000000000004
+5.684341886080803e-14
  21
-181.03124200000002
+156.03124200000005
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-70.0
+34.00000000000003
  20
-72.03124200000002
+132.03124200000002
  30
 0.0
  11
-45.99999999999999
+4.263256414560602e-14
  21
-72.03124200000003
+132.03124200000002
  31
 0.0
   0
@@ -2679,35 +2481,15 @@ LINE
   8
 0
  10
-46.000000000000014
- 20
-142.03124200000005
- 30
-0.0
- 11
-70.00000000000003
- 21
-142.03124200000002
- 31
-0.0
-  0
-LINE
-  6
-DOTTED
- 62
-1
-  8
-0
- 10
-45.99999999999999
+34.00000000000003
  20
-72.03124200000003
+132.03124200000002
  30
 0.0
  11
-46.000000000000014
+34.00000000000003
  21
-142.03124200000005
+112.03124200000002
  31
 0.0
   0
@@ -2717,15 +2499,15 @@ LINE
   8
 0
  10
-89.99999999999999
+2.8421709430404014e-14
  20
-72.03124200000002
+112.03124200000003
  30
 0.0
  11
-70.0
+2.8421709430404014e-14
  21
-72.03124200000003
+132.03124200000002
  31
 0.0
   0
@@ -2737,15 +2519,15 @@ DOTTED
   8
 0
  10
-89.99999999999999
+34.00000000000003
  20
-72.03124200000002
+112.03124200000002
  30
 0.0
  11
-90.00000000000003
+2.8421709430404014e-14
  21
-142.03124200000002
+112.03124200000003
  31
 0.0
   0
@@ -2755,15 +2537,15 @@ LINE
   8
 0
  10
-70.00000000000003
+34.00000000000003
  20
-142.03124200000005
+112.03124200000002
  30
 0.0
  11
-90.00000000000003
+34.00000000000003
  21
-142.03124200000002
+88.03124200000003
  31
 0.0
   0
@@ -2773,15 +2555,15 @@ LINE
   8
 0
  10
-114.0
+2.8421709430404014e-14
  20
-72.03124199999999
+88.03124200000003
  30
 0.0
  11
-89.99999999999999
+2.8421709430404014e-14
  21
-72.03124200000002
+112.03124200000003
  31
 0.0
   0
@@ -2793,15 +2575,15 @@ DOTTED
   8
 0
  10
-114.0
+34.00000000000003
  20
-72.03124199999999
+88.03124200000003
  30
 0.0
  11
-114.00000000000003
+2.8421709430404014e-14
  21
-142.03124200000002
+88.03124200000003
  31
 0.0
   0
@@ -2811,15 +2593,15 @@ LINE
   8
 0
  10
-90.00000000000003
+34.0
  20
-142.03124200000002
+88.03124200000003
  30
 0.0
  11
-114.00000000000003
+34.0
  21
-142.03124200000002
+68.03124200000002
  31
 0.0
   0
@@ -2829,33 +2611,35 @@ LINE
   8
 0
  10
-134.0
+0.0
  20
-72.03124199999999
+68.03124200000002
  30
 0.0
  11
-114.0
+0.0
  21
-72.03124199999999
+88.03124200000003
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-114.00000000000001
+0.0
  20
-142.03124200000002
+68.03124200000002
  30
 0.0
  11
-134.00000000000003
+34.0
  21
-142.03124200000002
+68.03124200000002
  31
 0.0
   0
@@ -2867,13 +2651,13 @@ LINE
  10
 0.0
  20
-77.03124200000003
+58.03124200000002
  30
 0.0
  11
-69.99999999999999
+0.0
  21
-77.03124200000002
+68.03124200000002
  31
 0.0
   0
@@ -2883,15 +2667,15 @@ LINE
   8
 0
  10
-0.0
+34.0
  20
-64.03124200000003
+58.03124200000002
  30
 0.0
  11
 0.0
  21
-77.03124200000003
+58.03124200000002
  31
 0.0
   0
@@ -2901,15 +2685,15 @@ LINE
   8
 0
  10
-69.99999999999999
+34.0
  20
-64.031242
+68.03124200000002
  30
 0.0
  11
-0.0
+34.0
  21
-64.03124200000003
+58.03124200000002
  31
 0.0
   0
@@ -2919,13 +2703,13 @@ LINE
   8
 0
  10
-108.43030382152989
+72.43030382152992
  20
 26.606620936353796
  30
 0.0
  11
-100.93572409356514
+64.93572409356516
  21
 30.608079779724527
  31
@@ -2937,13 +2721,13 @@ LINE
   8
 0
  10
-100.93572409356514
+64.93572409356516
  20
 30.608079779724527
  30
 0.0
  11
-100.70023070333662
+64.70023070333663
  21
 30.167009645665704
  31
@@ -2955,13 +2739,13 @@ LINE
   8
 0
  10
-100.70023070333662
+64.70023070333663
  20
 30.167009645665704
  30
 0.0
  11
-108.19481043130136
+72.19481043130139
  21
 26.165550802294977
  31
@@ -2973,13 +2757,13 @@ LINE
   8
 0
  10
-108.19481043130136
+72.19481043130139
  20
 26.165550802294977
  30
 0.0
  11
-108.43030382152989
+72.43030382152992
  21
 26.606620936353796
  31
@@ -2991,13 +2775,13 @@ LINE
   8
 0
  10
-64.00307140868003
+28.003071408680043
  20
 48.03943242314682
  30
 0.0
  11
-68.00102380289331
+32.00102380289334
  21
 48.03943242314682
  31
@@ -3009,13 +2793,13 @@ LINE
   8
 0
  10
-68.00102380289331
+32.00102380289334
  20
 48.03943242314682
  30
 0.0
  11
-68.00102380289331
+32.00102380289334
  21
 56.03533721157341
  31
@@ -3027,13 +2811,13 @@ LINE
   8
 0
  10
-68.00102380289331
+32.00102380289334
  20
 56.03533721157341
  30
 0.0
  11
-64.00307140868003
+28.003071408680043
  21
 56.03533721157343
  31
@@ -3045,13 +2829,13 @@ LINE
   8
 0
  10
-123.08333333333336
+87.08333333333339
  20
 223.781242
  30
 0.0
  11
-136.9166666666667
+100.91666666666671
  21
 223.781242
  31
@@ -3063,13 +2847,13 @@ LINE
   8
 0
  10
-136.9166666666667
+100.91666666666671
  20
 223.781242
  30
 0.0
  11
-136.9166666666667
+100.91666666666671
  21
 224.281242
  31
@@ -3081,13 +2865,13 @@ LINE
   8
 0
  10
-136.9166666666667
+100.91666666666671
  20
 224.281242
  30
 0.0
  11
-123.08333333333336
+87.08333333333339
  21
 224.281242
  31
@@ -3099,13 +2883,13 @@ LINE
   8
 0
  10
-123.08333333333336
+87.08333333333339
  20
 224.281242
  30
 0.0
  11
-123.08333333333336
+87.08333333333339
  21
 223.781242
  31
@@ -3117,13 +2901,13 @@ LINE
   8
 0
  10
-153.08333333333337
+117.08333333333339
  20
 223.781242
  30
 0.0
  11
-166.9166666666667
+130.91666666666669
  21
 223.781242
  31
@@ -3135,13 +2919,13 @@ LINE
   8
 0
  10
-166.9166666666667
+130.91666666666669
  20
 223.781242
  30
 0.0
  11
-166.9166666666667
+130.91666666666669
  21
 224.281242
  31
@@ -3153,13 +2937,13 @@ LINE
   8
 0
  10
-166.9166666666667
+130.91666666666669
  20
 224.281242
  30
 0.0
  11
-153.08333333333337
+117.08333333333339
  21
 224.281242
  31
@@ -3171,13 +2955,13 @@ LINE
   8
 0
  10
-153.08333333333337
+117.08333333333339
  20
 224.281242
  30
 0.0
  11
-153.08333333333337
+117.08333333333339
  21
 223.781242
  31
@@ -3189,13 +2973,13 @@ LINE
   8
 0
  10
-230.00000000000003
+194.00000000000006
  20
 220.69790866666668
  30
 0.0
  11
-223.33333333333334
+187.3333333333334
  21
 220.69790866666668
  31
@@ -3207,13 +2991,13 @@ LINE
   8
 0
  10
-223.33333333333334
+187.3333333333334
  20
 220.69790866666668
  30
 0.0
  11
-223.33333333333334
+187.3333333333334
  21
 207.3645753333333
  31
@@ -3225,13 +3009,13 @@ LINE
   8
 0
  10
-223.33333333333334
+187.3333333333334
  20
 207.3645753333333
  30
 0.0
  11
-230.00000000000003
+194.00000000000006
  21
 207.3645753333333
  31
@@ -3243,13 +3027,13 @@ LINE
   8
 0
  10
-189.0642759064349
+153.0642759064349
  20
 30.608079779724527
  30
 0.0
  11
-181.56969617847014
+145.56969617847014
  21
 26.60662093635381
  31
@@ -3261,13 +3045,13 @@ LINE
   8
 0
  10
-181.56969617847014
+145.56969617847014
  20
 26.60662093635381
  30
 0.0
  11
-181.80518956869867
+145.80518956869867
  21
 26.165550802294977
  31
@@ -3279,13 +3063,13 @@ LINE
   8
 0
  10
-181.80518956869867
+145.80518956869867
  20
 26.165550802294977
  30
 0.0
  11
-189.2997692966634
+153.2997692966634
  21
 30.167009645665704
  31
@@ -3297,13 +3081,13 @@ LINE
   8
 0
  10
-189.2997692966634
+153.2997692966634
  20
 30.167009645665704
  30
 0.0
  11
-189.0642759064349
+153.0642759064349
  21
 30.608079779724527
  31
@@ -3315,13 +3099,13 @@ LINE
   8
 0
  10
-225.99692859132
+189.99692859132003
  20
 56.03533721157341
  30
 0.0
  11
-221.99897619710669
+185.9989761971067
  21
 56.03533721157341
  31
@@ -3333,13 +3117,13 @@ LINE
   8
 0
  10
-221.99897619710669
+185.9989761971067
  20
 56.03533721157341
  30
 0.0
  11
-221.99897619710669
+185.9989761971067
  21
 48.03943242314682
  31
@@ -3351,13 +3135,13 @@ LINE
   8
 0
  10
-221.99897619710669
+185.9989761971067
  20
 48.03943242314682
  30
 0.0
  11
-225.99692859132
+189.99692859132003
  21
 48.03943242314682
  31
@@ -3369,15 +3153,15 @@ LINE
   8
 0
  10
-224.50000000000003
+195.0833333333334
  20
-72.69790866666666
+164.28124199999996
  30
 0.0
  11
-221.50000000000003
+206.91666666666669
  21
-72.69790866666666
+164.28124199999996
  31
 0.0
   0
@@ -3387,15 +3171,15 @@ LINE
   8
 0
  10
-221.50000000000003
+206.91666666666669
  20
-72.69790866666666
+164.28124199999996
  30
 0.0
  11
-221.50000000000003
+206.91666666666669
  21
-68.36457533333333
+164.781242
  31
 0.0
   0
@@ -3405,15 +3189,15 @@ LINE
   8
 0
  10
-221.50000000000003
+206.91666666666669
  20
-68.36457533333333
+164.781242
  30
 0.0
  11
-224.50000000000003
+195.0833333333334
  21
-68.36457533333333
+164.781242
  31
 0.0
   0
@@ -3423,15 +3207,15 @@ LINE
   8
 0
  10
-205.00000000000003
+195.0833333333334
  20
-170.031242
+164.781242
  30
 0.0
  11
-201.00000000000003
+195.0833333333334
  21
-170.031242
+164.28124199999996
  31
 0.0
   0
@@ -3441,15 +3225,15 @@ LINE
   8
 0
  10
-201.00000000000003
+207.00000000000003
  20
-170.031242
+129.031242
  30
 0.0
  11
-201.00000000000003
+207.00000000000003
  21
-158.031242
+133.03124200000002
  31
 0.0
   0
@@ -3459,15 +3243,15 @@ LINE
   8
 0
  10
-201.00000000000003
+207.00000000000003
  20
-158.031242
+133.03124200000002
  30
 0.0
  11
-205.00000000000003
+195.00000000000006
  21
-158.031242
+133.03124200000002
  31
 0.0
   0
@@ -3477,15 +3261,15 @@ LINE
   8
 0
  10
-205.00000000000003
+195.00000000000006
  20
-158.031242
+133.03124200000002
  30
 0.0
  11
-205.00000000000003
+195.00000000000006
  21
-170.031242
+129.031242
  31
 0.0
   0
@@ -3495,15 +3279,15 @@ LINE
   8
 0
  10
-199.50000000000003
+195.00000000000006
  20
-170.031242
+129.031242
  30
 0.0
  11
-176.50000000000003
+207.00000000000003
  21
-170.031242
+129.031242
  31
 0.0
   0
@@ -3513,15 +3297,15 @@ LINE
   8
 0
  10
-176.50000000000003
+205.50000000000006
  20
-170.031242
+141.031242
  30
 0.0
  11
-176.50000000000003
+205.50000000000006
  21
-158.031242
+145.03124200000002
  31
 0.0
   0
@@ -3531,15 +3315,15 @@ LINE
   8
 0
  10
-176.50000000000003
+205.50000000000006
  20
-158.031242
+145.03124200000002
  30
 0.0
  11
-199.50000000000003
+196.50000000000006
  21
-158.031242
+145.03124200000002
  31
 0.0
   0
@@ -3549,15 +3333,15 @@ LINE
   8
 0
  10
-199.50000000000003
+196.50000000000006
  20
-158.031242
+145.03124200000002
  30
 0.0
  11
-199.50000000000003
+196.50000000000006
  21
-170.031242
+141.031242
  31
 0.0
   0
@@ -3567,15 +3351,15 @@ LINE
   8
 0
  10
-175.0
+196.50000000000006
  20
-170.031242
+141.031242
  30
 0.0
  11
-171.00000000000003
+205.50000000000006
  21
-170.031242
+141.031242
  31
 0.0
   0
@@ -3585,15 +3369,15 @@ LINE
   8
 0
  10
-171.00000000000003
+207.00000000000003
  20
-170.031242
+104.531242
  30
 0.0
  11
-171.00000000000003
+207.00000000000003
  21
-158.031242
+127.53124200000002
  31
 0.0
   0
@@ -3603,15 +3387,15 @@ LINE
   8
 0
  10
-171.00000000000003
+207.00000000000003
  20
-158.031242
+127.53124200000002
  30
 0.0
  11
-175.0
+195.00000000000006
  21
-158.031242
+127.53124200000002
  31
 0.0
   0
@@ -3621,15 +3405,15 @@ LINE
   8
 0
  10
-175.0
+195.00000000000006
  20
-158.031242
+127.53124200000002
  30
 0.0
  11
-175.0
+195.00000000000006
  21
-170.031242
+104.531242
  31
 0.0
   0
@@ -3639,15 +3423,15 @@ LINE
   8
 0
  10
-163.00000000000003
+195.00000000000006
  20
-168.53124199999996
+104.531242
  30
 0.0
  11
-159.0
+207.00000000000003
  21
-168.53124199999996
+104.531242
  31
 0.0
   0
@@ -3657,15 +3441,15 @@ LINE
   8
 0
  10
-159.0
+207.00000000000003
  20
-168.53124199999996
+99.03124199999999
  30
 0.0
  11
-159.0
+207.00000000000003
  21
-159.53124199999996
+103.031242
  31
 0.0
   0
@@ -3675,15 +3459,15 @@ LINE
   8
 0
  10
-159.0
+207.00000000000003
  20
-159.53124199999996
+103.031242
  30
 0.0
  11
-163.00000000000003
+195.00000000000006
  21
-159.53124199999996
+103.031242
  31
 0.0
   0
@@ -3693,15 +3477,15 @@ LINE
   8
 0
  10
-163.00000000000003
+195.00000000000006
  20
-159.53124199999996
+103.031242
  30
 0.0
  11
-163.00000000000003
+195.00000000000006
  21
-168.53124199999996
+99.03124199999999
  31
 0.0
   0
@@ -3711,15 +3495,15 @@ LINE
   8
 0
  10
-285.25000000000006
+195.00000000000006
  20
-189.94790866666668
+99.03124199999999
  30
 0.0
  11
-285.25000000000006
+207.00000000000003
  21
-185.11457533333333
+99.03124199999999
  31
 0.0
   0
@@ -3729,15 +3513,15 @@ LINE
   8
 0
  10
-285.25000000000006
+206.6666666666667
  20
-185.11457533333333
+76.53124199999999
  30
 0.0
  11
-285.75
+206.6666666666667
  21
-185.11457533333333
+81.531242
  31
 0.0
   0
@@ -3747,15 +3531,15 @@ LINE
   8
 0
  10
-285.75
+206.6666666666667
  20
-185.11457533333333
+81.531242
  30
 0.0
  11
-285.75
+195.33333333333337
  21
-189.94790866666668
+81.531242
  31
 0.0
   0
@@ -3765,15 +3549,15 @@ LINE
   8
 0
  10
-285.75
+195.33333333333337
  20
-189.94790866666668
+81.531242
  30
 0.0
  11
-285.25000000000006
+195.33333333333337
  21
-189.94790866666668
+76.53124199999999
  31
 0.0
   0
@@ -3783,13 +3567,13 @@ LINE
   8
 0
  10
-60.00000000000002
+24.000000000000043
  20
 207.3645753333333
  30
 0.0
  11
-66.66666666666669
+30.666666666666718
  21
 207.3645753333333
  31
@@ -3801,13 +3585,13 @@ LINE
   8
 0
  10
-66.66666666666669
+30.666666666666718
  20
 207.3645753333333
  30
 0.0
  11
-66.66666666666671
+30.666666666666732
  21
 220.69790866666668
  31
@@ -3819,13 +3603,13 @@ LINE
   8
 0
  10
-66.66666666666671
+30.666666666666732
  20
 220.69790866666668
  30
 0.0
  11
-60.000000000000036
+24.00000000000006
  21
 220.69790866666668
  31
@@ -3837,15 +3621,15 @@ LINE
   8
 0
  10
-65.50000000000003
+11.083333333333371
  20
-185.36457533333336
+148.28124200000002
  30
 0.0
  11
-68.50000000000004
+22.9166666666667
  21
-185.36457533333336
+148.281242
  31
 0.0
   0
@@ -3855,15 +3639,15 @@ LINE
   8
 0
  10
-68.50000000000004
+22.9166666666667
  20
-185.36457533333336
+148.281242
  30
 0.0
  11
-68.50000000000004
+22.9166666666667
  21
-189.69790866666668
+148.78124200000002
  31
 0.0
   0
@@ -3873,15 +3657,15 @@ LINE
   8
 0
  10
-68.50000000000004
+22.9166666666667
  20
-189.69790866666668
+148.78124200000002
  30
 0.0
  11
-65.50000000000003
+11.083333333333371
  21
-189.69790866666668
+148.78124200000005
  31
 0.0
   0
@@ -3891,15 +3675,15 @@ LINE
   8
 0
  10
-85.00000000000001
+11.083333333333371
  20
-101.03124200000002
+148.78124200000005
  30
 0.0
  11
-89.00000000000001
+11.083333333333371
  21
-101.03124200000002
+148.28124200000002
  31
 0.0
   0
@@ -3909,13 +3693,49 @@ LINE
   8
 0
  10
-89.00000000000001
+23.000000000000032
  20
-101.03124200000002
+113.03124200000002
  30
 0.0
  11
-89.00000000000001
+23.000000000000032
+ 21
+117.03124200000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+23.000000000000032
+ 20
+117.03124200000002
+ 30
+0.0
+ 11
+11.00000000000003
+ 21
+117.03124200000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.00000000000003
+ 20
+117.03124200000002
+ 30
+0.0
+ 11
+11.00000000000003
  21
 113.03124200000002
  31
@@ -3927,13 +3747,13 @@ LINE
   8
 0
  10
-89.00000000000001
+11.00000000000003
  20
 113.03124200000002
  30
 0.0
  11
-85.00000000000001
+23.000000000000032
  21
 113.03124200000002
  31
@@ -3945,15 +3765,15 @@ LINE
   8
 0
  10
-85.00000000000001
+21.50000000000003
  20
-113.03124200000002
+125.03124200000002
  30
 0.0
  11
-85.00000000000001
+21.50000000000003
  21
-101.03124200000002
+129.031242
  31
 0.0
   0
@@ -3963,15 +3783,15 @@ LINE
   8
 0
  10
-90.50000000000001
+21.50000000000003
  20
-101.03124200000002
+129.031242
  30
 0.0
  11
-113.50000000000001
+12.50000000000003
  21
-101.031242
+129.03124200000002
  31
 0.0
   0
@@ -3981,15 +3801,15 @@ LINE
   8
 0
  10
-113.50000000000001
+12.50000000000003
  20
-101.031242
+129.03124200000002
  30
 0.0
  11
-113.50000000000001
+12.50000000000003
  21
-113.031242
+125.03124200000002
  31
 0.0
   0
@@ -3999,15 +3819,15 @@ LINE
   8
 0
  10
-113.50000000000001
+12.50000000000003
  20
-113.031242
+125.03124200000002
  30
 0.0
  11
-90.50000000000001
+21.50000000000003
  21
-113.03124200000002
+125.03124200000002
  31
 0.0
   0
@@ -4017,15 +3837,15 @@ LINE
   8
 0
  10
-90.50000000000001
+23.000000000000032
  20
-113.03124200000002
+88.53124200000003
  30
 0.0
  11
-90.50000000000001
+23.000000000000032
  21
-101.03124200000002
+111.53124200000002
  31
 0.0
   0
@@ -4035,15 +3855,15 @@ LINE
   8
 0
  10
-115.00000000000001
+23.000000000000032
  20
-101.031242
+111.53124200000002
  30
 0.0
  11
-119.0
+11.00000000000003
  21
-101.031242
+111.53124200000002
  31
 0.0
   0
@@ -4053,15 +3873,15 @@ LINE
   8
 0
  10
-119.0
+11.00000000000003
  20
-101.031242
+111.53124200000002
  30
 0.0
  11
-119.00000000000001
+11.00000000000003
  21
-113.031242
+88.53124200000003
  31
 0.0
   0
@@ -4071,15 +3891,15 @@ LINE
   8
 0
  10
-119.00000000000001
+11.00000000000003
  20
-113.031242
+88.53124200000003
  30
 0.0
  11
-115.00000000000001
+23.000000000000032
  21
-113.031242
+88.53124200000003
  31
 0.0
   0
@@ -4089,15 +3909,15 @@ LINE
   8
 0
  10
-115.00000000000001
+23.000000000000004
  20
-113.031242
+83.03124200000002
  30
 0.0
  11
-115.00000000000001
+23.000000000000004
  21
-101.031242
+87.03124200000003
  31
 0.0
   0
@@ -4107,15 +3927,15 @@ LINE
   8
 0
  10
-127.00000000000001
+23.000000000000004
  20
-102.53124199999999
+87.03124200000003
  30
 0.0
  11
-131.0
+11.000000000000002
  21
-102.53124199999999
+87.03124200000003
  31
 0.0
   0
@@ -4125,15 +3945,15 @@ LINE
   8
 0
  10
-131.0
+11.000000000000002
  20
-102.53124199999999
+87.03124200000003
  30
 0.0
  11
-131.0
+11.000000000000002
  21
-111.531242
+83.03124200000002
  31
 0.0
   0
@@ -4143,15 +3963,15 @@ LINE
   8
 0
  10
-131.0
+11.000000000000002
  20
-111.531242
+83.03124200000002
  30
 0.0
  11
-127.00000000000001
+23.000000000000004
  21
-111.531242
+83.03124200000002
  31
 0.0
   0
@@ -4161,15 +3981,15 @@ LINE
   8
 0
  10
-127.00000000000001
+22.666666666666675
  20
-111.531242
+60.53124200000003
  30
 0.0
  11
-127.00000000000001
+22.666666666666675
  21
-102.53124199999999
+65.53124200000002
  31
 0.0
   0
@@ -4179,15 +3999,15 @@ LINE
   8
 0
  10
-4.750000000000001
+22.666666666666675
  20
-68.11457533333336
+65.53124200000002
  30
 0.0
  11
-4.750000000000001
+11.333333333333343
  21
-72.94790866666668
+65.53124200000002
  31
 0.0
   0
@@ -4197,15 +4017,15 @@ LINE
   8
 0
  10
-4.750000000000001
+11.333333333333343
  20
-72.94790866666668
+65.53124200000002
  30
 0.0
  11
-4.25
+11.333333333333343
  21
-72.94790866666668
+60.53124200000003
  31
 0.0
   0
@@ -4215,15 +4035,15 @@ LINE
   8
 0
  10
-4.25
+298.00000000000006
  20
-72.94790866666668
+122.531242
  30
 0.0
  11
-4.25
+228.00000000000003
  21
-68.11457533333336
+122.531242
  31
 0.0
   0
@@ -4233,15 +4053,51 @@ LINE
   8
 0
  10
-4.25
+298.00000000000006
+ 20
+135.53124200000002
+ 30
+0.0
+ 11
+298.00000000000006
+ 21
+122.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+228.00000000000003
+ 20
+135.53124200000002
+ 30
+0.0
+ 11
+298.00000000000006
+ 21
+135.53124200000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+228.00000000000003
  20
-68.11457533333336
+122.531242
  30
 0.0
  11
-4.750000000000001
+228.00000000000003
  21
-68.11457533333336
+135.53124200000002
  31
 0.0
   0
@@ -4251,13 +4107,13 @@ LINE
   8
 0
  10
-334.00000000000006
+342.00000000000006
  20
 98.531242
  30
 0.0
  11
-310.0
+318.0
  21
 98.531242
  31
@@ -4271,13 +4127,13 @@ DOTTED
   8
 0
  10
-334.00000000000006
+342.00000000000006
  20
 98.531242
  30
 0.0
  11
-334.00000000000006
+342.00000000000006
  21
 159.531242
  31
@@ -4289,13 +4145,13 @@ LINE
   8
 0
  10
-310.0
+318.0
  20
 159.531242
  30
 0.0
  11
-334.00000000000006
+342.00000000000006
  21
 159.531242
  31
@@ -4309,13 +4165,13 @@ DOTTED
   8
 0
  10
-310.0
+318.0
  20
 159.531242
  30
 0.0
  11
-310.0
+318.0
  21
 98.531242
  31
@@ -4327,13 +4183,13 @@ LINE
   8
 0
  10
-394.00000000000006
+402.00000000000006
  20
 98.531242
  30
 0.0
  11
-334.00000000000006
+342.00000000000006
  21
 98.531242
  31
@@ -4347,13 +4203,13 @@ DOTTED
   8
 0
  10
-394.00000000000006
+402.00000000000006
  20
 98.531242
  30
 0.0
  11
-394.00000000000006
+402.00000000000006
  21
 159.531242
  31
@@ -4365,13 +4221,13 @@ LINE
   8
 0
  10
-334.00000000000006
+342.00000000000006
  20
 159.531242
  30
 0.0
  11
-394.00000000000006
+402.00000000000006
  21
 159.531242
  31
@@ -4383,13 +4239,13 @@ LINE
   8
 0
  10
-418.00000000000006
+426.00000000000006
  20
 98.531242
  30
 0.0
  11
-394.00000000000006
+402.00000000000006
  21
 98.531242
  31
@@ -4403,13 +4259,13 @@ DOTTED
   8
 0
  10
-418.00000000000006
+426.00000000000006
  20
 98.531242
  30
 0.0
  11
-418.00000000000006
+426.00000000000006
  21
 159.531242
  31
@@ -4421,13 +4277,13 @@ LINE
   8
 0
  10
-394.00000000000006
+402.00000000000006
  20
 159.531242
  30
 0.0
  11
-418.00000000000006
+426.00000000000006
  21
 159.531242
  31
@@ -4439,13 +4295,13 @@ LINE
   8
 0
  10
-478.00000000000006
+486.00000000000006
  20
 98.531242
  30
 0.0
  11
-418.00000000000006
+426.00000000000006
  21
 98.531242
  31
@@ -4457,13 +4313,13 @@ LINE
   8
 0
  10
-478.00000000000006
+486.00000000000006
  20
 159.531242
  30
 0.0
  11
-478.00000000000006
+486.00000000000006
  21
 98.531242
  31
@@ -4475,13 +4331,13 @@ LINE
   8
 0
  10
-418.00000000000006
+426.00000000000006
  20
 159.531242
  30
 0.0
  11
-478.00000000000006
+486.00000000000006
  21
 159.531242
  31
@@ -4493,13 +4349,13 @@ LINE
   8
 0
  10
-300.0
+308.00000000000006
  20
 159.531242
  30
 0.0
  11
-310.0
+318.0
  21
 159.531242
  31
@@ -4511,13 +4367,13 @@ LINE
   8
 0
  10
-300.0
+308.00000000000006
  20
 98.531242
  30
 0.0
  11
-300.0
+308.00000000000006
  21
 159.531242
  31
@@ -4529,13 +4385,13 @@ LINE
   8
 0
  10
-310.0
+318.0
  20
 98.531242
  30
 0.0
  11
-300.0
+308.00000000000006
  21
 98.531242
  31
@@ -4547,13 +4403,13 @@ LINE
   8
 0
  10
-311.40000000000003
+319.4
  20
 108.531242
  30
 0.0
  11
-312.6
+320.6000000000001
  21
 108.531242
  31
@@ -4565,13 +4421,13 @@ LINE
   8
 0
  10
-312.6
+320.6000000000001
  20
 108.531242
  30
 0.0
  11
-312.6
+320.6000000000001
  21
 149.53124200000002
  31
@@ -4583,13 +4439,13 @@ LINE
   8
 0
  10
-312.6
+320.6000000000001
  20
 149.53124200000002
  30
 0.0
  11
-311.40000000000003
+319.4
  21
 149.53124200000002
  31
@@ -4601,13 +4457,13 @@ LINE
   8
 0
  10
-311.40000000000003
+319.4
  20
 149.53124200000002
  30
 0.0
  11
-311.40000000000003
+319.4
  21
 108.531242
  31
@@ -4619,13 +4475,13 @@ LINE
   8
 0
  10
-331.40000000000003
+339.40000000000003
  20
 109.031242
  30
 0.0
  11
-332.6000000000001
+340.6
  21
 109.031242
  31
@@ -4637,13 +4493,13 @@ LINE
   8
 0
  10
-332.6000000000001
+340.6
  20
 109.031242
  30
 0.0
  11
-332.6000000000001
+340.6
  21
 139.031242
  31
@@ -4655,13 +4511,13 @@ LINE
   8
 0
  10
-332.6000000000001
+340.6
  20
 139.031242
  30
 0.0
  11
-331.40000000000003
+339.40000000000003
  21
 139.031242
  31
@@ -4673,13 +4529,13 @@ LINE
   8
 0
  10
-331.40000000000003
+339.40000000000003
  20
 139.031242
  30
 0.0
  11
-331.40000000000003
+339.40000000000003
  21
 109.031242
  31
@@ -4691,13 +4547,13 @@ LINE
   8
 0
  10
-342.00000000000006
+350.0
  20
 150.031242
  30
 0.0
  11
-342.00000000000006
+350.0
  21
 132.03124200000002
  31
@@ -4709,13 +4565,13 @@ LINE
   8
 0
  10
-342.00000000000006
+350.0
  20
 132.03124200000002
  30
 0.0
  11
-372.00000000000006
+380.00000000000006
  21
 132.03124200000002
  31
@@ -4727,13 +4583,13 @@ LINE
   8
 0
  10
-372.00000000000006
+380.00000000000006
  20
 132.03124200000002
  30
 0.0
  11
-372.00000000000006
+380.00000000000006
  21
 150.031242
  31
@@ -4745,13 +4601,13 @@ LINE
   8
 0
  10
-372.00000000000006
+380.00000000000006
  20
 150.031242
  30
 0.0
  11
-342.00000000000006
+350.0
  21
 150.031242
  31
@@ -4763,13 +4619,13 @@ LINE
   8
 0
  10
-415.4
+423.40000000000003
  20
 108.531242
  30
 0.0
  11
-416.6000000000001
+424.6000000000001
  21
 108.531242
  31
@@ -4781,13 +4637,13 @@ LINE
   8
 0
  10
-416.6000000000001
+424.6000000000001
  20
 108.531242
  30
 0.0
  11
-416.6000000000001
+424.6000000000001
  21
 149.53124200000002
  31
@@ -4799,13 +4655,13 @@ LINE
   8
 0
  10
-416.6000000000001
+424.6000000000001
  20
 149.53124200000002
  30
 0.0
  11
-415.4
+423.40000000000003
  21
 149.53124200000002
  31
@@ -4817,13 +4673,13 @@ LINE
   8
 0
  10
-415.4
+423.40000000000003
  20
 149.53124200000002
  30
 0.0
  11
-415.4
+423.40000000000003
  21
 108.531242
  31
@@ -4835,13 +4691,13 @@ LINE
   8
 0
  10
-395.40000000000003
+403.40000000000003
  20
 109.031242
  30
 0.0
  11
-396.6000000000001
+404.6000000000001
  21
 109.031242
  31
@@ -4853,13 +4709,13 @@ LINE
   8
 0
  10
-396.6000000000001
+404.6000000000001
  20
 109.031242
  30
 0.0
  11
-396.6000000000001
+404.6000000000001
  21
 139.031242
  31
@@ -4871,13 +4727,13 @@ LINE
   8
 0
  10
-396.6000000000001
+404.6000000000001
  20
 139.031242
  30
 0.0
  11
-395.40000000000003
+403.40000000000003
  21
 139.031242
  31
@@ -4889,13 +4745,13 @@ LINE
   8
 0
  10
-395.40000000000003
+403.40000000000003
  20
 139.031242
  30
 0.0
  11
-395.40000000000003
+403.40000000000003
  21
 109.031242
  31
@@ -4907,13 +4763,13 @@ LINE
   8
 0
  10
-433.00000000000006
+441.00000000000006
  20
 112.531242
  30
 0.0
  11
-433.00000000000006
+441.00000000000006
  21
 105.531242
  31
@@ -4925,13 +4781,13 @@ LINE
   8
 0
  10
-433.00000000000006
+441.00000000000006
  20
 105.531242
  30
 0.0
  11
-453.00000000000006
+461.00000000000006
  21
 105.531242
  31
@@ -4943,13 +4799,13 @@ LINE
   8
 0
  10
-453.00000000000006
+461.00000000000006
  20
 105.531242
  30
 0.0
  11
-453.00000000000006
+461.00000000000006
  21
 112.531242
  31
@@ -4961,13 +4817,13 @@ LINE
   8
 0
  10
-453.00000000000006
+461.00000000000006
  20
 112.531242
  30
 0.0
  11
-433.00000000000006
+441.00000000000006
  21
 112.531242
  31
@@ -4979,13 +4835,13 @@ LINE
   8
 0
  10
-470.25000000000006
+478.25000000000006
  20
 120.9630601818182
  30
 0.0
  11
-470.25000000000006
+478.25000000000006
  21
 109.3721510909091
  31
@@ -4997,13 +4853,13 @@ LINE
   8
 0
  10
-470.25000000000006
+478.25000000000006
  20
 109.3721510909091
  30
 0.0
  11
-470.75000000000006
+478.75000000000006
  21
 109.3721510909091
  31
@@ -5015,13 +4871,13 @@ LINE
   8
 0
  10
-470.75000000000006
+478.75000000000006
  20
 109.3721510909091
  30
 0.0
  11
-470.75000000000006
+478.75000000000006
  21
 120.9630601818182
  31
@@ -5033,13 +4889,13 @@ LINE
   8
 0
  10
-470.75000000000006
+478.75000000000006
  20
 120.9630601818182
  30
 0.0
  11
-470.25000000000006
+478.25000000000006
  21
 120.9630601818182
  31
@@ -5051,13 +4907,13 @@ LINE
   8
 0
  10
-470.25000000000006
+478.25000000000006
  20
 148.69033290909093
  30
 0.0
  11
-470.25000000000006
+478.25000000000006
  21
 137.09942381818183
  31
@@ -5069,13 +4925,13 @@ LINE
   8
 0
  10
-470.25000000000006
+478.25000000000006
  20
 137.09942381818183
  30
 0.0
  11
-470.75000000000006
+478.75000000000006
  21
 137.09942381818183
  31
@@ -5087,13 +4943,13 @@ LINE
   8
 0
  10
-470.75000000000006
+478.75000000000006
  20
 137.09942381818183
  30
 0.0
  11
-470.75000000000006
+478.75000000000006
  21
 148.69033290909093
  31
@@ -5105,13 +4961,13 @@ LINE
   8
 0
  10
-470.75000000000006
+478.75000000000006
  20
 148.69033290909093
  30
 0.0
  11
-470.25000000000006
+478.25000000000006
  21
 148.69033290909093
  31
@@ -5123,13 +4979,13 @@ LINE
   8
 0
  10
-302.50000000000006
+310.50000000000006
  20
 109.6221510909091
  30
 0.0
  11
-307.50000000000006
+315.50000000000006
  21
 109.6221510909091
  31
@@ -5141,13 +4997,13 @@ LINE
   8
 0
  10
-307.50000000000006
+315.50000000000006
  20
 109.6221510909091
  30
 0.0
  11
-307.50000000000006
+315.50000000000006
  21
 120.7130601818182
  31
@@ -5159,13 +5015,13 @@ LINE
   8
 0
  10
-307.50000000000006
+315.50000000000006
  20
 120.7130601818182
  30
 0.0
  11
-302.50000000000006
+310.50000000000006
  21
 120.7130601818182
  31
@@ -5177,13 +5033,13 @@ LINE
   8
 0
  10
-302.50000000000006
+310.50000000000006
  20
 137.34942381818186
  30
 0.0
  11
-307.50000000000006
+315.50000000000006
  21
 137.34942381818186
  31
@@ -5195,13 +5051,13 @@ LINE
   8
 0
  10
-307.50000000000006
+315.50000000000006
  20
 137.34942381818186
  30
 0.0
  11
-307.50000000000006
+315.50000000000006
  21
 148.44033290909093
  31
@@ -5213,13 +5069,13 @@ LINE
   8
 0
  10
-307.50000000000006
+315.50000000000006
  20
 148.44033290909093
  30
 0.0
  11
-302.50000000000006
+310.50000000000006
  21
 148.44033290909093
  31
diff --git a/rocolib/output/PaddleboatWithCamera/graph-lasercutter.svg b/rocolib/output/PaddleboatWithCamera/graph-lasercutter.svg
index d06948bd2a73132a45ad9d591975008026556384..f5dbb369077f9d7aa4e25e9f8ec0544f4f047232 100644
--- a/rocolib/output/PaddleboatWithCamera/graph-lasercutter.svg
+++ b/rocolib/output/PaddleboatWithCamera/graph-lasercutter.svg
@@ -1,238 +1,230 @@
 <?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="234.031242mm" version="1.1" viewBox="0.000000 0.000000 478.000000 234.031242" width="478.000000mm">
+<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="234.031242mm" version="1.1" viewBox="0.000000 0.000000 486.000000 234.031242" width="486.000000mm">
   <defs/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="179.99999999999997" x2="179.99999999999997" y1="64.03124199999999" y2="194.03124200000002"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="109.99999999999999" x2="109.99999999999999" y1="64.03124199999999" y2="194.03124200000002"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="145.0" x2="109.99999999999999" y1="64.03124199999999" y2="64.03124199999999"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="179.99999999999997" x2="145.0" y1="64.03124199999999" y2="64.03124199999999"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="145.0" x2="109.99999999999999" y1="-3.7432849353535863e-07" y2="64.03124199999999"/>
-  <line stroke="#000000" x1="112.32105756343546" x2="91.16052878171773" y1="17.44773491586702" y2="28.745631275293622"/>
-  <line stroke="#000000" x1="145.0" x2="112.32105756343546" y1="-3.743284651136492e-07" y2="17.44773491586702"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="109.99999999999999" x2="91.16052878171773" y1="64.03124199999999" y2="28.745631275293622"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="109.99999999999999" x2="69.99999999999999" y1="64.03124199999999" y2="40.04352763472023"/>
-  <line stroke="#000000" x1="91.16052878171773" x2="69.99999999999999" y1="28.745631275293608" y2="40.04352763472023"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="69.99999999999999" x2="69.99999999999999" y1="64.031242" y2="40.04352763472023"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="109.99999999999999" x2="69.99999999999999" y1="64.03124199999999" y2="64.031242"/>
-  <line stroke="#000000" x1="62.00409521157338" x2="69.99999999999999" y1="64.031242" y2="64.031242"/>
-  <line stroke="#000000" x1="62.004095211573365" x2="62.00409521157338" y1="40.04352763472023" y2="64.031242"/>
-  <line stroke="#000000" x1="69.99999999999997" x2="62.004095211573365" y1="40.04352763472023" y2="40.04352763472023"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="70.00000000000004" x2="110.00000000000004" y1="194.031242" y2="194.031242"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="70.00000000000004" x2="110.00000000000003" y1="234.031242" y2="194.031242"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="70.00000000000004" x2="70.00000000000003" y1="234.031242" y2="194.031242"/>
-  <line stroke="#000000" x1="70.00000000000004" x2="110.00000000000004" y1="234.031242" y2="234.031242"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="110.00000000000004" x2="110.00000000000003" y1="234.031242" y2="194.031242"/>
-  <line stroke="#000000" x1="150.0" x2="145.00000000000003" y1="234.031242" y2="234.031242"/>
-  <line stroke="#000000" x1="110.00000000000003" x2="150.0" y1="234.031242" y2="234.031242"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="110.00000000000003" x2="145.00000000000003" y1="194.031242" y2="194.031242"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="145.00000000000003" x2="180.0" y1="194.031242" y2="194.031242"/>
-  <line stroke="#000000" x1="140.00000000000003" x2="180.0" y1="234.031242" y2="234.031242"/>
-  <line stroke="#000000" x1="145.00000000000003" x2="140.00000000000003" y1="234.031242" y2="234.031242"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="180.0" x2="180.0" y1="194.031242" y2="234.031242"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="180.0" x2="220.00000000000003" y1="194.031242" y2="234.031242"/>
-  <line stroke="#000000" x1="180.0" x2="220.00000000000003" y1="234.031242" y2="234.031242"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="220.00000000000003" x2="220.00000000000003" y1="194.031242" y2="234.031242"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="180.0" x2="220.00000000000003" y1="194.031242" y2="194.031242"/>
-  <line stroke="#000000" x1="233.33333333333334" x2="220.00000000000003" y1="194.03124200000002" y2="194.03124200000002"/>
-  <line stroke="#000000" x1="233.33333333333334" x2="233.33333333333334" y1="234.031242" y2="194.03124200000002"/>
-  <line stroke="#000000" x1="220.00000000000003" x2="233.33333333333334" y1="234.031242" y2="234.031242"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="220.00000000000003" x2="180.00000000000006" y1="64.031242" y2="64.03124199999999"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="220.00000000000003" x2="180.00000000000006" y1="40.04352763472023" y2="64.03124199999999"/>
-  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="220.00000000000003" x2="220.00000000000003" y1="40.04352763472023" y2="64.031242"/>
-  <line stroke="#000000" x1="220.00000000000003" x2="198.8394712182823" y1="40.043527634720235" y2="28.745631275293622"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="198.8394712182823" x2="180.00000000000006" y1="28.745631275293622" y2="64.03124199999999"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="145.00000000000006" x2="180.00000000000006" y1="-3.743284651136492e-07" y2="64.03124199999999"/>
-  <line stroke="#000000" x1="177.67894243656454" x2="145.00000000000006" y1="17.44773491586702" y2="-3.743284651136492e-07"/>
-  <line stroke="#000000" x1="198.83947121828228" x2="177.67894243656454" y1="28.745631275293622" y2="17.44773491586702"/>
-  <line stroke="#000000" x1="227.99590478842666" x2="220.00000000000006" y1="40.04352763472023" y2="40.04352763472023"/>
-  <line stroke="#000000" x1="227.99590478842666" x2="227.99590478842666" y1="64.031242" y2="40.04352763472023"/>
-  <line stroke="#000000" x1="220.00000000000006" x2="227.99590478842666" y1="64.031242" y2="64.031242"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="220.00000000000003" x2="220.00000000000003" y1="64.03124199999999" y2="77.031242"/>
-  <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="90.03124199999999" y2="77.031242"/>
-  <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="103.031242" y2="90.03124199999999"/>
-  <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="116.03124199999999" y2="103.031242"/>
-  <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="129.03124199999996" y2="116.03124199999999"/>
-  <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="142.031242" y2="129.03124199999996"/>
-  <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="155.03124199999996" y2="142.031242"/>
-  <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="168.031242" y2="155.03124199999996"/>
-  <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="181.031242" y2="168.031242"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="220.00000000000003" x2="220.00000000000003" y1="181.031242" y2="194.031242"/>
-  <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="194.031242" y2="194.031242"/>
-  <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="64.03124199999999" y2="64.03124199999999"/>
-  <line stroke="#000000" x1="226.00000000000003" x2="220.00000000000003" y1="64.03124199999999" y2="64.03124199999999"/>
-  <line stroke="#000000" x1="226.00000000000003" x2="226.00000000000003" y1="77.031242" y2="64.03124199999999"/>
-  <line stroke="#000000" x1="220.00000000000003" x2="226.00000000000003" y1="77.031242" y2="77.031242"/>
-  <line stroke="#000000" x1="220.00000000000003" x2="244.0" y1="199.031242" y2="199.031242"/>
-  <line stroke="#000000" x1="244.00000000000003" x2="220.00000000000003" y1="129.031242" y2="129.03124199999996"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="244.0" x2="244.00000000000003" y1="199.031242" y2="129.031242"/>
-  <line stroke="#000000" x1="200.0" x2="220.00000000000003" y1="199.031242" y2="199.031242"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="200.0" x2="200.0" y1="199.031242" y2="129.03124199999996"/>
-  <line stroke="#000000" x1="220.00000000000003" x2="200.0" y1="129.03124199999996" y2="129.03124199999996"/>
-  <line stroke="#000000" x1="176.00000000000003" x2="200.0" y1="199.031242" y2="199.031242"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="176.00000000000003" x2="176.00000000000003" y1="199.031242" y2="129.03124199999996"/>
-  <line stroke="#000000" x1="200.0" x2="176.00000000000003" y1="129.031242" y2="129.03124199999996"/>
-  <line stroke="#000000" x1="156.00000000000003" x2="176.00000000000003" y1="199.031242" y2="199.031242"/>
-  <line stroke="#000000" x1="176.00000000000003" x2="156.00000000000003" y1="129.03124199999996" y2="129.03124199999996"/>
-  <line stroke="#000000" x1="220.00000000000003" x2="290.00000000000006" y1="194.031242" y2="194.031242"/>
-  <line stroke="#000000" x1="290.00000000000006" x2="220.00000000000003" y1="181.031242" y2="181.031242"/>
-  <line stroke="#000000" x1="290.00000000000006" x2="290.00000000000006" y1="194.031242" y2="181.031242"/>
-  <line stroke="#000000" x1="56.66666666666671" x2="70.00000000000004" y1="234.031242" y2="234.031242"/>
-  <line stroke="#000000" x1="56.66666666666669" x2="56.66666666666671" y1="194.031242" y2="234.031242"/>
-  <line stroke="#000000" x1="70.00000000000003" x2="56.66666666666669" y1="194.031242" y2="194.031242"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="70.00000000000004" x2="70.00000000000004" y1="194.03124200000002" y2="181.03124200000002"/>
-  <line stroke="#000000" x1="70.00000000000003" x2="70.00000000000004" y1="168.03124200000002" y2="181.03124200000002"/>
-  <line stroke="#000000" x1="70.00000000000003" x2="70.00000000000003" y1="155.031242" y2="168.03124200000002"/>
-  <line stroke="#000000" x1="70.00000000000003" x2="70.00000000000003" y1="142.03124200000002" y2="155.031242"/>
-  <line stroke="#000000" x1="70.00000000000001" x2="70.00000000000003" y1="129.03124200000002" y2="142.03124200000002"/>
-  <line stroke="#000000" x1="70.00000000000001" x2="70.00000000000001" y1="116.03124200000002" y2="129.03124200000002"/>
-  <line stroke="#000000" x1="70.00000000000001" x2="70.00000000000001" y1="103.03124200000002" y2="116.03124200000002"/>
-  <line stroke="#000000" x1="70.00000000000001" x2="70.00000000000001" y1="90.031242" y2="103.03124200000002"/>
-  <line stroke="#000000" x1="70.0" x2="70.00000000000001" y1="77.03124200000002" y2="90.031242"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="70.0" x2="70.0" y1="77.03124200000002" y2="64.03124200000003"/>
-  <line stroke="#000000" x1="70.0" x2="70.0" y1="64.03124200000003" y2="64.03124200000003"/>
-  <line stroke="#000000" x1="70.00000000000004" x2="70.00000000000004" y1="194.03124200000002" y2="194.03124200000002"/>
-  <line stroke="#000000" x1="64.00000000000004" x2="70.00000000000004" y1="194.03124200000002" y2="194.03124200000002"/>
-  <line stroke="#000000" x1="64.00000000000004" x2="64.00000000000004" y1="181.03124200000002" y2="194.03124200000002"/>
-  <line stroke="#000000" x1="70.00000000000004" x2="64.00000000000004" y1="181.03124200000002" y2="181.03124200000002"/>
-  <line stroke="#000000" x1="70.0" x2="45.99999999999999" y1="72.03124200000002" y2="72.03124200000003"/>
-  <line stroke="#000000" x1="46.000000000000014" x2="70.00000000000003" y1="142.03124200000005" y2="142.03124200000002"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="45.99999999999999" x2="46.000000000000014" y1="72.03124200000003" y2="142.03124200000005"/>
-  <line stroke="#000000" x1="89.99999999999999" x2="70.0" y1="72.03124200000002" y2="72.03124200000003"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="89.99999999999999" x2="90.00000000000003" y1="72.03124200000002" y2="142.03124200000002"/>
-  <line stroke="#000000" x1="70.00000000000003" x2="90.00000000000003" y1="142.03124200000005" y2="142.03124200000002"/>
-  <line stroke="#000000" x1="114.0" x2="89.99999999999999" y1="72.03124199999999" y2="72.03124200000002"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="114.0" x2="114.00000000000003" y1="72.03124199999999" y2="142.03124200000002"/>
-  <line stroke="#000000" x1="90.00000000000003" x2="114.00000000000003" y1="142.03124200000002" y2="142.03124200000002"/>
-  <line stroke="#000000" x1="134.0" x2="114.0" y1="72.03124199999999" y2="72.03124199999999"/>
-  <line stroke="#000000" x1="114.00000000000001" x2="134.00000000000003" y1="142.03124200000002" y2="142.03124200000002"/>
-  <line stroke="#000000" x1="0.0" x2="69.99999999999999" y1="77.03124200000003" y2="77.03124200000002"/>
-  <line stroke="#000000" x1="0.0" x2="0.0" y1="64.03124200000003" y2="77.03124200000003"/>
-  <line stroke="#000000" x1="69.99999999999999" x2="0.0" y1="64.031242" y2="64.03124200000003"/>
-  <line stroke="#888888" x1="108.43030382152989" x2="100.93572409356514" y1="26.606620936353796" y2="30.608079779724527"/>
-  <line stroke="#888888" x1="100.93572409356514" x2="100.70023070333662" y1="30.608079779724527" y2="30.167009645665704"/>
-  <line stroke="#888888" x1="100.70023070333662" x2="108.19481043130136" y1="30.167009645665704" y2="26.165550802294977"/>
-  <line stroke="#888888" x1="108.19481043130136" x2="108.43030382152989" y1="26.165550802294977" y2="26.606620936353796"/>
-  <line stroke="#888888" x1="64.00307140868003" x2="68.00102380289331" y1="48.03943242314682" y2="48.03943242314682"/>
-  <line stroke="#888888" x1="68.00102380289331" x2="68.00102380289331" y1="48.03943242314682" y2="56.03533721157341"/>
-  <line stroke="#888888" x1="68.00102380289331" x2="64.00307140868003" y1="56.03533721157341" y2="56.03533721157343"/>
-  <line stroke="#888888" x1="123.08333333333336" x2="136.9166666666667" y1="223.781242" y2="223.781242"/>
-  <line stroke="#888888" x1="136.9166666666667" x2="136.9166666666667" y1="223.781242" y2="224.281242"/>
-  <line stroke="#888888" x1="136.9166666666667" x2="123.08333333333336" y1="224.281242" y2="224.281242"/>
-  <line stroke="#888888" x1="123.08333333333336" x2="123.08333333333336" y1="224.281242" y2="223.781242"/>
-  <line stroke="#888888" x1="153.08333333333337" x2="166.9166666666667" y1="223.781242" y2="223.781242"/>
-  <line stroke="#888888" x1="166.9166666666667" x2="166.9166666666667" y1="223.781242" y2="224.281242"/>
-  <line stroke="#888888" x1="166.9166666666667" x2="153.08333333333337" y1="224.281242" y2="224.281242"/>
-  <line stroke="#888888" x1="153.08333333333337" x2="153.08333333333337" y1="224.281242" y2="223.781242"/>
-  <line stroke="#888888" x1="230.00000000000003" x2="223.33333333333334" y1="220.69790866666668" y2="220.69790866666668"/>
-  <line stroke="#888888" x1="223.33333333333334" x2="223.33333333333334" y1="220.69790866666668" y2="207.3645753333333"/>
-  <line stroke="#888888" x1="223.33333333333334" x2="230.00000000000003" y1="207.3645753333333" y2="207.3645753333333"/>
-  <line stroke="#888888" x1="189.0642759064349" x2="181.56969617847014" y1="30.608079779724527" y2="26.60662093635381"/>
-  <line stroke="#888888" x1="181.56969617847014" x2="181.80518956869867" y1="26.60662093635381" y2="26.165550802294977"/>
-  <line stroke="#888888" x1="181.80518956869867" x2="189.2997692966634" y1="26.165550802294977" y2="30.167009645665704"/>
-  <line stroke="#888888" x1="189.2997692966634" x2="189.0642759064349" y1="30.167009645665704" y2="30.608079779724527"/>
-  <line stroke="#888888" x1="225.99692859132" x2="221.99897619710669" y1="56.03533721157341" y2="56.03533721157341"/>
-  <line stroke="#888888" x1="221.99897619710669" x2="221.99897619710669" y1="56.03533721157341" y2="48.03943242314682"/>
-  <line stroke="#888888" x1="221.99897619710669" x2="225.99692859132" y1="48.03943242314682" y2="48.03943242314682"/>
-  <line stroke="#888888" x1="224.50000000000003" x2="221.50000000000003" y1="72.69790866666666" y2="72.69790866666666"/>
-  <line stroke="#888888" x1="221.50000000000003" x2="221.50000000000003" y1="72.69790866666666" y2="68.36457533333333"/>
-  <line stroke="#888888" x1="221.50000000000003" x2="224.50000000000003" y1="68.36457533333333" y2="68.36457533333333"/>
-  <line stroke="#888888" x1="205.00000000000003" x2="201.00000000000003" y1="170.031242" y2="170.031242"/>
-  <line stroke="#888888" x1="201.00000000000003" x2="201.00000000000003" y1="170.031242" y2="158.031242"/>
-  <line stroke="#888888" x1="201.00000000000003" x2="205.00000000000003" y1="158.031242" y2="158.031242"/>
-  <line stroke="#888888" x1="205.00000000000003" x2="205.00000000000003" y1="158.031242" y2="170.031242"/>
-  <line stroke="#888888" x1="199.50000000000003" x2="176.50000000000003" y1="170.031242" y2="170.031242"/>
-  <line stroke="#888888" x1="176.50000000000003" x2="176.50000000000003" y1="170.031242" y2="158.031242"/>
-  <line stroke="#888888" x1="176.50000000000003" x2="199.50000000000003" y1="158.031242" y2="158.031242"/>
-  <line stroke="#888888" x1="199.50000000000003" x2="199.50000000000003" y1="158.031242" y2="170.031242"/>
-  <line stroke="#888888" x1="175.0" x2="171.00000000000003" y1="170.031242" y2="170.031242"/>
-  <line stroke="#888888" x1="171.00000000000003" x2="171.00000000000003" y1="170.031242" y2="158.031242"/>
-  <line stroke="#888888" x1="171.00000000000003" x2="175.0" y1="158.031242" y2="158.031242"/>
-  <line stroke="#888888" x1="175.0" x2="175.0" y1="158.031242" y2="170.031242"/>
-  <line stroke="#888888" x1="163.00000000000003" x2="159.0" y1="168.53124199999996" y2="168.53124199999996"/>
-  <line stroke="#888888" x1="159.0" x2="159.0" y1="168.53124199999996" y2="159.53124199999996"/>
-  <line stroke="#888888" x1="159.0" x2="163.00000000000003" y1="159.53124199999996" y2="159.53124199999996"/>
-  <line stroke="#888888" x1="163.00000000000003" x2="163.00000000000003" y1="159.53124199999996" y2="168.53124199999996"/>
-  <line stroke="#888888" x1="285.25000000000006" x2="285.25000000000006" y1="189.94790866666668" y2="185.11457533333333"/>
-  <line stroke="#888888" x1="285.25000000000006" x2="285.75" y1="185.11457533333333" y2="185.11457533333333"/>
-  <line stroke="#888888" x1="285.75" x2="285.75" y1="185.11457533333333" y2="189.94790866666668"/>
-  <line stroke="#888888" x1="285.75" x2="285.25000000000006" y1="189.94790866666668" y2="189.94790866666668"/>
-  <line stroke="#888888" x1="60.00000000000002" x2="66.66666666666669" y1="207.3645753333333" y2="207.3645753333333"/>
-  <line stroke="#888888" x1="66.66666666666669" x2="66.66666666666671" y1="207.3645753333333" y2="220.69790866666668"/>
-  <line stroke="#888888" x1="66.66666666666671" x2="60.000000000000036" y1="220.69790866666668" y2="220.69790866666668"/>
-  <line stroke="#888888" x1="65.50000000000003" x2="68.50000000000004" y1="185.36457533333336" y2="185.36457533333336"/>
-  <line stroke="#888888" x1="68.50000000000004" x2="68.50000000000004" y1="185.36457533333336" y2="189.69790866666668"/>
-  <line stroke="#888888" x1="68.50000000000004" x2="65.50000000000003" y1="189.69790866666668" y2="189.69790866666668"/>
-  <line stroke="#888888" x1="85.00000000000001" x2="89.00000000000001" y1="101.03124200000002" y2="101.03124200000002"/>
-  <line stroke="#888888" x1="89.00000000000001" x2="89.00000000000001" y1="101.03124200000002" y2="113.03124200000002"/>
-  <line stroke="#888888" x1="89.00000000000001" x2="85.00000000000001" y1="113.03124200000002" y2="113.03124200000002"/>
-  <line stroke="#888888" x1="85.00000000000001" x2="85.00000000000001" y1="113.03124200000002" y2="101.03124200000002"/>
-  <line stroke="#888888" x1="90.50000000000001" x2="113.50000000000001" y1="101.03124200000002" y2="101.031242"/>
-  <line stroke="#888888" x1="113.50000000000001" x2="113.50000000000001" y1="101.031242" y2="113.031242"/>
-  <line stroke="#888888" x1="113.50000000000001" x2="90.50000000000001" y1="113.031242" y2="113.03124200000002"/>
-  <line stroke="#888888" x1="90.50000000000001" x2="90.50000000000001" y1="113.03124200000002" y2="101.03124200000002"/>
-  <line stroke="#888888" x1="115.00000000000001" x2="119.0" y1="101.031242" y2="101.031242"/>
-  <line stroke="#888888" x1="119.0" x2="119.00000000000001" y1="101.031242" y2="113.031242"/>
-  <line stroke="#888888" x1="119.00000000000001" x2="115.00000000000001" y1="113.031242" y2="113.031242"/>
-  <line stroke="#888888" x1="115.00000000000001" x2="115.00000000000001" y1="113.031242" y2="101.031242"/>
-  <line stroke="#888888" x1="127.00000000000001" x2="131.0" y1="102.53124199999999" y2="102.53124199999999"/>
-  <line stroke="#888888" x1="131.0" x2="131.0" y1="102.53124199999999" y2="111.531242"/>
-  <line stroke="#888888" x1="131.0" x2="127.00000000000001" y1="111.531242" y2="111.531242"/>
-  <line stroke="#888888" x1="127.00000000000001" x2="127.00000000000001" y1="111.531242" y2="102.53124199999999"/>
-  <line stroke="#888888" x1="4.750000000000001" x2="4.750000000000001" y1="68.11457533333336" y2="72.94790866666668"/>
-  <line stroke="#888888" x1="4.750000000000001" x2="4.25" y1="72.94790866666668" y2="72.94790866666668"/>
-  <line stroke="#888888" x1="4.25" x2="4.25" y1="72.94790866666668" y2="68.11457533333336"/>
-  <line stroke="#888888" x1="4.25" x2="4.750000000000001" y1="68.11457533333336" y2="68.11457533333336"/>
-  <line stroke="#000000" x1="334.00000000000006" x2="310.0" y1="98.531242" y2="98.531242"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="334.00000000000006" x2="334.00000000000006" y1="98.531242" y2="159.531242"/>
-  <line stroke="#000000" x1="310.0" x2="334.00000000000006" y1="159.531242" y2="159.531242"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="310.0" x2="310.0" y1="159.531242" y2="98.531242"/>
-  <line stroke="#000000" x1="394.00000000000006" x2="334.00000000000006" y1="98.531242" y2="98.531242"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="394.00000000000006" x2="394.00000000000006" y1="98.531242" y2="159.531242"/>
-  <line stroke="#000000" x1="334.00000000000006" x2="394.00000000000006" y1="159.531242" y2="159.531242"/>
-  <line stroke="#000000" x1="418.00000000000006" x2="394.00000000000006" y1="98.531242" y2="98.531242"/>
-  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="418.00000000000006" x2="418.00000000000006" y1="98.531242" y2="159.531242"/>
-  <line stroke="#000000" x1="394.00000000000006" x2="418.00000000000006" y1="159.531242" y2="159.531242"/>
-  <line stroke="#000000" x1="478.00000000000006" x2="418.00000000000006" y1="98.531242" y2="98.531242"/>
-  <line stroke="#000000" x1="478.00000000000006" x2="478.00000000000006" y1="159.531242" y2="98.531242"/>
-  <line stroke="#000000" x1="418.00000000000006" x2="478.00000000000006" y1="159.531242" y2="159.531242"/>
-  <line stroke="#000000" x1="300.0" x2="310.0" y1="159.531242" y2="159.531242"/>
-  <line stroke="#000000" x1="300.0" x2="300.0" y1="98.531242" y2="159.531242"/>
-  <line stroke="#000000" x1="310.0" x2="300.0" y1="98.531242" y2="98.531242"/>
-  <line stroke="#888888" x1="311.40000000000003" x2="312.6" y1="108.531242" y2="108.531242"/>
-  <line stroke="#888888" x1="312.6" x2="312.6" y1="108.531242" y2="149.53124200000002"/>
-  <line stroke="#888888" x1="312.6" x2="311.40000000000003" y1="149.53124200000002" y2="149.53124200000002"/>
-  <line stroke="#888888" x1="311.40000000000003" x2="311.40000000000003" y1="149.53124200000002" y2="108.531242"/>
-  <line stroke="#888888" x1="331.40000000000003" x2="332.6000000000001" y1="109.031242" y2="109.031242"/>
-  <line stroke="#888888" x1="332.6000000000001" x2="332.6000000000001" y1="109.031242" y2="139.031242"/>
-  <line stroke="#888888" x1="332.6000000000001" x2="331.40000000000003" y1="139.031242" y2="139.031242"/>
-  <line stroke="#888888" x1="331.40000000000003" x2="331.40000000000003" y1="139.031242" y2="109.031242"/>
-  <line stroke="#888888" x1="342.00000000000006" x2="342.00000000000006" y1="150.031242" y2="132.03124200000002"/>
-  <line stroke="#888888" x1="342.00000000000006" x2="372.00000000000006" y1="132.03124200000002" y2="132.03124200000002"/>
-  <line stroke="#888888" x1="372.00000000000006" x2="372.00000000000006" y1="132.03124200000002" y2="150.031242"/>
-  <line stroke="#888888" x1="372.00000000000006" x2="342.00000000000006" y1="150.031242" y2="150.031242"/>
-  <line stroke="#888888" x1="415.4" x2="416.6000000000001" y1="108.531242" y2="108.531242"/>
-  <line stroke="#888888" x1="416.6000000000001" x2="416.6000000000001" y1="108.531242" y2="149.53124200000002"/>
-  <line stroke="#888888" x1="416.6000000000001" x2="415.4" y1="149.53124200000002" y2="149.53124200000002"/>
-  <line stroke="#888888" x1="415.4" x2="415.4" y1="149.53124200000002" y2="108.531242"/>
-  <line stroke="#888888" x1="395.40000000000003" x2="396.6000000000001" y1="109.031242" y2="109.031242"/>
-  <line stroke="#888888" x1="396.6000000000001" x2="396.6000000000001" y1="109.031242" y2="139.031242"/>
-  <line stroke="#888888" x1="396.6000000000001" x2="395.40000000000003" y1="139.031242" y2="139.031242"/>
-  <line stroke="#888888" x1="395.40000000000003" x2="395.40000000000003" y1="139.031242" y2="109.031242"/>
-  <line stroke="#888888" x1="433.00000000000006" x2="433.00000000000006" y1="112.531242" y2="105.531242"/>
-  <line stroke="#888888" x1="433.00000000000006" x2="453.00000000000006" y1="105.531242" y2="105.531242"/>
-  <line stroke="#888888" x1="453.00000000000006" x2="453.00000000000006" y1="105.531242" y2="112.531242"/>
-  <line stroke="#888888" x1="453.00000000000006" x2="433.00000000000006" y1="112.531242" y2="112.531242"/>
-  <line stroke="#888888" x1="470.25000000000006" x2="470.25000000000006" y1="120.9630601818182" y2="109.3721510909091"/>
-  <line stroke="#888888" x1="470.25000000000006" x2="470.75000000000006" y1="109.3721510909091" y2="109.3721510909091"/>
-  <line stroke="#888888" x1="470.75000000000006" x2="470.75000000000006" y1="109.3721510909091" y2="120.9630601818182"/>
-  <line stroke="#888888" x1="470.75000000000006" x2="470.25000000000006" y1="120.9630601818182" y2="120.9630601818182"/>
-  <line stroke="#888888" x1="470.25000000000006" x2="470.25000000000006" y1="148.69033290909093" y2="137.09942381818183"/>
-  <line stroke="#888888" x1="470.25000000000006" x2="470.75000000000006" y1="137.09942381818183" y2="137.09942381818183"/>
-  <line stroke="#888888" x1="470.75000000000006" x2="470.75000000000006" y1="137.09942381818183" y2="148.69033290909093"/>
-  <line stroke="#888888" x1="470.75000000000006" x2="470.25000000000006" y1="148.69033290909093" y2="148.69033290909093"/>
-  <line stroke="#888888" x1="302.50000000000006" x2="307.50000000000006" y1="109.6221510909091" y2="109.6221510909091"/>
-  <line stroke="#888888" x1="307.50000000000006" x2="307.50000000000006" y1="109.6221510909091" y2="120.7130601818182"/>
-  <line stroke="#888888" x1="307.50000000000006" x2="302.50000000000006" y1="120.7130601818182" y2="120.7130601818182"/>
-  <line stroke="#888888" x1="302.50000000000006" x2="307.50000000000006" y1="137.34942381818186" y2="137.34942381818186"/>
-  <line stroke="#888888" x1="307.50000000000006" x2="307.50000000000006" y1="137.34942381818186" y2="148.44033290909093"/>
-  <line stroke="#888888" x1="307.50000000000006" x2="302.50000000000006" y1="148.44033290909093" y2="148.44033290909093"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="144.00000000000003" x2="144.00000000000003" y1="64.03124199999999" y2="194.03124200000002"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="74.0" x2="74.0" y1="64.03124199999999" y2="194.03124200000002"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="109.00000000000001" x2="74.0" y1="64.03124199999999" y2="64.03124199999999"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="144.00000000000003" x2="109.00000000000001" y1="64.03124199999999" y2="64.03124199999999"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="109.00000000000001" x2="74.0" y1="-3.7432849353535863e-07" y2="64.03124199999999"/>
+  <line stroke="#000000" x1="76.3210575634355" x2="55.16052878171775" y1="17.44773491586702" y2="28.745631275293622"/>
+  <line stroke="#000000" x1="109.00000000000001" x2="76.3210575634355" y1="-3.743284651136492e-07" y2="17.44773491586702"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="74.0" x2="55.16052878171775" y1="64.03124199999999" y2="28.745631275293622"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="74.0" x2="34.0" y1="64.03124199999999" y2="40.04352763472023"/>
+  <line stroke="#000000" x1="55.160528781717744" x2="34.0" y1="28.745631275293608" y2="40.04352763472023"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="34.0" x2="34.0" y1="64.031242" y2="40.04352763472023"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="74.0" x2="34.0" y1="64.03124199999999" y2="64.031242"/>
+  <line stroke="#000000" x1="26.0040952115734" x2="34.0" y1="64.031242" y2="64.031242"/>
+  <line stroke="#000000" x1="26.00409521157339" x2="26.0040952115734" y1="40.04352763472023" y2="64.031242"/>
+  <line stroke="#000000" x1="33.99999999999999" x2="26.00409521157339" y1="40.04352763472023" y2="40.04352763472023"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="34.000000000000064" x2="74.00000000000007" y1="194.031242" y2="194.031242"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="34.000000000000064" x2="74.00000000000006" y1="234.031242" y2="194.031242"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="34.000000000000064" x2="34.00000000000004" y1="234.031242" y2="194.031242"/>
+  <line stroke="#000000" x1="34.000000000000064" x2="74.00000000000007" y1="234.031242" y2="234.031242"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="74.00000000000007" x2="74.00000000000006" y1="234.031242" y2="194.031242"/>
+  <line stroke="#000000" x1="114.00000000000004" x2="109.00000000000004" y1="234.031242" y2="234.031242"/>
+  <line stroke="#000000" x1="74.00000000000006" x2="114.00000000000004" y1="234.031242" y2="234.031242"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="74.00000000000006" x2="109.00000000000004" y1="194.031242" y2="194.031242"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="109.00000000000004" x2="144.00000000000006" y1="194.031242" y2="194.031242"/>
+  <line stroke="#000000" x1="104.00000000000006" x2="144.00000000000006" y1="234.031242" y2="234.031242"/>
+  <line stroke="#000000" x1="109.00000000000004" x2="104.00000000000006" y1="234.031242" y2="234.031242"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="144.00000000000006" x2="144.00000000000006" y1="194.031242" y2="234.031242"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="144.00000000000006" x2="184.00000000000003" y1="194.031242" y2="234.031242"/>
+  <line stroke="#000000" x1="144.00000000000006" x2="184.00000000000003" y1="234.031242" y2="234.031242"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="184.00000000000003" x2="184.00000000000003" y1="194.031242" y2="234.031242"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="144.00000000000006" x2="184.00000000000003" y1="194.031242" y2="194.031242"/>
+  <line stroke="#000000" x1="197.3333333333334" x2="184.00000000000003" y1="194.03124200000002" y2="194.03124200000002"/>
+  <line stroke="#000000" x1="197.3333333333334" x2="197.3333333333334" y1="234.031242" y2="194.03124200000002"/>
+  <line stroke="#000000" x1="184.00000000000003" x2="197.3333333333334" y1="234.031242" y2="234.031242"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="184.00000000000006" x2="144.00000000000009" y1="64.031242" y2="64.03124199999999"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="184.00000000000006" x2="144.00000000000009" y1="40.04352763472023" y2="64.03124199999999"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="184.00000000000006" x2="184.00000000000003" y1="40.04352763472023" y2="64.031242"/>
+  <line stroke="#000000" x1="184.00000000000006" x2="162.83947121828234" y1="40.043527634720235" y2="28.745631275293622"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="162.83947121828234" x2="144.00000000000009" y1="28.745631275293622" y2="64.03124199999999"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="109.00000000000006" x2="144.00000000000009" y1="-3.743284651136492e-07" y2="64.03124199999999"/>
+  <line stroke="#000000" x1="141.6789424365646" x2="109.00000000000006" y1="17.44773491586702" y2="-3.743284651136492e-07"/>
+  <line stroke="#000000" x1="162.83947121828234" x2="141.6789424365646" y1="28.745631275293622" y2="17.44773491586702"/>
+  <line stroke="#000000" x1="191.99590478842666" x2="184.00000000000006" y1="40.04352763472023" y2="40.04352763472023"/>
+  <line stroke="#000000" x1="191.99590478842666" x2="191.99590478842666" y1="64.031242" y2="40.04352763472023"/>
+  <line stroke="#000000" x1="184.00000000000006" x2="191.99590478842666" y1="64.031242" y2="64.031242"/>
+  <line stroke="#000000" x1="184.00000000000006" x2="184.00000000000006" y1="79.031242" y2="64.03124199999999"/>
+  <line stroke="#000000" x1="184.00000000000006" x2="184.00000000000006" y1="102.031242" y2="79.031242"/>
+  <line stroke="#000000" x1="184.00000000000003" x2="184.00000000000006" y1="125.03124199999999" y2="102.031242"/>
+  <line stroke="#000000" x1="184.00000000000003" x2="184.00000000000003" y1="148.03124199999996" y2="125.03124199999999"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="184.00000000000003" x2="184.00000000000003" y1="171.03124199999996" y2="148.03124199999996"/>
+  <line stroke="#000000" x1="184.00000000000003" x2="184.00000000000003" y1="194.031242" y2="171.03124199999996"/>
+  <line stroke="#000000" x1="184.00000000000003" x2="184.00000000000003" y1="194.031242" y2="194.031242"/>
+  <line stroke="#000000" x1="184.00000000000006" x2="184.00000000000006" y1="64.03124199999999" y2="64.03124199999999"/>
+  <line stroke="#000000" x1="218.00000000000006" x2="218.00000000000006" y1="172.031242" y2="148.031242"/>
+  <line stroke="#000000" x1="184.00000000000003" x2="218.00000000000006" y1="172.031242" y2="172.031242"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="218.00000000000006" x2="184.00000000000003" y1="148.031242" y2="148.03124199999996"/>
+  <line stroke="#000000" x1="218.00000000000006" x2="218.00000000000006" y1="148.031242" y2="128.031242"/>
+  <line stroke="#000000" x1="184.00000000000003" x2="184.00000000000003" y1="128.031242" y2="148.03124199999996"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="218.00000000000006" x2="184.00000000000003" y1="128.031242" y2="128.031242"/>
+  <line stroke="#000000" x1="218.00000000000006" x2="218.00000000000006" y1="128.031242" y2="104.031242"/>
+  <line stroke="#000000" x1="184.00000000000003" x2="184.00000000000003" y1="104.031242" y2="128.031242"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="218.00000000000006" x2="184.00000000000003" y1="104.031242" y2="104.031242"/>
+  <line stroke="#000000" x1="218.00000000000006" x2="218.00000000000006" y1="104.031242" y2="84.031242"/>
+  <line stroke="#000000" x1="184.00000000000003" x2="184.00000000000003" y1="84.031242" y2="104.031242"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="184.00000000000003" x2="218.00000000000006" y1="84.031242" y2="84.031242"/>
+  <line stroke="#000000" x1="184.00000000000003" x2="184.00000000000003" y1="74.03124199999999" y2="84.031242"/>
+  <line stroke="#000000" x1="218.00000000000006" x2="184.00000000000003" y1="74.03124199999999" y2="74.03124199999999"/>
+  <line stroke="#000000" x1="218.00000000000006" x2="218.00000000000006" y1="84.031242" y2="74.03124199999999"/>
+  <line stroke="#000000" x1="20.666666666666732" x2="34.000000000000064" y1="234.031242" y2="234.031242"/>
+  <line stroke="#000000" x1="20.666666666666718" x2="20.666666666666732" y1="194.031242" y2="234.031242"/>
+  <line stroke="#000000" x1="34.00000000000004" x2="20.666666666666718" y1="194.031242" y2="194.031242"/>
+  <line stroke="#000000" x1="34.000000000000064" x2="34.000000000000064" y1="179.03124200000002" y2="194.03124200000002"/>
+  <line stroke="#000000" x1="34.00000000000004" x2="34.000000000000064" y1="156.03124200000002" y2="179.03124200000002"/>
+  <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="34.00000000000004" x2="34.00000000000004" y1="133.03124200000002" y2="156.03124200000002"/>
+  <line stroke="#000000" x1="34.00000000000003" x2="34.00000000000004" y1="110.03124200000002" y2="133.03124200000002"/>
+  <line stroke="#000000" x1="34.000000000000014" x2="34.00000000000003" y1="87.03124200000002" y2="110.03124200000002"/>
+  <line stroke="#000000" x1="34.000000000000014" x2="34.000000000000014" y1="64.03124200000003" y2="87.03124200000002"/>
+  <line stroke="#000000" x1="34.000000000000014" x2="34.000000000000014" y1="64.03124200000003" y2="64.03124200000003"/>
+  <line stroke="#000000" x1="34.000000000000064" x2="34.000000000000064" y1="194.03124200000002" y2="194.03124200000002"/>
+  <line stroke="#000000" x1="5.684341886080803e-14" x2="34.00000000000004" y1="156.03124200000005" y2="156.03124200000002"/>
+  <line stroke="#000000" x1="4.263256414560602e-14" x2="5.684341886080803e-14" y1="132.03124200000002" y2="156.03124200000005"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="34.00000000000003" x2="4.263256414560602e-14" y1="132.03124200000002" y2="132.03124200000002"/>
+  <line stroke="#000000" x1="34.00000000000003" x2="34.00000000000003" y1="132.03124200000002" y2="112.03124200000002"/>
+  <line stroke="#000000" x1="2.8421709430404014e-14" x2="2.8421709430404014e-14" y1="112.03124200000003" y2="132.03124200000002"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="34.00000000000003" x2="2.8421709430404014e-14" y1="112.03124200000002" y2="112.03124200000003"/>
+  <line stroke="#000000" x1="34.00000000000003" x2="34.00000000000003" y1="112.03124200000002" y2="88.03124200000003"/>
+  <line stroke="#000000" x1="2.8421709430404014e-14" x2="2.8421709430404014e-14" y1="88.03124200000003" y2="112.03124200000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="34.00000000000003" x2="2.8421709430404014e-14" y1="88.03124200000003" y2="88.03124200000003"/>
+  <line stroke="#000000" x1="34.0" x2="34.0" y1="88.03124200000003" y2="68.03124200000002"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="68.03124200000002" y2="88.03124200000003"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="0.0" x2="34.0" y1="68.03124200000002" y2="68.03124200000002"/>
+  <line stroke="#000000" x1="0.0" x2="0.0" y1="58.03124200000002" y2="68.03124200000002"/>
+  <line stroke="#000000" x1="34.0" x2="0.0" y1="58.03124200000002" y2="58.03124200000002"/>
+  <line stroke="#000000" x1="34.0" x2="34.0" y1="68.03124200000002" y2="58.03124200000002"/>
+  <line stroke="#888888" x1="72.43030382152992" x2="64.93572409356516" y1="26.606620936353796" y2="30.608079779724527"/>
+  <line stroke="#888888" x1="64.93572409356516" x2="64.70023070333663" y1="30.608079779724527" y2="30.167009645665704"/>
+  <line stroke="#888888" x1="64.70023070333663" x2="72.19481043130139" y1="30.167009645665704" y2="26.165550802294977"/>
+  <line stroke="#888888" x1="72.19481043130139" x2="72.43030382152992" y1="26.165550802294977" y2="26.606620936353796"/>
+  <line stroke="#888888" x1="28.003071408680043" x2="32.00102380289334" y1="48.03943242314682" y2="48.03943242314682"/>
+  <line stroke="#888888" x1="32.00102380289334" x2="32.00102380289334" y1="48.03943242314682" y2="56.03533721157341"/>
+  <line stroke="#888888" x1="32.00102380289334" x2="28.003071408680043" y1="56.03533721157341" y2="56.03533721157343"/>
+  <line stroke="#888888" x1="87.08333333333339" x2="100.91666666666671" y1="223.781242" y2="223.781242"/>
+  <line stroke="#888888" x1="100.91666666666671" x2="100.91666666666671" y1="223.781242" y2="224.281242"/>
+  <line stroke="#888888" x1="100.91666666666671" x2="87.08333333333339" y1="224.281242" y2="224.281242"/>
+  <line stroke="#888888" x1="87.08333333333339" x2="87.08333333333339" y1="224.281242" y2="223.781242"/>
+  <line stroke="#888888" x1="117.08333333333339" x2="130.91666666666669" y1="223.781242" y2="223.781242"/>
+  <line stroke="#888888" x1="130.91666666666669" x2="130.91666666666669" y1="223.781242" y2="224.281242"/>
+  <line stroke="#888888" x1="130.91666666666669" x2="117.08333333333339" y1="224.281242" y2="224.281242"/>
+  <line stroke="#888888" x1="117.08333333333339" x2="117.08333333333339" y1="224.281242" y2="223.781242"/>
+  <line stroke="#888888" x1="194.00000000000006" x2="187.3333333333334" y1="220.69790866666668" y2="220.69790866666668"/>
+  <line stroke="#888888" x1="187.3333333333334" x2="187.3333333333334" y1="220.69790866666668" y2="207.3645753333333"/>
+  <line stroke="#888888" x1="187.3333333333334" x2="194.00000000000006" y1="207.3645753333333" y2="207.3645753333333"/>
+  <line stroke="#888888" x1="153.0642759064349" x2="145.56969617847014" y1="30.608079779724527" y2="26.60662093635381"/>
+  <line stroke="#888888" x1="145.56969617847014" x2="145.80518956869867" y1="26.60662093635381" y2="26.165550802294977"/>
+  <line stroke="#888888" x1="145.80518956869867" x2="153.2997692966634" y1="26.165550802294977" y2="30.167009645665704"/>
+  <line stroke="#888888" x1="153.2997692966634" x2="153.0642759064349" y1="30.167009645665704" y2="30.608079779724527"/>
+  <line stroke="#888888" x1="189.99692859132003" x2="185.9989761971067" y1="56.03533721157341" y2="56.03533721157341"/>
+  <line stroke="#888888" x1="185.9989761971067" x2="185.9989761971067" y1="56.03533721157341" y2="48.03943242314682"/>
+  <line stroke="#888888" x1="185.9989761971067" x2="189.99692859132003" y1="48.03943242314682" y2="48.03943242314682"/>
+  <line stroke="#888888" x1="195.0833333333334" x2="206.91666666666669" y1="164.28124199999996" y2="164.28124199999996"/>
+  <line stroke="#888888" x1="206.91666666666669" x2="206.91666666666669" y1="164.28124199999996" y2="164.781242"/>
+  <line stroke="#888888" x1="206.91666666666669" x2="195.0833333333334" y1="164.781242" y2="164.781242"/>
+  <line stroke="#888888" x1="195.0833333333334" x2="195.0833333333334" y1="164.781242" y2="164.28124199999996"/>
+  <line stroke="#888888" x1="207.00000000000003" x2="207.00000000000003" y1="129.031242" y2="133.03124200000002"/>
+  <line stroke="#888888" x1="207.00000000000003" x2="195.00000000000006" y1="133.03124200000002" y2="133.03124200000002"/>
+  <line stroke="#888888" x1="195.00000000000006" x2="195.00000000000006" y1="133.03124200000002" y2="129.031242"/>
+  <line stroke="#888888" x1="195.00000000000006" x2="207.00000000000003" y1="129.031242" y2="129.031242"/>
+  <line stroke="#888888" x1="205.50000000000006" x2="205.50000000000006" y1="141.031242" y2="145.03124200000002"/>
+  <line stroke="#888888" x1="205.50000000000006" x2="196.50000000000006" y1="145.03124200000002" y2="145.03124200000002"/>
+  <line stroke="#888888" x1="196.50000000000006" x2="196.50000000000006" y1="145.03124200000002" y2="141.031242"/>
+  <line stroke="#888888" x1="196.50000000000006" x2="205.50000000000006" y1="141.031242" y2="141.031242"/>
+  <line stroke="#888888" x1="207.00000000000003" x2="207.00000000000003" y1="104.531242" y2="127.53124200000002"/>
+  <line stroke="#888888" x1="207.00000000000003" x2="195.00000000000006" y1="127.53124200000002" y2="127.53124200000002"/>
+  <line stroke="#888888" x1="195.00000000000006" x2="195.00000000000006" y1="127.53124200000002" y2="104.531242"/>
+  <line stroke="#888888" x1="195.00000000000006" x2="207.00000000000003" y1="104.531242" y2="104.531242"/>
+  <line stroke="#888888" x1="207.00000000000003" x2="207.00000000000003" y1="99.03124199999999" y2="103.031242"/>
+  <line stroke="#888888" x1="207.00000000000003" x2="195.00000000000006" y1="103.031242" y2="103.031242"/>
+  <line stroke="#888888" x1="195.00000000000006" x2="195.00000000000006" y1="103.031242" y2="99.03124199999999"/>
+  <line stroke="#888888" x1="195.00000000000006" x2="207.00000000000003" y1="99.03124199999999" y2="99.03124199999999"/>
+  <line stroke="#888888" x1="206.6666666666667" x2="206.6666666666667" y1="76.53124199999999" y2="81.531242"/>
+  <line stroke="#888888" x1="206.6666666666667" x2="195.33333333333337" y1="81.531242" y2="81.531242"/>
+  <line stroke="#888888" x1="195.33333333333337" x2="195.33333333333337" y1="81.531242" y2="76.53124199999999"/>
+  <line stroke="#888888" x1="24.000000000000043" x2="30.666666666666718" y1="207.3645753333333" y2="207.3645753333333"/>
+  <line stroke="#888888" x1="30.666666666666718" x2="30.666666666666732" y1="207.3645753333333" y2="220.69790866666668"/>
+  <line stroke="#888888" x1="30.666666666666732" x2="24.00000000000006" y1="220.69790866666668" y2="220.69790866666668"/>
+  <line stroke="#888888" x1="11.083333333333371" x2="22.9166666666667" y1="148.28124200000002" y2="148.281242"/>
+  <line stroke="#888888" x1="22.9166666666667" x2="22.9166666666667" y1="148.281242" y2="148.78124200000002"/>
+  <line stroke="#888888" x1="22.9166666666667" x2="11.083333333333371" y1="148.78124200000002" y2="148.78124200000005"/>
+  <line stroke="#888888" x1="11.083333333333371" x2="11.083333333333371" y1="148.78124200000005" y2="148.28124200000002"/>
+  <line stroke="#888888" x1="23.000000000000032" x2="23.000000000000032" y1="113.03124200000002" y2="117.03124200000002"/>
+  <line stroke="#888888" x1="23.000000000000032" x2="11.00000000000003" y1="117.03124200000002" y2="117.03124200000002"/>
+  <line stroke="#888888" x1="11.00000000000003" x2="11.00000000000003" y1="117.03124200000002" y2="113.03124200000002"/>
+  <line stroke="#888888" x1="11.00000000000003" x2="23.000000000000032" y1="113.03124200000002" y2="113.03124200000002"/>
+  <line stroke="#888888" x1="21.50000000000003" x2="21.50000000000003" y1="125.03124200000002" y2="129.031242"/>
+  <line stroke="#888888" x1="21.50000000000003" x2="12.50000000000003" y1="129.031242" y2="129.03124200000002"/>
+  <line stroke="#888888" x1="12.50000000000003" x2="12.50000000000003" y1="129.03124200000002" y2="125.03124200000002"/>
+  <line stroke="#888888" x1="12.50000000000003" x2="21.50000000000003" y1="125.03124200000002" y2="125.03124200000002"/>
+  <line stroke="#888888" x1="23.000000000000032" x2="23.000000000000032" y1="88.53124200000003" y2="111.53124200000002"/>
+  <line stroke="#888888" x1="23.000000000000032" x2="11.00000000000003" y1="111.53124200000002" y2="111.53124200000002"/>
+  <line stroke="#888888" x1="11.00000000000003" x2="11.00000000000003" y1="111.53124200000002" y2="88.53124200000003"/>
+  <line stroke="#888888" x1="11.00000000000003" x2="23.000000000000032" y1="88.53124200000003" y2="88.53124200000003"/>
+  <line stroke="#888888" x1="23.000000000000004" x2="23.000000000000004" y1="83.03124200000002" y2="87.03124200000003"/>
+  <line stroke="#888888" x1="23.000000000000004" x2="11.000000000000002" y1="87.03124200000003" y2="87.03124200000003"/>
+  <line stroke="#888888" x1="11.000000000000002" x2="11.000000000000002" y1="87.03124200000003" y2="83.03124200000002"/>
+  <line stroke="#888888" x1="11.000000000000002" x2="23.000000000000004" y1="83.03124200000002" y2="83.03124200000002"/>
+  <line stroke="#888888" x1="22.666666666666675" x2="22.666666666666675" y1="60.53124200000003" y2="65.53124200000002"/>
+  <line stroke="#888888" x1="22.666666666666675" x2="11.333333333333343" y1="65.53124200000002" y2="65.53124200000002"/>
+  <line stroke="#888888" x1="11.333333333333343" x2="11.333333333333343" y1="65.53124200000002" y2="60.53124200000003"/>
+  <line stroke="#000000" x1="298.00000000000006" x2="228.00000000000003" y1="122.531242" y2="122.531242"/>
+  <line stroke="#000000" x1="298.00000000000006" x2="298.00000000000006" y1="135.53124200000002" y2="122.531242"/>
+  <line stroke="#000000" x1="228.00000000000003" x2="298.00000000000006" y1="135.53124200000002" y2="135.53124200000002"/>
+  <line stroke="#000000" x1="228.00000000000003" x2="228.00000000000003" y1="122.531242" y2="135.53124200000002"/>
+  <line stroke="#000000" x1="342.00000000000006" x2="318.0" y1="98.531242" y2="98.531242"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="342.00000000000006" x2="342.00000000000006" y1="98.531242" y2="159.531242"/>
+  <line stroke="#000000" x1="318.0" x2="342.00000000000006" y1="159.531242" y2="159.531242"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="318.0" x2="318.0" y1="159.531242" y2="98.531242"/>
+  <line stroke="#000000" x1="402.00000000000006" x2="342.00000000000006" y1="98.531242" y2="98.531242"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="402.00000000000006" x2="402.00000000000006" y1="98.531242" y2="159.531242"/>
+  <line stroke="#000000" x1="342.00000000000006" x2="402.00000000000006" y1="159.531242" y2="159.531242"/>
+  <line stroke="#000000" x1="426.00000000000006" x2="402.00000000000006" y1="98.531242" y2="98.531242"/>
+  <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="426.00000000000006" x2="426.00000000000006" y1="98.531242" y2="159.531242"/>
+  <line stroke="#000000" x1="402.00000000000006" x2="426.00000000000006" y1="159.531242" y2="159.531242"/>
+  <line stroke="#000000" x1="486.00000000000006" x2="426.00000000000006" y1="98.531242" y2="98.531242"/>
+  <line stroke="#000000" x1="486.00000000000006" x2="486.00000000000006" y1="159.531242" y2="98.531242"/>
+  <line stroke="#000000" x1="426.00000000000006" x2="486.00000000000006" y1="159.531242" y2="159.531242"/>
+  <line stroke="#000000" x1="308.00000000000006" x2="318.0" y1="159.531242" y2="159.531242"/>
+  <line stroke="#000000" x1="308.00000000000006" x2="308.00000000000006" y1="98.531242" y2="159.531242"/>
+  <line stroke="#000000" x1="318.0" x2="308.00000000000006" y1="98.531242" y2="98.531242"/>
+  <line stroke="#888888" x1="319.4" x2="320.6000000000001" y1="108.531242" y2="108.531242"/>
+  <line stroke="#888888" x1="320.6000000000001" x2="320.6000000000001" y1="108.531242" y2="149.53124200000002"/>
+  <line stroke="#888888" x1="320.6000000000001" x2="319.4" y1="149.53124200000002" y2="149.53124200000002"/>
+  <line stroke="#888888" x1="319.4" x2="319.4" y1="149.53124200000002" y2="108.531242"/>
+  <line stroke="#888888" x1="339.40000000000003" x2="340.6" y1="109.031242" y2="109.031242"/>
+  <line stroke="#888888" x1="340.6" x2="340.6" y1="109.031242" y2="139.031242"/>
+  <line stroke="#888888" x1="340.6" x2="339.40000000000003" y1="139.031242" y2="139.031242"/>
+  <line stroke="#888888" x1="339.40000000000003" x2="339.40000000000003" y1="139.031242" y2="109.031242"/>
+  <line stroke="#888888" x1="350.0" x2="350.0" y1="150.031242" y2="132.03124200000002"/>
+  <line stroke="#888888" x1="350.0" x2="380.00000000000006" y1="132.03124200000002" y2="132.03124200000002"/>
+  <line stroke="#888888" x1="380.00000000000006" x2="380.00000000000006" y1="132.03124200000002" y2="150.031242"/>
+  <line stroke="#888888" x1="380.00000000000006" x2="350.0" y1="150.031242" y2="150.031242"/>
+  <line stroke="#888888" x1="423.40000000000003" x2="424.6000000000001" y1="108.531242" y2="108.531242"/>
+  <line stroke="#888888" x1="424.6000000000001" x2="424.6000000000001" y1="108.531242" y2="149.53124200000002"/>
+  <line stroke="#888888" x1="424.6000000000001" x2="423.40000000000003" y1="149.53124200000002" y2="149.53124200000002"/>
+  <line stroke="#888888" x1="423.40000000000003" x2="423.40000000000003" y1="149.53124200000002" y2="108.531242"/>
+  <line stroke="#888888" x1="403.40000000000003" x2="404.6000000000001" y1="109.031242" y2="109.031242"/>
+  <line stroke="#888888" x1="404.6000000000001" x2="404.6000000000001" y1="109.031242" y2="139.031242"/>
+  <line stroke="#888888" x1="404.6000000000001" x2="403.40000000000003" y1="139.031242" y2="139.031242"/>
+  <line stroke="#888888" x1="403.40000000000003" x2="403.40000000000003" y1="139.031242" y2="109.031242"/>
+  <line stroke="#888888" x1="441.00000000000006" x2="441.00000000000006" y1="112.531242" y2="105.531242"/>
+  <line stroke="#888888" x1="441.00000000000006" x2="461.00000000000006" y1="105.531242" y2="105.531242"/>
+  <line stroke="#888888" x1="461.00000000000006" x2="461.00000000000006" y1="105.531242" y2="112.531242"/>
+  <line stroke="#888888" x1="461.00000000000006" x2="441.00000000000006" y1="112.531242" y2="112.531242"/>
+  <line stroke="#888888" x1="478.25000000000006" x2="478.25000000000006" y1="120.9630601818182" y2="109.3721510909091"/>
+  <line stroke="#888888" x1="478.25000000000006" x2="478.75000000000006" y1="109.3721510909091" y2="109.3721510909091"/>
+  <line stroke="#888888" x1="478.75000000000006" x2="478.75000000000006" y1="109.3721510909091" y2="120.9630601818182"/>
+  <line stroke="#888888" x1="478.75000000000006" x2="478.25000000000006" y1="120.9630601818182" y2="120.9630601818182"/>
+  <line stroke="#888888" x1="478.25000000000006" x2="478.25000000000006" y1="148.69033290909093" y2="137.09942381818183"/>
+  <line stroke="#888888" x1="478.25000000000006" x2="478.75000000000006" y1="137.09942381818183" y2="137.09942381818183"/>
+  <line stroke="#888888" x1="478.75000000000006" x2="478.75000000000006" y1="137.09942381818183" y2="148.69033290909093"/>
+  <line stroke="#888888" x1="478.75000000000006" x2="478.25000000000006" y1="148.69033290909093" y2="148.69033290909093"/>
+  <line stroke="#888888" x1="310.50000000000006" x2="315.50000000000006" y1="109.6221510909091" y2="109.6221510909091"/>
+  <line stroke="#888888" x1="315.50000000000006" x2="315.50000000000006" y1="109.6221510909091" y2="120.7130601818182"/>
+  <line stroke="#888888" x1="315.50000000000006" x2="310.50000000000006" y1="120.7130601818182" y2="120.7130601818182"/>
+  <line stroke="#888888" x1="310.50000000000006" x2="315.50000000000006" y1="137.34942381818186" y2="137.34942381818186"/>
+  <line stroke="#888888" x1="315.50000000000006" x2="315.50000000000006" y1="137.34942381818186" y2="148.44033290909093"/>
+  <line stroke="#888888" x1="315.50000000000006" x2="310.50000000000006" y1="148.44033290909093" y2="148.44033290909093"/>
 </svg>
diff --git a/rocolib/output/PaddleboatWithCamera/graph-model.png b/rocolib/output/PaddleboatWithCamera/graph-model.png
index 0b1dc8c4d47fd9c2a081c2b23c5dcf77e17a6118..719e242b10447a567f1c30189c9ee8823888046d 100644
Binary files a/rocolib/output/PaddleboatWithCamera/graph-model.png and b/rocolib/output/PaddleboatWithCamera/graph-model.png differ
diff --git a/rocolib/output/PaddleboatWithCamera/graph-model.stl b/rocolib/output/PaddleboatWithCamera/graph-model.stl
index 512d74d495c2b6a96b535ecb231300e209144003..3119716872d0576d0d1f59192b720bda8afd4da0 100644
--- a/rocolib/output/PaddleboatWithCamera/graph-model.stl
+++ b/rocolib/output/PaddleboatWithCamera/graph-model.stl
@@ -169,478 +169,464 @@ endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0350 0.0700 -0.0400
-vertex 0.0500 0.0410 -0.0400
-vertex 0.0500 0.0290 -0.0400
+vertex 0.0350 0.0430 -0.0060
+vertex 0.0500 0.0430 -0.0170
+vertex 0.0500 0.0430 -0.0290
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0500 0.0410 -0.0400
-vertex 0.0350 0.0700 -0.0400
-vertex 0.0550 0.0700 -0.0400
+vertex 0.0500 0.0430 -0.0170
+vertex 0.0350 0.0430 -0.0060
+vertex 0.0550 0.0430 -0.0060
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0350 -0.0000 -0.0400
-vertex 0.0500 0.0290 -0.0400
-vertex 0.0550 -0.0000 -0.0400
+vertex 0.0350 0.0430 -0.0400
+vertex 0.0500 0.0430 -0.0290
+vertex 0.0550 0.0430 -0.0400
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0500 0.0290 -0.0400
-vertex 0.0350 -0.0000 -0.0400
-vertex 0.0350 0.0700 -0.0400
+vertex 0.0500 0.0430 -0.0290
+vertex 0.0350 0.0430 -0.0400
+vertex 0.0350 0.0430 -0.0060
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0540 0.0410 -0.0400
-vertex 0.0550 0.0700 -0.0400
-vertex 0.0550 -0.0000 -0.0400
+vertex 0.0540 0.0430 -0.0170
+vertex 0.0550 0.0430 -0.0060
+vertex 0.0550 0.0430 -0.0400
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0550 0.0700 -0.0400
-vertex 0.0540 0.0410 -0.0400
-vertex 0.0500 0.0410 -0.0400
+vertex 0.0550 0.0430 -0.0060
+vertex 0.0540 0.0430 -0.0170
+vertex 0.0500 0.0430 -0.0170
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0540 0.0290 -0.0400
-vertex 0.0550 -0.0000 -0.0400
-vertex 0.0500 0.0290 -0.0400
+vertex 0.0540 0.0430 -0.0290
+vertex 0.0550 0.0430 -0.0400
+vertex 0.0500 0.0430 -0.0290
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0550 -0.0000 -0.0400
-vertex 0.0540 0.0290 -0.0400
-vertex 0.0540 0.0410 -0.0400
+vertex 0.0550 0.0430 -0.0400
+vertex 0.0540 0.0430 -0.0290
+vertex 0.0540 0.0430 -0.0170
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0550 0.0700 -0.0400
-vertex 0.0550 0.0410 -0.0395
-vertex 0.0550 0.0290 -0.0395
+vertex 0.0550 0.0430 -0.0060
+vertex 0.0550 0.0425 -0.0170
+vertex 0.0550 0.0425 -0.0290
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0550 0.0410 -0.0395
-vertex 0.0550 0.0700 -0.0400
-vertex 0.0550 0.0700 -0.0160
+vertex 0.0550 0.0425 -0.0170
+vertex 0.0550 0.0430 -0.0060
+vertex 0.0550 0.0190 -0.0060
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0550 -0.0000 -0.0400
-vertex 0.0550 0.0290 -0.0395
-vertex 0.0550 0.0290 -0.0165
+vertex 0.0550 0.0430 -0.0400
+vertex 0.0550 0.0425 -0.0290
+vertex 0.0550 0.0195 -0.0290
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0550 0.0290 -0.0395
-vertex 0.0550 -0.0000 -0.0400
-vertex 0.0550 0.0700 -0.0400
+vertex 0.0550 0.0425 -0.0290
+vertex 0.0550 0.0430 -0.0400
+vertex 0.0550 0.0430 -0.0060
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0550 0.0410 -0.0165
-vertex 0.0550 0.0700 -0.0160
-vertex 0.0550 -0.0000 -0.0160
+vertex 0.0550 0.0195 -0.0170
+vertex 0.0550 0.0190 -0.0060
+vertex 0.0550 0.0190 -0.0400
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0550 0.0700 -0.0160
-vertex 0.0550 0.0410 -0.0165
-vertex 0.0550 0.0410 -0.0395
+vertex 0.0550 0.0190 -0.0060
+vertex 0.0550 0.0195 -0.0170
+vertex 0.0550 0.0425 -0.0170
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0550 0.0290 -0.0165
-vertex 0.0550 -0.0000 -0.0160
-vertex 0.0550 -0.0000 -0.0400
+vertex 0.0550 0.0195 -0.0290
+vertex 0.0550 0.0190 -0.0400
+vertex 0.0550 0.0430 -0.0400
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0550 -0.0000 -0.0160
-vertex 0.0550 0.0290 -0.0165
-vertex 0.0550 0.0410 -0.0165
+vertex 0.0550 0.0190 -0.0400
+vertex 0.0550 0.0195 -0.0290
+vertex 0.0550 0.0195 -0.0170
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0550 0.0700 -0.0160
-vertex 0.0500 0.0410 -0.0160
-vertex 0.0540 0.0410 -0.0160
+vertex 0.0550 0.0190 -0.0060
+vertex 0.0500 0.0190 -0.0170
+vertex 0.0540 0.0190 -0.0170
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0500 0.0410 -0.0160
-vertex 0.0550 0.0700 -0.0160
-vertex 0.0350 0.0700 -0.0160
+vertex 0.0500 0.0190 -0.0170
+vertex 0.0550 0.0190 -0.0060
+vertex 0.0350 0.0190 -0.0060
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0550 0.0700 -0.0160
-vertex 0.0540 0.0410 -0.0160
-vertex 0.0540 0.0290 -0.0160
+vertex 0.0550 0.0190 -0.0060
+vertex 0.0540 0.0190 -0.0170
+vertex 0.0540 0.0190 -0.0290
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0550 -0.0000 -0.0160
-vertex 0.0540 0.0290 -0.0160
-vertex 0.0500 0.0290 -0.0160
+vertex 0.0550 0.0190 -0.0400
+vertex 0.0540 0.0190 -0.0290
+vertex 0.0500 0.0190 -0.0290
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0540 0.0290 -0.0160
-vertex 0.0550 -0.0000 -0.0160
-vertex 0.0550 0.0700 -0.0160
+vertex 0.0540 0.0190 -0.0290
+vertex 0.0550 0.0190 -0.0400
+vertex 0.0550 0.0190 -0.0060
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0550 -0.0000 -0.0160
-vertex 0.0500 0.0290 -0.0160
-vertex 0.0350 -0.0000 -0.0160
+vertex 0.0550 0.0190 -0.0400
+vertex 0.0500 0.0190 -0.0290
+vertex 0.0350 0.0190 -0.0400
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0500 0.0410 -0.0160
-vertex 0.0420 0.0395 -0.0160
-vertex 0.0500 0.0290 -0.0160
+vertex 0.0500 0.0190 -0.0170
+vertex 0.0420 0.0190 -0.0185
+vertex 0.0500 0.0190 -0.0290
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0420 0.0395 -0.0160
-vertex 0.0350 0.0700 -0.0160
-vertex 0.0380 0.0395 -0.0160
+vertex 0.0420 0.0190 -0.0185
+vertex 0.0350 0.0190 -0.0060
+vertex 0.0380 0.0190 -0.0185
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0350 0.0700 -0.0160
-vertex 0.0420 0.0395 -0.0160
-vertex 0.0500 0.0410 -0.0160
+vertex 0.0350 0.0190 -0.0060
+vertex 0.0420 0.0190 -0.0185
+vertex 0.0500 0.0190 -0.0170
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0380 0.0395 -0.0160
-vertex 0.0350 0.0700 -0.0160
-vertex 0.0350 -0.0000 -0.0160
+vertex 0.0380 0.0190 -0.0185
+vertex 0.0350 0.0190 -0.0060
+vertex 0.0350 0.0190 -0.0400
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0420 0.0305 -0.0160
-vertex 0.0380 0.0305 -0.0160
-vertex 0.0350 -0.0000 -0.0160
+vertex 0.0420 0.0190 -0.0275
+vertex 0.0380 0.0190 -0.0275
+vertex 0.0350 0.0190 -0.0400
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0350 -0.0000 -0.0160
-vertex 0.0380 0.0305 -0.0160
-vertex 0.0380 0.0395 -0.0160
+vertex 0.0350 0.0190 -0.0400
+vertex 0.0380 0.0190 -0.0275
+vertex 0.0380 0.0190 -0.0185
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0420 0.0305 -0.0160
-vertex 0.0350 -0.0000 -0.0160
-vertex 0.0500 0.0290 -0.0160
+vertex 0.0420 0.0190 -0.0275
+vertex 0.0350 0.0190 -0.0400
+vertex 0.0500 0.0190 -0.0290
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0420 0.0395 -0.0160
-vertex 0.0420 0.0305 -0.0160
-vertex 0.0500 0.0290 -0.0160
+vertex 0.0420 0.0190 -0.0185
+vertex 0.0420 0.0190 -0.0275
+vertex 0.0500 0.0190 -0.0290
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0350 -0.0000 -0.0160
-vertex 0.0350 0.0700 -0.0160
-vertex 0.0350 0.0700 -0.0400
+vertex 0.0350 0.0190 -0.0400
+vertex 0.0350 0.0190 -0.0060
+vertex 0.0350 0.0430 -0.0060
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0350 0.0700 -0.0400
-vertex 0.0350 -0.0000 -0.0400
-vertex 0.0350 -0.0000 -0.0160
+vertex 0.0350 0.0430 -0.0060
+vertex 0.0350 0.0430 -0.0400
+vertex 0.0350 0.0190 -0.0400
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0350 -0.0570 -0.0400
-vertex -0.0500 -0.0280 -0.0400
-vertex -0.0500 -0.0160 -0.0400
+vertex -0.0350 0.0270 -0.0400
+vertex -0.0500 0.0270 -0.0290
+vertex -0.0500 0.0270 -0.0170
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0500 -0.0280 -0.0400
-vertex -0.0350 -0.0570 -0.0400
-vertex -0.0550 -0.0570 -0.0400
+vertex -0.0500 0.0270 -0.0290
+vertex -0.0350 0.0270 -0.0400
+vertex -0.0550 0.0270 -0.0400
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0350 0.0130 -0.0400
-vertex -0.0500 -0.0160 -0.0400
-vertex -0.0550 0.0130 -0.0400
+vertex -0.0350 0.0270 -0.0060
+vertex -0.0500 0.0270 -0.0170
+vertex -0.0550 0.0270 -0.0060
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0500 -0.0160 -0.0400
-vertex -0.0350 0.0130 -0.0400
-vertex -0.0350 -0.0570 -0.0400
+vertex -0.0500 0.0270 -0.0170
+vertex -0.0350 0.0270 -0.0060
+vertex -0.0350 0.0270 -0.0400
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0540 -0.0280 -0.0400
-vertex -0.0550 -0.0570 -0.0400
-vertex -0.0550 0.0130 -0.0400
+vertex -0.0540 0.0270 -0.0290
+vertex -0.0550 0.0270 -0.0400
+vertex -0.0550 0.0270 -0.0060
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0550 -0.0570 -0.0400
-vertex -0.0540 -0.0280 -0.0400
-vertex -0.0500 -0.0280 -0.0400
+vertex -0.0550 0.0270 -0.0400
+vertex -0.0540 0.0270 -0.0290
+vertex -0.0500 0.0270 -0.0290
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0540 -0.0160 -0.0400
-vertex -0.0550 0.0130 -0.0400
-vertex -0.0500 -0.0160 -0.0400
+vertex -0.0540 0.0270 -0.0170
+vertex -0.0550 0.0270 -0.0060
+vertex -0.0500 0.0270 -0.0170
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0550 0.0130 -0.0400
-vertex -0.0540 -0.0160 -0.0400
-vertex -0.0540 -0.0280 -0.0400
+vertex -0.0550 0.0270 -0.0060
+vertex -0.0540 0.0270 -0.0170
+vertex -0.0540 0.0270 -0.0290
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0550 -0.0570 -0.0400
-vertex -0.0550 -0.0280 -0.0395
-vertex -0.0550 -0.0160 -0.0395
+vertex -0.0550 0.0270 -0.0400
+vertex -0.0550 0.0265 -0.0290
+vertex -0.0550 0.0265 -0.0170
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0550 -0.0280 -0.0395
-vertex -0.0550 -0.0570 -0.0400
-vertex -0.0550 -0.0570 -0.0160
+vertex -0.0550 0.0265 -0.0290
+vertex -0.0550 0.0270 -0.0400
+vertex -0.0550 0.0030 -0.0400
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0550 0.0130 -0.0400
-vertex -0.0550 -0.0160 -0.0395
-vertex -0.0550 -0.0160 -0.0165
+vertex -0.0550 0.0270 -0.0060
+vertex -0.0550 0.0265 -0.0170
+vertex -0.0550 0.0035 -0.0170
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0550 -0.0160 -0.0395
-vertex -0.0550 0.0130 -0.0400
-vertex -0.0550 -0.0570 -0.0400
+vertex -0.0550 0.0265 -0.0170
+vertex -0.0550 0.0270 -0.0060
+vertex -0.0550 0.0270 -0.0400
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0550 -0.0280 -0.0165
-vertex -0.0550 -0.0570 -0.0160
-vertex -0.0550 0.0130 -0.0160
+vertex -0.0550 0.0035 -0.0290
+vertex -0.0550 0.0030 -0.0400
+vertex -0.0550 0.0030 -0.0060
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0550 -0.0570 -0.0160
-vertex -0.0550 -0.0280 -0.0165
-vertex -0.0550 -0.0280 -0.0395
+vertex -0.0550 0.0030 -0.0400
+vertex -0.0550 0.0035 -0.0290
+vertex -0.0550 0.0265 -0.0290
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0550 -0.0160 -0.0165
-vertex -0.0550 0.0130 -0.0160
-vertex -0.0550 0.0130 -0.0400
+vertex -0.0550 0.0035 -0.0170
+vertex -0.0550 0.0030 -0.0060
+vertex -0.0550 0.0270 -0.0060
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0550 0.0130 -0.0160
-vertex -0.0550 -0.0160 -0.0165
-vertex -0.0550 -0.0280 -0.0165
+vertex -0.0550 0.0030 -0.0060
+vertex -0.0550 0.0035 -0.0170
+vertex -0.0550 0.0035 -0.0290
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0550 -0.0570 -0.0160
-vertex -0.0500 -0.0280 -0.0160
-vertex -0.0540 -0.0280 -0.0160
+vertex -0.0550 0.0030 -0.0400
+vertex -0.0500 0.0030 -0.0290
+vertex -0.0540 0.0030 -0.0290
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0500 -0.0280 -0.0160
-vertex -0.0550 -0.0570 -0.0160
-vertex -0.0350 -0.0570 -0.0160
+vertex -0.0500 0.0030 -0.0290
+vertex -0.0550 0.0030 -0.0400
+vertex -0.0350 0.0030 -0.0400
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0550 -0.0570 -0.0160
-vertex -0.0540 -0.0280 -0.0160
-vertex -0.0540 -0.0160 -0.0160
+vertex -0.0550 0.0030 -0.0400
+vertex -0.0540 0.0030 -0.0290
+vertex -0.0540 0.0030 -0.0170
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0550 0.0130 -0.0160
-vertex -0.0540 -0.0160 -0.0160
-vertex -0.0500 -0.0160 -0.0160
+vertex -0.0550 0.0030 -0.0060
+vertex -0.0540 0.0030 -0.0170
+vertex -0.0500 0.0030 -0.0170
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0540 -0.0160 -0.0160
-vertex -0.0550 0.0130 -0.0160
-vertex -0.0550 -0.0570 -0.0160
+vertex -0.0540 0.0030 -0.0170
+vertex -0.0550 0.0030 -0.0060
+vertex -0.0550 0.0030 -0.0400
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0550 0.0130 -0.0160
-vertex -0.0500 -0.0160 -0.0160
-vertex -0.0350 0.0130 -0.0160
+vertex -0.0550 0.0030 -0.0060
+vertex -0.0500 0.0030 -0.0170
+vertex -0.0350 0.0030 -0.0060
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0500 -0.0280 -0.0160
-vertex -0.0420 -0.0265 -0.0160
-vertex -0.0500 -0.0160 -0.0160
+vertex -0.0500 0.0030 -0.0290
+vertex -0.0420 0.0030 -0.0275
+vertex -0.0500 0.0030 -0.0170
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0420 -0.0265 -0.0160
-vertex -0.0350 -0.0570 -0.0160
-vertex -0.0380 -0.0265 -0.0160
+vertex -0.0420 0.0030 -0.0275
+vertex -0.0350 0.0030 -0.0400
+vertex -0.0380 0.0030 -0.0275
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0350 -0.0570 -0.0160
-vertex -0.0420 -0.0265 -0.0160
-vertex -0.0500 -0.0280 -0.0160
+vertex -0.0350 0.0030 -0.0400
+vertex -0.0420 0.0030 -0.0275
+vertex -0.0500 0.0030 -0.0290
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0380 -0.0265 -0.0160
-vertex -0.0350 -0.0570 -0.0160
-vertex -0.0350 0.0130 -0.0160
+vertex -0.0380 0.0030 -0.0275
+vertex -0.0350 0.0030 -0.0400
+vertex -0.0350 0.0030 -0.0060
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0420 -0.0175 -0.0160
-vertex -0.0380 -0.0175 -0.0160
-vertex -0.0350 0.0130 -0.0160
+vertex -0.0420 0.0030 -0.0185
+vertex -0.0380 0.0030 -0.0185
+vertex -0.0350 0.0030 -0.0060
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0350 0.0130 -0.0160
-vertex -0.0380 -0.0175 -0.0160
-vertex -0.0380 -0.0265 -0.0160
+vertex -0.0350 0.0030 -0.0060
+vertex -0.0380 0.0030 -0.0185
+vertex -0.0380 0.0030 -0.0275
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0420 -0.0175 -0.0160
-vertex -0.0350 0.0130 -0.0160
-vertex -0.0500 -0.0160 -0.0160
+vertex -0.0420 0.0030 -0.0185
+vertex -0.0350 0.0030 -0.0060
+vertex -0.0500 0.0030 -0.0170
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0420 -0.0265 -0.0160
-vertex -0.0420 -0.0175 -0.0160
-vertex -0.0500 -0.0160 -0.0160
+vertex -0.0420 0.0030 -0.0275
+vertex -0.0420 0.0030 -0.0185
+vertex -0.0500 0.0030 -0.0170
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0350 0.0130 -0.0160
-vertex -0.0350 -0.0570 -0.0160
-vertex -0.0350 -0.0570 -0.0400
+vertex -0.0350 0.0030 -0.0060
+vertex -0.0350 0.0030 -0.0400
+vertex -0.0350 0.0270 -0.0400
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0350 -0.0570 -0.0400
-vertex -0.0350 0.0130 -0.0400
-vertex -0.0350 0.0130 -0.0160
+vertex -0.0350 0.0270 -0.0400
+vertex -0.0350 0.0270 -0.0060
+vertex -0.0350 0.0030 -0.0060
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0350 0.0520 -0.0400
-vertex -0.0350 0.0650 -0.0400
-vertex 0.0350 0.0650 -0.0400
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex 0.0350 0.0650 -0.0400
-vertex 0.0350 0.0520 -0.0400
-vertex -0.0350 0.0520 -0.0400
-endloop
-endfacet
-facet normal 0 0 0
-outer loop
-vertex -0.0350 -0.0650 -0.0400
-vertex -0.0350 -0.0520 -0.0400
-vertex 0.0350 -0.0520 -0.0400
+vertex -0.0350 0.0065 0.0000
+vertex -0.0350 -0.0065 0.0000
+vertex 0.0350 -0.0065 0.0000
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0350 -0.0520 -0.0400
-vertex 0.0350 -0.0650 -0.0400
-vertex -0.0350 -0.0650 -0.0400
+vertex 0.0350 -0.0065 0.0000
+vertex 0.0350 0.0065 0.0000
+vertex -0.0350 0.0065 0.0000
 endloop
 endfacet
 facet normal 0 0 0
@@ -1009,30 +995,30 @@ endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0290 0.0520 -0.0400
-vertex -0.0350 0.0520 -0.0400
-vertex -0.0350 0.0650 -0.0400
+vertex 0.0350 0.0330 -0.0060
+vertex 0.0350 0.0430 -0.0060
+vertex 0.0350 0.0430 -0.0400
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex -0.0350 0.0650 -0.0400
-vertex -0.0290 0.0650 -0.0400
-vertex -0.0290 0.0520 -0.0400
+vertex 0.0350 0.0430 -0.0400
+vertex 0.0350 0.0330 -0.0400
+vertex 0.0350 0.0330 -0.0060
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0290 -0.0520 -0.0400
-vertex 0.0350 -0.0520 -0.0400
-vertex 0.0350 -0.0650 -0.0400
+vertex -0.0350 0.0170 -0.0400
+vertex -0.0350 0.0270 -0.0400
+vertex -0.0350 0.0270 -0.0060
 endloop
 endfacet
 facet normal 0 0 0
 outer loop
-vertex 0.0350 -0.0650 -0.0400
-vertex 0.0290 -0.0650 -0.0400
-vertex 0.0290 -0.0520 -0.0400
+vertex -0.0350 0.0270 -0.0060
+vertex -0.0350 0.0170 -0.0060
+vertex -0.0350 0.0170 -0.0400
 endloop
 endfacet
 facet normal 0 0 0
diff --git a/rocolib/output/PaddleboatWithCamera/graph-silhouette.dxf b/rocolib/output/PaddleboatWithCamera/graph-silhouette.dxf
index 2b4604accd036735d2424f9a046f5bb36f5933b8..cf4ffa450f156d8ad3e48bb9f0ae9c37e736bf48 100644
--- a/rocolib/output/PaddleboatWithCamera/graph-silhouette.dxf
+++ b/rocolib/output/PaddleboatWithCamera/graph-silhouette.dxf
@@ -945,13 +945,13 @@ DOTTED
   8
 0
  10
-179.99999999999997
+144.00000000000003
  20
 64.03124199999999
  30
 0.0
  11
-179.99999999999997
+144.00000000000003
  21
 194.03124200000002
  31
@@ -965,13 +965,13 @@ DOTTED
   8
 0
  10
-109.99999999999999
+74.0
  20
 64.03124199999999
  30
 0.0
  11
-109.99999999999999
+74.0
  21
 194.03124200000002
  31
@@ -985,13 +985,13 @@ DOTTED
   8
 0
  10
-145.0
+109.00000000000001
  20
 64.03124199999999
  30
 0.0
  11
-109.99999999999999
+74.0
  21
 64.03124199999999
  31
@@ -1005,13 +1005,13 @@ DOTTED
   8
 0
  10
-179.99999999999997
+144.00000000000003
  20
 64.03124199999999
  30
 0.0
  11
-145.0
+109.00000000000001
  21
 64.03124199999999
  31
@@ -1025,13 +1025,13 @@ DOTTED
   8
 0
  10
-145.0
+109.00000000000001
  20
 -3.7432849353535863e-07
  30
 0.0
  11
-109.99999999999999
+74.0
  21
 64.03124199999999
  31
@@ -1043,13 +1043,13 @@ LINE
   8
 0
  10
-112.32105756343546
+76.3210575634355
  20
 17.44773491586702
  30
 0.0
  11
-91.16052878171773
+55.16052878171775
  21
 28.745631275293622
  31
@@ -1061,13 +1061,13 @@ LINE
   8
 0
  10
-145.0
+109.00000000000001
  20
 -3.743284651136492e-07
  30
 0.0
  11
-112.32105756343546
+76.3210575634355
  21
 17.44773491586702
  31
@@ -1081,13 +1081,13 @@ DOTTED
   8
 0
  10
-109.99999999999999
+74.0
  20
 64.03124199999999
  30
 0.0
  11
-91.16052878171773
+55.16052878171775
  21
 28.745631275293622
  31
@@ -1101,13 +1101,13 @@ DOTTED
   8
 0
  10
-109.99999999999999
+74.0
  20
 64.03124199999999
  30
 0.0
  11
-69.99999999999999
+34.0
  21
 40.04352763472023
  31
@@ -1119,13 +1119,13 @@ LINE
   8
 0
  10
-91.16052878171773
+55.160528781717744
  20
 28.745631275293608
  30
 0.0
  11
-69.99999999999999
+34.0
  21
 40.04352763472023
  31
@@ -1139,13 +1139,13 @@ DOTTED
   8
 0
  10
-69.99999999999999
+34.0
  20
 64.031242
  30
 0.0
  11
-69.99999999999999
+34.0
  21
 40.04352763472023
  31
@@ -1159,13 +1159,13 @@ DOTTED
   8
 0
  10
-109.99999999999999
+74.0
  20
 64.03124199999999
  30
 0.0
  11
-69.99999999999999
+34.0
  21
 64.031242
  31
@@ -1177,13 +1177,13 @@ LINE
   8
 0
  10
-62.00409521157338
+26.0040952115734
  20
 64.031242
  30
 0.0
  11
-69.99999999999999
+34.0
  21
 64.031242
  31
@@ -1195,13 +1195,13 @@ LINE
   8
 0
  10
-62.004095211573365
+26.00409521157339
  20
 40.04352763472023
  30
 0.0
  11
-62.00409521157338
+26.0040952115734
  21
 64.031242
  31
@@ -1213,13 +1213,13 @@ LINE
   8
 0
  10
-69.99999999999997
+33.99999999999999
  20
 40.04352763472023
  30
 0.0
  11
-62.004095211573365
+26.00409521157339
  21
 40.04352763472023
  31
@@ -1233,13 +1233,13 @@ DOTTED
   8
 0
  10
-70.00000000000004
+34.000000000000064
  20
 194.031242
  30
 0.0
  11
-110.00000000000004
+74.00000000000007
  21
 194.031242
  31
@@ -1253,13 +1253,13 @@ DOTTED
   8
 0
  10
-70.00000000000004
+34.000000000000064
  20
 234.031242
  30
 0.0
  11
-110.00000000000003
+74.00000000000006
  21
 194.031242
  31
@@ -1273,13 +1273,13 @@ DOTTED
   8
 0
  10
-70.00000000000004
+34.000000000000064
  20
 234.031242
  30
 0.0
  11
-70.00000000000003
+34.00000000000004
  21
 194.031242
  31
@@ -1291,13 +1291,13 @@ LINE
   8
 0
  10
-70.00000000000004
+34.000000000000064
  20
 234.031242
  30
 0.0
  11
-110.00000000000004
+74.00000000000007
  21
 234.031242
  31
@@ -1311,13 +1311,13 @@ DOTTED
   8
 0
  10
-110.00000000000004
+74.00000000000007
  20
 234.031242
  30
 0.0
  11
-110.00000000000003
+74.00000000000006
  21
 194.031242
  31
@@ -1329,13 +1329,13 @@ LINE
   8
 0
  10
-150.0
+114.00000000000004
  20
 234.031242
  30
 0.0
  11
-145.00000000000003
+109.00000000000004
  21
 234.031242
  31
@@ -1347,13 +1347,13 @@ LINE
   8
 0
  10
-110.00000000000003
+74.00000000000006
  20
 234.031242
  30
 0.0
  11
-150.0
+114.00000000000004
  21
 234.031242
  31
@@ -1367,13 +1367,13 @@ DOTTED
   8
 0
  10
-110.00000000000003
+74.00000000000006
  20
 194.031242
  30
 0.0
  11
-145.00000000000003
+109.00000000000004
  21
 194.031242
  31
@@ -1387,13 +1387,13 @@ DOTTED
   8
 0
  10
-145.00000000000003
+109.00000000000004
  20
 194.031242
  30
 0.0
  11
-180.0
+144.00000000000006
  21
 194.031242
  31
@@ -1405,13 +1405,13 @@ LINE
   8
 0
  10
-140.00000000000003
+104.00000000000006
  20
 234.031242
  30
 0.0
  11
-180.0
+144.00000000000006
  21
 234.031242
  31
@@ -1423,13 +1423,13 @@ LINE
   8
 0
  10
-145.00000000000003
+109.00000000000004
  20
 234.031242
  30
 0.0
  11
-140.00000000000003
+104.00000000000006
  21
 234.031242
  31
@@ -1443,13 +1443,13 @@ DOTTED
   8
 0
  10
-180.0
+144.00000000000006
  20
 194.031242
  30
 0.0
  11
-180.0
+144.00000000000006
  21
 234.031242
  31
@@ -1463,13 +1463,13 @@ DOTTED
   8
 0
  10
-180.0
+144.00000000000006
  20
 194.031242
  30
 0.0
  11
-220.00000000000003
+184.00000000000003
  21
 234.031242
  31
@@ -1481,13 +1481,13 @@ LINE
   8
 0
  10
-180.0
+144.00000000000006
  20
 234.031242
  30
 0.0
  11
-220.00000000000003
+184.00000000000003
  21
 234.031242
  31
@@ -1501,13 +1501,13 @@ DOTTED
   8
 0
  10
-220.00000000000003
+184.00000000000003
  20
 194.031242
  30
 0.0
  11
-220.00000000000003
+184.00000000000003
  21
 234.031242
  31
@@ -1521,13 +1521,13 @@ DOTTED
   8
 0
  10
-180.0
+144.00000000000006
  20
 194.031242
  30
 0.0
  11
-220.00000000000003
+184.00000000000003
  21
 194.031242
  31
@@ -1539,13 +1539,13 @@ LINE
   8
 0
  10
-233.33333333333334
+197.3333333333334
  20
 194.03124200000002
  30
 0.0
  11
-220.00000000000003
+184.00000000000003
  21
 194.03124200000002
  31
@@ -1557,13 +1557,13 @@ LINE
   8
 0
  10
-233.33333333333334
+197.3333333333334
  20
 234.031242
  30
 0.0
  11
-233.33333333333334
+197.3333333333334
  21
 194.03124200000002
  31
@@ -1575,13 +1575,13 @@ LINE
   8
 0
  10
-220.00000000000003
+184.00000000000003
  20
 234.031242
  30
 0.0
  11
-233.33333333333334
+197.3333333333334
  21
 234.031242
  31
@@ -1595,13 +1595,13 @@ DOTTED
   8
 0
  10
-220.00000000000003
+184.00000000000006
  20
 64.031242
  30
 0.0
  11
-180.00000000000006
+144.00000000000009
  21
 64.03124199999999
  31
@@ -1615,13 +1615,13 @@ DOTTED
   8
 0
  10
-220.00000000000003
+184.00000000000006
  20
 40.04352763472023
  30
 0.0
  11
-180.00000000000006
+144.00000000000009
  21
 64.03124199999999
  31
@@ -1635,13 +1635,13 @@ DOTTED
   8
 0
  10
-220.00000000000003
+184.00000000000006
  20
 40.04352763472023
  30
 0.0
  11
-220.00000000000003
+184.00000000000003
  21
 64.031242
  31
@@ -1653,13 +1653,13 @@ LINE
   8
 0
  10
-220.00000000000003
+184.00000000000006
  20
 40.043527634720235
  30
 0.0
  11
-198.8394712182823
+162.83947121828234
  21
 28.745631275293622
  31
@@ -1673,13 +1673,13 @@ DOTTED
   8
 0
  10
-198.8394712182823
+162.83947121828234
  20
 28.745631275293622
  30
 0.0
  11
-180.00000000000006
+144.00000000000009
  21
 64.03124199999999
  31
@@ -1693,13 +1693,13 @@ DOTTED
   8
 0
  10
-145.00000000000006
+109.00000000000006
  20
 -3.743284651136492e-07
  30
 0.0
  11
-180.00000000000006
+144.00000000000009
  21
 64.03124199999999
  31
@@ -1711,13 +1711,13 @@ LINE
   8
 0
  10
-177.67894243656454
+141.6789424365646
  20
 17.44773491586702
  30
 0.0
  11
-145.00000000000006
+109.00000000000006
  21
 -3.743284651136492e-07
  31
@@ -1729,13 +1729,13 @@ LINE
   8
 0
  10
-198.83947121828228
+162.83947121828234
  20
 28.745631275293622
  30
 0.0
  11
-177.67894243656454
+141.6789424365646
  21
 17.44773491586702
  31
@@ -1747,13 +1747,13 @@ LINE
   8
 0
  10
-227.99590478842666
+191.99590478842666
  20
 40.04352763472023
  30
 0.0
  11
-220.00000000000006
+184.00000000000006
  21
 40.04352763472023
  31
@@ -1765,13 +1765,13 @@ LINE
   8
 0
  10
-227.99590478842666
+191.99590478842666
  20
 64.031242
  30
 0.0
  11
-227.99590478842666
+191.99590478842666
  21
 40.04352763472023
  31
@@ -1783,125 +1783,33 @@ LINE
   8
 0
  10
-220.00000000000006
+184.00000000000006
  20
 64.031242
  30
 0.0
  11
-227.99590478842666
+191.99590478842666
  21
 64.031242
  31
 0.0
   0
-LINE
-  6
-DOTTED
- 62
-1
-  8
-0
- 10
-220.00000000000003
- 20
-64.03124199999999
- 30
-0.0
- 11
-220.00000000000003
- 21
-77.031242
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-220.00000000000003
- 20
-90.03124199999999
- 30
-0.0
- 11
-220.00000000000003
- 21
-77.031242
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-220.00000000000003
- 20
-103.031242
- 30
-0.0
- 11
-220.00000000000003
- 21
-90.03124199999999
- 31
-0.0
-  0
 LINE
  62
 5
   8
 0
  10
-220.00000000000003
+184.00000000000006
  20
-116.03124199999999
+79.031242
  30
 0.0
  11
-220.00000000000003
+184.00000000000006
  21
-103.031242
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-220.00000000000003
- 20
-129.03124199999996
- 30
-0.0
- 11
-220.00000000000003
- 21
-116.03124199999999
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-220.00000000000003
- 20
-142.031242
- 30
-0.0
- 11
-220.00000000000003
- 21
-129.03124199999996
+64.03124199999999
  31
 0.0
   0
@@ -1911,15 +1819,15 @@ LINE
   8
 0
  10
-220.00000000000003
+184.00000000000006
  20
-155.03124199999996
+102.031242
  30
 0.0
  11
-220.00000000000003
+184.00000000000006
  21
-142.031242
+79.031242
  31
 0.0
   0
@@ -1929,15 +1837,15 @@ LINE
   8
 0
  10
-220.00000000000003
+184.00000000000003
  20
-168.031242
+125.03124199999999
  30
 0.0
  11
-220.00000000000003
+184.00000000000006
  21
-155.03124199999996
+102.031242
  31
 0.0
   0
@@ -1947,15 +1855,15 @@ LINE
   8
 0
  10
-220.00000000000003
+184.00000000000003
  20
-181.031242
+148.03124199999996
  30
 0.0
  11
-220.00000000000003
+184.00000000000003
  21
-168.031242
+125.03124199999999
  31
 0.0
   0
@@ -1963,19 +1871,19 @@ LINE
   6
 DOTTED
  62
-1
+3
   8
 0
  10
-220.00000000000003
+184.00000000000003
  20
-181.031242
+171.03124199999996
  30
 0.0
  11
-220.00000000000003
+184.00000000000003
  21
-194.031242
+148.03124199999996
  31
 0.0
   0
@@ -1985,15 +1893,15 @@ LINE
   8
 0
  10
-220.00000000000003
+184.00000000000003
  20
 194.031242
  30
 0.0
  11
-220.00000000000003
+184.00000000000003
  21
-194.031242
+171.03124199999996
  31
 0.0
   0
@@ -2003,15 +1911,15 @@ LINE
   8
 0
  10
-220.00000000000003
+184.00000000000003
  20
-64.03124199999999
+194.031242
  30
 0.0
  11
-220.00000000000003
+184.00000000000003
  21
-64.03124199999999
+194.031242
  31
 0.0
   0
@@ -2021,13 +1929,13 @@ LINE
   8
 0
  10
-226.00000000000003
+184.00000000000006
  20
 64.03124199999999
  30
 0.0
  11
-220.00000000000003
+184.00000000000006
  21
 64.03124199999999
  31
@@ -2039,15 +1947,15 @@ LINE
   8
 0
  10
-226.00000000000003
+218.00000000000006
  20
-77.031242
+172.031242
  30
 0.0
  11
-226.00000000000003
+218.00000000000006
  21
-64.03124199999999
+148.031242
  31
 0.0
   0
@@ -2057,33 +1965,35 @@ LINE
   8
 0
  10
-220.00000000000003
+184.00000000000003
  20
-77.031242
+172.031242
  30
 0.0
  11
-226.00000000000003
+218.00000000000006
  21
-77.031242
+172.031242
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-220.00000000000003
+218.00000000000006
  20
-199.031242
+148.031242
  30
 0.0
  11
-244.0
+184.00000000000003
  21
-199.031242
+148.03124199999996
  31
 0.0
   0
@@ -2093,35 +2003,15 @@ LINE
   8
 0
  10
-244.00000000000003
+218.00000000000006
  20
-129.031242
+148.031242
  30
 0.0
  11
-220.00000000000003
+218.00000000000006
  21
-129.03124199999996
- 31
-0.0
-  0
-LINE
-  6
-DOTTED
- 62
-1
-  8
-0
- 10
-244.0
- 20
-199.031242
- 30
-0.0
- 11
-244.00000000000003
- 21
-129.031242
+128.031242
  31
 0.0
   0
@@ -2131,15 +2021,15 @@ LINE
   8
 0
  10
-200.0
+184.00000000000003
  20
-199.031242
+128.031242
  30
 0.0
  11
-220.00000000000003
+184.00000000000003
  21
-199.031242
+148.03124199999996
  31
 0.0
   0
@@ -2151,15 +2041,15 @@ DOTTED
   8
 0
  10
-200.0
+218.00000000000006
  20
-199.031242
+128.031242
  30
 0.0
  11
-200.0
+184.00000000000003
  21
-129.03124199999996
+128.031242
  31
 0.0
   0
@@ -2169,15 +2059,15 @@ LINE
   8
 0
  10
-220.00000000000003
+218.00000000000006
  20
-129.03124199999996
+128.031242
  30
 0.0
  11
-200.0
+218.00000000000006
  21
-129.03124199999996
+104.031242
  31
 0.0
   0
@@ -2187,15 +2077,15 @@ LINE
   8
 0
  10
-176.00000000000003
+184.00000000000003
  20
-199.031242
+104.031242
  30
 0.0
  11
-200.0
+184.00000000000003
  21
-199.031242
+128.031242
  31
 0.0
   0
@@ -2207,15 +2097,15 @@ DOTTED
   8
 0
  10
-176.00000000000003
+218.00000000000006
  20
-199.031242
+104.031242
  30
 0.0
  11
-176.00000000000003
+184.00000000000003
  21
-129.03124199999996
+104.031242
  31
 0.0
   0
@@ -2225,15 +2115,15 @@ LINE
   8
 0
  10
-200.0
+218.00000000000006
  20
-129.031242
+104.031242
  30
 0.0
  11
-176.00000000000003
+218.00000000000006
  21
-129.03124199999996
+84.031242
  31
 0.0
   0
@@ -2243,33 +2133,35 @@ LINE
   8
 0
  10
-156.00000000000003
+184.00000000000003
  20
-199.031242
+84.031242
  30
 0.0
  11
-176.00000000000003
+184.00000000000003
  21
-199.031242
+104.031242
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-176.00000000000003
+184.00000000000003
  20
-129.03124199999996
+84.031242
  30
 0.0
  11
-156.00000000000003
+218.00000000000006
  21
-129.03124199999996
+84.031242
  31
 0.0
   0
@@ -2279,15 +2171,15 @@ LINE
   8
 0
  10
-220.00000000000003
+184.00000000000003
  20
-194.031242
+74.03124199999999
  30
 0.0
  11
-290.00000000000006
+184.00000000000003
  21
-194.031242
+84.031242
  31
 0.0
   0
@@ -2297,15 +2189,15 @@ LINE
   8
 0
  10
-290.00000000000006
+218.00000000000006
  20
-181.031242
+74.03124199999999
  30
 0.0
  11
-220.00000000000003
+184.00000000000003
  21
-181.031242
+74.03124199999999
  31
 0.0
   0
@@ -2315,15 +2207,15 @@ LINE
   8
 0
  10
-290.00000000000006
+218.00000000000006
  20
-194.031242
+84.031242
  30
 0.0
  11
-290.00000000000006
+218.00000000000006
  21
-181.031242
+74.03124199999999
  31
 0.0
   0
@@ -2333,13 +2225,13 @@ LINE
   8
 0
  10
-56.66666666666671
+20.666666666666732
  20
 234.031242
  30
 0.0
  11
-70.00000000000004
+34.000000000000064
  21
 234.031242
  31
@@ -2351,13 +2243,13 @@ LINE
   8
 0
  10
-56.66666666666669
+20.666666666666718
  20
 194.031242
  30
 0.0
  11
-56.66666666666671
+20.666666666666732
  21
 234.031242
  31
@@ -2369,89 +2261,33 @@ LINE
   8
 0
  10
-70.00000000000003
+34.00000000000004
  20
 194.031242
  30
 0.0
  11
-56.66666666666669
+20.666666666666718
  21
 194.031242
  31
 0.0
   0
-LINE
-  6
-DOTTED
- 62
-1
-  8
-0
- 10
-70.00000000000004
- 20
-194.03124200000002
- 30
-0.0
- 11
-70.00000000000004
- 21
-181.03124200000002
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-70.00000000000003
- 20
-168.03124200000002
- 30
-0.0
- 11
-70.00000000000004
- 21
-181.03124200000002
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-70.00000000000003
- 20
-155.031242
- 30
-0.0
- 11
-70.00000000000003
- 21
-168.03124200000002
- 31
-0.0
-  0
 LINE
  62
 5
   8
 0
  10
-70.00000000000003
+34.000000000000064
  20
-142.03124200000002
+179.03124200000002
  30
 0.0
  11
-70.00000000000003
+34.000000000000064
  21
-155.031242
+194.03124200000002
  31
 0.0
   0
@@ -2461,33 +2297,35 @@ LINE
   8
 0
  10
-70.00000000000001
+34.00000000000004
  20
-129.03124200000002
+156.03124200000002
  30
 0.0
  11
-70.00000000000003
+34.000000000000064
  21
-142.03124200000002
+179.03124200000002
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+3
   8
 0
  10
-70.00000000000001
+34.00000000000004
  20
-116.03124200000002
+133.03124200000002
  30
 0.0
  11
-70.00000000000001
+34.00000000000004
  21
-129.03124200000002
+156.03124200000002
  31
 0.0
   0
@@ -2497,15 +2335,15 @@ LINE
   8
 0
  10
-70.00000000000001
+34.00000000000003
  20
-103.03124200000002
+110.03124200000002
  30
 0.0
  11
-70.00000000000001
+34.00000000000004
  21
-116.03124200000002
+133.03124200000002
  31
 0.0
   0
@@ -2515,15 +2353,15 @@ LINE
   8
 0
  10
-70.00000000000001
+34.000000000000014
  20
-90.031242
+87.03124200000002
  30
 0.0
  11
-70.00000000000001
+34.00000000000003
  21
-103.03124200000002
+110.03124200000002
  31
 0.0
   0
@@ -2533,35 +2371,15 @@ LINE
   8
 0
  10
-70.0
+34.000000000000014
  20
-77.03124200000002
+64.03124200000003
  30
 0.0
  11
-70.00000000000001
+34.000000000000014
  21
-90.031242
- 31
-0.0
-  0
-LINE
-  6
-DOTTED
- 62
-1
-  8
-0
- 10
-70.0
- 20
-77.03124200000002
- 30
-0.0
- 11
-70.0
- 21
-64.03124200000003
+87.03124200000002
  31
 0.0
   0
@@ -2571,13 +2389,13 @@ LINE
   8
 0
  10
-70.0
+34.000000000000014
  20
 64.03124200000003
  30
 0.0
  11
-70.0
+34.000000000000014
  21
 64.03124200000003
  31
@@ -2589,31 +2407,13 @@ LINE
   8
 0
  10
-70.00000000000004
- 20
-194.03124200000002
- 30
-0.0
- 11
-70.00000000000004
- 21
-194.03124200000002
- 31
-0.0
-  0
-LINE
- 62
-5
-  8
-0
- 10
-64.00000000000004
+34.000000000000064
  20
 194.03124200000002
  30
 0.0
  11
-70.00000000000004
+34.000000000000064
  21
 194.03124200000002
  31
@@ -2625,15 +2425,15 @@ LINE
   8
 0
  10
-64.00000000000004
+5.684341886080803e-14
  20
-181.03124200000002
+156.03124200000005
  30
 0.0
  11
-64.00000000000004
+34.00000000000004
  21
-194.03124200000002
+156.03124200000002
  31
 0.0
   0
@@ -2643,33 +2443,35 @@ LINE
   8
 0
  10
-70.00000000000004
+4.263256414560602e-14
  20
-181.03124200000002
+132.03124200000002
  30
 0.0
  11
-64.00000000000004
+5.684341886080803e-14
  21
-181.03124200000002
+156.03124200000005
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-70.0
+34.00000000000003
  20
-72.03124200000002
+132.03124200000002
  30
 0.0
  11
-45.99999999999999
+4.263256414560602e-14
  21
-72.03124200000003
+132.03124200000002
  31
 0.0
   0
@@ -2679,35 +2481,15 @@ LINE
   8
 0
  10
-46.000000000000014
- 20
-142.03124200000005
- 30
-0.0
- 11
-70.00000000000003
- 21
-142.03124200000002
- 31
-0.0
-  0
-LINE
-  6
-DOTTED
- 62
-1
-  8
-0
- 10
-45.99999999999999
+34.00000000000003
  20
-72.03124200000003
+132.03124200000002
  30
 0.0
  11
-46.000000000000014
+34.00000000000003
  21
-142.03124200000005
+112.03124200000002
  31
 0.0
   0
@@ -2717,15 +2499,15 @@ LINE
   8
 0
  10
-89.99999999999999
+2.8421709430404014e-14
  20
-72.03124200000002
+112.03124200000003
  30
 0.0
  11
-70.0
+2.8421709430404014e-14
  21
-72.03124200000003
+132.03124200000002
  31
 0.0
   0
@@ -2737,15 +2519,15 @@ DOTTED
   8
 0
  10
-89.99999999999999
+34.00000000000003
  20
-72.03124200000002
+112.03124200000002
  30
 0.0
  11
-90.00000000000003
+2.8421709430404014e-14
  21
-142.03124200000002
+112.03124200000003
  31
 0.0
   0
@@ -2755,15 +2537,15 @@ LINE
   8
 0
  10
-70.00000000000003
+34.00000000000003
  20
-142.03124200000005
+112.03124200000002
  30
 0.0
  11
-90.00000000000003
+34.00000000000003
  21
-142.03124200000002
+88.03124200000003
  31
 0.0
   0
@@ -2773,15 +2555,15 @@ LINE
   8
 0
  10
-114.0
+2.8421709430404014e-14
  20
-72.03124199999999
+88.03124200000003
  30
 0.0
  11
-89.99999999999999
+2.8421709430404014e-14
  21
-72.03124200000002
+112.03124200000003
  31
 0.0
   0
@@ -2793,15 +2575,15 @@ DOTTED
   8
 0
  10
-114.0
+34.00000000000003
  20
-72.03124199999999
+88.03124200000003
  30
 0.0
  11
-114.00000000000003
+2.8421709430404014e-14
  21
-142.03124200000002
+88.03124200000003
  31
 0.0
   0
@@ -2811,15 +2593,15 @@ LINE
   8
 0
  10
-90.00000000000003
+34.0
  20
-142.03124200000002
+88.03124200000003
  30
 0.0
  11
-114.00000000000003
+34.0
  21
-142.03124200000002
+68.03124200000002
  31
 0.0
   0
@@ -2829,33 +2611,35 @@ LINE
   8
 0
  10
-134.0
+0.0
  20
-72.03124199999999
+68.03124200000002
  30
 0.0
  11
-114.0
+0.0
  21
-72.03124199999999
+88.03124200000003
  31
 0.0
   0
 LINE
+  6
+DOTTED
  62
-5
+1
   8
 0
  10
-114.00000000000001
+0.0
  20
-142.03124200000002
+68.03124200000002
  30
 0.0
  11
-134.00000000000003
+34.0
  21
-142.03124200000002
+68.03124200000002
  31
 0.0
   0
@@ -2867,13 +2651,13 @@ LINE
  10
 0.0
  20
-77.03124200000003
+58.03124200000002
  30
 0.0
  11
-69.99999999999999
+0.0
  21
-77.03124200000002
+68.03124200000002
  31
 0.0
   0
@@ -2883,15 +2667,15 @@ LINE
   8
 0
  10
-0.0
+34.0
  20
-64.03124200000003
+58.03124200000002
  30
 0.0
  11
 0.0
  21
-77.03124200000003
+58.03124200000002
  31
 0.0
   0
@@ -2901,15 +2685,15 @@ LINE
   8
 0
  10
-69.99999999999999
+34.0
  20
-64.031242
+68.03124200000002
  30
 0.0
  11
-0.0
+34.0
  21
-64.03124200000003
+58.03124200000002
  31
 0.0
   0
@@ -2919,13 +2703,13 @@ LINE
   8
 0
  10
-108.43030382152989
+72.43030382152992
  20
 26.606620936353796
  30
 0.0
  11
-100.93572409356514
+64.93572409356516
  21
 30.608079779724527
  31
@@ -2937,13 +2721,13 @@ LINE
   8
 0
  10
-100.93572409356514
+64.93572409356516
  20
 30.608079779724527
  30
 0.0
  11
-100.70023070333662
+64.70023070333663
  21
 30.167009645665704
  31
@@ -2955,13 +2739,13 @@ LINE
   8
 0
  10
-100.70023070333662
+64.70023070333663
  20
 30.167009645665704
  30
 0.0
  11
-108.19481043130136
+72.19481043130139
  21
 26.165550802294977
  31
@@ -2973,13 +2757,13 @@ LINE
   8
 0
  10
-108.19481043130136
+72.19481043130139
  20
 26.165550802294977
  30
 0.0
  11
-108.43030382152989
+72.43030382152992
  21
 26.606620936353796
  31
@@ -2991,13 +2775,13 @@ LINE
   8
 0
  10
-64.00307140868003
+28.003071408680043
  20
 48.03943242314682
  30
 0.0
  11
-68.00102380289331
+32.00102380289334
  21
 48.03943242314682
  31
@@ -3009,13 +2793,13 @@ LINE
   8
 0
  10
-68.00102380289331
+32.00102380289334
  20
 48.03943242314682
  30
 0.0
  11
-68.00102380289331
+32.00102380289334
  21
 56.03533721157341
  31
@@ -3027,13 +2811,13 @@ LINE
   8
 0
  10
-68.00102380289331
+32.00102380289334
  20
 56.03533721157341
  30
 0.0
  11
-64.00307140868003
+28.003071408680043
  21
 56.03533721157343
  31
@@ -3045,13 +2829,13 @@ LINE
   8
 0
  10
-123.08333333333336
+87.08333333333339
  20
 223.781242
  30
 0.0
  11
-136.9166666666667
+100.91666666666671
  21
 223.781242
  31
@@ -3063,13 +2847,13 @@ LINE
   8
 0
  10
-136.9166666666667
+100.91666666666671
  20
 223.781242
  30
 0.0
  11
-136.9166666666667
+100.91666666666671
  21
 224.281242
  31
@@ -3081,13 +2865,13 @@ LINE
   8
 0
  10
-136.9166666666667
+100.91666666666671
  20
 224.281242
  30
 0.0
  11
-123.08333333333336
+87.08333333333339
  21
 224.281242
  31
@@ -3099,13 +2883,13 @@ LINE
   8
 0
  10
-123.08333333333336
+87.08333333333339
  20
 224.281242
  30
 0.0
  11
-123.08333333333336
+87.08333333333339
  21
 223.781242
  31
@@ -3117,13 +2901,13 @@ LINE
   8
 0
  10
-153.08333333333337
+117.08333333333339
  20
 223.781242
  30
 0.0
  11
-166.9166666666667
+130.91666666666669
  21
 223.781242
  31
@@ -3135,13 +2919,13 @@ LINE
   8
 0
  10
-166.9166666666667
+130.91666666666669
  20
 223.781242
  30
 0.0
  11
-166.9166666666667
+130.91666666666669
  21
 224.281242
  31
@@ -3153,13 +2937,13 @@ LINE
   8
 0
  10
-166.9166666666667
+130.91666666666669
  20
 224.281242
  30
 0.0
  11
-153.08333333333337
+117.08333333333339
  21
 224.281242
  31
@@ -3171,13 +2955,13 @@ LINE
   8
 0
  10
-153.08333333333337
+117.08333333333339
  20
 224.281242
  30
 0.0
  11
-153.08333333333337
+117.08333333333339
  21
 223.781242
  31
@@ -3189,13 +2973,13 @@ LINE
   8
 0
  10
-230.00000000000003
+194.00000000000006
  20
 220.69790866666668
  30
 0.0
  11
-223.33333333333334
+187.3333333333334
  21
 220.69790866666668
  31
@@ -3207,13 +2991,13 @@ LINE
   8
 0
  10
-223.33333333333334
+187.3333333333334
  20
 220.69790866666668
  30
 0.0
  11
-223.33333333333334
+187.3333333333334
  21
 207.3645753333333
  31
@@ -3225,13 +3009,13 @@ LINE
   8
 0
  10
-223.33333333333334
+187.3333333333334
  20
 207.3645753333333
  30
 0.0
  11
-230.00000000000003
+194.00000000000006
  21
 207.3645753333333
  31
@@ -3243,13 +3027,13 @@ LINE
   8
 0
  10
-189.0642759064349
+153.0642759064349
  20
 30.608079779724527
  30
 0.0
  11
-181.56969617847014
+145.56969617847014
  21
 26.60662093635381
  31
@@ -3261,13 +3045,13 @@ LINE
   8
 0
  10
-181.56969617847014
+145.56969617847014
  20
 26.60662093635381
  30
 0.0
  11
-181.80518956869867
+145.80518956869867
  21
 26.165550802294977
  31
@@ -3279,13 +3063,13 @@ LINE
   8
 0
  10
-181.80518956869867
+145.80518956869867
  20
 26.165550802294977
  30
 0.0
  11
-189.2997692966634
+153.2997692966634
  21
 30.167009645665704
  31
@@ -3297,13 +3081,13 @@ LINE
   8
 0
  10
-189.2997692966634
+153.2997692966634
  20
 30.167009645665704
  30
 0.0
  11
-189.0642759064349
+153.0642759064349
  21
 30.608079779724527
  31
@@ -3315,13 +3099,13 @@ LINE
   8
 0
  10
-225.99692859132
+189.99692859132003
  20
 56.03533721157341
  30
 0.0
  11
-221.99897619710669
+185.9989761971067
  21
 56.03533721157341
  31
@@ -3333,13 +3117,13 @@ LINE
   8
 0
  10
-221.99897619710669
+185.9989761971067
  20
 56.03533721157341
  30
 0.0
  11
-221.99897619710669
+185.9989761971067
  21
 48.03943242314682
  31
@@ -3351,13 +3135,13 @@ LINE
   8
 0
  10
-221.99897619710669
+185.9989761971067
  20
 48.03943242314682
  30
 0.0
  11
-225.99692859132
+189.99692859132003
  21
 48.03943242314682
  31
@@ -3369,15 +3153,15 @@ LINE
   8
 0
  10
-224.50000000000003
+195.0833333333334
  20
-72.69790866666666
+164.28124199999996
  30
 0.0
  11
-221.50000000000003
+206.91666666666669
  21
-72.69790866666666
+164.28124199999996
  31
 0.0
   0
@@ -3387,15 +3171,15 @@ LINE
   8
 0
  10
-221.50000000000003
+206.91666666666669
  20
-72.69790866666666
+164.28124199999996
  30
 0.0
  11
-221.50000000000003
+206.91666666666669
  21
-68.36457533333333
+164.781242
  31
 0.0
   0
@@ -3405,15 +3189,15 @@ LINE
   8
 0
  10
-221.50000000000003
+206.91666666666669
  20
-68.36457533333333
+164.781242
  30
 0.0
  11
-224.50000000000003
+195.0833333333334
  21
-68.36457533333333
+164.781242
  31
 0.0
   0
@@ -3423,15 +3207,15 @@ LINE
   8
 0
  10
-205.00000000000003
+195.0833333333334
  20
-170.031242
+164.781242
  30
 0.0
  11
-201.00000000000003
+195.0833333333334
  21
-170.031242
+164.28124199999996
  31
 0.0
   0
@@ -3441,15 +3225,15 @@ LINE
   8
 0
  10
-201.00000000000003
+207.00000000000003
  20
-170.031242
+129.031242
  30
 0.0
  11
-201.00000000000003
+207.00000000000003
  21
-158.031242
+133.03124200000002
  31
 0.0
   0
@@ -3459,15 +3243,15 @@ LINE
   8
 0
  10
-201.00000000000003
+207.00000000000003
  20
-158.031242
+133.03124200000002
  30
 0.0
  11
-205.00000000000003
+195.00000000000006
  21
-158.031242
+133.03124200000002
  31
 0.0
   0
@@ -3477,15 +3261,15 @@ LINE
   8
 0
  10
-205.00000000000003
+195.00000000000006
  20
-158.031242
+133.03124200000002
  30
 0.0
  11
-205.00000000000003
+195.00000000000006
  21
-170.031242
+129.031242
  31
 0.0
   0
@@ -3495,15 +3279,15 @@ LINE
   8
 0
  10
-199.50000000000003
+195.00000000000006
  20
-170.031242
+129.031242
  30
 0.0
  11
-176.50000000000003
+207.00000000000003
  21
-170.031242
+129.031242
  31
 0.0
   0
@@ -3513,15 +3297,15 @@ LINE
   8
 0
  10
-176.50000000000003
+205.50000000000006
  20
-170.031242
+141.031242
  30
 0.0
  11
-176.50000000000003
+205.50000000000006
  21
-158.031242
+145.03124200000002
  31
 0.0
   0
@@ -3531,15 +3315,15 @@ LINE
   8
 0
  10
-176.50000000000003
+205.50000000000006
  20
-158.031242
+145.03124200000002
  30
 0.0
  11
-199.50000000000003
+196.50000000000006
  21
-158.031242
+145.03124200000002
  31
 0.0
   0
@@ -3549,15 +3333,15 @@ LINE
   8
 0
  10
-199.50000000000003
+196.50000000000006
  20
-158.031242
+145.03124200000002
  30
 0.0
  11
-199.50000000000003
+196.50000000000006
  21
-170.031242
+141.031242
  31
 0.0
   0
@@ -3567,15 +3351,15 @@ LINE
   8
 0
  10
-175.0
+196.50000000000006
  20
-170.031242
+141.031242
  30
 0.0
  11
-171.00000000000003
+205.50000000000006
  21
-170.031242
+141.031242
  31
 0.0
   0
@@ -3585,15 +3369,15 @@ LINE
   8
 0
  10
-171.00000000000003
+207.00000000000003
  20
-170.031242
+104.531242
  30
 0.0
  11
-171.00000000000003
+207.00000000000003
  21
-158.031242
+127.53124200000002
  31
 0.0
   0
@@ -3603,15 +3387,15 @@ LINE
   8
 0
  10
-171.00000000000003
+207.00000000000003
  20
-158.031242
+127.53124200000002
  30
 0.0
  11
-175.0
+195.00000000000006
  21
-158.031242
+127.53124200000002
  31
 0.0
   0
@@ -3621,15 +3405,15 @@ LINE
   8
 0
  10
-175.0
+195.00000000000006
  20
-158.031242
+127.53124200000002
  30
 0.0
  11
-175.0
+195.00000000000006
  21
-170.031242
+104.531242
  31
 0.0
   0
@@ -3639,15 +3423,15 @@ LINE
   8
 0
  10
-163.00000000000003
+195.00000000000006
  20
-168.53124199999996
+104.531242
  30
 0.0
  11
-159.0
+207.00000000000003
  21
-168.53124199999996
+104.531242
  31
 0.0
   0
@@ -3657,15 +3441,15 @@ LINE
   8
 0
  10
-159.0
+207.00000000000003
  20
-168.53124199999996
+99.03124199999999
  30
 0.0
  11
-159.0
+207.00000000000003
  21
-159.53124199999996
+103.031242
  31
 0.0
   0
@@ -3675,15 +3459,15 @@ LINE
   8
 0
  10
-159.0
+207.00000000000003
  20
-159.53124199999996
+103.031242
  30
 0.0
  11
-163.00000000000003
+195.00000000000006
  21
-159.53124199999996
+103.031242
  31
 0.0
   0
@@ -3693,15 +3477,15 @@ LINE
   8
 0
  10
-163.00000000000003
+195.00000000000006
  20
-159.53124199999996
+103.031242
  30
 0.0
  11
-163.00000000000003
+195.00000000000006
  21
-168.53124199999996
+99.03124199999999
  31
 0.0
   0
@@ -3711,15 +3495,15 @@ LINE
   8
 0
  10
-285.25000000000006
+195.00000000000006
  20
-189.94790866666668
+99.03124199999999
  30
 0.0
  11
-285.25000000000006
+207.00000000000003
  21
-185.11457533333333
+99.03124199999999
  31
 0.0
   0
@@ -3729,15 +3513,15 @@ LINE
   8
 0
  10
-285.25000000000006
+206.6666666666667
  20
-185.11457533333333
+76.53124199999999
  30
 0.0
  11
-285.75
+206.6666666666667
  21
-185.11457533333333
+81.531242
  31
 0.0
   0
@@ -3747,15 +3531,15 @@ LINE
   8
 0
  10
-285.75
+206.6666666666667
  20
-185.11457533333333
+81.531242
  30
 0.0
  11
-285.75
+195.33333333333337
  21
-189.94790866666668
+81.531242
  31
 0.0
   0
@@ -3765,15 +3549,15 @@ LINE
   8
 0
  10
-285.75
+195.33333333333337
  20
-189.94790866666668
+81.531242
  30
 0.0
  11
-285.25000000000006
+195.33333333333337
  21
-189.94790866666668
+76.53124199999999
  31
 0.0
   0
@@ -3783,13 +3567,13 @@ LINE
   8
 0
  10
-60.00000000000002
+24.000000000000043
  20
 207.3645753333333
  30
 0.0
  11
-66.66666666666669
+30.666666666666718
  21
 207.3645753333333
  31
@@ -3801,13 +3585,13 @@ LINE
   8
 0
  10
-66.66666666666669
+30.666666666666718
  20
 207.3645753333333
  30
 0.0
  11
-66.66666666666671
+30.666666666666732
  21
 220.69790866666668
  31
@@ -3819,13 +3603,13 @@ LINE
   8
 0
  10
-66.66666666666671
+30.666666666666732
  20
 220.69790866666668
  30
 0.0
  11
-60.000000000000036
+24.00000000000006
  21
 220.69790866666668
  31
@@ -3837,15 +3621,15 @@ LINE
   8
 0
  10
-65.50000000000003
+11.083333333333371
  20
-185.36457533333336
+148.28124200000002
  30
 0.0
  11
-68.50000000000004
+22.9166666666667
  21
-185.36457533333336
+148.281242
  31
 0.0
   0
@@ -3855,15 +3639,15 @@ LINE
   8
 0
  10
-68.50000000000004
+22.9166666666667
  20
-185.36457533333336
+148.281242
  30
 0.0
  11
-68.50000000000004
+22.9166666666667
  21
-189.69790866666668
+148.78124200000002
  31
 0.0
   0
@@ -3873,15 +3657,15 @@ LINE
   8
 0
  10
-68.50000000000004
+22.9166666666667
  20
-189.69790866666668
+148.78124200000002
  30
 0.0
  11
-65.50000000000003
+11.083333333333371
  21
-189.69790866666668
+148.78124200000005
  31
 0.0
   0
@@ -3891,15 +3675,15 @@ LINE
   8
 0
  10
-85.00000000000001
+11.083333333333371
  20
-101.03124200000002
+148.78124200000005
  30
 0.0
  11
-89.00000000000001
+11.083333333333371
  21
-101.03124200000002
+148.28124200000002
  31
 0.0
   0
@@ -3909,13 +3693,49 @@ LINE
   8
 0
  10
-89.00000000000001
+23.000000000000032
  20
-101.03124200000002
+113.03124200000002
  30
 0.0
  11
-89.00000000000001
+23.000000000000032
+ 21
+117.03124200000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+23.000000000000032
+ 20
+117.03124200000002
+ 30
+0.0
+ 11
+11.00000000000003
+ 21
+117.03124200000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+11.00000000000003
+ 20
+117.03124200000002
+ 30
+0.0
+ 11
+11.00000000000003
  21
 113.03124200000002
  31
@@ -3927,13 +3747,13 @@ LINE
   8
 0
  10
-89.00000000000001
+11.00000000000003
  20
 113.03124200000002
  30
 0.0
  11
-85.00000000000001
+23.000000000000032
  21
 113.03124200000002
  31
@@ -3945,15 +3765,15 @@ LINE
   8
 0
  10
-85.00000000000001
+21.50000000000003
  20
-113.03124200000002
+125.03124200000002
  30
 0.0
  11
-85.00000000000001
+21.50000000000003
  21
-101.03124200000002
+129.031242
  31
 0.0
   0
@@ -3963,15 +3783,15 @@ LINE
   8
 0
  10
-90.50000000000001
+21.50000000000003
  20
-101.03124200000002
+129.031242
  30
 0.0
  11
-113.50000000000001
+12.50000000000003
  21
-101.031242
+129.03124200000002
  31
 0.0
   0
@@ -3981,15 +3801,15 @@ LINE
   8
 0
  10
-113.50000000000001
+12.50000000000003
  20
-101.031242
+129.03124200000002
  30
 0.0
  11
-113.50000000000001
+12.50000000000003
  21
-113.031242
+125.03124200000002
  31
 0.0
   0
@@ -3999,15 +3819,15 @@ LINE
   8
 0
  10
-113.50000000000001
+12.50000000000003
  20
-113.031242
+125.03124200000002
  30
 0.0
  11
-90.50000000000001
+21.50000000000003
  21
-113.03124200000002
+125.03124200000002
  31
 0.0
   0
@@ -4017,15 +3837,15 @@ LINE
   8
 0
  10
-90.50000000000001
+23.000000000000032
  20
-113.03124200000002
+88.53124200000003
  30
 0.0
  11
-90.50000000000001
+23.000000000000032
  21
-101.03124200000002
+111.53124200000002
  31
 0.0
   0
@@ -4035,15 +3855,15 @@ LINE
   8
 0
  10
-115.00000000000001
+23.000000000000032
  20
-101.031242
+111.53124200000002
  30
 0.0
  11
-119.0
+11.00000000000003
  21
-101.031242
+111.53124200000002
  31
 0.0
   0
@@ -4053,15 +3873,15 @@ LINE
   8
 0
  10
-119.0
+11.00000000000003
  20
-101.031242
+111.53124200000002
  30
 0.0
  11
-119.00000000000001
+11.00000000000003
  21
-113.031242
+88.53124200000003
  31
 0.0
   0
@@ -4071,15 +3891,15 @@ LINE
   8
 0
  10
-119.00000000000001
+11.00000000000003
  20
-113.031242
+88.53124200000003
  30
 0.0
  11
-115.00000000000001
+23.000000000000032
  21
-113.031242
+88.53124200000003
  31
 0.0
   0
@@ -4089,15 +3909,15 @@ LINE
   8
 0
  10
-115.00000000000001
+23.000000000000004
  20
-113.031242
+83.03124200000002
  30
 0.0
  11
-115.00000000000001
+23.000000000000004
  21
-101.031242
+87.03124200000003
  31
 0.0
   0
@@ -4107,15 +3927,15 @@ LINE
   8
 0
  10
-127.00000000000001
+23.000000000000004
  20
-102.53124199999999
+87.03124200000003
  30
 0.0
  11
-131.0
+11.000000000000002
  21
-102.53124199999999
+87.03124200000003
  31
 0.0
   0
@@ -4125,15 +3945,15 @@ LINE
   8
 0
  10
-131.0
+11.000000000000002
  20
-102.53124199999999
+87.03124200000003
  30
 0.0
  11
-131.0
+11.000000000000002
  21
-111.531242
+83.03124200000002
  31
 0.0
   0
@@ -4143,15 +3963,15 @@ LINE
   8
 0
  10
-131.0
+11.000000000000002
  20
-111.531242
+83.03124200000002
  30
 0.0
  11
-127.00000000000001
+23.000000000000004
  21
-111.531242
+83.03124200000002
  31
 0.0
   0
@@ -4161,15 +3981,15 @@ LINE
   8
 0
  10
-127.00000000000001
+22.666666666666675
  20
-111.531242
+60.53124200000003
  30
 0.0
  11
-127.00000000000001
+22.666666666666675
  21
-102.53124199999999
+65.53124200000002
  31
 0.0
   0
@@ -4179,15 +3999,15 @@ LINE
   8
 0
  10
-4.750000000000001
+22.666666666666675
  20
-68.11457533333336
+65.53124200000002
  30
 0.0
  11
-4.750000000000001
+11.333333333333343
  21
-72.94790866666668
+65.53124200000002
  31
 0.0
   0
@@ -4197,15 +4017,15 @@ LINE
   8
 0
  10
-4.750000000000001
+11.333333333333343
  20
-72.94790866666668
+65.53124200000002
  30
 0.0
  11
-4.25
+11.333333333333343
  21
-72.94790866666668
+60.53124200000003
  31
 0.0
   0
@@ -4215,15 +4035,15 @@ LINE
   8
 0
  10
-4.25
+298.00000000000006
  20
-72.94790866666668
+122.531242
  30
 0.0
  11
-4.25
+228.00000000000003
  21
-68.11457533333336
+122.531242
  31
 0.0
   0
@@ -4233,15 +4053,51 @@ LINE
   8
 0
  10
-4.25
+298.00000000000006
+ 20
+135.53124200000002
+ 30
+0.0
+ 11
+298.00000000000006
+ 21
+122.531242
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+228.00000000000003
+ 20
+135.53124200000002
+ 30
+0.0
+ 11
+298.00000000000006
+ 21
+135.53124200000002
+ 31
+0.0
+  0
+LINE
+ 62
+5
+  8
+0
+ 10
+228.00000000000003
  20
-68.11457533333336
+122.531242
  30
 0.0
  11
-4.750000000000001
+228.00000000000003
  21
-68.11457533333336
+135.53124200000002
  31
 0.0
   0
@@ -4251,13 +4107,13 @@ LINE
   8
 0
  10
-334.00000000000006
+342.00000000000006
  20
 98.531242
  30
 0.0
  11
-310.0
+318.0
  21
 98.531242
  31
@@ -4271,13 +4127,13 @@ DOTTED
   8
 0
  10
-334.00000000000006
+342.00000000000006
  20
 98.531242
  30
 0.0
  11
-334.00000000000006
+342.00000000000006
  21
 159.531242
  31
@@ -4289,13 +4145,13 @@ LINE
   8
 0
  10
-310.0
+318.0
  20
 159.531242
  30
 0.0
  11
-334.00000000000006
+342.00000000000006
  21
 159.531242
  31
@@ -4309,13 +4165,13 @@ DOTTED
   8
 0
  10
-310.0
+318.0
  20
 159.531242
  30
 0.0
  11
-310.0
+318.0
  21
 98.531242
  31
@@ -4327,13 +4183,13 @@ LINE
   8
 0
  10
-394.00000000000006
+402.00000000000006
  20
 98.531242
  30
 0.0
  11
-334.00000000000006
+342.00000000000006
  21
 98.531242
  31
@@ -4347,13 +4203,13 @@ DOTTED
   8
 0
  10
-394.00000000000006
+402.00000000000006
  20
 98.531242
  30
 0.0
  11
-394.00000000000006
+402.00000000000006
  21
 159.531242
  31
@@ -4365,13 +4221,13 @@ LINE
   8
 0
  10
-334.00000000000006
+342.00000000000006
  20
 159.531242
  30
 0.0
  11
-394.00000000000006
+402.00000000000006
  21
 159.531242
  31
@@ -4383,13 +4239,13 @@ LINE
   8
 0
  10
-418.00000000000006
+426.00000000000006
  20
 98.531242
  30
 0.0
  11
-394.00000000000006
+402.00000000000006
  21
 98.531242
  31
@@ -4403,13 +4259,13 @@ DOTTED
   8
 0
  10
-418.00000000000006
+426.00000000000006
  20
 98.531242
  30
 0.0
  11
-418.00000000000006
+426.00000000000006
  21
 159.531242
  31
@@ -4421,13 +4277,13 @@ LINE
   8
 0
  10
-394.00000000000006
+402.00000000000006
  20
 159.531242
  30
 0.0
  11
-418.00000000000006
+426.00000000000006
  21
 159.531242
  31
@@ -4439,13 +4295,13 @@ LINE
   8
 0
  10
-478.00000000000006
+486.00000000000006
  20
 98.531242
  30
 0.0
  11
-418.00000000000006
+426.00000000000006
  21
 98.531242
  31
@@ -4457,13 +4313,13 @@ LINE
   8
 0
  10
-478.00000000000006
+486.00000000000006
  20
 159.531242
  30
 0.0
  11
-478.00000000000006
+486.00000000000006
  21
 98.531242
  31
@@ -4475,13 +4331,13 @@ LINE
   8
 0
  10
-418.00000000000006
+426.00000000000006
  20
 159.531242
  30
 0.0
  11
-478.00000000000006
+486.00000000000006
  21
 159.531242
  31
@@ -4493,13 +4349,13 @@ LINE
   8
 0
  10
-300.0
+308.00000000000006
  20
 159.531242
  30
 0.0
  11
-310.0
+318.0
  21
 159.531242
  31
@@ -4511,13 +4367,13 @@ LINE
   8
 0
  10
-300.0
+308.00000000000006
  20
 98.531242
  30
 0.0
  11
-300.0
+308.00000000000006
  21
 159.531242
  31
@@ -4529,13 +4385,13 @@ LINE
   8
 0
  10
-310.0
+318.0
  20
 98.531242
  30
 0.0
  11
-300.0
+308.00000000000006
  21
 98.531242
  31
@@ -4547,13 +4403,13 @@ LINE
   8
 0
  10
-311.40000000000003
+319.4
  20
 108.531242
  30
 0.0
  11
-312.6
+320.6000000000001
  21
 108.531242
  31
@@ -4565,13 +4421,13 @@ LINE
   8
 0
  10
-312.6
+320.6000000000001
  20
 108.531242
  30
 0.0
  11
-312.6
+320.6000000000001
  21
 149.53124200000002
  31
@@ -4583,13 +4439,13 @@ LINE
   8
 0
  10
-312.6
+320.6000000000001
  20
 149.53124200000002
  30
 0.0
  11
-311.40000000000003
+319.4
  21
 149.53124200000002
  31
@@ -4601,13 +4457,13 @@ LINE
   8
 0
  10
-311.40000000000003
+319.4
  20
 149.53124200000002
  30
 0.0
  11
-311.40000000000003
+319.4
  21
 108.531242
  31
@@ -4619,13 +4475,13 @@ LINE
   8
 0
  10
-331.40000000000003
+339.40000000000003
  20
 109.031242
  30
 0.0
  11
-332.6000000000001
+340.6
  21
 109.031242
  31
@@ -4637,13 +4493,13 @@ LINE
   8
 0
  10
-332.6000000000001
+340.6
  20
 109.031242
  30
 0.0
  11
-332.6000000000001
+340.6
  21
 139.031242
  31
@@ -4655,13 +4511,13 @@ LINE
   8
 0
  10
-332.6000000000001
+340.6
  20
 139.031242
  30
 0.0
  11
-331.40000000000003
+339.40000000000003
  21
 139.031242
  31
@@ -4673,13 +4529,13 @@ LINE
   8
 0
  10
-331.40000000000003
+339.40000000000003
  20
 139.031242
  30
 0.0
  11
-331.40000000000003
+339.40000000000003
  21
 109.031242
  31
@@ -4691,13 +4547,13 @@ LINE
   8
 0
  10
-342.00000000000006
+350.0
  20
 150.031242
  30
 0.0
  11
-342.00000000000006
+350.0
  21
 132.03124200000002
  31
@@ -4709,13 +4565,13 @@ LINE
   8
 0
  10
-342.00000000000006
+350.0
  20
 132.03124200000002
  30
 0.0
  11
-372.00000000000006
+380.00000000000006
  21
 132.03124200000002
  31
@@ -4727,13 +4583,13 @@ LINE
   8
 0
  10
-372.00000000000006
+380.00000000000006
  20
 132.03124200000002
  30
 0.0
  11
-372.00000000000006
+380.00000000000006
  21
 150.031242
  31
@@ -4745,13 +4601,13 @@ LINE
   8
 0
  10
-372.00000000000006
+380.00000000000006
  20
 150.031242
  30
 0.0
  11
-342.00000000000006
+350.0
  21
 150.031242
  31
@@ -4763,13 +4619,13 @@ LINE
   8
 0
  10
-415.4
+423.40000000000003
  20
 108.531242
  30
 0.0
  11
-416.6000000000001
+424.6000000000001
  21
 108.531242
  31
@@ -4781,13 +4637,13 @@ LINE
   8
 0
  10
-416.6000000000001
+424.6000000000001
  20
 108.531242
  30
 0.0
  11
-416.6000000000001
+424.6000000000001
  21
 149.53124200000002
  31
@@ -4799,13 +4655,13 @@ LINE
   8
 0
  10
-416.6000000000001
+424.6000000000001
  20
 149.53124200000002
  30
 0.0
  11
-415.4
+423.40000000000003
  21
 149.53124200000002
  31
@@ -4817,13 +4673,13 @@ LINE
   8
 0
  10
-415.4
+423.40000000000003
  20
 149.53124200000002
  30
 0.0
  11
-415.4
+423.40000000000003
  21
 108.531242
  31
@@ -4835,13 +4691,13 @@ LINE
   8
 0
  10
-395.40000000000003
+403.40000000000003
  20
 109.031242
  30
 0.0
  11
-396.6000000000001
+404.6000000000001
  21
 109.031242
  31
@@ -4853,13 +4709,13 @@ LINE
   8
 0
  10
-396.6000000000001
+404.6000000000001
  20
 109.031242
  30
 0.0
  11
-396.6000000000001
+404.6000000000001
  21
 139.031242
  31
@@ -4871,13 +4727,13 @@ LINE
   8
 0
  10
-396.6000000000001
+404.6000000000001
  20
 139.031242
  30
 0.0
  11
-395.40000000000003
+403.40000000000003
  21
 139.031242
  31
@@ -4889,13 +4745,13 @@ LINE
   8
 0
  10
-395.40000000000003
+403.40000000000003
  20
 139.031242
  30
 0.0
  11
-395.40000000000003
+403.40000000000003
  21
 109.031242
  31
@@ -4907,13 +4763,13 @@ LINE
   8
 0
  10
-433.00000000000006
+441.00000000000006
  20
 112.531242
  30
 0.0
  11
-433.00000000000006
+441.00000000000006
  21
 105.531242
  31
@@ -4925,13 +4781,13 @@ LINE
   8
 0
  10
-433.00000000000006
+441.00000000000006
  20
 105.531242
  30
 0.0
  11
-453.00000000000006
+461.00000000000006
  21
 105.531242
  31
@@ -4943,13 +4799,13 @@ LINE
   8
 0
  10
-453.00000000000006
+461.00000000000006
  20
 105.531242
  30
 0.0
  11
-453.00000000000006
+461.00000000000006
  21
 112.531242
  31
@@ -4961,13 +4817,13 @@ LINE
   8
 0
  10
-453.00000000000006
+461.00000000000006
  20
 112.531242
  30
 0.0
  11
-433.00000000000006
+441.00000000000006
  21
 112.531242
  31
@@ -4979,13 +4835,13 @@ LINE
   8
 0
  10
-470.25000000000006
+478.25000000000006
  20
 120.9630601818182
  30
 0.0
  11
-470.25000000000006
+478.25000000000006
  21
 109.3721510909091
  31
@@ -4997,13 +4853,13 @@ LINE
   8
 0
  10
-470.25000000000006
+478.25000000000006
  20
 109.3721510909091
  30
 0.0
  11
-470.75000000000006
+478.75000000000006
  21
 109.3721510909091
  31
@@ -5015,13 +4871,13 @@ LINE
   8
 0
  10
-470.75000000000006
+478.75000000000006
  20
 109.3721510909091
  30
 0.0
  11
-470.75000000000006
+478.75000000000006
  21
 120.9630601818182
  31
@@ -5033,13 +4889,13 @@ LINE
   8
 0
  10
-470.75000000000006
+478.75000000000006
  20
 120.9630601818182
  30
 0.0
  11
-470.25000000000006
+478.25000000000006
  21
 120.9630601818182
  31
@@ -5051,13 +4907,13 @@ LINE
   8
 0
  10
-470.25000000000006
+478.25000000000006
  20
 148.69033290909093
  30
 0.0
  11
-470.25000000000006
+478.25000000000006
  21
 137.09942381818183
  31
@@ -5069,13 +4925,13 @@ LINE
   8
 0
  10
-470.25000000000006
+478.25000000000006
  20
 137.09942381818183
  30
 0.0
  11
-470.75000000000006
+478.75000000000006
  21
 137.09942381818183
  31
@@ -5087,13 +4943,13 @@ LINE
   8
 0
  10
-470.75000000000006
+478.75000000000006
  20
 137.09942381818183
  30
 0.0
  11
-470.75000000000006
+478.75000000000006
  21
 148.69033290909093
  31
@@ -5105,13 +4961,13 @@ LINE
   8
 0
  10
-470.75000000000006
+478.75000000000006
  20
 148.69033290909093
  30
 0.0
  11
-470.25000000000006
+478.25000000000006
  21
 148.69033290909093
  31
@@ -5123,13 +4979,13 @@ LINE
   8
 0
  10
-302.50000000000006
+310.50000000000006
  20
 109.6221510909091
  30
 0.0
  11
-307.50000000000006
+315.50000000000006
  21
 109.6221510909091
  31
@@ -5141,13 +4997,13 @@ LINE
   8
 0
  10
-307.50000000000006
+315.50000000000006
  20
 109.6221510909091
  30
 0.0
  11
-307.50000000000006
+315.50000000000006
  21
 120.7130601818182
  31
@@ -5159,13 +5015,13 @@ LINE
   8
 0
  10
-307.50000000000006
+315.50000000000006
  20
 120.7130601818182
  30
 0.0
  11
-302.50000000000006
+310.50000000000006
  21
 120.7130601818182
  31
@@ -5177,13 +5033,13 @@ LINE
   8
 0
  10
-302.50000000000006
+310.50000000000006
  20
 137.34942381818186
  30
 0.0
  11
-307.50000000000006
+315.50000000000006
  21
 137.34942381818186
  31
@@ -5195,13 +5051,13 @@ LINE
   8
 0
  10
-307.50000000000006
+315.50000000000006
  20
 137.34942381818186
  30
 0.0
  11
-307.50000000000006
+315.50000000000006
  21
 148.44033290909093
  31
@@ -5213,13 +5069,13 @@ LINE
   8
 0
  10
-307.50000000000006
+315.50000000000006
  20
 148.44033290909093
  30
 0.0
  11
-302.50000000000006
+310.50000000000006
  21
 148.44033290909093
  31
diff --git a/rocolib/output/PaddleboatWithCamera/tree.png b/rocolib/output/PaddleboatWithCamera/tree.png
index e228cf2e8dd81b80e29d9ca7b411cbb964de70ae..7f3529472a36b159f087cdd77024499489586ee2 100644
Binary files a/rocolib/output/PaddleboatWithCamera/tree.png and b/rocolib/output/PaddleboatWithCamera/tree.png differ