diff --git a/rocolib/builders/BoatPointFlatBuilder.py b/rocolib/builders/BoatPointFlatBuilder.py index 954af142e19de120f2db8e34c3dd4a3b19e16d4b..39111c42337f341be11b82f3d0311d38b2effce6 100644 --- a/rocolib/builders/BoatPointFlatBuilder.py +++ b/rocolib/builders/BoatPointFlatBuilder.py @@ -3,10 +3,10 @@ from rocolib.api.components.Component import Component c = Component() c.addParameter("length", 130, paramType="length") -c.addParameter("width", 50, paramType="length") -c.addParameter("depth", 40, paramType="length") +c.addParameter("width", 70, paramType="length") +c.addParameter("depth", 50, paramType="length") -c.addSubcomponent("boat","SimpleUChannel", inherit=True) +c.addSubcomponent("boat","SimpleUChannel") c.addSubcomponent("bow","BoatPoint") c.addSubcomponent("stern","BoatPoint") @@ -18,8 +18,8 @@ c.addSubcomponent("leftArm", "Rectangle") c.addSubcomponent("rightArm", "Rectangle") c.addSubcomponent("dcMount", "SimpleRectBeam") -c.addParameter("dx1", 10, parameterType="length") -c.addParameter("dy1", 10, parameterType="length") +c.addParameter("dx1", 8, parameterType="length") +c.addParameter("dy1", 8, parameterType="length") c.addSubcomponent("cutout1", "Cutout") c.addSubcomponent("cutout2", "Cutout") @@ -37,15 +37,15 @@ c.addConnection(("dcMount", "face2"), ("cutout2", "decoration"), mode="hole") -c.addConstraint(("leftArm", "w"), "width", "10") -c.addConstraint(("leftArm", "l"), "length", "30") +c.addConstraint(("leftArm", "w"), "width", "8") +c.addConstraint(("leftArm", "l"),"width", "50") #depth of boat -c.addConstraint(("rightArm", "w"), "width", "10") -c.addConstraint(("rightArm", "l"), "length", "30") +c.addConstraint(("rightArm", "w"), "width", "8") +c.addConstraint(("rightArm", "l"),"width", "50") c.addConstraint(("dcMount", "length"), "width") #boat width -c.addConstraint(("dcMount", "width"), "width", "10") -c.addConstraint(("dcMount", "depth"), "depth", "10") +c.addConstraint(("dcMount", "width"), "width", "8") +c.addConstraint(("dcMount", "depth"), "depth", "8") c.addConstraint(("stern", "point"), "width", "0") @@ -62,8 +62,8 @@ for i in range(2): c.addSubcomponent("split%d" %i, "SplitEdge") c.addConstraint(("split%d" %i, "toplength"), "length", "(x,)") -c.addConstraint(("split0", "botlength"), "length", "(10,x-10)") -c.addConstraint(("split1", "botlength"), "length", "(x-10,10)") +c.addConstraint(("split0", "botlength"), "length", "(8,x-8)") +c.addConstraint(("split1", "botlength"), "length", "(x-8,8)") # c.addSubcomponent("rect%d" % i, "Rectangle") # c.addConstraint(("rect%d" %i, "l"), "depth") # c.addConstraint(("rect%d" %i, "w"), "driveservo", "getDim(x, 'motorwidth')") diff --git a/rocolib/builders/ESP32StackBoatBuilder.py b/rocolib/builders/ESP32StackBoatBuilder.py index 3cf90fc712827760fbef4c9d4a91c8351c9ca980..55fd9400ff2646ab99aa0dbe821797690b22dee6 100644 --- a/rocolib/builders/ESP32StackBoatBuilder.py +++ b/rocolib/builders/ESP32StackBoatBuilder.py @@ -44,8 +44,8 @@ c.addConnection(("split0", "botedge1"), ("support1", "l"), angle=90) c.addConnection(("split1", "botedge0"), ("support2", "l"), angle=90) c.addConnection(("split1", "botedge1"), ("support3", "l"), angle=90) -c.addConnection(("splitside0", "topedge0"), ("boat", "staredge")) -c.addConnection(("splitside1", "topedge0"), ("boat", "portedge")) +# c.addConnection(("splitside0", "topedge0"), ("boat", "staredge")) +# c.addConnection(("splitside1", "topedge0"), ("boat", "portedge")) c.addConnection(("support0", "r"), ("splitside0", "botedge4"), tabWidth=5) c.addConnection(("support1", "r"), ("splitside0", "botedge5"), tabWidth=5) c.addConnection(("support2", "r"), ("splitside1", "botedge5"), tabWidth=5) diff --git a/rocolib/builders/SubESP32StackBuilder.py b/rocolib/builders/SubESP32StackBuilder.py index ad23ad15607a864ed40843fb2993704f2bf854e6..8e36918e304f05fd6d11c6d0e1f06e60534a8fee 100644 --- a/rocolib/builders/SubESP32StackBuilder.py +++ b/rocolib/builders/SubESP32StackBuilder.py @@ -7,7 +7,7 @@ c = Component() c.addSubcomponent("holder", "SimpleRectBeam") #Dimensions of the ESP32 Stack -c.addParameter("length", 51, paramType="length") +c.addParameter("length", 61, paramType="length") c.addParameter("brains", "esp32stack", paramType="dimension") c.addConstraint(("holder", "length"), "length") @@ -77,4 +77,4 @@ c.addConnection(("holder", "face1"), c.inheritAllInterfaces("holder", prefix=None) -c.toLibrary("SubESP32Stack") \ No newline at end of file +c.toLibrary("SubESP32Stack") diff --git a/rocolib/library/BoatBaseFlat.yaml b/rocolib/library/BoatBaseFlat.yaml index eec1ca2631fbd9324d88a605e4bd3ebf245cd8c0..219e3797398f10588543e4582ac26f427f50de6a 100644 --- a/rocolib/library/BoatBaseFlat.yaml +++ b/rocolib/library/BoatBaseFlat.yaml @@ -67,60 +67,18 @@ interfaces: interface: redge subcomponent: boat parameters: - boat._dx: - defaultValue: 0 - spec: - minValue: null - units: mm - valueType: (float, int) - boat._dy: - defaultValue: 0 - spec: - minValue: null - units: mm - valueType: (float, int) - boat._dz: - defaultValue: 0 - spec: - minValue: null - units: mm - valueType: (float, int) - boat._q_a: - defaultValue: 1 - spec: - maxValue: 1 - minValue: -1 - valueType: (int, float) - boat._q_i: - defaultValue: 0 - spec: - maxValue: 1 - minValue: -1 - valueType: (int, float) - boat._q_j: - defaultValue: 0 - spec: - maxValue: 1 - minValue: -1 - valueType: (int, float) - boat._q_k: - defaultValue: 0 - spec: - maxValue: 1 - minValue: -1 - valueType: (int, float) depth: - defaultValue: 40 + defaultValue: 50 spec: minValue: 0 units: mm valueType: (float, int) dx1: - defaultValue: 10 + defaultValue: 8 spec: parameterType: length dy1: - defaultValue: 10 + defaultValue: 8 spec: parameterType: length length: @@ -130,7 +88,7 @@ parameters: units: mm valueType: (float, int) width: - defaultValue: 50 + defaultValue: 70 spec: minValue: 0 units: mm @@ -141,20 +99,6 @@ subcomponents: classname: SimpleUChannel kwargs: {} parameters: - _dx: - parameter: boat._dx - _dy: - parameter: boat._dy - _dz: - parameter: boat._dz - _q_a: - parameter: boat._q_a - _q_i: - parameter: boat._q_i - _q_j: - parameter: boat._q_j - _q_k: - parameter: boat._q_k depth: parameter: depth length: @@ -192,20 +136,20 @@ subcomponents: kwargs: {} parameters: depth: - function: '10' + function: '8' parameter: depth length: parameter: width width: - function: '10' + function: '8' parameter: width leftArm: classname: Rectangle kwargs: {} parameters: l: - function: '30' - parameter: length + function: '50' + parameter: width w: parameter: depth subcomponent: dcMount @@ -214,8 +158,8 @@ subcomponents: kwargs: {} parameters: l: - function: '30' - parameter: length + function: '50' + parameter: width w: parameter: depth subcomponent: dcMount @@ -224,7 +168,7 @@ subcomponents: kwargs: {} parameters: botlength: - function: (10,x-10) + function: (8,x-8) parameter: length toplength: function: (x,) @@ -234,7 +178,7 @@ subcomponents: kwargs: {} parameters: botlength: - function: (x-10,10) + function: (x-8,8) parameter: length toplength: function: (x,) diff --git a/rocolib/library/ESP32StackBoat.yaml b/rocolib/library/ESP32StackBoat.yaml index 875518782afd13292ea5f9f1dfaaa9677e582069..9c81ee1b6e241d75b3ed040c61f7bf35cfe10f5f 100644 --- a/rocolib/library/ESP32StackBoat.yaml +++ b/rocolib/library/ESP32StackBoat.yaml @@ -11,18 +11,6 @@ connections: - - split1 - topedge0 - {} - connection10: - - - support2 - - r - - - splitside1 - - botedge5 - - tabWidth: 5 - connection11: - - - support3 - - r - - - splitside1 - - botedge6 - - tabWidth: 5 connection2: - - split0 - botedge0 @@ -48,85 +36,43 @@ connections: - l - angle: 90 connection6: - - - splitside0 - - topedge0 - - - boat - - staredge - - {} - connection7: - - - splitside1 - - topedge0 - - - boat - - portedge - - {} - connection8: - - support0 - r - - splitside0 - botedge4 - tabWidth: 5 - connection9: + connection7: - - support1 - r - - splitside0 - botedge5 - tabWidth: 5 + connection8: + - - support2 + - r + - - splitside1 + - botedge5 + - tabWidth: 5 + connection9: + - - support3 + - r + - - splitside1 + - botedge6 + - tabWidth: 5 interfaces: {} parameters: - boat.boat._dx: - defaultValue: 0 - spec: - minValue: null - units: mm - valueType: (float, int) - boat.boat._dy: - defaultValue: 0 - spec: - minValue: null - units: mm - valueType: (float, int) - boat.boat._dz: - defaultValue: 0 - spec: - minValue: null - units: mm - valueType: (float, int) - boat.boat._q_a: - defaultValue: 1 - spec: - maxValue: 1 - minValue: -1 - valueType: (int, float) - boat.boat._q_i: - defaultValue: 0 - spec: - maxValue: 1 - minValue: -1 - valueType: (int, float) - boat.boat._q_j: - defaultValue: 0 - spec: - maxValue: 1 - minValue: -1 - valueType: (int, float) - boat.boat._q_k: - defaultValue: 0 - spec: - maxValue: 1 - minValue: -1 - valueType: (int, float) boat.depth: - defaultValue: 40 + defaultValue: 50 spec: minValue: 0 units: mm valueType: (float, int) boat.dx1: - defaultValue: 10 + defaultValue: 8 spec: parameterType: length boat.dy1: - defaultValue: 10 + defaultValue: 8 spec: parameterType: length boat.length: @@ -136,7 +82,7 @@ parameters: units: mm valueType: (float, int) boat.width: - defaultValue: 50 + defaultValue: 70 spec: minValue: 0 units: mm @@ -169,20 +115,6 @@ subcomponents: classname: BoatBaseFlat kwargs: {} parameters: - boat._dx: - parameter: boat.boat._dx - boat._dy: - parameter: boat.boat._dy - boat._dz: - parameter: boat.boat._dz - boat._q_a: - parameter: boat.boat._q_a - boat._q_i: - parameter: boat.boat._q_i - boat._q_j: - parameter: boat.boat._q_j - boat._q_k: - parameter: boat.boat._q_k depth: parameter: boat.depth dx1: diff --git a/rocolib/library/SubESP32Stack.yaml b/rocolib/library/SubESP32Stack.yaml index 2c690e6ffc5998598916a66a3399a987adc25e94..c465dd7cf2bcac153709c0050b104c4961d30057 100644 --- a/rocolib/library/SubESP32Stack.yaml +++ b/rocolib/library/SubESP32Stack.yaml @@ -108,12 +108,12 @@ parameters: spec: parameterType: length length: - defaultValue: 51 + defaultValue: 61 spec: minValue: 0 units: mm valueType: (float, int) -source: ..\builders\SubESP32StackBuilder.py +source: ../builders/SubESP32StackBuilder.py subcomponents: header: classname: Header diff --git a/rocolib/output/.DS_Store b/rocolib/output/.DS_Store index 88ee4cfec894fa55a72f28990f04a1d5192fc6a8..da2268ce275999b3d4cab5618b69c56cb1653f87 100644 Binary files a/rocolib/output/.DS_Store and b/rocolib/output/.DS_Store differ diff --git a/rocolib/output/BoatBaseFlat/graph-anim.svg b/rocolib/output/BoatBaseFlat/graph-anim.svg index 8eb182c2ae30ef3049f9ebc4176eb1d2ee82fd4a..9863c898cc158d7cef5c4add902299e7b22fdbad 100644 --- a/rocolib/output/BoatBaseFlat/graph-anim.svg +++ b/rocolib/output/BoatBaseFlat/graph-anim.svg @@ -1,133 +1,142 @@ <?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="258.333333mm" version="1.1" viewBox="0.000000 0.000000 234.031242 258.333333" width="234.031242mm"> +<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="361.666667mm" version="1.1" viewBox="0.000000 0.000000 250.710678 361.666667" width="250.710678mm"> <defs/> - <line stroke="#000000" x1="184.0312423743285" x2="174.0312423743285" y1="35.00000000000001" y2="35.00000000000001"/> - <line opacity="0.5" stroke="#0000ff" x1="184.0312423743285" x2="184.0312423743285" y1="35.00000000000001" y2="85.00000000000001"/> - <line stroke="#000000" x1="174.0312423743285" x2="184.0312423743285" y1="85.00000000000001" y2="85.00000000000001"/> - <line opacity="0.5" stroke="#0000ff" x1="174.0312423743285" x2="174.0312423743285" y1="85.00000000000001" y2="35.00000000000001"/> - <line opacity="0.5" stroke="#0000ff" x1="194.03124237432849" x2="194.03124237432849" y1="35.00000000000001" y2="85.00000000000001"/> - <line stroke="#000000" x1="194.03124237432849" x2="194.03124237432849" y1="35.00000000000001" y2="5.000000000000001"/> - <line stroke="#000000" x1="184.0312423743285" x2="184.0312423743285" y1="5.000000000000001" y2="35.00000000000001"/> - <line stroke="#000000" x1="184.0312423743285" x2="184.0312423743285" y1="0.0" y2="5.000000000000001"/> - <line stroke="#000000" x1="194.03124237432849" x2="184.0312423743285" y1="0.0" y2="0.0"/> - <line stroke="#000000" x1="194.03124237432849" x2="194.03124237432849" y1="5.000000000000001" y2="0.0"/> - <line stroke="#000000" x1="204.0312423743285" x2="194.03124237432849" y1="35.00000000000001" y2="35.00000000000001"/> - <line opacity="0.5" stroke="#0000ff" x1="204.0312423743285" x2="204.0312423743285" y1="35.00000000000001" y2="85.00000000000001"/> - <line stroke="#000000" x1="194.03124237432849" x2="204.0312423743285" y1="85.00000000000001" y2="85.00000000000001"/> - <line stroke="#000000" x1="214.0312423743285" x2="204.0312423743285" y1="35.00000000000001" y2="35.00000000000001"/> - <line stroke="#000000" x1="214.0312423743285" x2="214.0312423743285" y1="85.00000000000001" y2="35.00000000000001"/> - <line stroke="#000000" x1="204.0312423743285" x2="214.0312423743285" y1="85.00000000000001" y2="85.00000000000001"/> - <line stroke="#000000" x1="184.0312423743285" x2="184.0312423743285" y1="85.00000000000001" y2="115.00000000000001"/> - <line stroke="#000000" x1="194.03124237432849" x2="194.03124237432849" y1="115.00000000000001" y2="85.00000000000001"/> - <line opacity="1.0" stroke="#ff0000" x1="194.03124237432849" x2="184.0312423743285" y1="115.00000000000001" y2="115.00000000000001"/> - <line stroke="#000000" x1="184.0312423743285" x2="64.0312423743285" y1="115.00000000000001" y2="115.00000000000001"/> - <line stroke="#000000" x1="194.03124237432849" x2="194.03124237432849" y1="115.00000000000001" y2="115.00000000000001"/> - <line stroke="#000000" x1="64.0312423743285" x2="64.0312423743285" y1="115.00000000000001" y2="115.00000000000001"/> - <line opacity="0.5" stroke="#0000ff" x1="64.0312423743285" x2="194.03124237432849" y1="155.0" y2="155.0"/> - <line opacity="0.1475836176504332" stroke="#0000ff" x1="64.0312423743285" x2="64.0312423743285" y1="115.00000000000001" y2="155.0"/> - <line opacity="1.0" stroke="#ff0000" x1="42.35246120943851" x2="64.0312423743285" y1="115.00000000000001" y2="155.0"/> - <line opacity="0.9666666666666667" stroke="#ff0000" x1="42.35246120943851" x2="64.0312423743285" y1="115.00000000000001" y2="115.00000000000001"/> - <line stroke="#000000" x1="42.35246120943851" x2="30.5176577740279" y1="115.00000000000001" y2="133.1633416650236"/> - <line opacity="1.0" stroke="#0000ff" x1="30.5176577740279" x2="64.0312423743285" y1="133.1633416650236" y2="155.0"/> - <line opacity="0.4098736980491481" stroke="#0000ff" x1="0.0" x2="64.0312423743285" y1="180.0" y2="155.0"/> - <line stroke="#000000" x1="18.682854338617293" x2="0.0" y1="151.3266833300472" y2="180.0"/> - <line stroke="#000000" x1="30.5176577740279" x2="18.682854338617293" y1="133.16334166502358" y2="151.3266833300472"/> - <line opacity="0.21477671252272268" stroke="#0000ff" x1="64.03124237432847" x2="64.03124237432847" y1="155.0" y2="180.0"/> - <line opacity="0.21477671252272268" stroke="#0000ff" x1="64.03124237432851" x2="64.03124237432851" y1="180.0" y2="205.00000000000003"/> - <line opacity="0.4098736980491481" stroke="#0000ff" x1="2.8421709430404014e-14" x2="64.03124237432851" y1="180.0" y2="205.00000000000003"/> - <line opacity="0.5" stroke="#0000ff" x1="64.0312423743285" x2="194.03124237432846" y1="205.00000000000003" y2="205.00000000000003"/> - <line opacity="0.5" stroke="#0000ff" x1="194.03124237432846" x2="194.03124237432846" y1="180.0" y2="155.0"/> - <line opacity="0.5" stroke="#0000ff" x1="194.03124237432846" x2="194.03124237432846" y1="205.00000000000003" y2="180.0"/> - <line stroke="#000000" x1="234.03124237432846" x2="234.03124237432846" y1="195.0" y2="155.0"/> - <line stroke="#000000" x1="234.03124237432846" x2="234.03124237432846" y1="180.0" y2="195.0"/> - <line opacity="1.0" stroke="#0000ff" x1="194.03124237432846" x2="234.03124237432846" y1="155.0" y2="155.0"/> - <line opacity="1.0" stroke="#ff0000" x1="194.03124237432846" x2="234.03124237432846" y1="155.0" y2="115.00000000000003"/> - <line stroke="#000000" x1="234.03124237432846" x2="234.03124237432846" y1="155.0" y2="115.00000000000003"/> - <line opacity="0.9666666666666667" stroke="#ff0000" x1="194.03124237432846" x2="234.03124237432846" y1="115.00000000000003" y2="115.00000000000004"/> - <line opacity="0.5" stroke="#0000ff" x1="194.03124237432846" x2="194.03124237432846" y1="155.0" y2="115.00000000000003"/> - <line stroke="#000000" x1="194.03124237432846" x2="194.03124237432846" y1="101.6666666666667" y2="115.00000000000004"/> - <line stroke="#000000" x1="234.03124237432846" x2="194.03124237432846" y1="101.66666666666671" y2="101.6666666666667"/> - <line stroke="#000000" x1="234.03124237432846" x2="234.03124237432846" y1="115.00000000000004" y2="101.66666666666671"/> - <line opacity="1.0" stroke="#0000ff" x1="234.03124237432849" x2="194.03124237432849" y1="205.00000000000003" y2="205.00000000000003"/> - <line stroke="#000000" x1="234.03124237432849" x2="234.03124237432849" y1="165.00000000000003" y2="180.0"/> - <line stroke="#000000" x1="234.03124237432849" x2="234.03124237432849" y1="205.00000000000003" y2="165.00000000000003"/> - <line stroke="#000000" x1="234.03124237432849" x2="234.03124237432849" y1="245.0" y2="205.00000000000003"/> - <line opacity="1.0" stroke="#ff0000" x1="234.03124237432849" x2="194.03124237432846" y1="245.0" y2="205.00000000000003"/> - <line opacity="0.5" stroke="#0000ff" x1="194.03124237432846" x2="194.03124237432846" y1="245.00000000000006" y2="205.00000000000006"/> - <line opacity="0.9666666666666667" stroke="#ff0000" x1="234.03124237432846" x2="194.03124237432846" y1="245.00000000000003" y2="245.00000000000006"/> - <line opacity="0.1475836176504332" stroke="#0000ff" x1="64.03124237432853" x2="64.03124237432853" y1="205.00000000000009" y2="245.00000000000009"/> - <line opacity="0.9666666666666667" stroke="#ff0000" x1="64.03124237432853" x2="42.35246120943856" y1="245.00000000000006" y2="245.00000000000009"/> - <line opacity="1.0" stroke="#ff0000" x1="64.03124237432853" x2="42.35246120943856" y1="205.00000000000009" y2="245.00000000000009"/> - <line stroke="#000000" x1="64.03124237432851" x2="64.03124237432851" y1="252.2262603882967" y2="245.00000000000006"/> - <line stroke="#000000" x1="42.35246120943854" x2="64.03124237432851" y1="252.2262603882967" y2="252.2262603882967"/> - <line stroke="#000000" x1="42.35246120943854" x2="42.35246120943854" y1="245.00000000000006" y2="252.2262603882967"/> - <line opacity="1.0" stroke="#0000ff" x1="64.03124237432851" x2="30.517657774027928" y1="205.00000000000009" y2="226.83665833497648"/> - <line stroke="#000000" x1="30.517657774027928" x2="42.35246120943854" y1="226.83665833497648" y2="245.00000000000006"/> - <line stroke="#000000" x1="18.68285433861732" x2="30.517657774027928" y1="208.6733166699529" y2="226.83665833497648"/> - <line stroke="#000000" x1="2.8421709430404014e-14" x2="18.68285433861732" y1="180.00000000000009" y2="208.6733166699529"/> - <line stroke="#000000" x1="184.03124237432849" x2="194.03124237432846" y1="245.00000000000003" y2="245.00000000000003"/> - <line stroke="#000000" x1="64.03124237432853" x2="184.03124237432849" y1="245.00000000000006" y2="245.00000000000003"/> - <line stroke="#000000" x1="64.03124237432853" x2="64.03124237432853" y1="245.00000000000006" y2="245.00000000000006"/> - <line stroke="#000000" x1="194.03124237432846" x2="194.03124237432846" y1="245.00000000000003" y2="245.00000000000003"/> - <line stroke="#000000" x1="234.03124237432846" x2="234.03124237432846" y1="258.33333333333337" y2="245.00000000000003"/> - <line stroke="#000000" x1="194.03124237432846" x2="234.03124237432846" y1="258.33333333333337" y2="258.33333333333337"/> - <line stroke="#000000" x1="194.03124237432846" x2="194.03124237432846" y1="245.00000000000003" y2="258.33333333333337"/> - <line stroke="#000000" x1="42.35246120943851" x2="42.35246120943851" y1="107.77373961170336" y2="115.00000000000001"/> - <line stroke="#000000" x1="64.0312423743285" x2="42.35246120943851" y1="107.77373961170336" y2="107.77373961170336"/> - <line stroke="#000000" x1="64.0312423743285" x2="64.0312423743285" y1="115.00000000000001" y2="107.77373961170336"/> - <line stroke="#000000" x1="164.0312423743285" x2="174.0312423743285" y1="85.00000000000001" y2="85.00000000000001"/> - <line stroke="#000000" x1="164.0312423743285" x2="164.0312423743285" y1="35.00000000000001" y2="85.00000000000001"/> - <line stroke="#000000" x1="174.0312423743285" x2="164.0312423743285" y1="35.00000000000001" y2="35.00000000000001"/> - <line stroke="#888888" x1="174.0312423743285" x2="184.0312423743285" y1="55.00000000000001" y2="55.00000000000001"/> - <line stroke="#888888" x1="184.0312423743285" x2="184.0312423743285" y1="55.00000000000001" y2="65.0"/> - <line stroke="#888888" x1="184.0312423743285" x2="174.0312423743285" y1="65.0" y2="65.0"/> - <line stroke="#888888" x1="174.0312423743285" x2="174.0312423743285" y1="65.0" y2="55.00000000000001"/> - <line stroke="#888888" x1="190.69790904099517" x2="190.69790904099517" y1="1.2500000000000002" y2="3.7500000000000004"/> - <line stroke="#888888" x1="190.69790904099517" x2="187.36457570766183" y1="3.7500000000000004" y2="3.7500000000000004"/> - <line stroke="#888888" x1="187.36457570766183" x2="187.36457570766183" y1="3.7500000000000004" y2="1.2500000000000002"/> - <line stroke="#888888" x1="194.03124237432849" x2="204.0312423743285" y1="55.00000000000001" y2="55.00000000000001"/> - <line stroke="#888888" x1="204.0312423743285" x2="204.0312423743285" y1="55.00000000000001" y2="65.0"/> - <line stroke="#888888" x1="204.0312423743285" x2="194.03124237432849" y1="65.0" y2="65.0"/> - <line stroke="#888888" x1="194.03124237432849" x2="194.03124237432849" y1="65.0" y2="55.00000000000001"/> - <line stroke="#888888" x1="206.2812423743285" x2="206.2812423743285" y1="68.58333333333336" y2="51.41666666666668"/> - <line stroke="#888888" x1="206.2812423743285" x2="206.7812423743285" y1="51.41666666666668" y2="51.41666666666668"/> - <line stroke="#888888" x1="206.7812423743285" x2="206.7812423743285" y1="51.41666666666668" y2="68.58333333333336"/> - <line stroke="#888888" x1="206.7812423743285" x2="206.2812423743285" y1="68.58333333333336" y2="68.58333333333336"/> - <line stroke="#888888" x1="31.45949773015906" x2="27.241605022501663" y1="142.10350895639252" y2="148.57687598557078"/> - <line stroke="#888888" x1="27.241605022501663" x2="26.822685214997907" y1="148.57687598557078" y2="148.30391775638358"/> - <line stroke="#888888" x1="26.822685214997907" x2="31.040577922655306" y1="148.30391775638358" y2="141.8305507272053"/> - <line stroke="#888888" x1="31.040577922655306" x2="31.45949773015906" y1="141.8305507272053" y2="142.10350895639252"/> - <line stroke="#888888" x1="223.78124237432846" x2="223.78124237432846" y1="181.91666666666666" y2="168.08333333333334"/> - <line stroke="#888888" x1="223.78124237432846" x2="224.28124237432849" y1="168.08333333333334" y2="168.08333333333334"/> - <line stroke="#888888" x1="224.28124237432849" x2="224.28124237432849" y1="168.08333333333334" y2="181.91666666666666"/> - <line stroke="#888888" x1="224.28124237432849" x2="223.78124237432846" y1="181.91666666666666" y2="181.91666666666666"/> - <line stroke="#888888" x1="220.69790904099514" x2="220.69790904099514" y1="105.00000000000004" y2="111.6666666666667"/> - <line stroke="#888888" x1="220.69790904099514" x2="207.36457570766183" y1="111.6666666666667" y2="111.6666666666667"/> - <line stroke="#888888" x1="207.36457570766183" x2="207.36457570766183" y1="111.6666666666667" y2="105.00000000000004"/> - <line stroke="#888888" x1="223.78124237432846" x2="223.78124237432846" y1="191.91666666666669" y2="178.08333333333337"/> - <line stroke="#888888" x1="223.78124237432846" x2="224.28124237432849" y1="178.08333333333337" y2="178.08333333333337"/> - <line stroke="#888888" x1="224.28124237432849" x2="224.28124237432849" y1="178.08333333333337" y2="191.91666666666669"/> - <line stroke="#888888" x1="224.28124237432849" x2="223.78124237432846" y1="191.91666666666669" y2="191.91666666666669"/> - <line stroke="#888888" x1="49.57872159773519" x2="49.57872159773519" y1="250.41969529122255" y2="246.8065650970742"/> - <line stroke="#888888" x1="49.57872159773519" x2="56.804981986031855" y1="246.8065650970742" y2="246.8065650970742"/> - <line stroke="#888888" x1="56.804981986031855" x2="56.804981986031855" y1="246.8065650970742" y2="250.41969529122255"/> - <line stroke="#888888" x1="27.24160502250169" x2="31.459497730159118" y1="211.4231240144293" y2="217.8964910436076"/> - <line stroke="#888888" x1="31.459497730159118" x2="31.040577922655363" y1="217.8964910436076" y2="218.1694492727948"/> - <line stroke="#888888" x1="31.040577922655363" x2="26.822685214997907" y1="218.1694492727948" y2="211.69608224361647"/> - <line stroke="#888888" x1="26.822685214997907" x2="27.24160502250169" y1="211.69608224361647" y2="211.4231240144293"/> - <line stroke="#888888" x1="187.1145757076618" x2="190.94790904099517" y1="241.00000000000003" y2="241.00000000000003"/> - <line stroke="#888888" x1="190.94790904099517" x2="190.94790904099517" y1="241.00000000000003" y2="241.50000000000003"/> - <line stroke="#888888" x1="190.94790904099517" x2="187.1145757076618" y1="241.50000000000003" y2="241.50000000000003"/> - <line stroke="#888888" x1="187.1145757076618" x2="187.1145757076618" y1="241.50000000000003" y2="241.00000000000003"/> - <line stroke="#888888" x1="207.36457570766183" x2="207.36457570766183" y1="255.00000000000003" y2="248.33333333333337"/> - <line stroke="#888888" x1="207.36457570766183" x2="220.69790904099514" y1="248.33333333333337" y2="248.33333333333337"/> - <line stroke="#888888" x1="220.69790904099514" x2="220.69790904099514" y1="248.33333333333337" y2="255.00000000000003"/> - <line stroke="#888888" x1="56.80498198603183" x2="56.80498198603183" y1="109.58030470877752" y2="113.19343490292586"/> - <line stroke="#888888" x1="56.80498198603183" x2="49.57872159773516" y1="113.19343490292586" y2="113.19343490292586"/> - <line stroke="#888888" x1="49.57872159773516" x2="49.57872159773516" y1="113.19343490292586" y2="109.58030470877752"/> - <line stroke="#888888" x1="166.53124237432849" x2="166.53124237432849" y1="51.66666666666668" y2="46.66666666666667"/> - <line stroke="#888888" x1="166.53124237432849" x2="171.53124237432849" y1="46.66666666666667" y2="51.66666666666668"/> - <line stroke="#888888" x1="171.53124237432849" x2="171.53124237432849" y1="51.66666666666668" y2="68.33333333333334"/> - <line stroke="#888888" x1="171.53124237432849" x2="166.53124237432849" y1="68.33333333333334" y2="73.33333333333336"/> - <line stroke="#888888" x1="166.53124237432849" x2="166.53124237432849" y1="73.33333333333336" y2="68.33333333333334"/> + <line stroke="#000000" x1="192.71067811865487" x2="184.71067811865484" y1="55.00000000000001" y2="55.00000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="192.71067811865487" x2="192.71067811865487" y1="55.00000000000001" y2="125.00000000000001"/> + <line stroke="#000000" x1="184.71067811865484" x2="192.71067811865487" y1="125.00000000000001" y2="125.00000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="184.71067811865484" x2="184.71067811865484" y1="125.00000000000001" y2="55.00000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="200.71067811865487" x2="200.71067811865487" y1="55.00000000000001" y2="125.00000000000001"/> + <line stroke="#000000" x1="200.71067811865487" x2="200.71067811865487" y1="55.00000000000001" y2="5.000000000000001"/> + <line stroke="#000000" x1="192.71067811865487" x2="192.71067811865487" y1="5.000000000000001" y2="55.00000000000001"/> + <line stroke="#000000" x1="192.71067811865487" x2="192.71067811865487" y1="0.0" y2="5.000000000000001"/> + <line stroke="#000000" x1="200.71067811865487" x2="192.71067811865487" y1="0.0" y2="0.0"/> + <line stroke="#000000" x1="200.71067811865487" x2="200.71067811865487" y1="5.000000000000001" y2="0.0"/> + <line stroke="#000000" x1="208.71067811865487" x2="200.71067811865487" y1="55.00000000000001" y2="55.00000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="208.71067811865487" x2="208.71067811865487" y1="55.00000000000001" y2="125.00000000000001"/> + <line stroke="#000000" x1="200.71067811865487" x2="208.71067811865487" y1="125.00000000000001" y2="125.00000000000001"/> + <line stroke="#000000" x1="216.71067811865487" x2="208.71067811865487" y1="55.00000000000001" y2="55.00000000000001"/> + <line stroke="#000000" x1="216.71067811865487" x2="216.71067811865487" y1="125.00000000000001" y2="55.00000000000001"/> + <line stroke="#000000" x1="208.71067811865487" x2="216.71067811865487" y1="125.00000000000001" y2="125.00000000000001"/> + <line stroke="#000000" x1="192.71067811865487" x2="192.71067811865487" y1="125.00000000000001" y2="175.0"/> + <line stroke="#000000" x1="200.71067811865487" x2="200.71067811865487" y1="175.0" y2="125.00000000000001"/> + <line opacity="1.0" stroke="#ff0000" x1="200.71067811865487" x2="192.71067811865487" y1="175.0" y2="175.0"/> + <line stroke="#000000" x1="192.71067811865487" x2="70.71067811865484" y1="175.0" y2="175.0"/> + <line stroke="#000000" x1="200.71067811865487" x2="200.71067811865487" y1="175.0" y2="175.0"/> + <line stroke="#000000" x1="70.71067811865484" x2="70.71067811865484" y1="175.0" y2="175.0"/> + <line opacity="0.5" stroke="#0000ff" x1="70.71067811865484" x2="200.71067811865487" y1="225.00000000000003" y2="225.00000000000003"/> + <line opacity="0.1944001122142148" stroke="#0000ff" x1="70.71067811865484" x2="70.71067811865484" y1="175.0" y2="225.00000000000003"/> + <line opacity="1.0" stroke="#ff0000" x1="38.45101131870072" x2="70.71067811865485" y1="175.0" y2="225.00000000000003"/> + <line opacity="0.9666666666666667" stroke="#ff0000" x1="38.45101131870072" x2="70.71067811865485" y1="175.0" y2="175.0"/> + <line stroke="#000000" x1="38.4510113187007" x2="25.155006321979045" y1="175.0" y2="204.3922158601766"/> + <line opacity="1.0" stroke="#0000ff" x1="25.155006321979045" x2="70.71067811865483" y1="204.3922158601766" y2="225.00000000000003"/> + <line opacity="0.367097734030027" stroke="#0000ff" x1="8.526512829121203e-14" x2="70.71067811865484" y1="260.0" y2="225.00000000000003"/> + <line stroke="#000000" x1="11.859001325257395" x2="8.526512829121203e-14" y1="233.78443172035318" y2="260.0"/> + <line stroke="#000000" x1="25.155006321979076" x2="11.859001325257395" y1="204.3922158601766" y2="233.78443172035318"/> + <line opacity="0.25" stroke="#0000ff" x1="70.71067811865484" x2="70.71067811865484" y1="225.00000000000003" y2="260.0"/> + <line opacity="0.25" stroke="#0000ff" x1="70.71067811865484" x2="70.71067811865484" y1="260.0" y2="295.0"/> + <line opacity="0.367097734030027" stroke="#0000ff" x1="8.526512829121203e-14" x2="70.71067811865484" y1="260.0" y2="295.0"/> + <line opacity="0.5" stroke="#0000ff" x1="70.71067811865484" x2="200.7106781186548" y1="295.0" y2="295.0"/> + <line opacity="0.5" stroke="#0000ff" x1="200.7106781186548" x2="200.7106781186548" y1="260.0" y2="225.00000000000003"/> + <line opacity="0.5" stroke="#0000ff" x1="200.7106781186548" x2="200.7106781186548" y1="295.0" y2="260.0"/> + <line stroke="#000000" x1="250.71067811865484" x2="250.71067811865484" y1="275.00000000000006" y2="225.00000000000003"/> + <line stroke="#000000" x1="250.71067811865484" x2="250.71067811865484" y1="260.0" y2="275.00000000000006"/> + <line opacity="1.0" stroke="#0000ff" x1="200.7106781186548" x2="250.71067811865484" y1="225.00000000000003" y2="225.00000000000003"/> + <line opacity="1.0" stroke="#ff0000" x1="200.7106781186548" x2="250.71067811865484" y1="225.00000000000003" y2="175.00000000000003"/> + <line stroke="#000000" x1="250.71067811865484" x2="250.71067811865484" y1="225.00000000000003" y2="175.00000000000003"/> + <line opacity="0.9666666666666667" stroke="#ff0000" x1="200.7106781186548" x2="250.71067811865484" y1="175.0" y2="175.0"/> + <line opacity="0.5" stroke="#0000ff" x1="200.7106781186548" x2="200.7106781186548" y1="225.00000000000003" y2="175.0"/> + <line stroke="#000000" x1="200.7106781186548" x2="200.7106781186548" y1="158.33333333333337" y2="175.0"/> + <line stroke="#000000" x1="250.71067811865484" x2="200.7106781186548" y1="158.33333333333337" y2="158.33333333333337"/> + <line stroke="#000000" x1="250.71067811865484" x2="250.71067811865484" y1="175.0" y2="158.33333333333337"/> + <line opacity="1.0" stroke="#0000ff" x1="250.71067811865484" x2="200.7106781186548" y1="295.0" y2="295.0"/> + <line stroke="#000000" x1="250.71067811865484" x2="250.71067811865484" y1="245.00000000000003" y2="260.0"/> + <line stroke="#000000" x1="250.71067811865484" x2="250.71067811865484" y1="295.0" y2="245.00000000000003"/> + <line stroke="#000000" x1="250.71067811865484" x2="250.71067811865484" y1="345.00000000000006" y2="295.0"/> + <line opacity="1.0" stroke="#ff0000" x1="250.71067811865484" x2="200.7106781186548" y1="345.00000000000006" y2="295.0"/> + <line opacity="0.5" stroke="#0000ff" x1="200.71067811865478" x2="200.71067811865478" y1="345.00000000000006" y2="295.0"/> + <line opacity="0.9666666666666667" stroke="#ff0000" x1="250.71067811865484" x2="200.71067811865478" y1="345.00000000000006" y2="345.00000000000006"/> + <line opacity="0.1944001122142148" stroke="#0000ff" x1="70.7106781186548" x2="70.7106781186548" y1="295.0" y2="345.00000000000006"/> + <line opacity="0.9666666666666667" stroke="#ff0000" x1="70.71067811865481" x2="38.45101131870067" y1="345.00000000000006" y2="345.00000000000006"/> + <line opacity="1.0" stroke="#ff0000" x1="70.7106781186548" x2="38.45101131870067" y1="295.0" y2="345.00000000000006"/> + <line stroke="#000000" x1="70.7106781186548" x2="70.7106781186548" y1="355.75322226665145" y2="345.00000000000006"/> + <line stroke="#000000" x1="38.45101131870067" x2="70.7106781186548" y1="355.75322226665145" y2="355.75322226665145"/> + <line stroke="#000000" x1="38.45101131870067" x2="38.45101131870067" y1="345.00000000000006" y2="355.75322226665145"/> + <line opacity="1.0" stroke="#0000ff" x1="70.71067811865478" x2="25.15500632197899" y1="295.0" y2="315.6077841398234"/> + <line stroke="#000000" x1="25.15500632197899" x2="38.45101131870067" y1="315.6077841398234" y2="345.00000000000006"/> + <line stroke="#000000" x1="11.859001325257312" x2="25.15500632197899" y1="286.21556827964685" y2="315.6077841398234"/> + <line stroke="#000000" x1="0.0" x2="11.859001325257312" y1="260.0" y2="286.21556827964685"/> + <line stroke="#000000" x1="192.7106781186548" x2="200.71067811865478" y1="345.00000000000006" y2="345.00000000000006"/> + <line stroke="#000000" x1="70.7106781186548" x2="192.7106781186548" y1="345.00000000000006" y2="345.00000000000006"/> + <line stroke="#000000" x1="70.7106781186548" x2="70.7106781186548" y1="345.00000000000006" y2="345.00000000000006"/> + <line stroke="#000000" x1="200.71067811865478" x2="200.71067811865478" y1="345.00000000000006" y2="345.00000000000006"/> + <line stroke="#000000" x1="250.71067811865484" x2="250.71067811865484" y1="361.66666666666674" y2="345.00000000000006"/> + <line stroke="#000000" x1="200.71067811865478" x2="250.71067811865484" y1="361.66666666666674" y2="361.66666666666674"/> + <line stroke="#000000" x1="200.71067811865478" x2="200.71067811865478" y1="345.00000000000006" y2="361.66666666666674"/> + <line stroke="#000000" x1="38.45101131870072" x2="38.45101131870072" y1="164.2467777333486" y2="175.0"/> + <line stroke="#000000" x1="70.71067811865484" x2="38.45101131870072" y1="164.2467777333486" y2="164.2467777333486"/> + <line stroke="#000000" x1="70.71067811865484" x2="70.71067811865484" y1="175.0" y2="164.2467777333486"/> + <line stroke="#000000" x1="176.71067811865487" x2="184.71067811865484" y1="125.00000000000001" y2="125.00000000000001"/> + <line stroke="#000000" x1="176.71067811865487" x2="176.71067811865487" y1="55.00000000000001" y2="125.00000000000001"/> + <line stroke="#000000" x1="184.71067811865484" x2="176.71067811865487" y1="55.00000000000001" y2="55.00000000000001"/> + <line stroke="#888888" x1="184.71067811865484" x2="192.71067811865487" y1="86.00000000000001" y2="86.00000000000001"/> + <line stroke="#888888" x1="192.71067811865487" x2="192.71067811865487" y1="86.00000000000001" y2="94.00000000000001"/> + <line stroke="#888888" x1="192.71067811865487" x2="184.71067811865484" y1="94.00000000000001" y2="94.00000000000001"/> + <line stroke="#888888" x1="184.71067811865484" x2="184.71067811865484" y1="94.00000000000001" y2="86.00000000000001"/> + <line stroke="#888888" x1="198.04401145198818" x2="198.04401145198818" y1="1.2500000000000002" y2="3.7500000000000004"/> + <line stroke="#888888" x1="198.04401145198818" x2="195.37734478532153" y1="3.7500000000000004" y2="3.7500000000000004"/> + <line stroke="#888888" x1="195.37734478532153" x2="195.37734478532153" y1="3.7500000000000004" y2="1.2500000000000002"/> + <line stroke="#888888" x1="200.71067811865487" x2="208.71067811865487" y1="86.00000000000001" y2="86.00000000000001"/> + <line stroke="#888888" x1="208.71067811865487" x2="208.71067811865487" y1="86.00000000000001" y2="94.00000000000001"/> + <line stroke="#888888" x1="208.71067811865487" x2="200.71067811865487" y1="94.00000000000001" y2="94.00000000000001"/> + <line stroke="#888888" x1="200.71067811865487" x2="200.71067811865487" y1="94.00000000000001" y2="86.00000000000001"/> + <line stroke="#888888" x1="210.46067811865487" x2="210.46067811865487" y1="80.70454545454547" y2="67.47727272727273"/> + <line stroke="#888888" x1="210.46067811865487" x2="210.96067811865487" y1="67.47727272727273" y2="67.47727272727273"/> + <line stroke="#888888" x1="210.96067811865487" x2="210.96067811865487" y1="67.47727272727273" y2="80.70454545454547"/> + <line stroke="#888888" x1="210.96067811865487" x2="210.46067811865487" y1="80.70454545454547" y2="80.70454545454547"/> + <line stroke="#888888" x1="210.46067811865487" x2="210.46067811865487" y1="112.52272727272728" y2="99.29545454545456"/> + <line stroke="#888888" x1="210.46067811865487" x2="210.96067811865487" y1="99.29545454545456" y2="99.29545454545456"/> + <line stroke="#888888" x1="210.96067811865487" x2="210.96067811865487" y1="99.29545454545456" y2="112.52272727272728"/> + <line stroke="#888888" x1="210.96067811865487" x2="210.46067811865487" y1="112.52272727272728" y2="112.52272727272728"/> + <line stroke="#888888" x1="28.401875901131806" x2="23.7637963941597" y1="217.3888829577983" y2="227.64184496249058"/> + <line stroke="#888888" x1="23.7637963941597" x2="23.30823967619293" y1="227.64184496249058" y2="227.43576712109234"/> + <line stroke="#888888" x1="23.30823967619293" x2="27.946319183165034" y1="227.43576712109234" y2="217.18280511640006"/> + <line stroke="#888888" x1="27.946319183165034" x2="28.401875901131806" y1="217.18280511640006" y2="217.3888829577983"/> + <line stroke="#888888" x1="237.96067811865484" x2="237.96067811865484" y1="258.58333333333337" y2="241.41666666666669"/> + <line stroke="#888888" x1="237.96067811865484" x2="238.46067811865484" y1="241.41666666666669" y2="241.41666666666669"/> + <line stroke="#888888" x1="238.46067811865484" x2="238.46067811865484" y1="241.41666666666669" y2="258.58333333333337"/> + <line stroke="#888888" x1="238.46067811865484" x2="237.96067811865484" y1="258.58333333333337" y2="258.58333333333337"/> + <line stroke="#888888" x1="234.04401145198818" x2="234.04401145198818" y1="162.50000000000003" y2="170.83333333333334"/> + <line stroke="#888888" x1="234.04401145198818" x2="217.37734478532153" y1="170.83333333333334" y2="170.83333333333334"/> + <line stroke="#888888" x1="217.37734478532153" x2="217.37734478532153" y1="170.83333333333334" y2="162.50000000000003"/> + <line stroke="#888888" x1="237.96067811865484" x2="237.96067811865484" y1="278.5833333333333" y2="261.4166666666667"/> + <line stroke="#888888" x1="237.96067811865484" x2="238.46067811865484" y1="261.4166666666667" y2="261.4166666666667"/> + <line stroke="#888888" x1="238.46067811865484" x2="238.46067811865484" y1="261.4166666666667" y2="278.5833333333333"/> + <line stroke="#888888" x1="238.46067811865484" x2="237.96067811865484" y1="278.5833333333333" y2="278.5833333333333"/> + <line stroke="#888888" x1="49.20423358535203" x2="49.20423358535203" y1="353.06491669998854" y2="347.6883055666629"/> + <line stroke="#888888" x1="49.20423358535203" x2="59.95745585200343" y1="347.6883055666629" y2="347.6883055666629"/> + <line stroke="#888888" x1="59.95745585200343" x2="59.95745585200343" y1="347.6883055666629" y2="353.06491669998854"/> + <line stroke="#888888" x1="23.763796394159613" x2="28.40187590113172" y1="292.3581550375095" y2="302.6111170422017"/> + <line stroke="#888888" x1="28.40187590113172" x2="27.94631918316495" y1="302.6111170422017" y2="302.81719488360005"/> + <line stroke="#888888" x1="27.94631918316495" x2="23.308239676192844" y1="302.81719488360005" y2="292.5642328789077"/> + <line stroke="#888888" x1="23.308239676192844" x2="23.763796394159613" y1="292.5642328789077" y2="292.3581550375095"/> + <line stroke="#888888" x1="195.1273447853215" x2="198.29401145198813" y1="341.0" y2="341.0"/> + <line stroke="#888888" x1="198.29401145198813" x2="198.29401145198813" y1="341.0" y2="341.5"/> + <line stroke="#888888" x1="198.29401145198813" x2="195.1273447853215" y1="341.5" y2="341.5"/> + <line stroke="#888888" x1="195.1273447853215" x2="195.1273447853215" y1="341.5" y2="341.0"/> + <line stroke="#888888" x1="217.3773447853215" x2="217.3773447853215" y1="357.50000000000006" y2="349.16666666666674"/> + <line stroke="#888888" x1="217.3773447853215" x2="234.04401145198815" y1="349.16666666666674" y2="349.16666666666674"/> + <line stroke="#888888" x1="234.04401145198815" x2="234.04401145198815" y1="349.16666666666674" y2="357.50000000000006"/> + <line stroke="#888888" x1="59.957455852003484" x2="59.957455852003484" y1="166.93508330001148" y2="172.31169443333718"/> + <line stroke="#888888" x1="59.957455852003484" x2="49.20423358535209" y1="172.31169443333718" y2="172.31169443333718"/> + <line stroke="#888888" x1="49.20423358535209" x2="49.20423358535209" y1="172.31169443333718" y2="166.93508330001148"/> + <line stroke="#888888" x1="178.71067811865487" x2="178.71067811865487" y1="67.72727272727273" y2="63.727272727272734"/> + <line stroke="#888888" x1="178.71067811865487" x2="182.71067811865487" y1="63.727272727272734" y2="67.72727272727273"/> + <line stroke="#888888" x1="182.71067811865487" x2="182.71067811865487" y1="67.72727272727273" y2="80.45454545454547"/> + <line stroke="#888888" x1="182.71067811865487" x2="178.71067811865487" y1="80.45454545454547" y2="84.45454545454547"/> + <line stroke="#888888" x1="178.71067811865487" x2="178.71067811865487" y1="84.45454545454547" y2="80.45454545454547"/> + <line stroke="#888888" x1="178.71067811865487" x2="178.71067811865487" y1="99.54545454545455" y2="95.54545454545456"/> + <line stroke="#888888" x1="178.71067811865487" x2="182.71067811865487" y1="95.54545454545456" y2="99.54545454545455"/> + <line stroke="#888888" x1="182.71067811865487" x2="182.71067811865487" y1="99.54545454545455" y2="112.27272727272728"/> + <line stroke="#888888" x1="182.71067811865487" x2="178.71067811865487" y1="112.27272727272728" y2="116.27272727272728"/> + <line stroke="#888888" x1="178.71067811865487" x2="178.71067811865487" y1="116.27272727272728" y2="112.27272727272728"/> </svg> diff --git a/rocolib/output/BoatBaseFlat/graph-autofold-default.dxf b/rocolib/output/BoatBaseFlat/graph-autofold-default.dxf index e4b5741e0df7b05b059a9ddd0385f1fea5160e43..c008886d2e781976a3564ba64f27dfd641b0873b 100644 --- a/rocolib/output/BoatBaseFlat/graph-autofold-default.dxf +++ b/rocolib/output/BoatBaseFlat/graph-autofold-default.dxf @@ -577,7 +577,7 @@ CONTINUOUS 0 LAYER 2 -26.565051177077976 +34.99202019855866 70 0 62 @@ -607,7 +607,7 @@ CONTINUOUS 0 LAYER 2 -73.77726564884665 +66.07759212540486 70 0 62 @@ -617,7 +617,7 @@ CONTINUOUS 0 LAYER 2 -38.65980825409008 +45.0 70 0 62 @@ -1033,15 +1033,15 @@ LINE 8 cut 10 -184.0312423743285 +192.71067811865487 20 -35.00000000000001 +55.00000000000001 30 0.0 11 -174.0312423743285 +184.71067811865484 21 -35.00000000000001 +55.00000000000001 31 0.0 0 @@ -1053,15 +1053,15 @@ DOTTED 8 90 10 -184.0312423743285 +192.71067811865487 20 -35.00000000000001 +55.00000000000001 30 0.0 11 -184.0312423743285 +192.71067811865487 21 -85.00000000000001 +125.00000000000001 31 0.0 0 @@ -1071,15 +1071,15 @@ LINE 8 cut 10 -174.0312423743285 +184.71067811865484 20 -85.00000000000001 +125.00000000000001 30 0.0 11 -184.0312423743285 +192.71067811865487 21 -85.00000000000001 +125.00000000000001 31 0.0 0 @@ -1091,15 +1091,15 @@ DOTTED 8 90 10 -174.0312423743285 +184.71067811865484 20 -85.00000000000001 +125.00000000000001 30 0.0 11 -174.0312423743285 +184.71067811865484 21 -35.00000000000001 +55.00000000000001 31 0.0 0 @@ -1111,15 +1111,15 @@ DOTTED 8 90 10 -194.03124237432849 +200.71067811865487 20 -35.00000000000001 +55.00000000000001 30 0.0 11 -194.03124237432849 +200.71067811865487 21 -85.00000000000001 +125.00000000000001 31 0.0 0 @@ -1129,13 +1129,13 @@ LINE 8 cut 10 -194.03124237432849 +200.71067811865487 20 -35.00000000000001 +55.00000000000001 30 0.0 11 -194.03124237432849 +200.71067811865487 21 5.000000000000001 31 @@ -1147,15 +1147,15 @@ LINE 8 cut 10 -184.0312423743285 +192.71067811865487 20 5.000000000000001 30 0.0 11 -184.0312423743285 +192.71067811865487 21 -35.00000000000001 +55.00000000000001 31 0.0 0 @@ -1165,13 +1165,13 @@ LINE 8 cut 10 -184.0312423743285 +192.71067811865487 20 0.0 30 0.0 11 -184.0312423743285 +192.71067811865487 21 5.000000000000001 31 @@ -1183,13 +1183,13 @@ LINE 8 cut 10 -194.03124237432849 +200.71067811865487 20 0.0 30 0.0 11 -184.0312423743285 +192.71067811865487 21 0.0 31 @@ -1201,13 +1201,13 @@ LINE 8 cut 10 -194.03124237432849 +200.71067811865487 20 5.000000000000001 30 0.0 11 -194.03124237432849 +200.71067811865487 21 0.0 31 @@ -1219,15 +1219,15 @@ LINE 8 cut 10 -204.0312423743285 +208.71067811865487 20 -35.00000000000001 +55.00000000000001 30 0.0 11 -194.03124237432849 +200.71067811865487 21 -35.00000000000001 +55.00000000000001 31 0.0 0 @@ -1239,15 +1239,15 @@ DOTTED 8 90 10 -204.0312423743285 +208.71067811865487 20 -35.00000000000001 +55.00000000000001 30 0.0 11 -204.0312423743285 +208.71067811865487 21 -85.00000000000001 +125.00000000000001 31 0.0 0 @@ -1257,15 +1257,15 @@ LINE 8 cut 10 -194.03124237432849 +200.71067811865487 20 -85.00000000000001 +125.00000000000001 30 0.0 11 -204.0312423743285 +208.71067811865487 21 -85.00000000000001 +125.00000000000001 31 0.0 0 @@ -1275,15 +1275,15 @@ LINE 8 cut 10 -214.0312423743285 +216.71067811865487 20 -35.00000000000001 +55.00000000000001 30 0.0 11 -204.0312423743285 +208.71067811865487 21 -35.00000000000001 +55.00000000000001 31 0.0 0 @@ -1293,15 +1293,15 @@ LINE 8 cut 10 -214.0312423743285 +216.71067811865487 20 -85.00000000000001 +125.00000000000001 30 0.0 11 -214.0312423743285 +216.71067811865487 21 -35.00000000000001 +55.00000000000001 31 0.0 0 @@ -1311,15 +1311,15 @@ LINE 8 cut 10 -204.0312423743285 +208.71067811865487 20 -85.00000000000001 +125.00000000000001 30 0.0 11 -214.0312423743285 +216.71067811865487 21 -85.00000000000001 +125.00000000000001 31 0.0 0 @@ -1329,15 +1329,15 @@ LINE 8 cut 10 -184.0312423743285 +192.71067811865487 20 -85.00000000000001 +125.00000000000001 30 0.0 11 -184.0312423743285 +192.71067811865487 21 -115.00000000000001 +175.0 31 0.0 0 @@ -1347,15 +1347,15 @@ LINE 8 cut 10 -194.03124237432849 +200.71067811865487 20 -115.00000000000001 +175.0 30 0.0 11 -194.03124237432849 +200.71067811865487 21 -85.00000000000001 +125.00000000000001 31 0.0 0 @@ -1367,15 +1367,15 @@ DOTTED 8 -180 10 -194.03124237432849 +200.71067811865487 20 -115.00000000000001 +175.0 30 0.0 11 -184.0312423743285 +192.71067811865487 21 -115.00000000000001 +175.0 31 0.0 0 @@ -1385,15 +1385,15 @@ LINE 8 cut 10 -184.0312423743285 +192.71067811865487 20 -115.00000000000001 +175.0 30 0.0 11 -64.0312423743285 +70.71067811865484 21 -115.00000000000001 +175.0 31 0.0 0 @@ -1403,15 +1403,15 @@ LINE 8 cut 10 -194.03124237432849 +200.71067811865487 20 -115.00000000000001 +175.0 30 0.0 11 -194.03124237432849 +200.71067811865487 21 -115.00000000000001 +175.0 31 0.0 0 @@ -1421,15 +1421,15 @@ LINE 8 cut 10 -64.0312423743285 +70.71067811865484 20 -115.00000000000001 +175.0 30 0.0 11 -64.0312423743285 +70.71067811865484 21 -115.00000000000001 +175.0 31 0.0 0 @@ -1441,15 +1441,15 @@ DOTTED 8 90 10 -64.0312423743285 +70.71067811865484 20 -155.0 +225.00000000000003 30 0.0 11 -194.03124237432849 +200.71067811865487 21 -155.0 +225.00000000000003 31 0.0 0 @@ -1459,17 +1459,17 @@ DOTTED 62 1 8 -26.565051177077976 +34.99202019855866 10 -64.0312423743285 +70.71067811865484 20 -115.00000000000001 +175.0 30 0.0 11 -64.0312423743285 +70.71067811865484 21 -155.0 +225.00000000000003 31 0.0 0 @@ -1481,15 +1481,15 @@ DOTTED 8 -180 10 -42.35246120943851 +38.45101131870072 20 -115.00000000000001 +175.0 30 0.0 11 -64.0312423743285 +70.71067811865485 21 -155.0 +225.00000000000003 31 0.0 0 @@ -1501,15 +1501,15 @@ DOTTED 8 -174 10 -42.35246120943851 +38.45101131870072 20 -115.00000000000001 +175.0 30 0.0 11 -64.0312423743285 +70.71067811865485 21 -115.00000000000001 +175.0 31 0.0 0 @@ -1519,15 +1519,15 @@ LINE 8 cut 10 -42.35246120943851 +38.4510113187007 20 -115.00000000000001 +175.0 30 0.0 11 -30.5176577740279 +25.155006321979045 21 -133.1633416650236 +204.3922158601766 31 0.0 0 @@ -1539,15 +1539,15 @@ DOTTED 8 180 10 -30.5176577740279 +25.155006321979045 20 -133.1633416650236 +204.3922158601766 30 0.0 11 -64.0312423743285 +70.71067811865483 21 -155.0 +225.00000000000003 31 0.0 0 @@ -1557,17 +1557,17 @@ DOTTED 62 1 8 -73.77726564884665 +66.07759212540486 10 -0.0 +8.526512829121203e-14 20 -180.0 +260.0 30 0.0 11 -64.0312423743285 +70.71067811865484 21 -155.0 +225.00000000000003 31 0.0 0 @@ -1577,15 +1577,15 @@ LINE 8 cut 10 -18.682854338617293 +11.859001325257395 20 -151.3266833300472 +233.78443172035318 30 0.0 11 -0.0 +8.526512829121203e-14 21 -180.0 +260.0 31 0.0 0 @@ -1595,15 +1595,15 @@ LINE 8 cut 10 -30.5176577740279 +25.155006321979076 20 -133.16334166502358 +204.3922158601766 30 0.0 11 -18.682854338617293 +11.859001325257395 21 -151.3266833300472 +233.78443172035318 31 0.0 0 @@ -1613,17 +1613,17 @@ DOTTED 62 1 8 -38.65980825409008 +45.0 10 -64.03124237432847 +70.71067811865484 20 -155.0 +225.00000000000003 30 0.0 11 -64.03124237432847 +70.71067811865484 21 -180.0 +260.0 31 0.0 0 @@ -1633,17 +1633,17 @@ DOTTED 62 1 8 -38.65980825409008 +45.0 10 -64.03124237432851 +70.71067811865484 20 -180.0 +260.0 30 0.0 11 -64.03124237432851 +70.71067811865484 21 -205.00000000000003 +295.0 31 0.0 0 @@ -1653,17 +1653,17 @@ DOTTED 62 1 8 -73.77726564884665 +66.07759212540486 10 -2.8421709430404014e-14 +8.526512829121203e-14 20 -180.0 +260.0 30 0.0 11 -64.03124237432851 +70.71067811865484 21 -205.00000000000003 +295.0 31 0.0 0 @@ -1675,15 +1675,15 @@ DOTTED 8 90 10 -64.0312423743285 +70.71067811865484 20 -205.00000000000003 +295.0 30 0.0 11 -194.03124237432846 +200.7106781186548 21 -205.00000000000003 +295.0 31 0.0 0 @@ -1695,15 +1695,15 @@ DOTTED 8 90.0 10 -194.03124237432846 +200.7106781186548 20 -180.0 +260.0 30 0.0 11 -194.03124237432846 +200.7106781186548 21 -155.0 +225.00000000000003 31 0.0 0 @@ -1715,15 +1715,15 @@ DOTTED 8 90.0 10 -194.03124237432846 +200.7106781186548 20 -205.00000000000003 +295.0 30 0.0 11 -194.03124237432846 +200.7106781186548 21 -180.0 +260.0 31 0.0 0 @@ -1733,15 +1733,15 @@ LINE 8 cut 10 -234.03124237432846 +250.71067811865484 20 -195.0 +275.00000000000006 30 0.0 11 -234.03124237432846 +250.71067811865484 21 -155.0 +225.00000000000003 31 0.0 0 @@ -1751,15 +1751,15 @@ LINE 8 cut 10 -234.03124237432846 +250.71067811865484 20 -180.0 +260.0 30 0.0 11 -234.03124237432846 +250.71067811865484 21 -195.0 +275.00000000000006 31 0.0 0 @@ -1771,15 +1771,15 @@ DOTTED 8 180 10 -194.03124237432846 +200.7106781186548 20 -155.0 +225.00000000000003 30 0.0 11 -234.03124237432846 +250.71067811865484 21 -155.0 +225.00000000000003 31 0.0 0 @@ -1791,15 +1791,15 @@ DOTTED 8 -180 10 -194.03124237432846 +200.7106781186548 20 -155.0 +225.00000000000003 30 0.0 11 -234.03124237432846 +250.71067811865484 21 -115.00000000000003 +175.00000000000003 31 0.0 0 @@ -1809,15 +1809,15 @@ LINE 8 cut 10 -234.03124237432846 +250.71067811865484 20 -155.0 +225.00000000000003 30 0.0 11 -234.03124237432846 +250.71067811865484 21 -115.00000000000003 +175.00000000000003 31 0.0 0 @@ -1829,15 +1829,15 @@ DOTTED 8 -174 10 -194.03124237432846 +200.7106781186548 20 -115.00000000000003 +175.0 30 0.0 11 -234.03124237432846 +250.71067811865484 21 -115.00000000000004 +175.0 31 0.0 0 @@ -1849,15 +1849,15 @@ DOTTED 8 90.0 10 -194.03124237432846 +200.7106781186548 20 -155.0 +225.00000000000003 30 0.0 11 -194.03124237432846 +200.7106781186548 21 -115.00000000000003 +175.0 31 0.0 0 @@ -1867,15 +1867,15 @@ LINE 8 cut 10 -194.03124237432846 +200.7106781186548 20 -101.6666666666667 +158.33333333333337 30 0.0 11 -194.03124237432846 +200.7106781186548 21 -115.00000000000004 +175.0 31 0.0 0 @@ -1885,15 +1885,15 @@ LINE 8 cut 10 -234.03124237432846 +250.71067811865484 20 -101.66666666666671 +158.33333333333337 30 0.0 11 -194.03124237432846 +200.7106781186548 21 -101.6666666666667 +158.33333333333337 31 0.0 0 @@ -1903,15 +1903,15 @@ LINE 8 cut 10 -234.03124237432846 +250.71067811865484 20 -115.00000000000004 +175.0 30 0.0 11 -234.03124237432846 +250.71067811865484 21 -101.66666666666671 +158.33333333333337 31 0.0 0 @@ -1923,15 +1923,15 @@ DOTTED 8 180 10 -234.03124237432849 +250.71067811865484 20 -205.00000000000003 +295.0 30 0.0 11 -194.03124237432849 +200.7106781186548 21 -205.00000000000003 +295.0 31 0.0 0 @@ -1941,15 +1941,15 @@ LINE 8 cut 10 -234.03124237432849 +250.71067811865484 20 -165.00000000000003 +245.00000000000003 30 0.0 11 -234.03124237432849 +250.71067811865484 21 -180.0 +260.0 31 0.0 0 @@ -1959,15 +1959,15 @@ LINE 8 cut 10 -234.03124237432849 +250.71067811865484 20 -205.00000000000003 +295.0 30 0.0 11 -234.03124237432849 +250.71067811865484 21 -165.00000000000003 +245.00000000000003 31 0.0 0 @@ -1977,15 +1977,15 @@ LINE 8 cut 10 -234.03124237432849 +250.71067811865484 20 -245.0 +345.00000000000006 30 0.0 11 -234.03124237432849 +250.71067811865484 21 -205.00000000000003 +295.0 31 0.0 0 @@ -1997,15 +1997,15 @@ DOTTED 8 -180 10 -234.03124237432849 +250.71067811865484 20 -245.0 +345.00000000000006 30 0.0 11 -194.03124237432846 +200.7106781186548 21 -205.00000000000003 +295.0 31 0.0 0 @@ -2017,15 +2017,15 @@ DOTTED 8 90.0 10 -194.03124237432846 +200.71067811865478 20 -245.00000000000006 +345.00000000000006 30 0.0 11 -194.03124237432846 +200.71067811865478 21 -205.00000000000006 +295.0 31 0.0 0 @@ -2037,15 +2037,15 @@ DOTTED 8 -174 10 -234.03124237432846 +250.71067811865484 20 -245.00000000000003 +345.00000000000006 30 0.0 11 -194.03124237432846 +200.71067811865478 21 -245.00000000000006 +345.00000000000006 31 0.0 0 @@ -2055,17 +2055,17 @@ DOTTED 62 1 8 -26.565051177077976 +34.99202019855866 10 -64.03124237432853 +70.7106781186548 20 -205.00000000000009 +295.0 30 0.0 11 -64.03124237432853 +70.7106781186548 21 -245.00000000000009 +345.00000000000006 31 0.0 0 @@ -2077,15 +2077,15 @@ DOTTED 8 -174 10 -64.03124237432853 +70.71067811865481 20 -245.00000000000006 +345.00000000000006 30 0.0 11 -42.35246120943856 +38.45101131870067 21 -245.00000000000009 +345.00000000000006 31 0.0 0 @@ -2097,15 +2097,15 @@ DOTTED 8 -180 10 -64.03124237432853 +70.7106781186548 20 -205.00000000000009 +295.0 30 0.0 11 -42.35246120943856 +38.45101131870067 21 -245.00000000000009 +345.00000000000006 31 0.0 0 @@ -2115,15 +2115,15 @@ LINE 8 cut 10 -64.03124237432851 +70.7106781186548 20 -252.2262603882967 +355.75322226665145 30 0.0 11 -64.03124237432851 +70.7106781186548 21 -245.00000000000006 +345.00000000000006 31 0.0 0 @@ -2133,15 +2133,15 @@ LINE 8 cut 10 -42.35246120943854 +38.45101131870067 20 -252.2262603882967 +355.75322226665145 30 0.0 11 -64.03124237432851 +70.7106781186548 21 -252.2262603882967 +355.75322226665145 31 0.0 0 @@ -2151,15 +2151,15 @@ LINE 8 cut 10 -42.35246120943854 +38.45101131870067 20 -245.00000000000006 +345.00000000000006 30 0.0 11 -42.35246120943854 +38.45101131870067 21 -252.2262603882967 +355.75322226665145 31 0.0 0 @@ -2171,15 +2171,15 @@ DOTTED 8 180 10 -64.03124237432851 +70.71067811865478 20 -205.00000000000009 +295.0 30 0.0 11 -30.517657774027928 +25.15500632197899 21 -226.83665833497648 +315.6077841398234 31 0.0 0 @@ -2189,15 +2189,15 @@ LINE 8 cut 10 -30.517657774027928 +25.15500632197899 20 -226.83665833497648 +315.6077841398234 30 0.0 11 -42.35246120943854 +38.45101131870067 21 -245.00000000000006 +345.00000000000006 31 0.0 0 @@ -2207,15 +2207,15 @@ LINE 8 cut 10 -18.68285433861732 +11.859001325257312 20 -208.6733166699529 +286.21556827964685 30 0.0 11 -30.517657774027928 +25.15500632197899 21 -226.83665833497648 +315.6077841398234 31 0.0 0 @@ -2225,15 +2225,15 @@ LINE 8 cut 10 -2.8421709430404014e-14 +0.0 20 -180.00000000000009 +260.0 30 0.0 11 -18.68285433861732 +11.859001325257312 21 -208.6733166699529 +286.21556827964685 31 0.0 0 @@ -2243,15 +2243,15 @@ LINE 8 cut 10 -184.03124237432849 +192.7106781186548 20 -245.00000000000003 +345.00000000000006 30 0.0 11 -194.03124237432846 +200.71067811865478 21 -245.00000000000003 +345.00000000000006 31 0.0 0 @@ -2261,15 +2261,15 @@ LINE 8 cut 10 -64.03124237432853 +70.7106781186548 20 -245.00000000000006 +345.00000000000006 30 0.0 11 -184.03124237432849 +192.7106781186548 21 -245.00000000000003 +345.00000000000006 31 0.0 0 @@ -2279,15 +2279,15 @@ LINE 8 cut 10 -64.03124237432853 +70.7106781186548 20 -245.00000000000006 +345.00000000000006 30 0.0 11 -64.03124237432853 +70.7106781186548 21 -245.00000000000006 +345.00000000000006 31 0.0 0 @@ -2297,15 +2297,15 @@ LINE 8 cut 10 -194.03124237432846 +200.71067811865478 20 -245.00000000000003 +345.00000000000006 30 0.0 11 -194.03124237432846 +200.71067811865478 21 -245.00000000000003 +345.00000000000006 31 0.0 0 @@ -2315,15 +2315,15 @@ LINE 8 cut 10 -234.03124237432846 +250.71067811865484 20 -258.33333333333337 +361.66666666666674 30 0.0 11 -234.03124237432846 +250.71067811865484 21 -245.00000000000003 +345.00000000000006 31 0.0 0 @@ -2333,15 +2333,15 @@ LINE 8 cut 10 -194.03124237432846 +200.71067811865478 20 -258.33333333333337 +361.66666666666674 30 0.0 11 -234.03124237432846 +250.71067811865484 21 -258.33333333333337 +361.66666666666674 31 0.0 0 @@ -2351,15 +2351,15 @@ LINE 8 cut 10 -194.03124237432846 +200.71067811865478 20 -245.00000000000003 +345.00000000000006 30 0.0 11 -194.03124237432846 +200.71067811865478 21 -258.33333333333337 +361.66666666666674 31 0.0 0 @@ -2369,15 +2369,15 @@ LINE 8 cut 10 -42.35246120943851 +38.45101131870072 20 -107.77373961170336 +164.2467777333486 30 0.0 11 -42.35246120943851 +38.45101131870072 21 -115.00000000000001 +175.0 31 0.0 0 @@ -2387,15 +2387,15 @@ LINE 8 cut 10 -64.0312423743285 +70.71067811865484 20 -107.77373961170336 +164.2467777333486 30 0.0 11 -42.35246120943851 +38.45101131870072 21 -107.77373961170336 +164.2467777333486 31 0.0 0 @@ -2405,15 +2405,15 @@ LINE 8 cut 10 -64.0312423743285 +70.71067811865484 20 -115.00000000000001 +175.0 30 0.0 11 -64.0312423743285 +70.71067811865484 21 -107.77373961170336 +164.2467777333486 31 0.0 0 @@ -2423,15 +2423,15 @@ LINE 8 cut 10 -164.0312423743285 +176.71067811865487 20 -85.00000000000001 +125.00000000000001 30 0.0 11 -174.0312423743285 +184.71067811865484 21 -85.00000000000001 +125.00000000000001 31 0.0 0 @@ -2441,15 +2441,15 @@ LINE 8 cut 10 -164.0312423743285 +176.71067811865487 20 -35.00000000000001 +55.00000000000001 30 0.0 11 -164.0312423743285 +176.71067811865487 21 -85.00000000000001 +125.00000000000001 31 0.0 0 @@ -2459,15 +2459,15 @@ LINE 8 cut 10 -174.0312423743285 +184.71067811865484 20 -35.00000000000001 +55.00000000000001 30 0.0 11 -164.0312423743285 +176.71067811865487 21 -35.00000000000001 +55.00000000000001 31 0.0 0 @@ -2477,15 +2477,15 @@ LINE 8 cut 10 -174.0312423743285 +184.71067811865484 20 -55.00000000000001 +86.00000000000001 30 0.0 11 -184.0312423743285 +192.71067811865487 21 -55.00000000000001 +86.00000000000001 31 0.0 0 @@ -2495,15 +2495,15 @@ LINE 8 cut 10 -184.0312423743285 +192.71067811865487 20 -55.00000000000001 +86.00000000000001 30 0.0 11 -184.0312423743285 +192.71067811865487 21 -65.0 +94.00000000000001 31 0.0 0 @@ -2513,15 +2513,15 @@ LINE 8 cut 10 -184.0312423743285 +192.71067811865487 20 -65.0 +94.00000000000001 30 0.0 11 -174.0312423743285 +184.71067811865484 21 -65.0 +94.00000000000001 31 0.0 0 @@ -2531,15 +2531,15 @@ LINE 8 cut 10 -174.0312423743285 +184.71067811865484 20 -65.0 +94.00000000000001 30 0.0 11 -174.0312423743285 +184.71067811865484 21 -55.00000000000001 +86.00000000000001 31 0.0 0 @@ -2549,13 +2549,13 @@ LINE 8 cut 10 -190.69790904099517 +198.04401145198818 20 1.2500000000000002 30 0.0 11 -190.69790904099517 +198.04401145198818 21 3.7500000000000004 31 @@ -2567,13 +2567,13 @@ LINE 8 cut 10 -190.69790904099517 +198.04401145198818 20 3.7500000000000004 30 0.0 11 -187.36457570766183 +195.37734478532153 21 3.7500000000000004 31 @@ -2585,13 +2585,13 @@ LINE 8 cut 10 -187.36457570766183 +195.37734478532153 20 3.7500000000000004 30 0.0 11 -187.36457570766183 +195.37734478532153 21 1.2500000000000002 31 @@ -2603,15 +2603,15 @@ LINE 8 cut 10 -194.03124237432849 +200.71067811865487 20 -55.00000000000001 +86.00000000000001 30 0.0 11 -204.0312423743285 +208.71067811865487 21 -55.00000000000001 +86.00000000000001 31 0.0 0 @@ -2621,15 +2621,15 @@ LINE 8 cut 10 -204.0312423743285 +208.71067811865487 20 -55.00000000000001 +86.00000000000001 30 0.0 11 -204.0312423743285 +208.71067811865487 21 -65.0 +94.00000000000001 31 0.0 0 @@ -2639,15 +2639,15 @@ LINE 8 cut 10 -204.0312423743285 +208.71067811865487 20 -65.0 +94.00000000000001 30 0.0 11 -194.03124237432849 +200.71067811865487 21 -65.0 +94.00000000000001 31 0.0 0 @@ -2657,15 +2657,177 @@ LINE 8 cut 10 -194.03124237432849 +200.71067811865487 20 -65.0 +94.00000000000001 30 0.0 11 -194.03124237432849 +200.71067811865487 21 -55.00000000000001 +86.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +210.46067811865487 + 20 +80.70454545454547 + 30 +0.0 + 11 +210.46067811865487 + 21 +67.47727272727273 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +210.46067811865487 + 20 +67.47727272727273 + 30 +0.0 + 11 +210.96067811865487 + 21 +67.47727272727273 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +210.96067811865487 + 20 +67.47727272727273 + 30 +0.0 + 11 +210.96067811865487 + 21 +80.70454545454547 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +210.96067811865487 + 20 +80.70454545454547 + 30 +0.0 + 11 +210.46067811865487 + 21 +80.70454545454547 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +210.46067811865487 + 20 +112.52272727272728 + 30 +0.0 + 11 +210.46067811865487 + 21 +99.29545454545456 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +210.46067811865487 + 20 +99.29545454545456 + 30 +0.0 + 11 +210.96067811865487 + 21 +99.29545454545456 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +210.96067811865487 + 20 +99.29545454545456 + 30 +0.0 + 11 +210.96067811865487 + 21 +112.52272727272728 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +210.96067811865487 + 20 +112.52272727272728 + 30 +0.0 + 11 +210.46067811865487 + 21 +112.52272727272728 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +28.401875901131806 + 20 +217.3888829577983 + 30 +0.0 + 11 +23.7637963941597 + 21 +227.64184496249058 31 0.0 0 @@ -2675,15 +2837,15 @@ LINE 8 cut 10 -206.2812423743285 +23.7637963941597 20 -68.58333333333336 +227.64184496249058 30 0.0 11 -206.2812423743285 +23.30823967619293 21 -51.41666666666668 +227.43576712109234 31 0.0 0 @@ -2693,15 +2855,15 @@ LINE 8 cut 10 -206.2812423743285 +23.30823967619293 20 -51.41666666666668 +227.43576712109234 30 0.0 11 -206.7812423743285 +27.946319183165034 21 -51.41666666666668 +217.18280511640006 31 0.0 0 @@ -2711,15 +2873,15 @@ LINE 8 cut 10 -206.7812423743285 +27.946319183165034 20 -51.41666666666668 +217.18280511640006 30 0.0 11 -206.7812423743285 +28.401875901131806 21 -68.58333333333336 +217.3888829577983 31 0.0 0 @@ -2729,15 +2891,15 @@ LINE 8 cut 10 -206.7812423743285 +237.96067811865484 20 -68.58333333333336 +258.58333333333337 30 0.0 11 -206.2812423743285 +237.96067811865484 21 -68.58333333333336 +241.41666666666669 31 0.0 0 @@ -2747,15 +2909,15 @@ LINE 8 cut 10 -31.45949773015906 +237.96067811865484 20 -142.10350895639252 +241.41666666666669 30 0.0 11 -27.241605022501663 +238.46067811865484 21 -148.57687598557078 +241.41666666666669 31 0.0 0 @@ -2765,15 +2927,15 @@ LINE 8 cut 10 -27.241605022501663 +238.46067811865484 20 -148.57687598557078 +241.41666666666669 30 0.0 11 -26.822685214997907 +238.46067811865484 21 -148.30391775638358 +258.58333333333337 31 0.0 0 @@ -2783,15 +2945,15 @@ LINE 8 cut 10 -26.822685214997907 +238.46067811865484 20 -148.30391775638358 +258.58333333333337 30 0.0 11 -31.040577922655306 +237.96067811865484 21 -141.8305507272053 +258.58333333333337 31 0.0 0 @@ -2801,15 +2963,15 @@ LINE 8 cut 10 -31.040577922655306 +234.04401145198818 20 -141.8305507272053 +162.50000000000003 30 0.0 11 -31.45949773015906 +234.04401145198818 21 -142.10350895639252 +170.83333333333334 31 0.0 0 @@ -2819,15 +2981,15 @@ LINE 8 cut 10 -223.78124237432846 +234.04401145198818 20 -181.91666666666666 +170.83333333333334 30 0.0 11 -223.78124237432846 +217.37734478532153 21 -168.08333333333334 +170.83333333333334 31 0.0 0 @@ -2837,15 +2999,15 @@ LINE 8 cut 10 -223.78124237432846 +217.37734478532153 20 -168.08333333333334 +170.83333333333334 30 0.0 11 -224.28124237432849 +217.37734478532153 21 -168.08333333333334 +162.50000000000003 31 0.0 0 @@ -2855,15 +3017,15 @@ LINE 8 cut 10 -224.28124237432849 +237.96067811865484 20 -168.08333333333334 +278.5833333333333 30 0.0 11 -224.28124237432849 +237.96067811865484 21 -181.91666666666666 +261.4166666666667 31 0.0 0 @@ -2873,15 +3035,15 @@ LINE 8 cut 10 -224.28124237432849 +237.96067811865484 20 -181.91666666666666 +261.4166666666667 30 0.0 11 -223.78124237432846 +238.46067811865484 21 -181.91666666666666 +261.4166666666667 31 0.0 0 @@ -2891,15 +3053,15 @@ LINE 8 cut 10 -220.69790904099514 +238.46067811865484 20 -105.00000000000004 +261.4166666666667 30 0.0 11 -220.69790904099514 +238.46067811865484 21 -111.6666666666667 +278.5833333333333 31 0.0 0 @@ -2909,15 +3071,15 @@ LINE 8 cut 10 -220.69790904099514 +238.46067811865484 20 -111.6666666666667 +278.5833333333333 30 0.0 11 -207.36457570766183 +237.96067811865484 21 -111.6666666666667 +278.5833333333333 31 0.0 0 @@ -2927,15 +3089,15 @@ LINE 8 cut 10 -207.36457570766183 +49.20423358535203 20 -111.6666666666667 +353.06491669998854 30 0.0 11 -207.36457570766183 +49.20423358535203 21 -105.00000000000004 +347.6883055666629 31 0.0 0 @@ -2945,15 +3107,15 @@ LINE 8 cut 10 -223.78124237432846 +49.20423358535203 20 -191.91666666666669 +347.6883055666629 30 0.0 11 -223.78124237432846 +59.95745585200343 21 -178.08333333333337 +347.6883055666629 31 0.0 0 @@ -2963,15 +3125,15 @@ LINE 8 cut 10 -223.78124237432846 +59.95745585200343 20 -178.08333333333337 +347.6883055666629 30 0.0 11 -224.28124237432849 +59.95745585200343 21 -178.08333333333337 +353.06491669998854 31 0.0 0 @@ -2981,15 +3143,15 @@ LINE 8 cut 10 -224.28124237432849 +23.763796394159613 20 -178.08333333333337 +292.3581550375095 30 0.0 11 -224.28124237432849 +28.40187590113172 21 -191.91666666666669 +302.6111170422017 31 0.0 0 @@ -2999,15 +3161,15 @@ LINE 8 cut 10 -224.28124237432849 +28.40187590113172 20 -191.91666666666669 +302.6111170422017 30 0.0 11 -223.78124237432846 +27.94631918316495 21 -191.91666666666669 +302.81719488360005 31 0.0 0 @@ -3017,15 +3179,15 @@ LINE 8 cut 10 -49.57872159773519 +27.94631918316495 20 -250.41969529122255 +302.81719488360005 30 0.0 11 -49.57872159773519 +23.308239676192844 21 -246.8065650970742 +292.5642328789077 31 0.0 0 @@ -3035,15 +3197,15 @@ LINE 8 cut 10 -49.57872159773519 +23.308239676192844 20 -246.8065650970742 +292.5642328789077 30 0.0 11 -56.804981986031855 +23.763796394159613 21 -246.8065650970742 +292.3581550375095 31 0.0 0 @@ -3053,15 +3215,15 @@ LINE 8 cut 10 -56.804981986031855 +195.1273447853215 20 -246.8065650970742 +341.0 30 0.0 11 -56.804981986031855 +198.29401145198813 21 -250.41969529122255 +341.0 31 0.0 0 @@ -3071,15 +3233,15 @@ LINE 8 cut 10 -27.24160502250169 +198.29401145198813 20 -211.4231240144293 +341.0 30 0.0 11 -31.459497730159118 +198.29401145198813 21 -217.8964910436076 +341.5 31 0.0 0 @@ -3089,15 +3251,15 @@ LINE 8 cut 10 -31.459497730159118 +198.29401145198813 20 -217.8964910436076 +341.5 30 0.0 11 -31.040577922655363 +195.1273447853215 21 -218.1694492727948 +341.5 31 0.0 0 @@ -3107,15 +3269,15 @@ LINE 8 cut 10 -31.040577922655363 +195.1273447853215 20 -218.1694492727948 +341.5 30 0.0 11 -26.822685214997907 +195.1273447853215 21 -211.69608224361647 +341.0 31 0.0 0 @@ -3125,15 +3287,15 @@ LINE 8 cut 10 -26.822685214997907 +217.3773447853215 20 -211.69608224361647 +357.50000000000006 30 0.0 11 -27.24160502250169 +217.3773447853215 21 -211.4231240144293 +349.16666666666674 31 0.0 0 @@ -3143,15 +3305,15 @@ LINE 8 cut 10 -187.1145757076618 +217.3773447853215 20 -241.00000000000003 +349.16666666666674 30 0.0 11 -190.94790904099517 +234.04401145198815 21 -241.00000000000003 +349.16666666666674 31 0.0 0 @@ -3161,15 +3323,15 @@ LINE 8 cut 10 -190.94790904099517 +234.04401145198815 20 -241.00000000000003 +349.16666666666674 30 0.0 11 -190.94790904099517 +234.04401145198815 21 -241.50000000000003 +357.50000000000006 31 0.0 0 @@ -3179,15 +3341,15 @@ LINE 8 cut 10 -190.94790904099517 +59.957455852003484 20 -241.50000000000003 +166.93508330001148 30 0.0 11 -187.1145757076618 +59.957455852003484 21 -241.50000000000003 +172.31169443333718 31 0.0 0 @@ -3197,15 +3359,15 @@ LINE 8 cut 10 -187.1145757076618 +59.957455852003484 20 -241.50000000000003 +172.31169443333718 30 0.0 11 -187.1145757076618 +49.20423358535209 21 -241.00000000000003 +172.31169443333718 31 0.0 0 @@ -3215,15 +3377,15 @@ LINE 8 cut 10 -207.36457570766183 +49.20423358535209 20 -255.00000000000003 +172.31169443333718 30 0.0 11 -207.36457570766183 +49.20423358535209 21 -248.33333333333337 +166.93508330001148 31 0.0 0 @@ -3233,15 +3395,15 @@ LINE 8 cut 10 -207.36457570766183 +178.71067811865487 20 -248.33333333333337 +67.72727272727273 30 0.0 11 -220.69790904099514 +178.71067811865487 21 -248.33333333333337 +63.727272727272734 31 0.0 0 @@ -3251,15 +3413,15 @@ LINE 8 cut 10 -220.69790904099514 +178.71067811865487 20 -248.33333333333337 +63.727272727272734 30 0.0 11 -220.69790904099514 +182.71067811865487 21 -255.00000000000003 +67.72727272727273 31 0.0 0 @@ -3269,15 +3431,15 @@ LINE 8 cut 10 -56.80498198603183 +182.71067811865487 20 -109.58030470877752 +67.72727272727273 30 0.0 11 -56.80498198603183 +182.71067811865487 21 -113.19343490292586 +80.45454545454547 31 0.0 0 @@ -3287,15 +3449,15 @@ LINE 8 cut 10 -56.80498198603183 +182.71067811865487 20 -113.19343490292586 +80.45454545454547 30 0.0 11 -49.57872159773516 +178.71067811865487 21 -113.19343490292586 +84.45454545454547 31 0.0 0 @@ -3305,15 +3467,15 @@ LINE 8 cut 10 -49.57872159773516 +178.71067811865487 20 -113.19343490292586 +84.45454545454547 30 0.0 11 -49.57872159773516 +178.71067811865487 21 -109.58030470877752 +80.45454545454547 31 0.0 0 @@ -3323,15 +3485,15 @@ LINE 8 cut 10 -166.53124237432849 +178.71067811865487 20 -51.66666666666668 +99.54545454545455 30 0.0 11 -166.53124237432849 +178.71067811865487 21 -46.66666666666667 +95.54545454545456 31 0.0 0 @@ -3341,15 +3503,15 @@ LINE 8 cut 10 -166.53124237432849 +178.71067811865487 20 -46.66666666666667 +95.54545454545456 30 0.0 11 -171.53124237432849 +182.71067811865487 21 -51.66666666666668 +99.54545454545455 31 0.0 0 @@ -3359,15 +3521,15 @@ LINE 8 cut 10 -171.53124237432849 +182.71067811865487 20 -51.66666666666668 +99.54545454545455 30 0.0 11 -171.53124237432849 +182.71067811865487 21 -68.33333333333334 +112.27272727272728 31 0.0 0 @@ -3377,15 +3539,15 @@ LINE 8 cut 10 -171.53124237432849 +182.71067811865487 20 -68.33333333333334 +112.27272727272728 30 0.0 11 -166.53124237432849 +178.71067811865487 21 -73.33333333333336 +116.27272727272728 31 0.0 0 @@ -3395,15 +3557,15 @@ LINE 8 cut 10 -166.53124237432849 +178.71067811865487 20 -73.33333333333336 +116.27272727272728 30 0.0 11 -166.53124237432849 +178.71067811865487 21 -68.33333333333334 +112.27272727272728 31 0.0 0 diff --git a/rocolib/output/BoatBaseFlat/graph-autofold-graph.dxf b/rocolib/output/BoatBaseFlat/graph-autofold-graph.dxf index 32039bb38843a5d1f8dda1ff10a75277fb1ed923..f6038478d4288febf4cb2c8738812744c6b19dd5 100644 --- a/rocolib/output/BoatBaseFlat/graph-autofold-graph.dxf +++ b/rocolib/output/BoatBaseFlat/graph-autofold-graph.dxf @@ -943,15 +943,15 @@ LINE 8 0 10 -184.0312423743285 +192.71067811865487 20 -35.00000000000001 +55.00000000000001 30 0.0 11 -174.0312423743285 +184.71067811865484 21 -35.00000000000001 +55.00000000000001 31 0.0 0 @@ -963,15 +963,15 @@ DOTTED 8 0 10 -184.0312423743285 +192.71067811865487 20 -35.00000000000001 +55.00000000000001 30 0.0 11 -184.0312423743285 +192.71067811865487 21 -85.00000000000001 +125.00000000000001 31 0.0 0 @@ -981,15 +981,15 @@ LINE 8 0 10 -174.0312423743285 +184.71067811865484 20 -85.00000000000001 +125.00000000000001 30 0.0 11 -184.0312423743285 +192.71067811865487 21 -85.00000000000001 +125.00000000000001 31 0.0 0 @@ -1001,15 +1001,15 @@ DOTTED 8 0 10 -174.0312423743285 +184.71067811865484 20 -85.00000000000001 +125.00000000000001 30 0.0 11 -174.0312423743285 +184.71067811865484 21 -35.00000000000001 +55.00000000000001 31 0.0 0 @@ -1021,15 +1021,15 @@ DOTTED 8 0 10 -194.03124237432849 +200.71067811865487 20 -35.00000000000001 +55.00000000000001 30 0.0 11 -194.03124237432849 +200.71067811865487 21 -85.00000000000001 +125.00000000000001 31 0.0 0 @@ -1039,13 +1039,13 @@ LINE 8 0 10 -194.03124237432849 +200.71067811865487 20 -35.00000000000001 +55.00000000000001 30 0.0 11 -194.03124237432849 +200.71067811865487 21 5.000000000000001 31 @@ -1057,15 +1057,15 @@ LINE 8 0 10 -184.0312423743285 +192.71067811865487 20 5.000000000000001 30 0.0 11 -184.0312423743285 +192.71067811865487 21 -35.00000000000001 +55.00000000000001 31 0.0 0 @@ -1075,13 +1075,13 @@ LINE 8 0 10 -184.0312423743285 +192.71067811865487 20 0.0 30 0.0 11 -184.0312423743285 +192.71067811865487 21 5.000000000000001 31 @@ -1093,13 +1093,13 @@ LINE 8 0 10 -194.03124237432849 +200.71067811865487 20 0.0 30 0.0 11 -184.0312423743285 +192.71067811865487 21 0.0 31 @@ -1111,13 +1111,13 @@ LINE 8 0 10 -194.03124237432849 +200.71067811865487 20 5.000000000000001 30 0.0 11 -194.03124237432849 +200.71067811865487 21 0.0 31 @@ -1129,15 +1129,15 @@ LINE 8 0 10 -204.0312423743285 +208.71067811865487 20 -35.00000000000001 +55.00000000000001 30 0.0 11 -194.03124237432849 +200.71067811865487 21 -35.00000000000001 +55.00000000000001 31 0.0 0 @@ -1149,15 +1149,15 @@ DOTTED 8 0 10 -204.0312423743285 +208.71067811865487 20 -35.00000000000001 +55.00000000000001 30 0.0 11 -204.0312423743285 +208.71067811865487 21 -85.00000000000001 +125.00000000000001 31 0.0 0 @@ -1167,15 +1167,15 @@ LINE 8 0 10 -194.03124237432849 +200.71067811865487 20 -85.00000000000001 +125.00000000000001 30 0.0 11 -204.0312423743285 +208.71067811865487 21 -85.00000000000001 +125.00000000000001 31 0.0 0 @@ -1185,15 +1185,15 @@ LINE 8 0 10 -214.0312423743285 +216.71067811865487 20 -35.00000000000001 +55.00000000000001 30 0.0 11 -204.0312423743285 +208.71067811865487 21 -35.00000000000001 +55.00000000000001 31 0.0 0 @@ -1203,15 +1203,15 @@ LINE 8 0 10 -214.0312423743285 +216.71067811865487 20 -85.00000000000001 +125.00000000000001 30 0.0 11 -214.0312423743285 +216.71067811865487 21 -35.00000000000001 +55.00000000000001 31 0.0 0 @@ -1221,15 +1221,15 @@ LINE 8 0 10 -204.0312423743285 +208.71067811865487 20 -85.00000000000001 +125.00000000000001 30 0.0 11 -214.0312423743285 +216.71067811865487 21 -85.00000000000001 +125.00000000000001 31 0.0 0 @@ -1239,15 +1239,15 @@ LINE 8 0 10 -184.0312423743285 +192.71067811865487 20 -85.00000000000001 +125.00000000000001 30 0.0 11 -184.0312423743285 +192.71067811865487 21 -115.00000000000001 +175.0 31 0.0 0 @@ -1257,15 +1257,15 @@ LINE 8 0 10 -194.03124237432849 +200.71067811865487 20 -115.00000000000001 +175.0 30 0.0 11 -194.03124237432849 +200.71067811865487 21 -85.00000000000001 +125.00000000000001 31 0.0 0 @@ -1277,15 +1277,15 @@ DOTTED 8 0 10 -194.03124237432849 +200.71067811865487 20 -115.00000000000001 +175.0 30 0.0 11 -184.0312423743285 +192.71067811865487 21 -115.00000000000001 +175.0 31 0.0 0 @@ -1295,15 +1295,15 @@ LINE 8 0 10 -184.0312423743285 +192.71067811865487 20 -115.00000000000001 +175.0 30 0.0 11 -64.0312423743285 +70.71067811865484 21 -115.00000000000001 +175.0 31 0.0 0 @@ -1313,15 +1313,15 @@ LINE 8 0 10 -194.03124237432849 +200.71067811865487 20 -115.00000000000001 +175.0 30 0.0 11 -194.03124237432849 +200.71067811865487 21 -115.00000000000001 +175.0 31 0.0 0 @@ -1331,15 +1331,15 @@ LINE 8 0 10 -64.0312423743285 +70.71067811865484 20 -115.00000000000001 +175.0 30 0.0 11 -64.0312423743285 +70.71067811865484 21 -115.00000000000001 +175.0 31 0.0 0 @@ -1351,15 +1351,15 @@ DOTTED 8 0 10 -64.0312423743285 +70.71067811865484 20 -155.0 +225.00000000000003 30 0.0 11 -194.03124237432849 +200.71067811865487 21 -155.0 +225.00000000000003 31 0.0 0 @@ -1371,15 +1371,15 @@ DOTTED 8 0 10 -64.0312423743285 +70.71067811865484 20 -115.00000000000001 +175.0 30 0.0 11 -64.0312423743285 +70.71067811865484 21 -155.0 +225.00000000000003 31 0.0 0 @@ -1391,15 +1391,15 @@ DOTTED 8 0 10 -42.35246120943851 +38.45101131870072 20 -115.00000000000001 +175.0 30 0.0 11 -64.0312423743285 +70.71067811865485 21 -155.0 +225.00000000000003 31 0.0 0 @@ -1411,15 +1411,15 @@ DOTTED 8 0 10 -42.35246120943851 +38.45101131870072 20 -115.00000000000001 +175.0 30 0.0 11 -64.0312423743285 +70.71067811865485 21 -115.00000000000001 +175.0 31 0.0 0 @@ -1429,15 +1429,15 @@ LINE 8 0 10 -42.35246120943851 +38.4510113187007 20 -115.00000000000001 +175.0 30 0.0 11 -30.5176577740279 +25.155006321979045 21 -133.1633416650236 +204.3922158601766 31 0.0 0 @@ -1449,15 +1449,15 @@ DOTTED 8 0 10 -30.5176577740279 +25.155006321979045 20 -133.1633416650236 +204.3922158601766 30 0.0 11 -64.0312423743285 +70.71067811865483 21 -155.0 +225.00000000000003 31 0.0 0 @@ -1469,15 +1469,15 @@ DOTTED 8 0 10 -0.0 +8.526512829121203e-14 20 -180.0 +260.0 30 0.0 11 -64.0312423743285 +70.71067811865484 21 -155.0 +225.00000000000003 31 0.0 0 @@ -1487,15 +1487,15 @@ LINE 8 0 10 -18.682854338617293 +11.859001325257395 20 -151.3266833300472 +233.78443172035318 30 0.0 11 -0.0 +8.526512829121203e-14 21 -180.0 +260.0 31 0.0 0 @@ -1505,15 +1505,15 @@ LINE 8 0 10 -30.5176577740279 +25.155006321979076 20 -133.16334166502358 +204.3922158601766 30 0.0 11 -18.682854338617293 +11.859001325257395 21 -151.3266833300472 +233.78443172035318 31 0.0 0 @@ -1525,15 +1525,15 @@ DOTTED 8 0 10 -64.03124237432847 +70.71067811865484 20 -155.0 +225.00000000000003 30 0.0 11 -64.03124237432847 +70.71067811865484 21 -180.0 +260.0 31 0.0 0 @@ -1545,15 +1545,15 @@ DOTTED 8 0 10 -64.03124237432851 +70.71067811865484 20 -180.0 +260.0 30 0.0 11 -64.03124237432851 +70.71067811865484 21 -205.00000000000003 +295.0 31 0.0 0 @@ -1565,15 +1565,15 @@ DOTTED 8 0 10 -2.8421709430404014e-14 +8.526512829121203e-14 20 -180.0 +260.0 30 0.0 11 -64.03124237432851 +70.71067811865484 21 -205.00000000000003 +295.0 31 0.0 0 @@ -1585,15 +1585,15 @@ DOTTED 8 0 10 -64.0312423743285 +70.71067811865484 20 -205.00000000000003 +295.0 30 0.0 11 -194.03124237432846 +200.7106781186548 21 -205.00000000000003 +295.0 31 0.0 0 @@ -1605,15 +1605,15 @@ DOTTED 8 0 10 -194.03124237432846 +200.7106781186548 20 -180.0 +260.0 30 0.0 11 -194.03124237432846 +200.7106781186548 21 -155.0 +225.00000000000003 31 0.0 0 @@ -1625,15 +1625,15 @@ DOTTED 8 0 10 -194.03124237432846 +200.7106781186548 20 -205.00000000000003 +295.0 30 0.0 11 -194.03124237432846 +200.7106781186548 21 -180.0 +260.0 31 0.0 0 @@ -1643,15 +1643,15 @@ LINE 8 0 10 -234.03124237432846 +250.71067811865484 20 -195.0 +275.00000000000006 30 0.0 11 -234.03124237432846 +250.71067811865484 21 -155.0 +225.00000000000003 31 0.0 0 @@ -1661,15 +1661,15 @@ LINE 8 0 10 -234.03124237432846 +250.71067811865484 20 -180.0 +260.0 30 0.0 11 -234.03124237432846 +250.71067811865484 21 -195.0 +275.00000000000006 31 0.0 0 @@ -1681,15 +1681,15 @@ DOTTED 8 0 10 -194.03124237432846 +200.7106781186548 20 -155.0 +225.00000000000003 30 0.0 11 -234.03124237432846 +250.71067811865484 21 -155.0 +225.00000000000003 31 0.0 0 @@ -1701,15 +1701,15 @@ DOTTED 8 0 10 -194.03124237432846 +200.7106781186548 20 -155.0 +225.00000000000003 30 0.0 11 -234.03124237432846 +250.71067811865484 21 -115.00000000000003 +175.00000000000003 31 0.0 0 @@ -1719,15 +1719,15 @@ LINE 8 0 10 -234.03124237432846 +250.71067811865484 20 -155.0 +225.00000000000003 30 0.0 11 -234.03124237432846 +250.71067811865484 21 -115.00000000000003 +175.00000000000003 31 0.0 0 @@ -1739,15 +1739,15 @@ DOTTED 8 0 10 -194.03124237432846 +200.7106781186548 20 -115.00000000000003 +175.0 30 0.0 11 -234.03124237432846 +250.71067811865484 21 -115.00000000000004 +175.0 31 0.0 0 @@ -1759,15 +1759,15 @@ DOTTED 8 0 10 -194.03124237432846 +200.7106781186548 20 -155.0 +225.00000000000003 30 0.0 11 -194.03124237432846 +200.7106781186548 21 -115.00000000000003 +175.0 31 0.0 0 @@ -1777,15 +1777,15 @@ LINE 8 0 10 -194.03124237432846 +200.7106781186548 20 -101.6666666666667 +158.33333333333337 30 0.0 11 -194.03124237432846 +200.7106781186548 21 -115.00000000000004 +175.0 31 0.0 0 @@ -1795,15 +1795,15 @@ LINE 8 0 10 -234.03124237432846 +250.71067811865484 20 -101.66666666666671 +158.33333333333337 30 0.0 11 -194.03124237432846 +200.7106781186548 21 -101.6666666666667 +158.33333333333337 31 0.0 0 @@ -1813,15 +1813,15 @@ LINE 8 0 10 -234.03124237432846 +250.71067811865484 20 -115.00000000000004 +175.0 30 0.0 11 -234.03124237432846 +250.71067811865484 21 -101.66666666666671 +158.33333333333337 31 0.0 0 @@ -1833,15 +1833,15 @@ DOTTED 8 0 10 -234.03124237432849 +250.71067811865484 20 -205.00000000000003 +295.0 30 0.0 11 -194.03124237432849 +200.7106781186548 21 -205.00000000000003 +295.0 31 0.0 0 @@ -1851,15 +1851,15 @@ LINE 8 0 10 -234.03124237432849 +250.71067811865484 20 -165.00000000000003 +245.00000000000003 30 0.0 11 -234.03124237432849 +250.71067811865484 21 -180.0 +260.0 31 0.0 0 @@ -1869,15 +1869,15 @@ LINE 8 0 10 -234.03124237432849 +250.71067811865484 20 -205.00000000000003 +295.0 30 0.0 11 -234.03124237432849 +250.71067811865484 21 -165.00000000000003 +245.00000000000003 31 0.0 0 @@ -1887,15 +1887,15 @@ LINE 8 0 10 -234.03124237432849 +250.71067811865484 20 -245.0 +345.00000000000006 30 0.0 11 -234.03124237432849 +250.71067811865484 21 -205.00000000000003 +295.0 31 0.0 0 @@ -1907,15 +1907,15 @@ DOTTED 8 0 10 -234.03124237432849 +250.71067811865484 20 -245.0 +345.00000000000006 30 0.0 11 -194.03124237432846 +200.7106781186548 21 -205.00000000000003 +295.0 31 0.0 0 @@ -1927,15 +1927,15 @@ DOTTED 8 0 10 -194.03124237432846 +200.71067811865478 20 -245.00000000000006 +345.00000000000006 30 0.0 11 -194.03124237432846 +200.71067811865478 21 -205.00000000000006 +295.0 31 0.0 0 @@ -1947,15 +1947,15 @@ DOTTED 8 0 10 -234.03124237432846 +250.71067811865484 20 -245.00000000000003 +345.00000000000006 30 0.0 11 -194.03124237432846 +200.71067811865478 21 -245.00000000000006 +345.00000000000006 31 0.0 0 @@ -1967,15 +1967,15 @@ DOTTED 8 0 10 -64.03124237432853 +70.7106781186548 20 -205.00000000000009 +295.0 30 0.0 11 -64.03124237432853 +70.7106781186548 21 -245.00000000000009 +345.00000000000006 31 0.0 0 @@ -1987,15 +1987,15 @@ DOTTED 8 0 10 -64.03124237432853 +70.71067811865481 20 -245.00000000000006 +345.00000000000006 30 0.0 11 -42.35246120943856 +38.45101131870067 21 -245.00000000000009 +345.00000000000006 31 0.0 0 @@ -2007,15 +2007,15 @@ DOTTED 8 0 10 -64.03124237432853 +70.7106781186548 20 -205.00000000000009 +295.0 30 0.0 11 -42.35246120943856 +38.45101131870067 21 -245.00000000000009 +345.00000000000006 31 0.0 0 @@ -2025,15 +2025,15 @@ LINE 8 0 10 -64.03124237432851 +70.7106781186548 20 -252.2262603882967 +355.75322226665145 30 0.0 11 -64.03124237432851 +70.7106781186548 21 -245.00000000000006 +345.00000000000006 31 0.0 0 @@ -2043,15 +2043,15 @@ LINE 8 0 10 -42.35246120943854 +38.45101131870067 20 -252.2262603882967 +355.75322226665145 30 0.0 11 -64.03124237432851 +70.7106781186548 21 -252.2262603882967 +355.75322226665145 31 0.0 0 @@ -2061,15 +2061,15 @@ LINE 8 0 10 -42.35246120943854 +38.45101131870067 20 -245.00000000000006 +345.00000000000006 30 0.0 11 -42.35246120943854 +38.45101131870067 21 -252.2262603882967 +355.75322226665145 31 0.0 0 @@ -2081,15 +2081,15 @@ DOTTED 8 0 10 -64.03124237432851 +70.71067811865478 20 -205.00000000000009 +295.0 30 0.0 11 -30.517657774027928 +25.15500632197899 21 -226.83665833497648 +315.6077841398234 31 0.0 0 @@ -2099,15 +2099,15 @@ LINE 8 0 10 -30.517657774027928 +25.15500632197899 20 -226.83665833497648 +315.6077841398234 30 0.0 11 -42.35246120943854 +38.45101131870067 21 -245.00000000000006 +345.00000000000006 31 0.0 0 @@ -2117,15 +2117,15 @@ LINE 8 0 10 -18.68285433861732 +11.859001325257312 20 -208.6733166699529 +286.21556827964685 30 0.0 11 -30.517657774027928 +25.15500632197899 21 -226.83665833497648 +315.6077841398234 31 0.0 0 @@ -2135,15 +2135,15 @@ LINE 8 0 10 -2.8421709430404014e-14 +0.0 20 -180.00000000000009 +260.0 30 0.0 11 -18.68285433861732 +11.859001325257312 21 -208.6733166699529 +286.21556827964685 31 0.0 0 @@ -2153,15 +2153,15 @@ LINE 8 0 10 -184.03124237432849 +192.7106781186548 20 -245.00000000000003 +345.00000000000006 30 0.0 11 -194.03124237432846 +200.71067811865478 21 -245.00000000000003 +345.00000000000006 31 0.0 0 @@ -2171,15 +2171,15 @@ LINE 8 0 10 -64.03124237432853 +70.7106781186548 20 -245.00000000000006 +345.00000000000006 30 0.0 11 -184.03124237432849 +192.7106781186548 21 -245.00000000000003 +345.00000000000006 31 0.0 0 @@ -2189,15 +2189,15 @@ LINE 8 0 10 -64.03124237432853 +70.7106781186548 20 -245.00000000000006 +345.00000000000006 30 0.0 11 -64.03124237432853 +70.7106781186548 21 -245.00000000000006 +345.00000000000006 31 0.0 0 @@ -2207,15 +2207,15 @@ LINE 8 0 10 -194.03124237432846 +200.71067811865478 20 -245.00000000000003 +345.00000000000006 30 0.0 11 -194.03124237432846 +200.71067811865478 21 -245.00000000000003 +345.00000000000006 31 0.0 0 @@ -2225,15 +2225,15 @@ LINE 8 0 10 -234.03124237432846 +250.71067811865484 20 -258.33333333333337 +361.66666666666674 30 0.0 11 -234.03124237432846 +250.71067811865484 21 -245.00000000000003 +345.00000000000006 31 0.0 0 @@ -2243,15 +2243,15 @@ LINE 8 0 10 -194.03124237432846 +200.71067811865478 20 -258.33333333333337 +361.66666666666674 30 0.0 11 -234.03124237432846 +250.71067811865484 21 -258.33333333333337 +361.66666666666674 31 0.0 0 @@ -2261,15 +2261,15 @@ LINE 8 0 10 -194.03124237432846 +200.71067811865478 20 -245.00000000000003 +345.00000000000006 30 0.0 11 -194.03124237432846 +200.71067811865478 21 -258.33333333333337 +361.66666666666674 31 0.0 0 @@ -2279,15 +2279,15 @@ LINE 8 0 10 -42.35246120943851 +38.45101131870072 20 -107.77373961170336 +164.2467777333486 30 0.0 11 -42.35246120943851 +38.45101131870072 21 -115.00000000000001 +175.0 31 0.0 0 @@ -2297,15 +2297,15 @@ LINE 8 0 10 -64.0312423743285 +70.71067811865484 20 -107.77373961170336 +164.2467777333486 30 0.0 11 -42.35246120943851 +38.45101131870072 21 -107.77373961170336 +164.2467777333486 31 0.0 0 @@ -2315,15 +2315,15 @@ LINE 8 0 10 -64.0312423743285 +70.71067811865484 20 -115.00000000000001 +175.0 30 0.0 11 -64.0312423743285 +70.71067811865484 21 -107.77373961170336 +164.2467777333486 31 0.0 0 @@ -2333,15 +2333,15 @@ LINE 8 0 10 -164.0312423743285 +176.71067811865487 20 -85.00000000000001 +125.00000000000001 30 0.0 11 -174.0312423743285 +184.71067811865484 21 -85.00000000000001 +125.00000000000001 31 0.0 0 @@ -2351,15 +2351,15 @@ LINE 8 0 10 -164.0312423743285 +176.71067811865487 20 -35.00000000000001 +55.00000000000001 30 0.0 11 -164.0312423743285 +176.71067811865487 21 -85.00000000000001 +125.00000000000001 31 0.0 0 @@ -2369,15 +2369,15 @@ LINE 8 0 10 -174.0312423743285 +184.71067811865484 20 -35.00000000000001 +55.00000000000001 30 0.0 11 -164.0312423743285 +176.71067811865487 21 -35.00000000000001 +55.00000000000001 31 0.0 0 @@ -2387,15 +2387,15 @@ LINE 8 0 10 -174.0312423743285 +184.71067811865484 20 -55.00000000000001 +86.00000000000001 30 0.0 11 -184.0312423743285 +192.71067811865487 21 -55.00000000000001 +86.00000000000001 31 0.0 0 @@ -2405,15 +2405,15 @@ LINE 8 0 10 -184.0312423743285 +192.71067811865487 20 -55.00000000000001 +86.00000000000001 30 0.0 11 -184.0312423743285 +192.71067811865487 21 -65.0 +94.00000000000001 31 0.0 0 @@ -2423,15 +2423,15 @@ LINE 8 0 10 -184.0312423743285 +192.71067811865487 20 -65.0 +94.00000000000001 30 0.0 11 -174.0312423743285 +184.71067811865484 21 -65.0 +94.00000000000001 31 0.0 0 @@ -2441,15 +2441,15 @@ LINE 8 0 10 -174.0312423743285 +184.71067811865484 20 -65.0 +94.00000000000001 30 0.0 11 -174.0312423743285 +184.71067811865484 21 -55.00000000000001 +86.00000000000001 31 0.0 0 @@ -2459,13 +2459,13 @@ LINE 8 0 10 -190.69790904099517 +198.04401145198818 20 1.2500000000000002 30 0.0 11 -190.69790904099517 +198.04401145198818 21 3.7500000000000004 31 @@ -2477,13 +2477,13 @@ LINE 8 0 10 -190.69790904099517 +198.04401145198818 20 3.7500000000000004 30 0.0 11 -187.36457570766183 +195.37734478532153 21 3.7500000000000004 31 @@ -2495,13 +2495,13 @@ LINE 8 0 10 -187.36457570766183 +195.37734478532153 20 3.7500000000000004 30 0.0 11 -187.36457570766183 +195.37734478532153 21 1.2500000000000002 31 @@ -2513,15 +2513,15 @@ LINE 8 0 10 -194.03124237432849 +200.71067811865487 20 -55.00000000000001 +86.00000000000001 30 0.0 11 -204.0312423743285 +208.71067811865487 21 -55.00000000000001 +86.00000000000001 31 0.0 0 @@ -2531,15 +2531,15 @@ LINE 8 0 10 -204.0312423743285 +208.71067811865487 20 -55.00000000000001 +86.00000000000001 30 0.0 11 -204.0312423743285 +208.71067811865487 21 -65.0 +94.00000000000001 31 0.0 0 @@ -2549,15 +2549,15 @@ LINE 8 0 10 -204.0312423743285 +208.71067811865487 20 -65.0 +94.00000000000001 30 0.0 11 -194.03124237432849 +200.71067811865487 21 -65.0 +94.00000000000001 31 0.0 0 @@ -2567,15 +2567,177 @@ LINE 8 0 10 -194.03124237432849 +200.71067811865487 20 -65.0 +94.00000000000001 30 0.0 11 -194.03124237432849 +200.71067811865487 21 -55.00000000000001 +86.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +210.46067811865487 + 20 +80.70454545454547 + 30 +0.0 + 11 +210.46067811865487 + 21 +67.47727272727273 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +210.46067811865487 + 20 +67.47727272727273 + 30 +0.0 + 11 +210.96067811865487 + 21 +67.47727272727273 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +210.96067811865487 + 20 +67.47727272727273 + 30 +0.0 + 11 +210.96067811865487 + 21 +80.70454545454547 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +210.96067811865487 + 20 +80.70454545454547 + 30 +0.0 + 11 +210.46067811865487 + 21 +80.70454545454547 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +210.46067811865487 + 20 +112.52272727272728 + 30 +0.0 + 11 +210.46067811865487 + 21 +99.29545454545456 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +210.46067811865487 + 20 +99.29545454545456 + 30 +0.0 + 11 +210.96067811865487 + 21 +99.29545454545456 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +210.96067811865487 + 20 +99.29545454545456 + 30 +0.0 + 11 +210.96067811865487 + 21 +112.52272727272728 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +210.96067811865487 + 20 +112.52272727272728 + 30 +0.0 + 11 +210.46067811865487 + 21 +112.52272727272728 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +28.401875901131806 + 20 +217.3888829577983 + 30 +0.0 + 11 +23.7637963941597 + 21 +227.64184496249058 31 0.0 0 @@ -2585,15 +2747,15 @@ LINE 8 0 10 -206.2812423743285 +23.7637963941597 20 -68.58333333333336 +227.64184496249058 30 0.0 11 -206.2812423743285 +23.30823967619293 21 -51.41666666666668 +227.43576712109234 31 0.0 0 @@ -2603,15 +2765,15 @@ LINE 8 0 10 -206.2812423743285 +23.30823967619293 20 -51.41666666666668 +227.43576712109234 30 0.0 11 -206.7812423743285 +27.946319183165034 21 -51.41666666666668 +217.18280511640006 31 0.0 0 @@ -2621,15 +2783,15 @@ LINE 8 0 10 -206.7812423743285 +27.946319183165034 20 -51.41666666666668 +217.18280511640006 30 0.0 11 -206.7812423743285 +28.401875901131806 21 -68.58333333333336 +217.3888829577983 31 0.0 0 @@ -2639,15 +2801,15 @@ LINE 8 0 10 -206.7812423743285 +237.96067811865484 20 -68.58333333333336 +258.58333333333337 30 0.0 11 -206.2812423743285 +237.96067811865484 21 -68.58333333333336 +241.41666666666669 31 0.0 0 @@ -2657,15 +2819,15 @@ LINE 8 0 10 -31.45949773015906 +237.96067811865484 20 -142.10350895639252 +241.41666666666669 30 0.0 11 -27.241605022501663 +238.46067811865484 21 -148.57687598557078 +241.41666666666669 31 0.0 0 @@ -2675,15 +2837,15 @@ LINE 8 0 10 -27.241605022501663 +238.46067811865484 20 -148.57687598557078 +241.41666666666669 30 0.0 11 -26.822685214997907 +238.46067811865484 21 -148.30391775638358 +258.58333333333337 31 0.0 0 @@ -2693,15 +2855,15 @@ LINE 8 0 10 -26.822685214997907 +238.46067811865484 20 -148.30391775638358 +258.58333333333337 30 0.0 11 -31.040577922655306 +237.96067811865484 21 -141.8305507272053 +258.58333333333337 31 0.0 0 @@ -2711,15 +2873,15 @@ LINE 8 0 10 -31.040577922655306 +234.04401145198818 20 -141.8305507272053 +162.50000000000003 30 0.0 11 -31.45949773015906 +234.04401145198818 21 -142.10350895639252 +170.83333333333334 31 0.0 0 @@ -2729,15 +2891,15 @@ LINE 8 0 10 -223.78124237432846 +234.04401145198818 20 -181.91666666666666 +170.83333333333334 30 0.0 11 -223.78124237432846 +217.37734478532153 21 -168.08333333333334 +170.83333333333334 31 0.0 0 @@ -2747,15 +2909,15 @@ LINE 8 0 10 -223.78124237432846 +217.37734478532153 20 -168.08333333333334 +170.83333333333334 30 0.0 11 -224.28124237432849 +217.37734478532153 21 -168.08333333333334 +162.50000000000003 31 0.0 0 @@ -2765,15 +2927,15 @@ LINE 8 0 10 -224.28124237432849 +237.96067811865484 20 -168.08333333333334 +278.5833333333333 30 0.0 11 -224.28124237432849 +237.96067811865484 21 -181.91666666666666 +261.4166666666667 31 0.0 0 @@ -2783,15 +2945,15 @@ LINE 8 0 10 -224.28124237432849 +237.96067811865484 20 -181.91666666666666 +261.4166666666667 30 0.0 11 -223.78124237432846 +238.46067811865484 21 -181.91666666666666 +261.4166666666667 31 0.0 0 @@ -2801,15 +2963,15 @@ LINE 8 0 10 -220.69790904099514 +238.46067811865484 20 -105.00000000000004 +261.4166666666667 30 0.0 11 -220.69790904099514 +238.46067811865484 21 -111.6666666666667 +278.5833333333333 31 0.0 0 @@ -2819,15 +2981,15 @@ LINE 8 0 10 -220.69790904099514 +238.46067811865484 20 -111.6666666666667 +278.5833333333333 30 0.0 11 -207.36457570766183 +237.96067811865484 21 -111.6666666666667 +278.5833333333333 31 0.0 0 @@ -2837,15 +2999,15 @@ LINE 8 0 10 -207.36457570766183 +49.20423358535203 20 -111.6666666666667 +353.06491669998854 30 0.0 11 -207.36457570766183 +49.20423358535203 21 -105.00000000000004 +347.6883055666629 31 0.0 0 @@ -2855,15 +3017,15 @@ LINE 8 0 10 -223.78124237432846 +49.20423358535203 20 -191.91666666666669 +347.6883055666629 30 0.0 11 -223.78124237432846 +59.95745585200343 21 -178.08333333333337 +347.6883055666629 31 0.0 0 @@ -2873,15 +3035,15 @@ LINE 8 0 10 -223.78124237432846 +59.95745585200343 20 -178.08333333333337 +347.6883055666629 30 0.0 11 -224.28124237432849 +59.95745585200343 21 -178.08333333333337 +353.06491669998854 31 0.0 0 @@ -2891,15 +3053,15 @@ LINE 8 0 10 -224.28124237432849 +23.763796394159613 20 -178.08333333333337 +292.3581550375095 30 0.0 11 -224.28124237432849 +28.40187590113172 21 -191.91666666666669 +302.6111170422017 31 0.0 0 @@ -2909,15 +3071,15 @@ LINE 8 0 10 -224.28124237432849 +28.40187590113172 20 -191.91666666666669 +302.6111170422017 30 0.0 11 -223.78124237432846 +27.94631918316495 21 -191.91666666666669 +302.81719488360005 31 0.0 0 @@ -2927,15 +3089,15 @@ LINE 8 0 10 -49.57872159773519 +27.94631918316495 20 -250.41969529122255 +302.81719488360005 30 0.0 11 -49.57872159773519 +23.308239676192844 21 -246.8065650970742 +292.5642328789077 31 0.0 0 @@ -2945,15 +3107,15 @@ LINE 8 0 10 -49.57872159773519 +23.308239676192844 20 -246.8065650970742 +292.5642328789077 30 0.0 11 -56.804981986031855 +23.763796394159613 21 -246.8065650970742 +292.3581550375095 31 0.0 0 @@ -2963,15 +3125,15 @@ LINE 8 0 10 -56.804981986031855 +195.1273447853215 20 -246.8065650970742 +341.0 30 0.0 11 -56.804981986031855 +198.29401145198813 21 -250.41969529122255 +341.0 31 0.0 0 @@ -2981,15 +3143,15 @@ LINE 8 0 10 -27.24160502250169 +198.29401145198813 20 -211.4231240144293 +341.0 30 0.0 11 -31.459497730159118 +198.29401145198813 21 -217.8964910436076 +341.5 31 0.0 0 @@ -2999,15 +3161,15 @@ LINE 8 0 10 -31.459497730159118 +198.29401145198813 20 -217.8964910436076 +341.5 30 0.0 11 -31.040577922655363 +195.1273447853215 21 -218.1694492727948 +341.5 31 0.0 0 @@ -3017,15 +3179,15 @@ LINE 8 0 10 -31.040577922655363 +195.1273447853215 20 -218.1694492727948 +341.5 30 0.0 11 -26.822685214997907 +195.1273447853215 21 -211.69608224361647 +341.0 31 0.0 0 @@ -3035,15 +3197,15 @@ LINE 8 0 10 -26.822685214997907 +217.3773447853215 20 -211.69608224361647 +357.50000000000006 30 0.0 11 -27.24160502250169 +217.3773447853215 21 -211.4231240144293 +349.16666666666674 31 0.0 0 @@ -3053,15 +3215,15 @@ LINE 8 0 10 -187.1145757076618 +217.3773447853215 20 -241.00000000000003 +349.16666666666674 30 0.0 11 -190.94790904099517 +234.04401145198815 21 -241.00000000000003 +349.16666666666674 31 0.0 0 @@ -3071,15 +3233,15 @@ LINE 8 0 10 -190.94790904099517 +234.04401145198815 20 -241.00000000000003 +349.16666666666674 30 0.0 11 -190.94790904099517 +234.04401145198815 21 -241.50000000000003 +357.50000000000006 31 0.0 0 @@ -3089,15 +3251,15 @@ LINE 8 0 10 -190.94790904099517 +59.957455852003484 20 -241.50000000000003 +166.93508330001148 30 0.0 11 -187.1145757076618 +59.957455852003484 21 -241.50000000000003 +172.31169443333718 31 0.0 0 @@ -3107,15 +3269,15 @@ LINE 8 0 10 -187.1145757076618 +59.957455852003484 20 -241.50000000000003 +172.31169443333718 30 0.0 11 -187.1145757076618 +49.20423358535209 21 -241.00000000000003 +172.31169443333718 31 0.0 0 @@ -3125,15 +3287,15 @@ LINE 8 0 10 -207.36457570766183 +49.20423358535209 20 -255.00000000000003 +172.31169443333718 30 0.0 11 -207.36457570766183 +49.20423358535209 21 -248.33333333333337 +166.93508330001148 31 0.0 0 @@ -3143,15 +3305,15 @@ LINE 8 0 10 -207.36457570766183 +178.71067811865487 20 -248.33333333333337 +67.72727272727273 30 0.0 11 -220.69790904099514 +178.71067811865487 21 -248.33333333333337 +63.727272727272734 31 0.0 0 @@ -3161,15 +3323,15 @@ LINE 8 0 10 -220.69790904099514 +178.71067811865487 20 -248.33333333333337 +63.727272727272734 30 0.0 11 -220.69790904099514 +182.71067811865487 21 -255.00000000000003 +67.72727272727273 31 0.0 0 @@ -3179,15 +3341,15 @@ LINE 8 0 10 -56.80498198603183 +182.71067811865487 20 -109.58030470877752 +67.72727272727273 30 0.0 11 -56.80498198603183 +182.71067811865487 21 -113.19343490292586 +80.45454545454547 31 0.0 0 @@ -3197,15 +3359,15 @@ LINE 8 0 10 -56.80498198603183 +182.71067811865487 20 -113.19343490292586 +80.45454545454547 30 0.0 11 -49.57872159773516 +178.71067811865487 21 -113.19343490292586 +84.45454545454547 31 0.0 0 @@ -3215,15 +3377,15 @@ LINE 8 0 10 -49.57872159773516 +178.71067811865487 20 -113.19343490292586 +84.45454545454547 30 0.0 11 -49.57872159773516 +178.71067811865487 21 -109.58030470877752 +80.45454545454547 31 0.0 0 @@ -3233,15 +3395,15 @@ LINE 8 0 10 -166.53124237432849 +178.71067811865487 20 -51.66666666666668 +99.54545454545455 30 0.0 11 -166.53124237432849 +178.71067811865487 21 -46.66666666666667 +95.54545454545456 31 0.0 0 @@ -3251,15 +3413,15 @@ LINE 8 0 10 -166.53124237432849 +178.71067811865487 20 -46.66666666666667 +95.54545454545456 30 0.0 11 -171.53124237432849 +182.71067811865487 21 -51.66666666666668 +99.54545454545455 31 0.0 0 @@ -3269,15 +3431,15 @@ LINE 8 0 10 -171.53124237432849 +182.71067811865487 20 -51.66666666666668 +99.54545454545455 30 0.0 11 -171.53124237432849 +182.71067811865487 21 -68.33333333333334 +112.27272727272728 31 0.0 0 @@ -3287,15 +3449,15 @@ LINE 8 0 10 -171.53124237432849 +182.71067811865487 20 -68.33333333333334 +112.27272727272728 30 0.0 11 -166.53124237432849 +178.71067811865487 21 -73.33333333333336 +116.27272727272728 31 0.0 0 @@ -3305,15 +3467,15 @@ LINE 8 0 10 -166.53124237432849 +178.71067811865487 20 -73.33333333333336 +116.27272727272728 30 0.0 11 -166.53124237432849 +178.71067811865487 21 -68.33333333333334 +112.27272727272728 31 0.0 0 diff --git a/rocolib/output/BoatBaseFlat/graph-lasercutter.svg b/rocolib/output/BoatBaseFlat/graph-lasercutter.svg index c6e5dcf82955bf9513e8bc4bc4f86e91302376dd..f185d7ae4a4cb2e526f8f0d604fb5554eeaa8a0b 100644 --- a/rocolib/output/BoatBaseFlat/graph-lasercutter.svg +++ b/rocolib/output/BoatBaseFlat/graph-lasercutter.svg @@ -1,133 +1,142 @@ <?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="258.333333mm" version="1.1" viewBox="0.000000 0.000000 234.031242 258.333333" width="234.031242mm"> +<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="361.666667mm" version="1.1" viewBox="0.000000 0.000000 250.710678 361.666667" width="250.710678mm"> <defs/> - <line stroke="#000000" x1="184.0312423743285" x2="174.0312423743285" y1="35.00000000000001" y2="35.00000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="184.0312423743285" x2="184.0312423743285" y1="35.00000000000001" y2="85.00000000000001"/> - <line stroke="#000000" x1="174.0312423743285" x2="184.0312423743285" y1="85.00000000000001" y2="85.00000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="174.0312423743285" x2="174.0312423743285" y1="85.00000000000001" y2="35.00000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="194.03124237432849" x2="194.03124237432849" y1="35.00000000000001" y2="85.00000000000001"/> - <line stroke="#000000" x1="194.03124237432849" x2="194.03124237432849" y1="35.00000000000001" y2="5.000000000000001"/> - <line stroke="#000000" x1="184.0312423743285" x2="184.0312423743285" y1="5.000000000000001" y2="35.00000000000001"/> - <line stroke="#000000" x1="184.0312423743285" x2="184.0312423743285" y1="0.0" y2="5.000000000000001"/> - <line stroke="#000000" x1="194.03124237432849" x2="184.0312423743285" y1="0.0" y2="0.0"/> - <line stroke="#000000" x1="194.03124237432849" x2="194.03124237432849" y1="5.000000000000001" y2="0.0"/> - <line stroke="#000000" x1="204.0312423743285" x2="194.03124237432849" y1="35.00000000000001" y2="35.00000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="204.0312423743285" x2="204.0312423743285" y1="35.00000000000001" y2="85.00000000000001"/> - <line stroke="#000000" x1="194.03124237432849" x2="204.0312423743285" y1="85.00000000000001" y2="85.00000000000001"/> - <line stroke="#000000" x1="214.0312423743285" x2="204.0312423743285" y1="35.00000000000001" y2="35.00000000000001"/> - <line stroke="#000000" x1="214.0312423743285" x2="214.0312423743285" y1="85.00000000000001" y2="35.00000000000001"/> - <line stroke="#000000" x1="204.0312423743285" x2="214.0312423743285" y1="85.00000000000001" y2="85.00000000000001"/> - <line stroke="#000000" x1="184.0312423743285" x2="184.0312423743285" y1="85.00000000000001" y2="115.00000000000001"/> - <line stroke="#000000" x1="194.03124237432849" x2="194.03124237432849" y1="115.00000000000001" y2="85.00000000000001"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="194.03124237432849" x2="184.0312423743285" y1="115.00000000000001" y2="115.00000000000001"/> - <line stroke="#000000" x1="184.0312423743285" x2="64.0312423743285" y1="115.00000000000001" y2="115.00000000000001"/> - <line stroke="#000000" x1="194.03124237432849" x2="194.03124237432849" y1="115.00000000000001" y2="115.00000000000001"/> - <line stroke="#000000" x1="64.0312423743285" x2="64.0312423743285" y1="115.00000000000001" y2="115.00000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="64.0312423743285" x2="194.03124237432849" y1="155.0" y2="155.0"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="64.0312423743285" x2="64.0312423743285" y1="115.00000000000001" y2="155.0"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="42.35246120943851" x2="64.0312423743285" y1="115.00000000000001" y2="155.0"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="42.35246120943851" x2="64.0312423743285" y1="115.00000000000001" y2="115.00000000000001"/> - <line stroke="#000000" x1="42.35246120943851" x2="30.5176577740279" y1="115.00000000000001" y2="133.1633416650236"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="30.5176577740279" x2="64.0312423743285" y1="133.1633416650236" y2="155.0"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="0.0" x2="64.0312423743285" y1="180.0" y2="155.0"/> - <line stroke="#000000" x1="18.682854338617293" x2="0.0" y1="151.3266833300472" y2="180.0"/> - <line stroke="#000000" x1="30.5176577740279" x2="18.682854338617293" y1="133.16334166502358" y2="151.3266833300472"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="64.03124237432847" x2="64.03124237432847" y1="155.0" y2="180.0"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="64.03124237432851" x2="64.03124237432851" y1="180.0" y2="205.00000000000003"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="2.8421709430404014e-14" x2="64.03124237432851" y1="180.0" y2="205.00000000000003"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="64.0312423743285" x2="194.03124237432846" y1="205.00000000000003" y2="205.00000000000003"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="194.03124237432846" x2="194.03124237432846" y1="180.0" y2="155.0"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="194.03124237432846" x2="194.03124237432846" y1="205.00000000000003" y2="180.0"/> - <line stroke="#000000" x1="234.03124237432846" x2="234.03124237432846" y1="195.0" y2="155.0"/> - <line stroke="#000000" x1="234.03124237432846" x2="234.03124237432846" y1="180.0" y2="195.0"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="194.03124237432846" x2="234.03124237432846" y1="155.0" y2="155.0"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="194.03124237432846" x2="234.03124237432846" y1="155.0" y2="115.00000000000003"/> - <line stroke="#000000" x1="234.03124237432846" x2="234.03124237432846" y1="155.0" y2="115.00000000000003"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="194.03124237432846" x2="234.03124237432846" y1="115.00000000000003" y2="115.00000000000004"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="194.03124237432846" x2="194.03124237432846" y1="155.0" y2="115.00000000000003"/> - <line stroke="#000000" x1="194.03124237432846" x2="194.03124237432846" y1="101.6666666666667" y2="115.00000000000004"/> - <line stroke="#000000" x1="234.03124237432846" x2="194.03124237432846" y1="101.66666666666671" y2="101.6666666666667"/> - <line stroke="#000000" x1="234.03124237432846" x2="234.03124237432846" y1="115.00000000000004" y2="101.66666666666671"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="234.03124237432849" x2="194.03124237432849" y1="205.00000000000003" y2="205.00000000000003"/> - <line stroke="#000000" x1="234.03124237432849" x2="234.03124237432849" y1="165.00000000000003" y2="180.0"/> - <line stroke="#000000" x1="234.03124237432849" x2="234.03124237432849" y1="205.00000000000003" y2="165.00000000000003"/> - <line stroke="#000000" x1="234.03124237432849" x2="234.03124237432849" y1="245.0" y2="205.00000000000003"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="234.03124237432849" x2="194.03124237432846" y1="245.0" y2="205.00000000000003"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="194.03124237432846" x2="194.03124237432846" y1="245.00000000000006" y2="205.00000000000006"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="234.03124237432846" x2="194.03124237432846" y1="245.00000000000003" y2="245.00000000000006"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="64.03124237432853" x2="64.03124237432853" y1="205.00000000000009" y2="245.00000000000009"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="64.03124237432853" x2="42.35246120943856" y1="245.00000000000006" y2="245.00000000000009"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="64.03124237432853" x2="42.35246120943856" y1="205.00000000000009" y2="245.00000000000009"/> - <line stroke="#000000" x1="64.03124237432851" x2="64.03124237432851" y1="252.2262603882967" y2="245.00000000000006"/> - <line stroke="#000000" x1="42.35246120943854" x2="64.03124237432851" y1="252.2262603882967" y2="252.2262603882967"/> - <line stroke="#000000" x1="42.35246120943854" x2="42.35246120943854" y1="245.00000000000006" y2="252.2262603882967"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="64.03124237432851" x2="30.517657774027928" y1="205.00000000000009" y2="226.83665833497648"/> - <line stroke="#000000" x1="30.517657774027928" x2="42.35246120943854" y1="226.83665833497648" y2="245.00000000000006"/> - <line stroke="#000000" x1="18.68285433861732" x2="30.517657774027928" y1="208.6733166699529" y2="226.83665833497648"/> - <line stroke="#000000" x1="2.8421709430404014e-14" x2="18.68285433861732" y1="180.00000000000009" y2="208.6733166699529"/> - <line stroke="#000000" x1="184.03124237432849" x2="194.03124237432846" y1="245.00000000000003" y2="245.00000000000003"/> - <line stroke="#000000" x1="64.03124237432853" x2="184.03124237432849" y1="245.00000000000006" y2="245.00000000000003"/> - <line stroke="#000000" x1="64.03124237432853" x2="64.03124237432853" y1="245.00000000000006" y2="245.00000000000006"/> - <line stroke="#000000" x1="194.03124237432846" x2="194.03124237432846" y1="245.00000000000003" y2="245.00000000000003"/> - <line stroke="#000000" x1="234.03124237432846" x2="234.03124237432846" y1="258.33333333333337" y2="245.00000000000003"/> - <line stroke="#000000" x1="194.03124237432846" x2="234.03124237432846" y1="258.33333333333337" y2="258.33333333333337"/> - <line stroke="#000000" x1="194.03124237432846" x2="194.03124237432846" y1="245.00000000000003" y2="258.33333333333337"/> - <line stroke="#000000" x1="42.35246120943851" x2="42.35246120943851" y1="107.77373961170336" y2="115.00000000000001"/> - <line stroke="#000000" x1="64.0312423743285" x2="42.35246120943851" y1="107.77373961170336" y2="107.77373961170336"/> - <line stroke="#000000" x1="64.0312423743285" x2="64.0312423743285" y1="115.00000000000001" y2="107.77373961170336"/> - <line stroke="#000000" x1="164.0312423743285" x2="174.0312423743285" y1="85.00000000000001" y2="85.00000000000001"/> - <line stroke="#000000" x1="164.0312423743285" x2="164.0312423743285" y1="35.00000000000001" y2="85.00000000000001"/> - <line stroke="#000000" x1="174.0312423743285" x2="164.0312423743285" y1="35.00000000000001" y2="35.00000000000001"/> - <line stroke="#888888" x1="174.0312423743285" x2="184.0312423743285" y1="55.00000000000001" y2="55.00000000000001"/> - <line stroke="#888888" x1="184.0312423743285" x2="184.0312423743285" y1="55.00000000000001" y2="65.0"/> - <line stroke="#888888" x1="184.0312423743285" x2="174.0312423743285" y1="65.0" y2="65.0"/> - <line stroke="#888888" x1="174.0312423743285" x2="174.0312423743285" y1="65.0" y2="55.00000000000001"/> - <line stroke="#888888" x1="190.69790904099517" x2="190.69790904099517" y1="1.2500000000000002" y2="3.7500000000000004"/> - <line stroke="#888888" x1="190.69790904099517" x2="187.36457570766183" y1="3.7500000000000004" y2="3.7500000000000004"/> - <line stroke="#888888" x1="187.36457570766183" x2="187.36457570766183" y1="3.7500000000000004" y2="1.2500000000000002"/> - <line stroke="#888888" x1="194.03124237432849" x2="204.0312423743285" y1="55.00000000000001" y2="55.00000000000001"/> - <line stroke="#888888" x1="204.0312423743285" x2="204.0312423743285" y1="55.00000000000001" y2="65.0"/> - <line stroke="#888888" x1="204.0312423743285" x2="194.03124237432849" y1="65.0" y2="65.0"/> - <line stroke="#888888" x1="194.03124237432849" x2="194.03124237432849" y1="65.0" y2="55.00000000000001"/> - <line stroke="#888888" x1="206.2812423743285" x2="206.2812423743285" y1="68.58333333333336" y2="51.41666666666668"/> - <line stroke="#888888" x1="206.2812423743285" x2="206.7812423743285" y1="51.41666666666668" y2="51.41666666666668"/> - <line stroke="#888888" x1="206.7812423743285" x2="206.7812423743285" y1="51.41666666666668" y2="68.58333333333336"/> - <line stroke="#888888" x1="206.7812423743285" x2="206.2812423743285" y1="68.58333333333336" y2="68.58333333333336"/> - <line stroke="#888888" x1="31.45949773015906" x2="27.241605022501663" y1="142.10350895639252" y2="148.57687598557078"/> - <line stroke="#888888" x1="27.241605022501663" x2="26.822685214997907" y1="148.57687598557078" y2="148.30391775638358"/> - <line stroke="#888888" x1="26.822685214997907" x2="31.040577922655306" y1="148.30391775638358" y2="141.8305507272053"/> - <line stroke="#888888" x1="31.040577922655306" x2="31.45949773015906" y1="141.8305507272053" y2="142.10350895639252"/> - <line stroke="#888888" x1="223.78124237432846" x2="223.78124237432846" y1="181.91666666666666" y2="168.08333333333334"/> - <line stroke="#888888" x1="223.78124237432846" x2="224.28124237432849" y1="168.08333333333334" y2="168.08333333333334"/> - <line stroke="#888888" x1="224.28124237432849" x2="224.28124237432849" y1="168.08333333333334" y2="181.91666666666666"/> - <line stroke="#888888" x1="224.28124237432849" x2="223.78124237432846" y1="181.91666666666666" y2="181.91666666666666"/> - <line stroke="#888888" x1="220.69790904099514" x2="220.69790904099514" y1="105.00000000000004" y2="111.6666666666667"/> - <line stroke="#888888" x1="220.69790904099514" x2="207.36457570766183" y1="111.6666666666667" y2="111.6666666666667"/> - <line stroke="#888888" x1="207.36457570766183" x2="207.36457570766183" y1="111.6666666666667" y2="105.00000000000004"/> - <line stroke="#888888" x1="223.78124237432846" x2="223.78124237432846" y1="191.91666666666669" y2="178.08333333333337"/> - <line stroke="#888888" x1="223.78124237432846" x2="224.28124237432849" y1="178.08333333333337" y2="178.08333333333337"/> - <line stroke="#888888" x1="224.28124237432849" x2="224.28124237432849" y1="178.08333333333337" y2="191.91666666666669"/> - <line stroke="#888888" x1="224.28124237432849" x2="223.78124237432846" y1="191.91666666666669" y2="191.91666666666669"/> - <line stroke="#888888" x1="49.57872159773519" x2="49.57872159773519" y1="250.41969529122255" y2="246.8065650970742"/> - <line stroke="#888888" x1="49.57872159773519" x2="56.804981986031855" y1="246.8065650970742" y2="246.8065650970742"/> - <line stroke="#888888" x1="56.804981986031855" x2="56.804981986031855" y1="246.8065650970742" y2="250.41969529122255"/> - <line stroke="#888888" x1="27.24160502250169" x2="31.459497730159118" y1="211.4231240144293" y2="217.8964910436076"/> - <line stroke="#888888" x1="31.459497730159118" x2="31.040577922655363" y1="217.8964910436076" y2="218.1694492727948"/> - <line stroke="#888888" x1="31.040577922655363" x2="26.822685214997907" y1="218.1694492727948" y2="211.69608224361647"/> - <line stroke="#888888" x1="26.822685214997907" x2="27.24160502250169" y1="211.69608224361647" y2="211.4231240144293"/> - <line stroke="#888888" x1="187.1145757076618" x2="190.94790904099517" y1="241.00000000000003" y2="241.00000000000003"/> - <line stroke="#888888" x1="190.94790904099517" x2="190.94790904099517" y1="241.00000000000003" y2="241.50000000000003"/> - <line stroke="#888888" x1="190.94790904099517" x2="187.1145757076618" y1="241.50000000000003" y2="241.50000000000003"/> - <line stroke="#888888" x1="187.1145757076618" x2="187.1145757076618" y1="241.50000000000003" y2="241.00000000000003"/> - <line stroke="#888888" x1="207.36457570766183" x2="207.36457570766183" y1="255.00000000000003" y2="248.33333333333337"/> - <line stroke="#888888" x1="207.36457570766183" x2="220.69790904099514" y1="248.33333333333337" y2="248.33333333333337"/> - <line stroke="#888888" x1="220.69790904099514" x2="220.69790904099514" y1="248.33333333333337" y2="255.00000000000003"/> - <line stroke="#888888" x1="56.80498198603183" x2="56.80498198603183" y1="109.58030470877752" y2="113.19343490292586"/> - <line stroke="#888888" x1="56.80498198603183" x2="49.57872159773516" y1="113.19343490292586" y2="113.19343490292586"/> - <line stroke="#888888" x1="49.57872159773516" x2="49.57872159773516" y1="113.19343490292586" y2="109.58030470877752"/> - <line stroke="#888888" x1="166.53124237432849" x2="166.53124237432849" y1="51.66666666666668" y2="46.66666666666667"/> - <line stroke="#888888" x1="166.53124237432849" x2="171.53124237432849" y1="46.66666666666667" y2="51.66666666666668"/> - <line stroke="#888888" x1="171.53124237432849" x2="171.53124237432849" y1="51.66666666666668" y2="68.33333333333334"/> - <line stroke="#888888" x1="171.53124237432849" x2="166.53124237432849" y1="68.33333333333334" y2="73.33333333333336"/> - <line stroke="#888888" x1="166.53124237432849" x2="166.53124237432849" y1="73.33333333333336" y2="68.33333333333334"/> + <line stroke="#000000" x1="192.71067811865487" x2="184.71067811865484" y1="55.00000000000001" y2="55.00000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="192.71067811865487" x2="192.71067811865487" y1="55.00000000000001" y2="125.00000000000001"/> + <line stroke="#000000" x1="184.71067811865484" x2="192.71067811865487" y1="125.00000000000001" y2="125.00000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="184.71067811865484" x2="184.71067811865484" y1="125.00000000000001" y2="55.00000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="200.71067811865487" x2="200.71067811865487" y1="55.00000000000001" y2="125.00000000000001"/> + <line stroke="#000000" x1="200.71067811865487" x2="200.71067811865487" y1="55.00000000000001" y2="5.000000000000001"/> + <line stroke="#000000" x1="192.71067811865487" x2="192.71067811865487" y1="5.000000000000001" y2="55.00000000000001"/> + <line stroke="#000000" x1="192.71067811865487" x2="192.71067811865487" y1="0.0" y2="5.000000000000001"/> + <line stroke="#000000" x1="200.71067811865487" x2="192.71067811865487" y1="0.0" y2="0.0"/> + <line stroke="#000000" x1="200.71067811865487" x2="200.71067811865487" y1="5.000000000000001" y2="0.0"/> + <line stroke="#000000" x1="208.71067811865487" x2="200.71067811865487" y1="55.00000000000001" y2="55.00000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="208.71067811865487" x2="208.71067811865487" y1="55.00000000000001" y2="125.00000000000001"/> + <line stroke="#000000" x1="200.71067811865487" x2="208.71067811865487" y1="125.00000000000001" y2="125.00000000000001"/> + <line stroke="#000000" x1="216.71067811865487" x2="208.71067811865487" y1="55.00000000000001" y2="55.00000000000001"/> + <line stroke="#000000" x1="216.71067811865487" x2="216.71067811865487" y1="125.00000000000001" y2="55.00000000000001"/> + <line stroke="#000000" x1="208.71067811865487" x2="216.71067811865487" y1="125.00000000000001" y2="125.00000000000001"/> + <line stroke="#000000" x1="192.71067811865487" x2="192.71067811865487" y1="125.00000000000001" y2="175.0"/> + <line stroke="#000000" x1="200.71067811865487" x2="200.71067811865487" y1="175.0" y2="125.00000000000001"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="200.71067811865487" x2="192.71067811865487" y1="175.0" y2="175.0"/> + <line stroke="#000000" x1="192.71067811865487" x2="70.71067811865484" y1="175.0" y2="175.0"/> + <line stroke="#000000" x1="200.71067811865487" x2="200.71067811865487" y1="175.0" y2="175.0"/> + <line stroke="#000000" x1="70.71067811865484" x2="70.71067811865484" y1="175.0" y2="175.0"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="70.71067811865484" x2="200.71067811865487" y1="225.00000000000003" y2="225.00000000000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="70.71067811865484" x2="70.71067811865484" y1="175.0" y2="225.00000000000003"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="38.45101131870072" x2="70.71067811865485" y1="175.0" y2="225.00000000000003"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="38.45101131870072" x2="70.71067811865485" y1="175.0" y2="175.0"/> + <line stroke="#000000" x1="38.4510113187007" x2="25.155006321979045" y1="175.0" y2="204.3922158601766"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="25.155006321979045" x2="70.71067811865483" y1="204.3922158601766" y2="225.00000000000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="8.526512829121203e-14" x2="70.71067811865484" y1="260.0" y2="225.00000000000003"/> + <line stroke="#000000" x1="11.859001325257395" x2="8.526512829121203e-14" y1="233.78443172035318" y2="260.0"/> + <line stroke="#000000" x1="25.155006321979076" x2="11.859001325257395" y1="204.3922158601766" y2="233.78443172035318"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="70.71067811865484" x2="70.71067811865484" y1="225.00000000000003" y2="260.0"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="70.71067811865484" x2="70.71067811865484" y1="260.0" y2="295.0"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="8.526512829121203e-14" x2="70.71067811865484" y1="260.0" y2="295.0"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="70.71067811865484" x2="200.7106781186548" y1="295.0" y2="295.0"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="200.7106781186548" x2="200.7106781186548" y1="260.0" y2="225.00000000000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="200.7106781186548" x2="200.7106781186548" y1="295.0" y2="260.0"/> + <line stroke="#000000" x1="250.71067811865484" x2="250.71067811865484" y1="275.00000000000006" y2="225.00000000000003"/> + <line stroke="#000000" x1="250.71067811865484" x2="250.71067811865484" y1="260.0" y2="275.00000000000006"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="200.7106781186548" x2="250.71067811865484" y1="225.00000000000003" y2="225.00000000000003"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="200.7106781186548" x2="250.71067811865484" y1="225.00000000000003" y2="175.00000000000003"/> + <line stroke="#000000" x1="250.71067811865484" x2="250.71067811865484" y1="225.00000000000003" y2="175.00000000000003"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="200.7106781186548" x2="250.71067811865484" y1="175.0" y2="175.0"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="200.7106781186548" x2="200.7106781186548" y1="225.00000000000003" y2="175.0"/> + <line stroke="#000000" x1="200.7106781186548" x2="200.7106781186548" y1="158.33333333333337" y2="175.0"/> + <line stroke="#000000" x1="250.71067811865484" x2="200.7106781186548" y1="158.33333333333337" y2="158.33333333333337"/> + <line stroke="#000000" x1="250.71067811865484" x2="250.71067811865484" y1="175.0" y2="158.33333333333337"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="250.71067811865484" x2="200.7106781186548" y1="295.0" y2="295.0"/> + <line stroke="#000000" x1="250.71067811865484" x2="250.71067811865484" y1="245.00000000000003" y2="260.0"/> + <line stroke="#000000" x1="250.71067811865484" x2="250.71067811865484" y1="295.0" y2="245.00000000000003"/> + <line stroke="#000000" x1="250.71067811865484" x2="250.71067811865484" y1="345.00000000000006" y2="295.0"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="250.71067811865484" x2="200.7106781186548" y1="345.00000000000006" y2="295.0"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="200.71067811865478" x2="200.71067811865478" y1="345.00000000000006" y2="295.0"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="250.71067811865484" x2="200.71067811865478" y1="345.00000000000006" y2="345.00000000000006"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="70.7106781186548" x2="70.7106781186548" y1="295.0" y2="345.00000000000006"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="70.71067811865481" x2="38.45101131870067" y1="345.00000000000006" y2="345.00000000000006"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="70.7106781186548" x2="38.45101131870067" y1="295.0" y2="345.00000000000006"/> + <line stroke="#000000" x1="70.7106781186548" x2="70.7106781186548" y1="355.75322226665145" y2="345.00000000000006"/> + <line stroke="#000000" x1="38.45101131870067" x2="70.7106781186548" y1="355.75322226665145" y2="355.75322226665145"/> + <line stroke="#000000" x1="38.45101131870067" x2="38.45101131870067" y1="345.00000000000006" y2="355.75322226665145"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="70.71067811865478" x2="25.15500632197899" y1="295.0" y2="315.6077841398234"/> + <line stroke="#000000" x1="25.15500632197899" x2="38.45101131870067" y1="315.6077841398234" y2="345.00000000000006"/> + <line stroke="#000000" x1="11.859001325257312" x2="25.15500632197899" y1="286.21556827964685" y2="315.6077841398234"/> + <line stroke="#000000" x1="0.0" x2="11.859001325257312" y1="260.0" y2="286.21556827964685"/> + <line stroke="#000000" x1="192.7106781186548" x2="200.71067811865478" y1="345.00000000000006" y2="345.00000000000006"/> + <line stroke="#000000" x1="70.7106781186548" x2="192.7106781186548" y1="345.00000000000006" y2="345.00000000000006"/> + <line stroke="#000000" x1="70.7106781186548" x2="70.7106781186548" y1="345.00000000000006" y2="345.00000000000006"/> + <line stroke="#000000" x1="200.71067811865478" x2="200.71067811865478" y1="345.00000000000006" y2="345.00000000000006"/> + <line stroke="#000000" x1="250.71067811865484" x2="250.71067811865484" y1="361.66666666666674" y2="345.00000000000006"/> + <line stroke="#000000" x1="200.71067811865478" x2="250.71067811865484" y1="361.66666666666674" y2="361.66666666666674"/> + <line stroke="#000000" x1="200.71067811865478" x2="200.71067811865478" y1="345.00000000000006" y2="361.66666666666674"/> + <line stroke="#000000" x1="38.45101131870072" x2="38.45101131870072" y1="164.2467777333486" y2="175.0"/> + <line stroke="#000000" x1="70.71067811865484" x2="38.45101131870072" y1="164.2467777333486" y2="164.2467777333486"/> + <line stroke="#000000" x1="70.71067811865484" x2="70.71067811865484" y1="175.0" y2="164.2467777333486"/> + <line stroke="#000000" x1="176.71067811865487" x2="184.71067811865484" y1="125.00000000000001" y2="125.00000000000001"/> + <line stroke="#000000" x1="176.71067811865487" x2="176.71067811865487" y1="55.00000000000001" y2="125.00000000000001"/> + <line stroke="#000000" x1="184.71067811865484" x2="176.71067811865487" y1="55.00000000000001" y2="55.00000000000001"/> + <line stroke="#888888" x1="184.71067811865484" x2="192.71067811865487" y1="86.00000000000001" y2="86.00000000000001"/> + <line stroke="#888888" x1="192.71067811865487" x2="192.71067811865487" y1="86.00000000000001" y2="94.00000000000001"/> + <line stroke="#888888" x1="192.71067811865487" x2="184.71067811865484" y1="94.00000000000001" y2="94.00000000000001"/> + <line stroke="#888888" x1="184.71067811865484" x2="184.71067811865484" y1="94.00000000000001" y2="86.00000000000001"/> + <line stroke="#888888" x1="198.04401145198818" x2="198.04401145198818" y1="1.2500000000000002" y2="3.7500000000000004"/> + <line stroke="#888888" x1="198.04401145198818" x2="195.37734478532153" y1="3.7500000000000004" y2="3.7500000000000004"/> + <line stroke="#888888" x1="195.37734478532153" x2="195.37734478532153" y1="3.7500000000000004" y2="1.2500000000000002"/> + <line stroke="#888888" x1="200.71067811865487" x2="208.71067811865487" y1="86.00000000000001" y2="86.00000000000001"/> + <line stroke="#888888" x1="208.71067811865487" x2="208.71067811865487" y1="86.00000000000001" y2="94.00000000000001"/> + <line stroke="#888888" x1="208.71067811865487" x2="200.71067811865487" y1="94.00000000000001" y2="94.00000000000001"/> + <line stroke="#888888" x1="200.71067811865487" x2="200.71067811865487" y1="94.00000000000001" y2="86.00000000000001"/> + <line stroke="#888888" x1="210.46067811865487" x2="210.46067811865487" y1="80.70454545454547" y2="67.47727272727273"/> + <line stroke="#888888" x1="210.46067811865487" x2="210.96067811865487" y1="67.47727272727273" y2="67.47727272727273"/> + <line stroke="#888888" x1="210.96067811865487" x2="210.96067811865487" y1="67.47727272727273" y2="80.70454545454547"/> + <line stroke="#888888" x1="210.96067811865487" x2="210.46067811865487" y1="80.70454545454547" y2="80.70454545454547"/> + <line stroke="#888888" x1="210.46067811865487" x2="210.46067811865487" y1="112.52272727272728" y2="99.29545454545456"/> + <line stroke="#888888" x1="210.46067811865487" x2="210.96067811865487" y1="99.29545454545456" y2="99.29545454545456"/> + <line stroke="#888888" x1="210.96067811865487" x2="210.96067811865487" y1="99.29545454545456" y2="112.52272727272728"/> + <line stroke="#888888" x1="210.96067811865487" x2="210.46067811865487" y1="112.52272727272728" y2="112.52272727272728"/> + <line stroke="#888888" x1="28.401875901131806" x2="23.7637963941597" y1="217.3888829577983" y2="227.64184496249058"/> + <line stroke="#888888" x1="23.7637963941597" x2="23.30823967619293" y1="227.64184496249058" y2="227.43576712109234"/> + <line stroke="#888888" x1="23.30823967619293" x2="27.946319183165034" y1="227.43576712109234" y2="217.18280511640006"/> + <line stroke="#888888" x1="27.946319183165034" x2="28.401875901131806" y1="217.18280511640006" y2="217.3888829577983"/> + <line stroke="#888888" x1="237.96067811865484" x2="237.96067811865484" y1="258.58333333333337" y2="241.41666666666669"/> + <line stroke="#888888" x1="237.96067811865484" x2="238.46067811865484" y1="241.41666666666669" y2="241.41666666666669"/> + <line stroke="#888888" x1="238.46067811865484" x2="238.46067811865484" y1="241.41666666666669" y2="258.58333333333337"/> + <line stroke="#888888" x1="238.46067811865484" x2="237.96067811865484" y1="258.58333333333337" y2="258.58333333333337"/> + <line stroke="#888888" x1="234.04401145198818" x2="234.04401145198818" y1="162.50000000000003" y2="170.83333333333334"/> + <line stroke="#888888" x1="234.04401145198818" x2="217.37734478532153" y1="170.83333333333334" y2="170.83333333333334"/> + <line stroke="#888888" x1="217.37734478532153" x2="217.37734478532153" y1="170.83333333333334" y2="162.50000000000003"/> + <line stroke="#888888" x1="237.96067811865484" x2="237.96067811865484" y1="278.5833333333333" y2="261.4166666666667"/> + <line stroke="#888888" x1="237.96067811865484" x2="238.46067811865484" y1="261.4166666666667" y2="261.4166666666667"/> + <line stroke="#888888" x1="238.46067811865484" x2="238.46067811865484" y1="261.4166666666667" y2="278.5833333333333"/> + <line stroke="#888888" x1="238.46067811865484" x2="237.96067811865484" y1="278.5833333333333" y2="278.5833333333333"/> + <line stroke="#888888" x1="49.20423358535203" x2="49.20423358535203" y1="353.06491669998854" y2="347.6883055666629"/> + <line stroke="#888888" x1="49.20423358535203" x2="59.95745585200343" y1="347.6883055666629" y2="347.6883055666629"/> + <line stroke="#888888" x1="59.95745585200343" x2="59.95745585200343" y1="347.6883055666629" y2="353.06491669998854"/> + <line stroke="#888888" x1="23.763796394159613" x2="28.40187590113172" y1="292.3581550375095" y2="302.6111170422017"/> + <line stroke="#888888" x1="28.40187590113172" x2="27.94631918316495" y1="302.6111170422017" y2="302.81719488360005"/> + <line stroke="#888888" x1="27.94631918316495" x2="23.308239676192844" y1="302.81719488360005" y2="292.5642328789077"/> + <line stroke="#888888" x1="23.308239676192844" x2="23.763796394159613" y1="292.5642328789077" y2="292.3581550375095"/> + <line stroke="#888888" x1="195.1273447853215" x2="198.29401145198813" y1="341.0" y2="341.0"/> + <line stroke="#888888" x1="198.29401145198813" x2="198.29401145198813" y1="341.0" y2="341.5"/> + <line stroke="#888888" x1="198.29401145198813" x2="195.1273447853215" y1="341.5" y2="341.5"/> + <line stroke="#888888" x1="195.1273447853215" x2="195.1273447853215" y1="341.5" y2="341.0"/> + <line stroke="#888888" x1="217.3773447853215" x2="217.3773447853215" y1="357.50000000000006" y2="349.16666666666674"/> + <line stroke="#888888" x1="217.3773447853215" x2="234.04401145198815" y1="349.16666666666674" y2="349.16666666666674"/> + <line stroke="#888888" x1="234.04401145198815" x2="234.04401145198815" y1="349.16666666666674" y2="357.50000000000006"/> + <line stroke="#888888" x1="59.957455852003484" x2="59.957455852003484" y1="166.93508330001148" y2="172.31169443333718"/> + <line stroke="#888888" x1="59.957455852003484" x2="49.20423358535209" y1="172.31169443333718" y2="172.31169443333718"/> + <line stroke="#888888" x1="49.20423358535209" x2="49.20423358535209" y1="172.31169443333718" y2="166.93508330001148"/> + <line stroke="#888888" x1="178.71067811865487" x2="178.71067811865487" y1="67.72727272727273" y2="63.727272727272734"/> + <line stroke="#888888" x1="178.71067811865487" x2="182.71067811865487" y1="63.727272727272734" y2="67.72727272727273"/> + <line stroke="#888888" x1="182.71067811865487" x2="182.71067811865487" y1="67.72727272727273" y2="80.45454545454547"/> + <line stroke="#888888" x1="182.71067811865487" x2="178.71067811865487" y1="80.45454545454547" y2="84.45454545454547"/> + <line stroke="#888888" x1="178.71067811865487" x2="178.71067811865487" y1="84.45454545454547" y2="80.45454545454547"/> + <line stroke="#888888" x1="178.71067811865487" x2="178.71067811865487" y1="99.54545454545455" y2="95.54545454545456"/> + <line stroke="#888888" x1="178.71067811865487" x2="182.71067811865487" y1="95.54545454545456" y2="99.54545454545455"/> + <line stroke="#888888" x1="182.71067811865487" x2="182.71067811865487" y1="99.54545454545455" y2="112.27272727272728"/> + <line stroke="#888888" x1="182.71067811865487" x2="178.71067811865487" y1="112.27272727272728" y2="116.27272727272728"/> + <line stroke="#888888" x1="178.71067811865487" x2="178.71067811865487" y1="116.27272727272728" y2="112.27272727272728"/> </svg> diff --git a/rocolib/output/BoatBaseFlat/graph-model.png b/rocolib/output/BoatBaseFlat/graph-model.png index e3bd2e727649778bde347f7c123a42ef6710ac41..56ae4d0e65ea70902a566ec6672e45c668dffc33 100644 Binary files a/rocolib/output/BoatBaseFlat/graph-model.png and b/rocolib/output/BoatBaseFlat/graph-model.png differ diff --git a/rocolib/output/BoatBaseFlat/graph-model.stl b/rocolib/output/BoatBaseFlat/graph-model.stl index 06cb4ecf03aa36231704c42f6a55f91c11bcab2f..8464eddeffda83399480f87dd1d6db378a840c10 100644 --- a/rocolib/output/BoatBaseFlat/graph-model.stl +++ b/rocolib/output/BoatBaseFlat/graph-model.stl @@ -1,366 +1,366 @@ solid python facet normal 0 0 0 outer loop -vertex -0.0050 -0.0050 0.0000 -vertex -0.0050 -0.0250 0.0000 -vertex 0.0050 -0.0250 0.0000 +vertex -0.0040 -0.0040 0.0000 +vertex -0.0040 -0.0350 0.0000 +vertex 0.0040 -0.0350 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0050 0.0250 0.0000 -vertex -0.0050 0.0050 0.0000 -vertex 0.0050 0.0050 0.0000 +vertex -0.0040 0.0350 0.0000 +vertex -0.0040 0.0040 0.0000 +vertex 0.0040 0.0040 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0050 -0.0250 0.0000 -vertex 0.0050 -0.0050 0.0000 -vertex -0.0050 -0.0050 0.0000 +vertex 0.0040 -0.0350 0.0000 +vertex 0.0040 -0.0040 0.0000 +vertex -0.0040 -0.0040 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0050 0.0050 0.0000 -vertex 0.0050 0.0250 0.0000 -vertex -0.0050 0.0250 0.0000 +vertex 0.0040 0.0040 0.0000 +vertex 0.0040 0.0350 0.0000 +vertex -0.0040 0.0350 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0050 0.0250 0.0000 -vertex 0.0050 -0.0250 0.0000 -vertex 0.0050 -0.0250 -0.0100 +vertex 0.0040 0.0350 0.0000 +vertex 0.0040 -0.0350 0.0000 +vertex 0.0040 -0.0350 -0.0080 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0050 -0.0250 -0.0100 -vertex 0.0050 0.0250 -0.0100 -vertex 0.0050 0.0250 0.0000 +vertex 0.0040 -0.0350 -0.0080 +vertex 0.0040 0.0350 -0.0080 +vertex 0.0040 0.0350 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0050 -0.0050 -0.0100 -vertex 0.0050 -0.0250 -0.0100 -vertex -0.0050 -0.0250 -0.0100 +vertex 0.0040 -0.0040 -0.0080 +vertex 0.0040 -0.0350 -0.0080 +vertex -0.0040 -0.0350 -0.0080 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0050 0.0250 -0.0100 -vertex 0.0050 0.0050 -0.0100 -vertex -0.0050 0.0050 -0.0100 +vertex 0.0040 0.0350 -0.0080 +vertex 0.0040 0.0040 -0.0080 +vertex -0.0040 0.0040 -0.0080 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0050 -0.0250 -0.0100 -vertex -0.0050 -0.0050 -0.0100 -vertex 0.0050 -0.0050 -0.0100 +vertex -0.0040 -0.0350 -0.0080 +vertex -0.0040 -0.0040 -0.0080 +vertex 0.0040 -0.0040 -0.0080 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0050 0.0050 -0.0100 -vertex -0.0050 0.0250 -0.0100 -vertex 0.0050 0.0250 -0.0100 +vertex -0.0040 0.0040 -0.0080 +vertex -0.0040 0.0350 -0.0080 +vertex 0.0040 0.0350 -0.0080 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0050 0.0250 -0.0100 -vertex -0.0050 -0.0250 -0.0100 -vertex -0.0050 -0.0250 -0.0000 +vertex -0.0040 0.0350 -0.0080 +vertex -0.0040 -0.0350 -0.0080 +vertex -0.0040 -0.0350 -0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0050 -0.0250 -0.0000 -vertex -0.0050 0.0250 -0.0000 -vertex -0.0050 0.0250 -0.0100 +vertex -0.0040 -0.0350 -0.0000 +vertex -0.0040 0.0350 -0.0000 +vertex -0.0040 0.0350 -0.0080 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0550 0.0150 -0.0100 -vertex 0.0550 0.0150 0.1200 -vertex 0.0050 0.0150 0.1200 +vertex 0.0740 0.0350 -0.0080 +vertex 0.0740 0.0350 0.1220 +vertex 0.0040 0.0350 0.1220 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0050 0.0150 0.1200 -vertex 0.0050 0.0150 -0.0100 -vertex 0.0550 0.0150 -0.0100 +vertex 0.0040 0.0350 0.1220 +vertex 0.0040 0.0350 -0.0080 +vertex 0.0740 0.0350 -0.0080 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0550 0.0550 -0.0100 -vertex 0.0550 0.0550 0.1200 -vertex 0.0550 0.0150 0.1200 +vertex 0.0740 0.0850 -0.0080 +vertex 0.0740 0.0850 0.1220 +vertex 0.0740 0.0350 0.1220 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0550 0.0150 0.1200 -vertex 0.0550 0.0150 -0.0100 -vertex 0.0550 0.0550 -0.0100 +vertex 0.0740 0.0350 0.1220 +vertex 0.0740 0.0350 -0.0080 +vertex 0.0740 0.0850 -0.0080 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0050 0.0150 -0.0100 -vertex 0.0050 0.0150 0.1200 -vertex 0.0050 0.0550 0.1200 +vertex 0.0040 0.0350 -0.0080 +vertex 0.0040 0.0350 0.1220 +vertex 0.0040 0.0850 0.1220 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0050 0.0550 0.1200 -vertex 0.0050 0.0550 -0.0100 -vertex 0.0050 0.0150 -0.0100 +vertex 0.0040 0.0850 0.1220 +vertex 0.0040 0.0850 -0.0080 +vertex 0.0040 0.0350 -0.0080 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0050 -0.0550 0.0000 -vertex 0.0050 -0.0550 -0.0100 -vertex 0.0050 -0.0250 -0.0100 +vertex 0.0040 -0.0850 0.0000 +vertex 0.0040 -0.0850 -0.0080 +vertex 0.0040 -0.0350 -0.0080 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0050 -0.0250 -0.0100 -vertex 0.0050 -0.0250 0.0000 -vertex 0.0050 -0.0550 0.0000 +vertex 0.0040 -0.0350 -0.0080 +vertex 0.0040 -0.0350 0.0000 +vertex 0.0040 -0.0850 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0050 0.0550 -0.0100 -vertex 0.0050 0.0550 0.0000 -vertex 0.0050 0.0250 0.0000 +vertex 0.0040 0.0850 -0.0080 +vertex 0.0040 0.0850 0.0000 +vertex 0.0040 0.0350 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0050 0.0250 0.0000 -vertex 0.0050 0.0250 -0.0100 -vertex 0.0050 0.0550 -0.0100 +vertex 0.0040 0.0350 0.0000 +vertex 0.0040 0.0350 -0.0080 +vertex 0.0040 0.0850 -0.0080 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0550 0.0150 0.1200 -vertex 0.0550 0.0550 0.1200 -vertex 0.0453 0.0550 0.1394 +vertex 0.0740 0.0350 0.1220 +vertex 0.0740 0.0850 0.1220 +vertex 0.0555 0.0850 0.1484 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0453 0.0550 0.1394 -vertex 0.0300 0.0550 0.1700 -vertex 0.0550 0.0150 0.1200 +vertex 0.0555 0.0850 0.1484 +vertex 0.0390 0.0850 0.1720 +vertex 0.0740 0.0350 0.1220 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0300 0.0150 0.1200 -vertex 0.0550 0.0150 0.1200 -vertex 0.0300 0.0550 0.1700 +vertex 0.0390 0.0350 0.1220 +vertex 0.0740 0.0350 0.1220 +vertex 0.0390 0.0850 0.1720 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0300 0.0150 0.1200 -vertex 0.0300 0.0550 0.1700 -vertex 0.0050 0.0150 0.1200 +vertex 0.0390 0.0350 0.1220 +vertex 0.0390 0.0850 0.1720 +vertex 0.0040 0.0350 0.1220 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0147 0.0550 0.1394 -vertex 0.0050 0.0550 0.1200 -vertex 0.0050 0.0150 0.1200 +vertex 0.0225 0.0850 0.1484 +vertex 0.0040 0.0850 0.1220 +vertex 0.0040 0.0350 0.1220 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0050 0.0150 0.1200 -vertex 0.0300 0.0550 0.1700 -vertex 0.0147 0.0550 0.1394 +vertex 0.0040 0.0350 0.1220 +vertex 0.0390 0.0850 0.1720 +vertex 0.0225 0.0850 0.1484 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0550 0.0550 0.1200 -vertex 0.0550 0.0150 0.1200 -vertex 0.0453 0.0550 0.1394 +vertex 0.0740 0.0850 0.1220 +vertex 0.0740 0.0350 0.1220 +vertex 0.0555 0.0850 0.1484 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0550 0.0550 0.1200 -vertex 0.0453 0.0550 0.1394 -vertex 0.0550 0.0150 0.1200 +vertex 0.0740 0.0850 0.1220 +vertex 0.0555 0.0850 0.1484 +vertex 0.0740 0.0350 0.1220 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0050 0.0550 0.1200 -vertex 0.0147 0.0550 0.1394 -vertex 0.0050 0.0150 0.1200 +vertex 0.0040 0.0850 0.1220 +vertex 0.0225 0.0850 0.1484 +vertex 0.0040 0.0350 0.1220 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0050 0.0550 0.1200 -vertex 0.0050 0.0150 0.1200 -vertex 0.0147 0.0550 0.1394 +vertex 0.0040 0.0850 0.1220 +vertex 0.0040 0.0350 0.1220 +vertex 0.0225 0.0850 0.1484 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0050 0.0150 -0.0100 -vertex 0.0050 0.0550 -0.0100 -vertex 0.0300 0.0550 -0.0100 +vertex 0.0040 0.0350 -0.0080 +vertex 0.0040 0.0850 -0.0080 +vertex 0.0390 0.0850 -0.0080 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0300 0.0150 -0.0100 -vertex 0.0050 0.0150 -0.0100 -vertex 0.0300 0.0550 -0.0100 +vertex 0.0390 0.0350 -0.0080 +vertex 0.0040 0.0350 -0.0080 +vertex 0.0390 0.0850 -0.0080 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0300 0.0150 -0.0100 -vertex 0.0300 0.0550 -0.0100 -vertex 0.0550 0.0150 -0.0100 +vertex 0.0390 0.0350 -0.0080 +vertex 0.0390 0.0850 -0.0080 +vertex 0.0740 0.0350 -0.0080 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0300 0.0550 -0.0100 -vertex 0.0550 0.0550 -0.0100 -vertex 0.0550 0.0150 -0.0100 +vertex 0.0390 0.0850 -0.0080 +vertex 0.0740 0.0850 -0.0080 +vertex 0.0740 0.0350 -0.0080 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0050 0.0550 -0.0100 -vertex 0.0050 0.0150 -0.0100 -vertex 0.0450 0.0550 -0.0100 +vertex 0.0040 0.0850 -0.0080 +vertex 0.0040 0.0350 -0.0080 +vertex 0.0540 0.0850 -0.0080 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0050 0.0550 -0.0100 -vertex 0.0450 0.0550 -0.0100 -vertex 0.0050 0.0150 -0.0100 +vertex 0.0040 0.0850 -0.0080 +vertex 0.0540 0.0850 -0.0080 +vertex 0.0040 0.0350 -0.0080 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0550 0.0550 -0.0100 -vertex 0.0150 0.0550 -0.0100 -vertex 0.0550 0.0150 -0.0100 +vertex 0.0740 0.0850 -0.0080 +vertex 0.0240 0.0850 -0.0080 +vertex 0.0740 0.0350 -0.0080 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0550 0.0550 -0.0100 -vertex 0.0550 0.0150 -0.0100 -vertex 0.0150 0.0550 -0.0100 +vertex 0.0740 0.0850 -0.0080 +vertex 0.0740 0.0350 -0.0080 +vertex 0.0240 0.0850 -0.0080 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0050 -0.0250 -0.0100 -vertex -0.0050 -0.0250 0.0000 -vertex -0.0050 0.0250 0.0000 +vertex -0.0040 -0.0350 -0.0080 +vertex -0.0040 -0.0350 0.0000 +vertex -0.0040 0.0350 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0050 0.0250 0.0000 -vertex -0.0050 0.0250 -0.0100 -vertex -0.0050 -0.0250 -0.0100 +vertex -0.0040 0.0350 0.0000 +vertex -0.0040 0.0350 -0.0080 +vertex -0.0040 -0.0350 -0.0080 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0460 0.0478 0.1397 -vertex 0.0453 0.0550 0.1394 -vertex 0.0550 0.0550 0.1200 +vertex 0.0564 0.0743 0.1491 +vertex 0.0555 0.0850 0.1484 +vertex 0.0740 0.0850 0.1220 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0550 0.0550 0.1200 -vertex 0.0557 0.0478 0.1203 -vertex 0.0460 0.0478 0.1397 +vertex 0.0740 0.0850 0.1220 +vertex 0.0749 0.0743 0.1226 +vertex 0.0564 0.0743 0.1491 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0043 0.0478 0.1203 -vertex 0.0050 0.0550 0.1200 -vertex 0.0147 0.0550 0.1394 +vertex 0.0031 0.0743 0.1226 +vertex 0.0040 0.0850 0.1220 +vertex 0.0225 0.0850 0.1484 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0147 0.0550 0.1394 -vertex 0.0140 0.0478 0.1397 -vertex 0.0043 0.0478 0.1203 +vertex 0.0225 0.0850 0.1484 +vertex 0.0216 0.0743 0.1491 +vertex 0.0031 0.0743 0.1226 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0450 0.0417 -0.0114 -vertex 0.0450 0.0550 -0.0100 -vertex 0.0050 0.0550 -0.0100 +vertex 0.0540 0.0684 -0.0097 +vertex 0.0540 0.0850 -0.0080 +vertex 0.0040 0.0850 -0.0080 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0050 0.0550 -0.0100 -vertex 0.0050 0.0417 -0.0114 -vertex 0.0450 0.0417 -0.0114 +vertex 0.0040 0.0850 -0.0080 +vertex 0.0040 0.0684 -0.0097 +vertex 0.0540 0.0684 -0.0097 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0550 0.0417 -0.0114 -vertex 0.0550 0.0550 -0.0100 -vertex 0.0150 0.0550 -0.0100 +vertex 0.0740 0.0684 -0.0097 +vertex 0.0740 0.0850 -0.0080 +vertex 0.0240 0.0850 -0.0080 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0150 0.0550 -0.0100 -vertex 0.0150 0.0417 -0.0114 -vertex 0.0550 0.0417 -0.0114 +vertex 0.0240 0.0850 -0.0080 +vertex 0.0240 0.0684 -0.0097 +vertex 0.0740 0.0684 -0.0097 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0050 -0.0600 -0.0100 -vertex 0.0050 -0.0550 -0.0100 -vertex 0.0050 -0.0550 0.0000 +vertex 0.0040 -0.0900 -0.0080 +vertex 0.0040 -0.0850 -0.0080 +vertex 0.0040 -0.0850 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0050 -0.0550 0.0000 -vertex 0.0050 -0.0600 0.0000 -vertex 0.0050 -0.0600 -0.0100 +vertex 0.0040 -0.0850 0.0000 +vertex 0.0040 -0.0900 0.0000 +vertex 0.0040 -0.0900 -0.0080 endloop endfacet endsolid python diff --git a/rocolib/output/BoatBaseFlat/graph-silhouette.dxf b/rocolib/output/BoatBaseFlat/graph-silhouette.dxf index 548a2196055ab7bab5e0e82b1b3a596bbf36b316..797fe4419f8ce81619b1b954927d192c21ed1611 100644 --- a/rocolib/output/BoatBaseFlat/graph-silhouette.dxf +++ b/rocolib/output/BoatBaseFlat/graph-silhouette.dxf @@ -943,15 +943,15 @@ LINE 8 0 10 -184.0312423743285 +192.71067811865487 20 -35.00000000000001 +55.00000000000001 30 0.0 11 -174.0312423743285 +184.71067811865484 21 -35.00000000000001 +55.00000000000001 31 0.0 0 @@ -963,15 +963,15 @@ DOTTED 8 0 10 -184.0312423743285 +192.71067811865487 20 -35.00000000000001 +55.00000000000001 30 0.0 11 -184.0312423743285 +192.71067811865487 21 -85.00000000000001 +125.00000000000001 31 0.0 0 @@ -981,15 +981,15 @@ LINE 8 0 10 -174.0312423743285 +184.71067811865484 20 -85.00000000000001 +125.00000000000001 30 0.0 11 -184.0312423743285 +192.71067811865487 21 -85.00000000000001 +125.00000000000001 31 0.0 0 @@ -1001,15 +1001,15 @@ DOTTED 8 0 10 -174.0312423743285 +184.71067811865484 20 -85.00000000000001 +125.00000000000001 30 0.0 11 -174.0312423743285 +184.71067811865484 21 -35.00000000000001 +55.00000000000001 31 0.0 0 @@ -1021,15 +1021,15 @@ DOTTED 8 0 10 -194.03124237432849 +200.71067811865487 20 -35.00000000000001 +55.00000000000001 30 0.0 11 -194.03124237432849 +200.71067811865487 21 -85.00000000000001 +125.00000000000001 31 0.0 0 @@ -1039,13 +1039,13 @@ LINE 8 0 10 -194.03124237432849 +200.71067811865487 20 -35.00000000000001 +55.00000000000001 30 0.0 11 -194.03124237432849 +200.71067811865487 21 5.000000000000001 31 @@ -1057,15 +1057,15 @@ LINE 8 0 10 -184.0312423743285 +192.71067811865487 20 5.000000000000001 30 0.0 11 -184.0312423743285 +192.71067811865487 21 -35.00000000000001 +55.00000000000001 31 0.0 0 @@ -1075,13 +1075,13 @@ LINE 8 0 10 -184.0312423743285 +192.71067811865487 20 0.0 30 0.0 11 -184.0312423743285 +192.71067811865487 21 5.000000000000001 31 @@ -1093,13 +1093,13 @@ LINE 8 0 10 -194.03124237432849 +200.71067811865487 20 0.0 30 0.0 11 -184.0312423743285 +192.71067811865487 21 0.0 31 @@ -1111,13 +1111,13 @@ LINE 8 0 10 -194.03124237432849 +200.71067811865487 20 5.000000000000001 30 0.0 11 -194.03124237432849 +200.71067811865487 21 0.0 31 @@ -1129,15 +1129,15 @@ LINE 8 0 10 -204.0312423743285 +208.71067811865487 20 -35.00000000000001 +55.00000000000001 30 0.0 11 -194.03124237432849 +200.71067811865487 21 -35.00000000000001 +55.00000000000001 31 0.0 0 @@ -1149,15 +1149,15 @@ DOTTED 8 0 10 -204.0312423743285 +208.71067811865487 20 -35.00000000000001 +55.00000000000001 30 0.0 11 -204.0312423743285 +208.71067811865487 21 -85.00000000000001 +125.00000000000001 31 0.0 0 @@ -1167,15 +1167,15 @@ LINE 8 0 10 -194.03124237432849 +200.71067811865487 20 -85.00000000000001 +125.00000000000001 30 0.0 11 -204.0312423743285 +208.71067811865487 21 -85.00000000000001 +125.00000000000001 31 0.0 0 @@ -1185,15 +1185,15 @@ LINE 8 0 10 -214.0312423743285 +216.71067811865487 20 -35.00000000000001 +55.00000000000001 30 0.0 11 -204.0312423743285 +208.71067811865487 21 -35.00000000000001 +55.00000000000001 31 0.0 0 @@ -1203,15 +1203,15 @@ LINE 8 0 10 -214.0312423743285 +216.71067811865487 20 -85.00000000000001 +125.00000000000001 30 0.0 11 -214.0312423743285 +216.71067811865487 21 -35.00000000000001 +55.00000000000001 31 0.0 0 @@ -1221,15 +1221,15 @@ LINE 8 0 10 -204.0312423743285 +208.71067811865487 20 -85.00000000000001 +125.00000000000001 30 0.0 11 -214.0312423743285 +216.71067811865487 21 -85.00000000000001 +125.00000000000001 31 0.0 0 @@ -1239,15 +1239,15 @@ LINE 8 0 10 -184.0312423743285 +192.71067811865487 20 -85.00000000000001 +125.00000000000001 30 0.0 11 -184.0312423743285 +192.71067811865487 21 -115.00000000000001 +175.0 31 0.0 0 @@ -1257,15 +1257,15 @@ LINE 8 0 10 -194.03124237432849 +200.71067811865487 20 -115.00000000000001 +175.0 30 0.0 11 -194.03124237432849 +200.71067811865487 21 -85.00000000000001 +125.00000000000001 31 0.0 0 @@ -1277,15 +1277,15 @@ DOTTED 8 0 10 -194.03124237432849 +200.71067811865487 20 -115.00000000000001 +175.0 30 0.0 11 -184.0312423743285 +192.71067811865487 21 -115.00000000000001 +175.0 31 0.0 0 @@ -1295,15 +1295,15 @@ LINE 8 0 10 -184.0312423743285 +192.71067811865487 20 -115.00000000000001 +175.0 30 0.0 11 -64.0312423743285 +70.71067811865484 21 -115.00000000000001 +175.0 31 0.0 0 @@ -1313,15 +1313,15 @@ LINE 8 0 10 -194.03124237432849 +200.71067811865487 20 -115.00000000000001 +175.0 30 0.0 11 -194.03124237432849 +200.71067811865487 21 -115.00000000000001 +175.0 31 0.0 0 @@ -1331,15 +1331,15 @@ LINE 8 0 10 -64.0312423743285 +70.71067811865484 20 -115.00000000000001 +175.0 30 0.0 11 -64.0312423743285 +70.71067811865484 21 -115.00000000000001 +175.0 31 0.0 0 @@ -1351,15 +1351,15 @@ DOTTED 8 0 10 -64.0312423743285 +70.71067811865484 20 -155.0 +225.00000000000003 30 0.0 11 -194.03124237432849 +200.71067811865487 21 -155.0 +225.00000000000003 31 0.0 0 @@ -1371,15 +1371,15 @@ DOTTED 8 0 10 -64.0312423743285 +70.71067811865484 20 -115.00000000000001 +175.0 30 0.0 11 -64.0312423743285 +70.71067811865484 21 -155.0 +225.00000000000003 31 0.0 0 @@ -1391,15 +1391,15 @@ DOTTED 8 0 10 -42.35246120943851 +38.45101131870072 20 -115.00000000000001 +175.0 30 0.0 11 -64.0312423743285 +70.71067811865485 21 -155.0 +225.00000000000003 31 0.0 0 @@ -1411,15 +1411,15 @@ DOTTED 8 0 10 -42.35246120943851 +38.45101131870072 20 -115.00000000000001 +175.0 30 0.0 11 -64.0312423743285 +70.71067811865485 21 -115.00000000000001 +175.0 31 0.0 0 @@ -1429,15 +1429,15 @@ LINE 8 0 10 -42.35246120943851 +38.4510113187007 20 -115.00000000000001 +175.0 30 0.0 11 -30.5176577740279 +25.155006321979045 21 -133.1633416650236 +204.3922158601766 31 0.0 0 @@ -1449,15 +1449,15 @@ DOTTED 8 0 10 -30.5176577740279 +25.155006321979045 20 -133.1633416650236 +204.3922158601766 30 0.0 11 -64.0312423743285 +70.71067811865483 21 -155.0 +225.00000000000003 31 0.0 0 @@ -1469,15 +1469,15 @@ DOTTED 8 0 10 -0.0 +8.526512829121203e-14 20 -180.0 +260.0 30 0.0 11 -64.0312423743285 +70.71067811865484 21 -155.0 +225.00000000000003 31 0.0 0 @@ -1487,15 +1487,15 @@ LINE 8 0 10 -18.682854338617293 +11.859001325257395 20 -151.3266833300472 +233.78443172035318 30 0.0 11 -0.0 +8.526512829121203e-14 21 -180.0 +260.0 31 0.0 0 @@ -1505,15 +1505,15 @@ LINE 8 0 10 -30.5176577740279 +25.155006321979076 20 -133.16334166502358 +204.3922158601766 30 0.0 11 -18.682854338617293 +11.859001325257395 21 -151.3266833300472 +233.78443172035318 31 0.0 0 @@ -1525,15 +1525,15 @@ DOTTED 8 0 10 -64.03124237432847 +70.71067811865484 20 -155.0 +225.00000000000003 30 0.0 11 -64.03124237432847 +70.71067811865484 21 -180.0 +260.0 31 0.0 0 @@ -1545,15 +1545,15 @@ DOTTED 8 0 10 -64.03124237432851 +70.71067811865484 20 -180.0 +260.0 30 0.0 11 -64.03124237432851 +70.71067811865484 21 -205.00000000000003 +295.0 31 0.0 0 @@ -1565,15 +1565,15 @@ DOTTED 8 0 10 -2.8421709430404014e-14 +8.526512829121203e-14 20 -180.0 +260.0 30 0.0 11 -64.03124237432851 +70.71067811865484 21 -205.00000000000003 +295.0 31 0.0 0 @@ -1585,15 +1585,15 @@ DOTTED 8 0 10 -64.0312423743285 +70.71067811865484 20 -205.00000000000003 +295.0 30 0.0 11 -194.03124237432846 +200.7106781186548 21 -205.00000000000003 +295.0 31 0.0 0 @@ -1605,15 +1605,15 @@ DOTTED 8 0 10 -194.03124237432846 +200.7106781186548 20 -180.0 +260.0 30 0.0 11 -194.03124237432846 +200.7106781186548 21 -155.0 +225.00000000000003 31 0.0 0 @@ -1625,15 +1625,15 @@ DOTTED 8 0 10 -194.03124237432846 +200.7106781186548 20 -205.00000000000003 +295.0 30 0.0 11 -194.03124237432846 +200.7106781186548 21 -180.0 +260.0 31 0.0 0 @@ -1643,15 +1643,15 @@ LINE 8 0 10 -234.03124237432846 +250.71067811865484 20 -195.0 +275.00000000000006 30 0.0 11 -234.03124237432846 +250.71067811865484 21 -155.0 +225.00000000000003 31 0.0 0 @@ -1661,15 +1661,15 @@ LINE 8 0 10 -234.03124237432846 +250.71067811865484 20 -180.0 +260.0 30 0.0 11 -234.03124237432846 +250.71067811865484 21 -195.0 +275.00000000000006 31 0.0 0 @@ -1681,15 +1681,15 @@ DOTTED 8 0 10 -194.03124237432846 +200.7106781186548 20 -155.0 +225.00000000000003 30 0.0 11 -234.03124237432846 +250.71067811865484 21 -155.0 +225.00000000000003 31 0.0 0 @@ -1701,15 +1701,15 @@ DOTTED 8 0 10 -194.03124237432846 +200.7106781186548 20 -155.0 +225.00000000000003 30 0.0 11 -234.03124237432846 +250.71067811865484 21 -115.00000000000003 +175.00000000000003 31 0.0 0 @@ -1719,15 +1719,15 @@ LINE 8 0 10 -234.03124237432846 +250.71067811865484 20 -155.0 +225.00000000000003 30 0.0 11 -234.03124237432846 +250.71067811865484 21 -115.00000000000003 +175.00000000000003 31 0.0 0 @@ -1739,15 +1739,15 @@ DOTTED 8 0 10 -194.03124237432846 +200.7106781186548 20 -115.00000000000003 +175.0 30 0.0 11 -234.03124237432846 +250.71067811865484 21 -115.00000000000004 +175.0 31 0.0 0 @@ -1759,15 +1759,15 @@ DOTTED 8 0 10 -194.03124237432846 +200.7106781186548 20 -155.0 +225.00000000000003 30 0.0 11 -194.03124237432846 +200.7106781186548 21 -115.00000000000003 +175.0 31 0.0 0 @@ -1777,15 +1777,15 @@ LINE 8 0 10 -194.03124237432846 +200.7106781186548 20 -101.6666666666667 +158.33333333333337 30 0.0 11 -194.03124237432846 +200.7106781186548 21 -115.00000000000004 +175.0 31 0.0 0 @@ -1795,15 +1795,15 @@ LINE 8 0 10 -234.03124237432846 +250.71067811865484 20 -101.66666666666671 +158.33333333333337 30 0.0 11 -194.03124237432846 +200.7106781186548 21 -101.6666666666667 +158.33333333333337 31 0.0 0 @@ -1813,15 +1813,15 @@ LINE 8 0 10 -234.03124237432846 +250.71067811865484 20 -115.00000000000004 +175.0 30 0.0 11 -234.03124237432846 +250.71067811865484 21 -101.66666666666671 +158.33333333333337 31 0.0 0 @@ -1833,15 +1833,15 @@ DOTTED 8 0 10 -234.03124237432849 +250.71067811865484 20 -205.00000000000003 +295.0 30 0.0 11 -194.03124237432849 +200.7106781186548 21 -205.00000000000003 +295.0 31 0.0 0 @@ -1851,15 +1851,15 @@ LINE 8 0 10 -234.03124237432849 +250.71067811865484 20 -165.00000000000003 +245.00000000000003 30 0.0 11 -234.03124237432849 +250.71067811865484 21 -180.0 +260.0 31 0.0 0 @@ -1869,15 +1869,15 @@ LINE 8 0 10 -234.03124237432849 +250.71067811865484 20 -205.00000000000003 +295.0 30 0.0 11 -234.03124237432849 +250.71067811865484 21 -165.00000000000003 +245.00000000000003 31 0.0 0 @@ -1887,15 +1887,15 @@ LINE 8 0 10 -234.03124237432849 +250.71067811865484 20 -245.0 +345.00000000000006 30 0.0 11 -234.03124237432849 +250.71067811865484 21 -205.00000000000003 +295.0 31 0.0 0 @@ -1907,15 +1907,15 @@ DOTTED 8 0 10 -234.03124237432849 +250.71067811865484 20 -245.0 +345.00000000000006 30 0.0 11 -194.03124237432846 +200.7106781186548 21 -205.00000000000003 +295.0 31 0.0 0 @@ -1927,15 +1927,15 @@ DOTTED 8 0 10 -194.03124237432846 +200.71067811865478 20 -245.00000000000006 +345.00000000000006 30 0.0 11 -194.03124237432846 +200.71067811865478 21 -205.00000000000006 +295.0 31 0.0 0 @@ -1947,15 +1947,15 @@ DOTTED 8 0 10 -234.03124237432846 +250.71067811865484 20 -245.00000000000003 +345.00000000000006 30 0.0 11 -194.03124237432846 +200.71067811865478 21 -245.00000000000006 +345.00000000000006 31 0.0 0 @@ -1967,15 +1967,15 @@ DOTTED 8 0 10 -64.03124237432853 +70.7106781186548 20 -205.00000000000009 +295.0 30 0.0 11 -64.03124237432853 +70.7106781186548 21 -245.00000000000009 +345.00000000000006 31 0.0 0 @@ -1987,15 +1987,15 @@ DOTTED 8 0 10 -64.03124237432853 +70.71067811865481 20 -245.00000000000006 +345.00000000000006 30 0.0 11 -42.35246120943856 +38.45101131870067 21 -245.00000000000009 +345.00000000000006 31 0.0 0 @@ -2007,15 +2007,15 @@ DOTTED 8 0 10 -64.03124237432853 +70.7106781186548 20 -205.00000000000009 +295.0 30 0.0 11 -42.35246120943856 +38.45101131870067 21 -245.00000000000009 +345.00000000000006 31 0.0 0 @@ -2025,15 +2025,15 @@ LINE 8 0 10 -64.03124237432851 +70.7106781186548 20 -252.2262603882967 +355.75322226665145 30 0.0 11 -64.03124237432851 +70.7106781186548 21 -245.00000000000006 +345.00000000000006 31 0.0 0 @@ -2043,15 +2043,15 @@ LINE 8 0 10 -42.35246120943854 +38.45101131870067 20 -252.2262603882967 +355.75322226665145 30 0.0 11 -64.03124237432851 +70.7106781186548 21 -252.2262603882967 +355.75322226665145 31 0.0 0 @@ -2061,15 +2061,15 @@ LINE 8 0 10 -42.35246120943854 +38.45101131870067 20 -245.00000000000006 +345.00000000000006 30 0.0 11 -42.35246120943854 +38.45101131870067 21 -252.2262603882967 +355.75322226665145 31 0.0 0 @@ -2081,15 +2081,15 @@ DOTTED 8 0 10 -64.03124237432851 +70.71067811865478 20 -205.00000000000009 +295.0 30 0.0 11 -30.517657774027928 +25.15500632197899 21 -226.83665833497648 +315.6077841398234 31 0.0 0 @@ -2099,15 +2099,15 @@ LINE 8 0 10 -30.517657774027928 +25.15500632197899 20 -226.83665833497648 +315.6077841398234 30 0.0 11 -42.35246120943854 +38.45101131870067 21 -245.00000000000006 +345.00000000000006 31 0.0 0 @@ -2117,15 +2117,15 @@ LINE 8 0 10 -18.68285433861732 +11.859001325257312 20 -208.6733166699529 +286.21556827964685 30 0.0 11 -30.517657774027928 +25.15500632197899 21 -226.83665833497648 +315.6077841398234 31 0.0 0 @@ -2135,15 +2135,15 @@ LINE 8 0 10 -2.8421709430404014e-14 +0.0 20 -180.00000000000009 +260.0 30 0.0 11 -18.68285433861732 +11.859001325257312 21 -208.6733166699529 +286.21556827964685 31 0.0 0 @@ -2153,15 +2153,15 @@ LINE 8 0 10 -184.03124237432849 +192.7106781186548 20 -245.00000000000003 +345.00000000000006 30 0.0 11 -194.03124237432846 +200.71067811865478 21 -245.00000000000003 +345.00000000000006 31 0.0 0 @@ -2171,15 +2171,15 @@ LINE 8 0 10 -64.03124237432853 +70.7106781186548 20 -245.00000000000006 +345.00000000000006 30 0.0 11 -184.03124237432849 +192.7106781186548 21 -245.00000000000003 +345.00000000000006 31 0.0 0 @@ -2189,15 +2189,15 @@ LINE 8 0 10 -64.03124237432853 +70.7106781186548 20 -245.00000000000006 +345.00000000000006 30 0.0 11 -64.03124237432853 +70.7106781186548 21 -245.00000000000006 +345.00000000000006 31 0.0 0 @@ -2207,15 +2207,15 @@ LINE 8 0 10 -194.03124237432846 +200.71067811865478 20 -245.00000000000003 +345.00000000000006 30 0.0 11 -194.03124237432846 +200.71067811865478 21 -245.00000000000003 +345.00000000000006 31 0.0 0 @@ -2225,15 +2225,15 @@ LINE 8 0 10 -234.03124237432846 +250.71067811865484 20 -258.33333333333337 +361.66666666666674 30 0.0 11 -234.03124237432846 +250.71067811865484 21 -245.00000000000003 +345.00000000000006 31 0.0 0 @@ -2243,15 +2243,15 @@ LINE 8 0 10 -194.03124237432846 +200.71067811865478 20 -258.33333333333337 +361.66666666666674 30 0.0 11 -234.03124237432846 +250.71067811865484 21 -258.33333333333337 +361.66666666666674 31 0.0 0 @@ -2261,15 +2261,15 @@ LINE 8 0 10 -194.03124237432846 +200.71067811865478 20 -245.00000000000003 +345.00000000000006 30 0.0 11 -194.03124237432846 +200.71067811865478 21 -258.33333333333337 +361.66666666666674 31 0.0 0 @@ -2279,15 +2279,15 @@ LINE 8 0 10 -42.35246120943851 +38.45101131870072 20 -107.77373961170336 +164.2467777333486 30 0.0 11 -42.35246120943851 +38.45101131870072 21 -115.00000000000001 +175.0 31 0.0 0 @@ -2297,15 +2297,15 @@ LINE 8 0 10 -64.0312423743285 +70.71067811865484 20 -107.77373961170336 +164.2467777333486 30 0.0 11 -42.35246120943851 +38.45101131870072 21 -107.77373961170336 +164.2467777333486 31 0.0 0 @@ -2315,15 +2315,15 @@ LINE 8 0 10 -64.0312423743285 +70.71067811865484 20 -115.00000000000001 +175.0 30 0.0 11 -64.0312423743285 +70.71067811865484 21 -107.77373961170336 +164.2467777333486 31 0.0 0 @@ -2333,15 +2333,15 @@ LINE 8 0 10 -164.0312423743285 +176.71067811865487 20 -85.00000000000001 +125.00000000000001 30 0.0 11 -174.0312423743285 +184.71067811865484 21 -85.00000000000001 +125.00000000000001 31 0.0 0 @@ -2351,15 +2351,15 @@ LINE 8 0 10 -164.0312423743285 +176.71067811865487 20 -35.00000000000001 +55.00000000000001 30 0.0 11 -164.0312423743285 +176.71067811865487 21 -85.00000000000001 +125.00000000000001 31 0.0 0 @@ -2369,15 +2369,15 @@ LINE 8 0 10 -174.0312423743285 +184.71067811865484 20 -35.00000000000001 +55.00000000000001 30 0.0 11 -164.0312423743285 +176.71067811865487 21 -35.00000000000001 +55.00000000000001 31 0.0 0 @@ -2387,15 +2387,15 @@ LINE 8 0 10 -174.0312423743285 +184.71067811865484 20 -55.00000000000001 +86.00000000000001 30 0.0 11 -184.0312423743285 +192.71067811865487 21 -55.00000000000001 +86.00000000000001 31 0.0 0 @@ -2405,15 +2405,15 @@ LINE 8 0 10 -184.0312423743285 +192.71067811865487 20 -55.00000000000001 +86.00000000000001 30 0.0 11 -184.0312423743285 +192.71067811865487 21 -65.0 +94.00000000000001 31 0.0 0 @@ -2423,15 +2423,15 @@ LINE 8 0 10 -184.0312423743285 +192.71067811865487 20 -65.0 +94.00000000000001 30 0.0 11 -174.0312423743285 +184.71067811865484 21 -65.0 +94.00000000000001 31 0.0 0 @@ -2441,15 +2441,15 @@ LINE 8 0 10 -174.0312423743285 +184.71067811865484 20 -65.0 +94.00000000000001 30 0.0 11 -174.0312423743285 +184.71067811865484 21 -55.00000000000001 +86.00000000000001 31 0.0 0 @@ -2459,13 +2459,13 @@ LINE 8 0 10 -190.69790904099517 +198.04401145198818 20 1.2500000000000002 30 0.0 11 -190.69790904099517 +198.04401145198818 21 3.7500000000000004 31 @@ -2477,13 +2477,13 @@ LINE 8 0 10 -190.69790904099517 +198.04401145198818 20 3.7500000000000004 30 0.0 11 -187.36457570766183 +195.37734478532153 21 3.7500000000000004 31 @@ -2495,13 +2495,13 @@ LINE 8 0 10 -187.36457570766183 +195.37734478532153 20 3.7500000000000004 30 0.0 11 -187.36457570766183 +195.37734478532153 21 1.2500000000000002 31 @@ -2513,15 +2513,15 @@ LINE 8 0 10 -194.03124237432849 +200.71067811865487 20 -55.00000000000001 +86.00000000000001 30 0.0 11 -204.0312423743285 +208.71067811865487 21 -55.00000000000001 +86.00000000000001 31 0.0 0 @@ -2531,15 +2531,15 @@ LINE 8 0 10 -204.0312423743285 +208.71067811865487 20 -55.00000000000001 +86.00000000000001 30 0.0 11 -204.0312423743285 +208.71067811865487 21 -65.0 +94.00000000000001 31 0.0 0 @@ -2549,15 +2549,15 @@ LINE 8 0 10 -204.0312423743285 +208.71067811865487 20 -65.0 +94.00000000000001 30 0.0 11 -194.03124237432849 +200.71067811865487 21 -65.0 +94.00000000000001 31 0.0 0 @@ -2567,15 +2567,177 @@ LINE 8 0 10 -194.03124237432849 +200.71067811865487 20 -65.0 +94.00000000000001 30 0.0 11 -194.03124237432849 +200.71067811865487 21 -55.00000000000001 +86.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +210.46067811865487 + 20 +80.70454545454547 + 30 +0.0 + 11 +210.46067811865487 + 21 +67.47727272727273 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +210.46067811865487 + 20 +67.47727272727273 + 30 +0.0 + 11 +210.96067811865487 + 21 +67.47727272727273 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +210.96067811865487 + 20 +67.47727272727273 + 30 +0.0 + 11 +210.96067811865487 + 21 +80.70454545454547 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +210.96067811865487 + 20 +80.70454545454547 + 30 +0.0 + 11 +210.46067811865487 + 21 +80.70454545454547 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +210.46067811865487 + 20 +112.52272727272728 + 30 +0.0 + 11 +210.46067811865487 + 21 +99.29545454545456 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +210.46067811865487 + 20 +99.29545454545456 + 30 +0.0 + 11 +210.96067811865487 + 21 +99.29545454545456 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +210.96067811865487 + 20 +99.29545454545456 + 30 +0.0 + 11 +210.96067811865487 + 21 +112.52272727272728 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +210.96067811865487 + 20 +112.52272727272728 + 30 +0.0 + 11 +210.46067811865487 + 21 +112.52272727272728 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +28.401875901131806 + 20 +217.3888829577983 + 30 +0.0 + 11 +23.7637963941597 + 21 +227.64184496249058 31 0.0 0 @@ -2585,15 +2747,15 @@ LINE 8 0 10 -206.2812423743285 +23.7637963941597 20 -68.58333333333336 +227.64184496249058 30 0.0 11 -206.2812423743285 +23.30823967619293 21 -51.41666666666668 +227.43576712109234 31 0.0 0 @@ -2603,15 +2765,15 @@ LINE 8 0 10 -206.2812423743285 +23.30823967619293 20 -51.41666666666668 +227.43576712109234 30 0.0 11 -206.7812423743285 +27.946319183165034 21 -51.41666666666668 +217.18280511640006 31 0.0 0 @@ -2621,15 +2783,15 @@ LINE 8 0 10 -206.7812423743285 +27.946319183165034 20 -51.41666666666668 +217.18280511640006 30 0.0 11 -206.7812423743285 +28.401875901131806 21 -68.58333333333336 +217.3888829577983 31 0.0 0 @@ -2639,15 +2801,15 @@ LINE 8 0 10 -206.7812423743285 +237.96067811865484 20 -68.58333333333336 +258.58333333333337 30 0.0 11 -206.2812423743285 +237.96067811865484 21 -68.58333333333336 +241.41666666666669 31 0.0 0 @@ -2657,15 +2819,15 @@ LINE 8 0 10 -31.45949773015906 +237.96067811865484 20 -142.10350895639252 +241.41666666666669 30 0.0 11 -27.241605022501663 +238.46067811865484 21 -148.57687598557078 +241.41666666666669 31 0.0 0 @@ -2675,15 +2837,15 @@ LINE 8 0 10 -27.241605022501663 +238.46067811865484 20 -148.57687598557078 +241.41666666666669 30 0.0 11 -26.822685214997907 +238.46067811865484 21 -148.30391775638358 +258.58333333333337 31 0.0 0 @@ -2693,15 +2855,15 @@ LINE 8 0 10 -26.822685214997907 +238.46067811865484 20 -148.30391775638358 +258.58333333333337 30 0.0 11 -31.040577922655306 +237.96067811865484 21 -141.8305507272053 +258.58333333333337 31 0.0 0 @@ -2711,15 +2873,15 @@ LINE 8 0 10 -31.040577922655306 +234.04401145198818 20 -141.8305507272053 +162.50000000000003 30 0.0 11 -31.45949773015906 +234.04401145198818 21 -142.10350895639252 +170.83333333333334 31 0.0 0 @@ -2729,15 +2891,15 @@ LINE 8 0 10 -223.78124237432846 +234.04401145198818 20 -181.91666666666666 +170.83333333333334 30 0.0 11 -223.78124237432846 +217.37734478532153 21 -168.08333333333334 +170.83333333333334 31 0.0 0 @@ -2747,15 +2909,15 @@ LINE 8 0 10 -223.78124237432846 +217.37734478532153 20 -168.08333333333334 +170.83333333333334 30 0.0 11 -224.28124237432849 +217.37734478532153 21 -168.08333333333334 +162.50000000000003 31 0.0 0 @@ -2765,15 +2927,15 @@ LINE 8 0 10 -224.28124237432849 +237.96067811865484 20 -168.08333333333334 +278.5833333333333 30 0.0 11 -224.28124237432849 +237.96067811865484 21 -181.91666666666666 +261.4166666666667 31 0.0 0 @@ -2783,15 +2945,15 @@ LINE 8 0 10 -224.28124237432849 +237.96067811865484 20 -181.91666666666666 +261.4166666666667 30 0.0 11 -223.78124237432846 +238.46067811865484 21 -181.91666666666666 +261.4166666666667 31 0.0 0 @@ -2801,15 +2963,15 @@ LINE 8 0 10 -220.69790904099514 +238.46067811865484 20 -105.00000000000004 +261.4166666666667 30 0.0 11 -220.69790904099514 +238.46067811865484 21 -111.6666666666667 +278.5833333333333 31 0.0 0 @@ -2819,15 +2981,15 @@ LINE 8 0 10 -220.69790904099514 +238.46067811865484 20 -111.6666666666667 +278.5833333333333 30 0.0 11 -207.36457570766183 +237.96067811865484 21 -111.6666666666667 +278.5833333333333 31 0.0 0 @@ -2837,15 +2999,15 @@ LINE 8 0 10 -207.36457570766183 +49.20423358535203 20 -111.6666666666667 +353.06491669998854 30 0.0 11 -207.36457570766183 +49.20423358535203 21 -105.00000000000004 +347.6883055666629 31 0.0 0 @@ -2855,15 +3017,15 @@ LINE 8 0 10 -223.78124237432846 +49.20423358535203 20 -191.91666666666669 +347.6883055666629 30 0.0 11 -223.78124237432846 +59.95745585200343 21 -178.08333333333337 +347.6883055666629 31 0.0 0 @@ -2873,15 +3035,15 @@ LINE 8 0 10 -223.78124237432846 +59.95745585200343 20 -178.08333333333337 +347.6883055666629 30 0.0 11 -224.28124237432849 +59.95745585200343 21 -178.08333333333337 +353.06491669998854 31 0.0 0 @@ -2891,15 +3053,15 @@ LINE 8 0 10 -224.28124237432849 +23.763796394159613 20 -178.08333333333337 +292.3581550375095 30 0.0 11 -224.28124237432849 +28.40187590113172 21 -191.91666666666669 +302.6111170422017 31 0.0 0 @@ -2909,15 +3071,15 @@ LINE 8 0 10 -224.28124237432849 +28.40187590113172 20 -191.91666666666669 +302.6111170422017 30 0.0 11 -223.78124237432846 +27.94631918316495 21 -191.91666666666669 +302.81719488360005 31 0.0 0 @@ -2927,15 +3089,15 @@ LINE 8 0 10 -49.57872159773519 +27.94631918316495 20 -250.41969529122255 +302.81719488360005 30 0.0 11 -49.57872159773519 +23.308239676192844 21 -246.8065650970742 +292.5642328789077 31 0.0 0 @@ -2945,15 +3107,15 @@ LINE 8 0 10 -49.57872159773519 +23.308239676192844 20 -246.8065650970742 +292.5642328789077 30 0.0 11 -56.804981986031855 +23.763796394159613 21 -246.8065650970742 +292.3581550375095 31 0.0 0 @@ -2963,15 +3125,15 @@ LINE 8 0 10 -56.804981986031855 +195.1273447853215 20 -246.8065650970742 +341.0 30 0.0 11 -56.804981986031855 +198.29401145198813 21 -250.41969529122255 +341.0 31 0.0 0 @@ -2981,15 +3143,15 @@ LINE 8 0 10 -27.24160502250169 +198.29401145198813 20 -211.4231240144293 +341.0 30 0.0 11 -31.459497730159118 +198.29401145198813 21 -217.8964910436076 +341.5 31 0.0 0 @@ -2999,15 +3161,15 @@ LINE 8 0 10 -31.459497730159118 +198.29401145198813 20 -217.8964910436076 +341.5 30 0.0 11 -31.040577922655363 +195.1273447853215 21 -218.1694492727948 +341.5 31 0.0 0 @@ -3017,15 +3179,15 @@ LINE 8 0 10 -31.040577922655363 +195.1273447853215 20 -218.1694492727948 +341.5 30 0.0 11 -26.822685214997907 +195.1273447853215 21 -211.69608224361647 +341.0 31 0.0 0 @@ -3035,15 +3197,15 @@ LINE 8 0 10 -26.822685214997907 +217.3773447853215 20 -211.69608224361647 +357.50000000000006 30 0.0 11 -27.24160502250169 +217.3773447853215 21 -211.4231240144293 +349.16666666666674 31 0.0 0 @@ -3053,15 +3215,15 @@ LINE 8 0 10 -187.1145757076618 +217.3773447853215 20 -241.00000000000003 +349.16666666666674 30 0.0 11 -190.94790904099517 +234.04401145198815 21 -241.00000000000003 +349.16666666666674 31 0.0 0 @@ -3071,15 +3233,15 @@ LINE 8 0 10 -190.94790904099517 +234.04401145198815 20 -241.00000000000003 +349.16666666666674 30 0.0 11 -190.94790904099517 +234.04401145198815 21 -241.50000000000003 +357.50000000000006 31 0.0 0 @@ -3089,15 +3251,15 @@ LINE 8 0 10 -190.94790904099517 +59.957455852003484 20 -241.50000000000003 +166.93508330001148 30 0.0 11 -187.1145757076618 +59.957455852003484 21 -241.50000000000003 +172.31169443333718 31 0.0 0 @@ -3107,15 +3269,15 @@ LINE 8 0 10 -187.1145757076618 +59.957455852003484 20 -241.50000000000003 +172.31169443333718 30 0.0 11 -187.1145757076618 +49.20423358535209 21 -241.00000000000003 +172.31169443333718 31 0.0 0 @@ -3125,15 +3287,15 @@ LINE 8 0 10 -207.36457570766183 +49.20423358535209 20 -255.00000000000003 +172.31169443333718 30 0.0 11 -207.36457570766183 +49.20423358535209 21 -248.33333333333337 +166.93508330001148 31 0.0 0 @@ -3143,15 +3305,15 @@ LINE 8 0 10 -207.36457570766183 +178.71067811865487 20 -248.33333333333337 +67.72727272727273 30 0.0 11 -220.69790904099514 +178.71067811865487 21 -248.33333333333337 +63.727272727272734 31 0.0 0 @@ -3161,15 +3323,15 @@ LINE 8 0 10 -220.69790904099514 +178.71067811865487 20 -248.33333333333337 +63.727272727272734 30 0.0 11 -220.69790904099514 +182.71067811865487 21 -255.00000000000003 +67.72727272727273 31 0.0 0 @@ -3179,15 +3341,15 @@ LINE 8 0 10 -56.80498198603183 +182.71067811865487 20 -109.58030470877752 +67.72727272727273 30 0.0 11 -56.80498198603183 +182.71067811865487 21 -113.19343490292586 +80.45454545454547 31 0.0 0 @@ -3197,15 +3359,15 @@ LINE 8 0 10 -56.80498198603183 +182.71067811865487 20 -113.19343490292586 +80.45454545454547 30 0.0 11 -49.57872159773516 +178.71067811865487 21 -113.19343490292586 +84.45454545454547 31 0.0 0 @@ -3215,15 +3377,15 @@ LINE 8 0 10 -49.57872159773516 +178.71067811865487 20 -113.19343490292586 +84.45454545454547 30 0.0 11 -49.57872159773516 +178.71067811865487 21 -109.58030470877752 +80.45454545454547 31 0.0 0 @@ -3233,15 +3395,15 @@ LINE 8 0 10 -166.53124237432849 +178.71067811865487 20 -51.66666666666668 +99.54545454545455 30 0.0 11 -166.53124237432849 +178.71067811865487 21 -46.66666666666667 +95.54545454545456 31 0.0 0 @@ -3251,15 +3413,15 @@ LINE 8 0 10 -166.53124237432849 +178.71067811865487 20 -46.66666666666667 +95.54545454545456 30 0.0 11 -171.53124237432849 +182.71067811865487 21 -51.66666666666668 +99.54545454545455 31 0.0 0 @@ -3269,15 +3431,15 @@ LINE 8 0 10 -171.53124237432849 +182.71067811865487 20 -51.66666666666668 +99.54545454545455 30 0.0 11 -171.53124237432849 +182.71067811865487 21 -68.33333333333334 +112.27272727272728 31 0.0 0 @@ -3287,15 +3449,15 @@ LINE 8 0 10 -171.53124237432849 +182.71067811865487 20 -68.33333333333334 +112.27272727272728 30 0.0 11 -166.53124237432849 +178.71067811865487 21 -73.33333333333336 +116.27272727272728 31 0.0 0 @@ -3305,15 +3467,15 @@ LINE 8 0 10 -166.53124237432849 +178.71067811865487 20 -73.33333333333336 +116.27272727272728 30 0.0 11 -166.53124237432849 +178.71067811865487 21 -68.33333333333334 +112.27272727272728 31 0.0 0 diff --git a/rocolib/output/ESP32StackBoat/graph-anim.svg b/rocolib/output/ESP32StackBoat/graph-anim.svg index 63d1ade2a943dd68f022433d3b2c48af1c64dcf4..12a3ef5ffd2afb1721880b3bad366eb9a3bcb876 100644 --- a/rocolib/output/ESP32StackBoat/graph-anim.svg +++ b/rocolib/output/ESP32StackBoat/graph-anim.svg @@ -1,258 +1,272 @@ <?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="268.833333mm" version="1.1" viewBox="0.000000 0.000000 654.031242 268.833333" width="654.031242mm"> +<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="361.666667mm" version="1.1" viewBox="0.000000 0.000000 670.710678 361.666667" width="670.710678mm"> <defs/> - <line opacity="0.5" stroke="#0000ff" x1="34.0" x2="34.0" y1="45.0" y2="96.00000000000001"/> - <line opacity="0.5" stroke="#0000ff" x1="10.000000000000002" x2="10.000000000000002" y1="96.00000000000001" y2="45.0"/> - <line opacity="0.5" stroke="#0000ff" x1="10.000000000000002" x2="22.000000000000004" y1="45.0" y2="45.0"/> - <line opacity="0.5" stroke="#0000ff" x1="22.000000000000004" x2="34.0" y1="45.0" y2="45.0"/> - <line stroke="#000000" x1="34.0" x2="34.0" y1="45.0" y2="45.0"/> - <line stroke="#000000" x1="10.000000000000002" x2="10.000000000000002" y1="45.0" y2="45.0"/> - <line stroke="#000000" x1="10.000000000000002" x2="10.000000000000002" y1="5.000000000000001" y2="45.0"/> - <line stroke="#000000" x1="22.000000000000004" x2="22.000000000000004" y1="45.0" y2="5.000000000000001"/> - <line stroke="#000000" x1="10.000000000000002" x2="10.000000000000002" y1="0.0" y2="5.000000000000001"/> - <line stroke="#000000" x1="22.000000000000004" x2="10.000000000000002" y1="0.0" y2="0.0"/> - <line stroke="#000000" x1="22.000000000000004" x2="22.000000000000004" y1="5.000000000000001" y2="0.0"/> - <line stroke="#000000" x1="22.000000000000004" x2="22.000000000000004" y1="5.000000000000001" y2="45.0"/> - <line stroke="#000000" x1="34.0" x2="34.0" y1="45.0" y2="5.000000000000001"/> - <line stroke="#000000" x1="22.000000000000004" x2="22.000000000000004" y1="0.0" y2="5.000000000000001"/> - <line stroke="#000000" x1="34.0" x2="22.000000000000004" y1="0.0" y2="0.0"/> - <line stroke="#000000" x1="34.0" x2="34.0" y1="5.000000000000001" y2="0.0"/> - <line stroke="#000000" x1="70.00000000000001" x2="34.0" y1="45.0" y2="45.0"/> - <line opacity="0.5" stroke="#0000ff" x1="70.00000000000001" x2="70.00000000000001" y1="45.0" y2="96.00000000000001"/> - <line stroke="#000000" x1="34.0" x2="70.00000000000001" y1="96.00000000000001" y2="96.00000000000001"/> - <line stroke="#000000" x1="94.00000000000001" x2="70.00000000000001" y1="45.0" y2="45.0"/> - <line opacity="0.5" stroke="#0000ff" x1="94.00000000000001" x2="94.00000000000001" y1="45.0" y2="96.00000000000001"/> - <line stroke="#000000" x1="70.00000000000001" x2="94.00000000000001" y1="96.00000000000001" y2="96.00000000000001"/> - <line stroke="#000000" x1="130.0" x2="94.00000000000001" y1="45.0" y2="45.0"/> - <line stroke="#000000" x1="130.0" x2="130.0" y1="96.00000000000001" y2="45.0"/> - <line stroke="#000000" x1="94.00000000000001" x2="130.0" y1="96.00000000000001" y2="96.00000000000001"/> - <line opacity="0.5" stroke="#0000ff" x1="34.0" x2="22.000000000000004" y1="96.00000000000001" y2="96.00000000000001"/> - <line opacity="0.5" stroke="#0000ff" x1="22.000000000000004" x2="10.000000000000002" y1="96.00000000000001" y2="96.00000000000001"/> - <line stroke="#000000" x1="10.000000000000002" x2="10.000000000000002" y1="96.00000000000001" y2="96.00000000000001"/> - <line stroke="#000000" x1="34.0" x2="34.0" y1="96.00000000000001" y2="96.00000000000001"/> - <line stroke="#000000" x1="34.0" x2="34.0" y1="136.0" y2="96.00000000000001"/> - <line stroke="#000000" x1="22.000000000000004" x2="22.000000000000004" y1="96.00000000000001" y2="136.0"/> - <line stroke="#000000" x1="34.0" x2="34.0" y1="141.0" y2="136.0"/> - <line stroke="#000000" x1="22.000000000000004" x2="34.0" y1="141.0" y2="141.0"/> - <line stroke="#000000" x1="22.000000000000004" x2="22.000000000000004" y1="136.0" y2="141.0"/> - <line stroke="#000000" x1="22.000000000000004" x2="22.000000000000004" y1="136.0" y2="96.00000000000001"/> - <line stroke="#000000" x1="10.000000000000002" x2="10.000000000000002" y1="96.00000000000001" y2="136.0"/> - <line stroke="#000000" x1="22.000000000000004" x2="22.000000000000004" y1="141.0" y2="136.0"/> - <line stroke="#000000" x1="10.000000000000002" x2="22.000000000000004" y1="141.0" y2="141.0"/> - <line stroke="#000000" x1="10.000000000000002" x2="10.000000000000002" y1="136.0" y2="141.0"/> - <line stroke="#000000" x1="0.0" x2="10.000000000000002" y1="96.00000000000001" y2="96.00000000000001"/> - <line stroke="#000000" x1="0.0" x2="0.0" y1="45.0" y2="96.00000000000001"/> - <line stroke="#000000" x1="10.000000000000002" x2="0.0" y1="45.0" y2="45.0"/> - <line stroke="#888888" x1="11.400000000000002" x2="12.6" y1="50.0" y2="50.0"/> - <line stroke="#888888" x1="12.6" x2="12.6" y1="50.0" y2="91.0"/> - <line stroke="#888888" x1="12.6" x2="11.400000000000002" y1="91.0" y2="91.0"/> - <line stroke="#888888" x1="11.400000000000002" x2="11.400000000000002" y1="91.0" y2="50.0"/> - <line stroke="#888888" x1="31.400000000000002" x2="32.60000000000001" y1="50.50000000000001" y2="50.50000000000001"/> - <line stroke="#888888" x1="32.60000000000001" x2="32.60000000000001" y1="50.50000000000001" y2="80.50000000000001"/> - <line stroke="#888888" x1="32.60000000000001" x2="31.400000000000002" y1="80.50000000000001" y2="80.50000000000001"/> - <line stroke="#888888" x1="31.400000000000002" x2="31.400000000000002" y1="80.50000000000001" y2="50.50000000000001"/> - <line stroke="#888888" x1="18.000000000000004" x2="18.000000000000004" y1="1.2500000000000002" y2="3.7500000000000004"/> - <line stroke="#888888" x1="18.000000000000004" x2="14.000000000000002" y1="3.7500000000000004" y2="3.7500000000000004"/> - <line stroke="#888888" x1="14.000000000000002" x2="14.000000000000002" y1="3.7500000000000004" y2="1.2500000000000002"/> - <line stroke="#888888" x1="30.000000000000004" x2="30.000000000000004" y1="1.2500000000000002" y2="3.7500000000000004"/> - <line stroke="#888888" x1="30.000000000000004" x2="26.000000000000004" y1="3.7500000000000004" y2="3.7500000000000004"/> - <line stroke="#888888" x1="26.000000000000004" x2="26.000000000000004" y1="3.7500000000000004" y2="1.2500000000000002"/> - <line stroke="#888888" x1="30.000000000000004" x2="30.000000000000004" y1="91.50000000000001" y2="73.50000000000001"/> - <line stroke="#888888" x1="30.000000000000004" x2="60.00000000000001" y1="73.50000000000001" y2="73.50000000000001"/> - <line stroke="#888888" x1="60.00000000000001" x2="60.00000000000001" y1="73.50000000000001" y2="91.50000000000001"/> - <line stroke="#888888" x1="60.00000000000001" x2="30.000000000000004" y1="91.50000000000001" y2="91.50000000000001"/> - <line stroke="#888888" x1="91.40000000000002" x2="92.60000000000001" y1="50.0" y2="50.0"/> - <line stroke="#888888" x1="92.60000000000001" x2="92.60000000000001" y1="50.0" y2="91.0"/> - <line stroke="#888888" x1="92.60000000000001" x2="91.40000000000002" y1="91.0" y2="91.0"/> - <line stroke="#888888" x1="91.40000000000002" x2="91.40000000000002" y1="91.0" y2="50.0"/> - <line stroke="#888888" x1="71.4" x2="72.60000000000001" y1="50.50000000000001" y2="50.50000000000001"/> - <line stroke="#888888" x1="72.60000000000001" x2="72.60000000000001" y1="50.50000000000001" y2="80.50000000000001"/> - <line stroke="#888888" x1="72.60000000000001" x2="71.4" y1="80.50000000000001" y2="80.50000000000001"/> - <line stroke="#888888" x1="71.4" x2="71.4" y1="80.50000000000001" y2="50.50000000000001"/> - <line stroke="#888888" x1="97.00000000000001" x2="97.00000000000001" y1="54.00000000000001" y2="47.00000000000001"/> - <line stroke="#888888" x1="97.00000000000001" x2="117.00000000000001" y1="47.00000000000001" y2="47.00000000000001"/> - <line stroke="#888888" x1="117.00000000000001" x2="117.00000000000001" y1="47.00000000000001" y2="54.00000000000001"/> - <line stroke="#888888" x1="117.00000000000001" x2="97.00000000000001" y1="54.00000000000001" y2="54.00000000000001"/> - <line stroke="#888888" x1="122.25000000000001" x2="122.25000000000001" y1="79.25000000000001" y2="61.75000000000001"/> - <line stroke="#888888" x1="122.25000000000001" x2="122.75000000000001" y1="61.75000000000001" y2="61.75000000000001"/> - <line stroke="#888888" x1="122.75000000000001" x2="122.75000000000001" y1="61.75000000000001" y2="79.25000000000001"/> - <line stroke="#888888" x1="122.75000000000001" x2="122.25000000000001" y1="79.25000000000001" y2="79.25000000000001"/> - <line stroke="#888888" x1="26.000000000000004" x2="26.000000000000004" y1="139.75000000000003" y2="137.25000000000003"/> - <line stroke="#888888" x1="26.000000000000004" x2="30.000000000000004" y1="137.25000000000003" y2="137.25000000000003"/> - <line stroke="#888888" x1="30.000000000000004" x2="30.000000000000004" y1="137.25000000000003" y2="139.75000000000003"/> - <line stroke="#888888" x1="14.000000000000002" x2="14.000000000000002" y1="139.75000000000003" y2="137.25000000000003"/> - <line stroke="#888888" x1="14.000000000000002" x2="18.000000000000004" y1="137.25000000000003" y2="137.25000000000003"/> - <line stroke="#888888" x1="18.000000000000004" x2="18.000000000000004" y1="137.25000000000003" y2="139.75000000000003"/> - <line stroke="#888888" x1="2.5000000000000004" x2="2.5000000000000004" y1="62.000000000000014" y2="57.00000000000001"/> - <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="57.00000000000001" y2="62.000000000000014"/> - <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="62.000000000000014" y2="79.00000000000001"/> - <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="79.00000000000001" y2="84.0"/> - <line stroke="#888888" x1="2.5000000000000004" x2="2.5000000000000004" y1="84.0" y2="79.00000000000001"/> - <line stroke="#000000" x1="186.00000000000003" x2="140.00000000000003" y1="70.5" y2="70.5"/> - <line stroke="#000000" x1="198.0" x2="186.00000000000003" y1="70.5" y2="70.5"/> - <line stroke="#000000" x1="210.00000000000003" x2="198.0" y1="70.5" y2="70.5"/> - <line stroke="#000000" x1="222.00000000000003" x2="210.00000000000003" y1="70.5" y2="70.5"/> - <line stroke="#000000" x1="234.00000000000003" x2="222.00000000000003" y1="70.5" y2="70.5"/> - <line stroke="#000000" x1="246.00000000000003" x2="234.00000000000003" y1="70.5" y2="70.5"/> - <line stroke="#000000" x1="258.0" x2="246.00000000000003" y1="70.5" y2="70.5"/> - <line stroke="#000000" x1="270.00000000000006" x2="258.0" y1="70.5" y2="70.5"/> - <line stroke="#000000" x1="270.00000000000006" x2="270.00000000000006" y1="70.5" y2="70.5"/> - <line stroke="#000000" x1="140.00000000000003" x2="270.00000000000006" y1="70.5" y2="70.5"/> - <line stroke="#000000" x1="140.00000000000003" x2="140.00000000000003" y1="70.5" y2="70.5"/> - <line stroke="#888888" x1="206.25000000000003" x2="201.75000000000003" y1="74.50000000000001" y2="74.50000000000001"/> - <line stroke="#888888" x1="201.75000000000003" x2="201.75000000000003" y1="74.50000000000001" y2="74.0"/> - <line stroke="#888888" x1="201.75000000000003" x2="206.25000000000003" y1="74.0" y2="74.0"/> - <line stroke="#888888" x1="206.25000000000003" x2="206.25000000000003" y1="74.0" y2="74.50000000000001"/> - <line stroke="#888888" x1="218.25000000000003" x2="213.75" y1="74.50000000000001" y2="74.50000000000001"/> - <line stroke="#888888" x1="213.75" x2="213.75" y1="74.50000000000001" y2="74.0"/> - <line stroke="#888888" x1="213.75" x2="218.25000000000003" y1="74.0" y2="74.0"/> - <line stroke="#888888" x1="218.25000000000003" x2="218.25000000000003" y1="74.0" y2="74.50000000000001"/> - <line stroke="#000000" x1="326.00000000000006" x2="280.00000000000006" y1="70.5" y2="70.5"/> - <line stroke="#000000" x1="338.00000000000006" x2="326.00000000000006" y1="70.5" y2="70.5"/> - <line stroke="#000000" x1="350.0" x2="338.00000000000006" y1="70.5" y2="70.5"/> - <line stroke="#000000" x1="362.00000000000006" x2="350.0" y1="70.5" y2="70.5"/> - <line stroke="#000000" x1="374.00000000000006" x2="362.00000000000006" y1="70.5" y2="70.5"/> - <line stroke="#000000" x1="386.00000000000006" x2="374.00000000000006" y1="70.5" y2="70.5"/> - <line stroke="#000000" x1="398.00000000000006" x2="386.00000000000006" y1="70.5" y2="70.5"/> - <line stroke="#000000" x1="410.00000000000006" x2="398.00000000000006" y1="70.5" y2="70.5"/> - <line stroke="#000000" x1="410.00000000000006" x2="410.00000000000006" y1="70.5" y2="70.5"/> - <line stroke="#000000" x1="280.00000000000006" x2="410.00000000000006" y1="70.5" y2="70.5"/> - <line stroke="#000000" x1="280.00000000000006" x2="280.00000000000006" y1="70.5" y2="70.5"/> - <line stroke="#888888" x1="334.25000000000006" x2="329.75000000000006" y1="74.50000000000001" y2="74.50000000000001"/> - <line stroke="#888888" x1="329.75000000000006" x2="329.75000000000006" y1="74.50000000000001" y2="74.0"/> - <line stroke="#888888" x1="329.75000000000006" x2="334.25000000000006" y1="74.0" y2="74.0"/> - <line stroke="#888888" x1="334.25000000000006" x2="334.25000000000006" y1="74.0" y2="74.50000000000001"/> - <line stroke="#888888" x1="346.25" x2="341.75" y1="74.50000000000001" y2="74.50000000000001"/> - <line stroke="#888888" x1="341.75" x2="341.75" y1="74.50000000000001" y2="74.0"/> - <line stroke="#888888" x1="341.75" x2="346.25" y1="74.0" y2="74.0"/> - <line stroke="#888888" x1="346.25" x2="346.25" y1="74.0" y2="74.50000000000001"/> - <line stroke="#000000" x1="604.0312423743285" x2="594.0312423743285" y1="45.5" y2="45.5"/> - <line opacity="0.5" stroke="#0000ff" x1="604.0312423743285" x2="604.0312423743285" y1="45.5" y2="95.5"/> - <line stroke="#000000" x1="594.0312423743285" x2="604.0312423743285" y1="95.5" y2="95.5"/> - <line opacity="0.5" stroke="#0000ff" x1="594.0312423743285" x2="594.0312423743285" y1="95.5" y2="45.5"/> - <line opacity="0.5" stroke="#0000ff" x1="614.0312423743285" x2="614.0312423743285" y1="45.5" y2="95.5"/> - <line stroke="#000000" x1="614.0312423743285" x2="614.0312423743285" y1="45.5" y2="15.500000000000004"/> - <line stroke="#000000" x1="604.0312423743285" x2="604.0312423743285" y1="15.500000000000004" y2="45.5"/> - <line stroke="#000000" x1="604.0312423743285" x2="604.0312423743285" y1="10.5" y2="15.500000000000004"/> - <line stroke="#000000" x1="614.0312423743285" x2="604.0312423743285" y1="10.5" y2="10.5"/> - <line stroke="#000000" x1="614.0312423743285" x2="614.0312423743285" y1="15.500000000000004" y2="10.5"/> - <line stroke="#000000" x1="624.0312423743286" x2="614.0312423743285" y1="45.5" y2="45.5"/> - <line opacity="0.5" stroke="#0000ff" x1="624.0312423743286" x2="624.0312423743286" y1="45.5" y2="95.5"/> - <line stroke="#000000" x1="614.0312423743285" x2="624.0312423743286" y1="95.5" y2="95.5"/> - <line stroke="#000000" x1="634.0312423743286" x2="624.0312423743286" y1="45.5" y2="45.5"/> - <line stroke="#000000" x1="634.0312423743286" x2="634.0312423743286" y1="95.5" y2="45.5"/> - <line stroke="#000000" x1="624.0312423743286" x2="634.0312423743286" y1="95.5" y2="95.5"/> - <line stroke="#000000" x1="604.0312423743285" x2="604.0312423743285" y1="95.5" y2="125.50000000000001"/> - <line stroke="#000000" x1="614.0312423743285" x2="614.0312423743285" y1="125.50000000000001" y2="95.5"/> - <line opacity="1.0" stroke="#ff0000" x1="614.0312423743285" x2="604.0312423743285" y1="125.50000000000001" y2="125.50000000000001"/> - <line stroke="#000000" x1="604.0312423743285" x2="484.03124237432854" y1="125.50000000000001" y2="125.50000000000001"/> - <line stroke="#000000" x1="614.0312423743285" x2="614.0312423743285" y1="125.50000000000001" y2="125.50000000000001"/> - <line stroke="#000000" x1="484.03124237432854" x2="484.03124237432854" y1="125.50000000000001" y2="125.50000000000001"/> - <line opacity="0.5" stroke="#0000ff" x1="484.03124237432854" x2="614.0312423743285" y1="165.50000000000003" y2="165.50000000000003"/> - <line opacity="0.1475836176504332" stroke="#0000ff" x1="484.03124237432854" x2="484.03124237432854" y1="125.50000000000001" y2="165.50000000000003"/> - <line opacity="1.0" stroke="#ff0000" x1="462.35246120943856" x2="484.03124237432854" y1="125.50000000000001" y2="165.50000000000003"/> - <line opacity="0.9666666666666667" stroke="#ff0000" x1="462.35246120943856" x2="484.03124237432854" y1="125.50000000000001" y2="125.50000000000001"/> - <line stroke="#000000" x1="462.35246120943856" x2="450.51765777402795" y1="125.50000000000001" y2="143.66334166502364"/> - <line opacity="1.0" stroke="#0000ff" x1="450.51765777402795" x2="484.03124237432854" y1="143.66334166502364" y2="165.50000000000003"/> - <line opacity="0.4098736980491481" stroke="#0000ff" x1="420.00000000000006" x2="484.03124237432854" y1="190.50000000000003" y2="165.50000000000003"/> - <line stroke="#000000" x1="438.68285433861735" x2="420.00000000000006" y1="161.8266833300472" y2="190.50000000000003"/> - <line stroke="#000000" x1="450.51765777402795" x2="438.68285433861735" y1="143.6633416650236" y2="161.8266833300472"/> - <line opacity="0.21477671252272268" stroke="#0000ff" x1="484.03124237432854" x2="484.03124237432854" y1="165.50000000000003" y2="190.50000000000003"/> - <line opacity="0.21477671252272268" stroke="#0000ff" x1="484.03124237432854" x2="484.03124237432854" y1="190.50000000000003" y2="215.50000000000003"/> - <line opacity="0.4098736980491481" stroke="#0000ff" x1="420.00000000000006" x2="484.03124237432854" y1="190.50000000000003" y2="215.50000000000003"/> - <line opacity="0.5" stroke="#0000ff" x1="484.03124237432854" x2="614.0312423743285" y1="215.50000000000003" y2="215.50000000000003"/> - <line opacity="0.5" stroke="#0000ff" x1="614.0312423743285" x2="614.0312423743285" y1="190.50000000000003" y2="165.50000000000003"/> - <line opacity="0.5" stroke="#0000ff" x1="614.0312423743285" x2="614.0312423743285" y1="215.50000000000003" y2="190.50000000000003"/> - <line stroke="#000000" x1="654.0312423743286" x2="654.0312423743286" y1="205.5" y2="165.50000000000003"/> - <line stroke="#000000" x1="654.0312423743286" x2="654.0312423743286" y1="190.50000000000003" y2="205.5"/> - <line opacity="1.0" stroke="#0000ff" x1="614.0312423743285" x2="654.0312423743286" y1="165.50000000000003" y2="165.50000000000003"/> - <line opacity="1.0" stroke="#ff0000" x1="614.0312423743285" x2="654.0312423743286" y1="165.50000000000003" y2="125.50000000000003"/> - <line stroke="#000000" x1="654.0312423743286" x2="654.0312423743286" y1="165.50000000000003" y2="125.50000000000003"/> - <line opacity="0.9666666666666667" stroke="#ff0000" x1="614.0312423743285" x2="654.0312423743286" y1="125.50000000000003" y2="125.50000000000004"/> - <line opacity="0.5" stroke="#0000ff" x1="614.0312423743285" x2="614.0312423743285" y1="165.50000000000003" y2="125.50000000000003"/> - <line stroke="#000000" x1="614.0312423743285" x2="614.0312423743285" y1="112.1666666666667" y2="125.50000000000004"/> - <line stroke="#000000" x1="654.0312423743286" x2="614.0312423743285" y1="112.16666666666671" y2="112.1666666666667"/> - <line stroke="#000000" x1="654.0312423743286" x2="654.0312423743286" y1="125.50000000000004" y2="112.16666666666671"/> - <line opacity="1.0" stroke="#0000ff" x1="654.0312423743286" x2="614.0312423743285" y1="215.50000000000003" y2="215.50000000000003"/> - <line stroke="#000000" x1="654.0312423743286" x2="654.0312423743286" y1="175.5" y2="190.50000000000003"/> - <line stroke="#000000" x1="654.0312423743286" x2="654.0312423743286" y1="215.50000000000003" y2="175.5"/> - <line stroke="#000000" x1="654.0312423743286" x2="654.0312423743286" y1="255.5" y2="215.50000000000003"/> - <line opacity="1.0" stroke="#ff0000" x1="654.0312423743286" x2="614.0312423743285" y1="255.5" y2="215.50000000000003"/> - <line opacity="0.5" stroke="#0000ff" x1="614.0312423743285" x2="614.0312423743285" y1="255.50000000000006" y2="215.50000000000006"/> - <line opacity="0.9666666666666667" stroke="#ff0000" x1="654.0312423743286" x2="614.0312423743285" y1="255.50000000000003" y2="255.50000000000006"/> - <line opacity="0.1475836176504332" stroke="#0000ff" x1="484.03124237432854" x2="484.03124237432854" y1="215.50000000000009" y2="255.50000000000009"/> - <line opacity="0.9666666666666667" stroke="#ff0000" x1="484.03124237432854" x2="462.3524612094386" y1="255.50000000000006" y2="255.50000000000009"/> - <line opacity="1.0" stroke="#ff0000" x1="484.03124237432854" x2="462.3524612094386" y1="215.50000000000009" y2="255.50000000000009"/> - <line stroke="#000000" x1="484.03124237432854" x2="484.03124237432854" y1="262.7262603882967" y2="255.50000000000006"/> - <line stroke="#000000" x1="462.35246120943856" x2="484.03124237432854" y1="262.7262603882967" y2="262.7262603882967"/> - <line stroke="#000000" x1="462.35246120943856" x2="462.35246120943856" y1="255.50000000000006" y2="262.7262603882967"/> - <line opacity="1.0" stroke="#0000ff" x1="484.03124237432854" x2="450.517657774028" y1="215.50000000000009" y2="237.33665833497648"/> - <line stroke="#000000" x1="450.517657774028" x2="462.35246120943856" y1="237.33665833497648" y2="255.50000000000006"/> - <line stroke="#000000" x1="438.68285433861735" x2="450.517657774028" y1="219.1733166699529" y2="237.33665833497648"/> - <line stroke="#000000" x1="420.00000000000006" x2="438.68285433861735" y1="190.50000000000009" y2="219.1733166699529"/> - <line stroke="#000000" x1="604.0312423743285" x2="614.0312423743285" y1="255.50000000000003" y2="255.50000000000003"/> - <line stroke="#000000" x1="484.03124237432854" x2="604.0312423743285" y1="255.50000000000006" y2="255.50000000000003"/> - <line stroke="#000000" x1="484.03124237432854" x2="484.03124237432854" y1="255.50000000000006" y2="255.50000000000006"/> - <line stroke="#000000" x1="614.0312423743285" x2="614.0312423743285" y1="255.50000000000003" y2="255.50000000000003"/> - <line stroke="#000000" x1="654.0312423743286" x2="654.0312423743286" y1="268.8333333333333" y2="255.50000000000003"/> - <line stroke="#000000" x1="614.0312423743285" x2="654.0312423743286" y1="268.8333333333333" y2="268.8333333333333"/> - <line stroke="#000000" x1="614.0312423743285" x2="614.0312423743285" y1="255.50000000000003" y2="268.8333333333333"/> - <line stroke="#000000" x1="462.35246120943856" x2="462.35246120943856" y1="118.27373961170336" y2="125.50000000000001"/> - <line stroke="#000000" x1="484.03124237432854" x2="462.35246120943856" y1="118.27373961170336" y2="118.27373961170336"/> - <line stroke="#000000" x1="484.03124237432854" x2="484.03124237432854" y1="125.50000000000001" y2="118.27373961170336"/> - <line stroke="#000000" x1="584.0312423743285" x2="594.0312423743285" y1="95.5" y2="95.5"/> - <line stroke="#000000" x1="584.0312423743285" x2="584.0312423743285" y1="45.5" y2="95.5"/> - <line stroke="#000000" x1="594.0312423743285" x2="584.0312423743285" y1="45.5" y2="45.5"/> - <line stroke="#888888" x1="594.0312423743285" x2="604.0312423743285" y1="65.5" y2="65.5"/> - <line stroke="#888888" x1="604.0312423743285" x2="604.0312423743285" y1="65.5" y2="75.50000000000001"/> - <line stroke="#888888" x1="604.0312423743285" x2="594.0312423743285" y1="75.50000000000001" y2="75.50000000000001"/> - <line stroke="#888888" x1="594.0312423743285" x2="594.0312423743285" y1="75.50000000000001" y2="65.5"/> - <line stroke="#888888" x1="610.6979090409952" x2="610.6979090409952" y1="11.750000000000002" y2="14.250000000000002"/> - <line stroke="#888888" x1="610.6979090409952" x2="607.364575707662" y1="14.250000000000002" y2="14.250000000000002"/> - <line stroke="#888888" x1="607.364575707662" x2="607.364575707662" y1="14.250000000000002" y2="11.750000000000002"/> - <line stroke="#888888" x1="614.0312423743285" x2="624.0312423743286" y1="65.5" y2="65.5"/> - <line stroke="#888888" x1="624.0312423743286" x2="624.0312423743286" y1="65.5" y2="75.50000000000001"/> - <line stroke="#888888" x1="624.0312423743286" x2="614.0312423743285" y1="75.50000000000001" y2="75.50000000000001"/> - <line stroke="#888888" x1="614.0312423743285" x2="614.0312423743285" y1="75.50000000000001" y2="65.5"/> - <line stroke="#888888" x1="626.2812423743285" x2="626.2812423743285" y1="79.08333333333336" y2="61.91666666666668"/> - <line stroke="#888888" x1="626.2812423743285" x2="626.7812423743285" y1="61.91666666666668" y2="61.91666666666668"/> - <line stroke="#888888" x1="626.7812423743285" x2="626.7812423743285" y1="61.91666666666668" y2="79.08333333333336"/> - <line stroke="#888888" x1="626.7812423743285" x2="626.2812423743285" y1="79.08333333333336" y2="79.08333333333336"/> - <line stroke="#888888" x1="451.4594977301591" x2="447.2416050225017" y1="152.60350895639252" y2="159.0768759855708"/> - <line stroke="#888888" x1="447.2416050225017" x2="446.822685214998" y1="159.0768759855708" y2="158.80391775638356"/> - <line stroke="#888888" x1="446.822685214998" x2="451.04057792265536" y1="158.80391775638356" y2="152.33055072720532"/> - <line stroke="#888888" x1="451.04057792265536" x2="451.4594977301591" y1="152.33055072720532" y2="152.60350895639252"/> - <line stroke="#888888" x1="643.7812423743285" x2="643.7812423743285" y1="192.41666666666669" y2="178.58333333333334"/> - <line stroke="#888888" x1="643.7812423743285" x2="644.2812423743285" y1="178.58333333333334" y2="178.58333333333334"/> - <line stroke="#888888" x1="644.2812423743285" x2="644.2812423743285" y1="178.58333333333334" y2="192.41666666666669"/> - <line stroke="#888888" x1="644.2812423743285" x2="643.7812423743285" y1="192.41666666666669" y2="192.41666666666669"/> - <line stroke="#888888" x1="640.6979090409951" x2="640.6979090409951" y1="115.50000000000004" y2="122.1666666666667"/> - <line stroke="#888888" x1="640.6979090409951" x2="627.3645757076619" y1="122.1666666666667" y2="122.1666666666667"/> - <line stroke="#888888" x1="627.3645757076619" x2="627.3645757076619" y1="122.1666666666667" y2="115.50000000000004"/> - <line stroke="#888888" x1="643.7812423743285" x2="643.7812423743285" y1="202.41666666666666" y2="188.58333333333334"/> - <line stroke="#888888" x1="643.7812423743285" x2="644.2812423743285" y1="188.58333333333334" y2="188.58333333333334"/> - <line stroke="#888888" x1="644.2812423743285" x2="644.2812423743285" y1="188.58333333333334" y2="202.41666666666666"/> - <line stroke="#888888" x1="644.2812423743285" x2="643.7812423743285" y1="202.41666666666666" y2="202.41666666666666"/> - <line stroke="#888888" x1="469.57872159773524" x2="469.57872159773524" y1="260.9196952912225" y2="257.3065650970742"/> - <line stroke="#888888" x1="469.57872159773524" x2="476.8049819860319" y1="257.3065650970742" y2="257.3065650970742"/> - <line stroke="#888888" x1="476.8049819860319" x2="476.8049819860319" y1="257.3065650970742" y2="260.9196952912225"/> - <line stroke="#888888" x1="447.24160502250174" x2="451.45949773015917" y1="221.9231240144293" y2="228.3964910436076"/> - <line stroke="#888888" x1="451.45949773015917" x2="451.0405779226554" y1="228.3964910436076" y2="228.6694492727948"/> - <line stroke="#888888" x1="451.0405779226554" x2="446.822685214998" y1="228.6694492727948" y2="222.1960822436165"/> - <line stroke="#888888" x1="446.822685214998" x2="447.24160502250174" y1="222.1960822436165" y2="221.9231240144293"/> - <line stroke="#888888" x1="607.1145757076617" x2="610.9479090409952" y1="251.50000000000003" y2="251.50000000000003"/> - <line stroke="#888888" x1="610.9479090409952" x2="610.9479090409952" y1="251.50000000000003" y2="252.00000000000003"/> - <line stroke="#888888" x1="610.9479090409952" x2="607.1145757076617" y1="252.00000000000003" y2="252.00000000000003"/> - <line stroke="#888888" x1="607.1145757076617" x2="607.1145757076617" y1="252.00000000000003" y2="251.50000000000003"/> - <line stroke="#888888" x1="627.3645757076619" x2="627.3645757076619" y1="265.50000000000006" y2="258.8333333333334"/> - <line stroke="#888888" x1="627.3645757076619" x2="640.6979090409951" y1="258.8333333333334" y2="258.8333333333334"/> - <line stroke="#888888" x1="640.6979090409951" x2="640.6979090409951" y1="258.8333333333334" y2="265.50000000000006"/> - <line stroke="#888888" x1="476.80498198603186" x2="476.80498198603186" y1="120.08030470877752" y2="123.69343490292586"/> - <line stroke="#888888" x1="476.80498198603186" x2="469.5787215977352" y1="123.69343490292586" y2="123.69343490292586"/> - <line stroke="#888888" x1="469.5787215977352" x2="469.5787215977352" y1="123.69343490292586" y2="120.08030470877752"/> - <line stroke="#888888" x1="586.5312423743285" x2="586.5312423743285" y1="62.16666666666668" y2="57.16666666666668"/> - <line stroke="#888888" x1="586.5312423743285" x2="591.5312423743286" y1="57.16666666666668" y2="62.16666666666668"/> - <line stroke="#888888" x1="591.5312423743286" x2="591.5312423743286" y1="62.16666666666668" y2="78.83333333333336"/> - <line stroke="#888888" x1="591.5312423743286" x2="586.5312423743285" y1="78.83333333333336" y2="83.83333333333336"/> - <line stroke="#888888" x1="586.5312423743285" x2="586.5312423743285" y1="83.83333333333336" y2="78.83333333333336"/> + <line opacity="0.5" stroke="#0000ff" x1="34.0" x2="34.0" y1="59.50000000000001" y2="120.50000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="10.000000000000002" x2="10.000000000000002" y1="120.50000000000001" y2="59.50000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="10.000000000000002" x2="22.000000000000004" y1="59.50000000000001" y2="59.50000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="22.000000000000004" x2="34.0" y1="59.50000000000001" y2="59.50000000000001"/> + <line stroke="#000000" x1="34.0" x2="34.0" y1="59.50000000000001" y2="59.50000000000001"/> + <line stroke="#000000" x1="10.000000000000002" x2="10.000000000000002" y1="59.50000000000001" y2="59.50000000000001"/> + <line stroke="#000000" x1="10.000000000000002" x2="10.000000000000002" y1="19.500000000000004" y2="59.50000000000001"/> + <line stroke="#000000" x1="22.000000000000004" x2="22.000000000000004" y1="59.50000000000001" y2="19.500000000000004"/> + <line stroke="#000000" x1="10.000000000000002" x2="10.000000000000002" y1="14.5" y2="19.500000000000004"/> + <line stroke="#000000" x1="22.000000000000004" x2="10.000000000000002" y1="14.5" y2="14.5"/> + <line stroke="#000000" x1="22.000000000000004" x2="22.000000000000004" y1="19.500000000000004" y2="14.5"/> + <line stroke="#000000" x1="22.000000000000004" x2="22.000000000000004" y1="19.500000000000004" y2="59.50000000000001"/> + <line stroke="#000000" x1="34.0" x2="34.0" y1="59.50000000000001" y2="19.500000000000004"/> + <line stroke="#000000" x1="22.000000000000004" x2="22.000000000000004" y1="14.5" y2="19.500000000000004"/> + <line stroke="#000000" x1="34.0" x2="22.000000000000004" y1="14.5" y2="14.5"/> + <line stroke="#000000" x1="34.0" x2="34.0" y1="19.500000000000004" y2="14.5"/> + <line stroke="#000000" x1="70.00000000000001" x2="34.0" y1="59.50000000000001" y2="59.50000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="70.00000000000001" x2="70.00000000000001" y1="59.50000000000001" y2="120.50000000000001"/> + <line stroke="#000000" x1="34.0" x2="70.00000000000001" y1="120.50000000000001" y2="120.50000000000001"/> + <line stroke="#000000" x1="94.00000000000001" x2="70.00000000000001" y1="59.50000000000001" y2="59.50000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="94.00000000000001" x2="94.00000000000001" y1="59.50000000000001" y2="120.50000000000001"/> + <line stroke="#000000" x1="70.00000000000001" x2="94.00000000000001" y1="120.50000000000001" y2="120.50000000000001"/> + <line stroke="#000000" x1="130.0" x2="94.00000000000001" y1="59.50000000000001" y2="59.50000000000001"/> + <line stroke="#000000" x1="130.0" x2="130.0" y1="120.50000000000001" y2="59.50000000000001"/> + <line stroke="#000000" x1="94.00000000000001" x2="130.0" y1="120.50000000000001" y2="120.50000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="34.0" x2="22.000000000000004" y1="120.50000000000001" y2="120.50000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="22.000000000000004" x2="10.000000000000002" y1="120.50000000000001" y2="120.50000000000001"/> + <line stroke="#000000" x1="10.000000000000002" x2="10.000000000000002" y1="120.50000000000001" y2="120.50000000000001"/> + <line stroke="#000000" x1="34.0" x2="34.0" y1="120.50000000000001" y2="120.50000000000001"/> + <line stroke="#000000" x1="34.0" x2="34.0" y1="160.50000000000003" y2="120.50000000000001"/> + <line stroke="#000000" x1="22.000000000000004" x2="22.000000000000004" y1="120.50000000000001" y2="160.50000000000003"/> + <line stroke="#000000" x1="34.0" x2="34.0" y1="165.50000000000003" y2="160.50000000000003"/> + <line stroke="#000000" x1="22.000000000000004" x2="34.0" y1="165.50000000000003" y2="165.50000000000003"/> + <line stroke="#000000" x1="22.000000000000004" x2="22.000000000000004" y1="160.50000000000003" y2="165.50000000000003"/> + <line stroke="#000000" x1="22.000000000000004" x2="22.000000000000004" y1="160.50000000000003" y2="120.50000000000001"/> + <line stroke="#000000" x1="10.000000000000002" x2="10.000000000000002" y1="120.50000000000001" y2="160.50000000000003"/> + <line stroke="#000000" x1="22.000000000000004" x2="22.000000000000004" y1="165.50000000000003" y2="160.50000000000003"/> + <line stroke="#000000" x1="10.000000000000002" x2="22.000000000000004" y1="165.50000000000003" y2="165.50000000000003"/> + <line stroke="#000000" x1="10.000000000000002" x2="10.000000000000002" y1="160.50000000000003" y2="165.50000000000003"/> + <line stroke="#000000" x1="0.0" x2="10.000000000000002" y1="120.50000000000001" y2="120.50000000000001"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="59.50000000000001" y2="120.50000000000001"/> + <line stroke="#000000" x1="10.000000000000002" x2="0.0" y1="59.50000000000001" y2="59.50000000000001"/> + <line stroke="#888888" x1="11.400000000000002" x2="12.6" y1="69.5" y2="69.5"/> + <line stroke="#888888" x1="12.6" x2="12.6" y1="69.5" y2="110.50000000000001"/> + <line stroke="#888888" x1="12.6" x2="11.400000000000002" y1="110.50000000000001" y2="110.50000000000001"/> + <line stroke="#888888" x1="11.400000000000002" x2="11.400000000000002" y1="110.50000000000001" y2="69.5"/> + <line stroke="#888888" x1="31.400000000000002" x2="32.60000000000001" y1="70.00000000000001" y2="70.00000000000001"/> + <line stroke="#888888" x1="32.60000000000001" x2="32.60000000000001" y1="70.00000000000001" y2="100.0"/> + <line stroke="#888888" x1="32.60000000000001" x2="31.400000000000002" y1="100.0" y2="100.0"/> + <line stroke="#888888" x1="31.400000000000002" x2="31.400000000000002" y1="100.0" y2="70.00000000000001"/> + <line stroke="#888888" x1="18.000000000000004" x2="18.000000000000004" y1="15.750000000000002" y2="18.25"/> + <line stroke="#888888" x1="18.000000000000004" x2="14.000000000000002" y1="18.25" y2="18.25"/> + <line stroke="#888888" x1="14.000000000000002" x2="14.000000000000002" y1="18.25" y2="15.750000000000002"/> + <line stroke="#888888" x1="30.000000000000004" x2="30.000000000000004" y1="15.750000000000002" y2="18.25"/> + <line stroke="#888888" x1="30.000000000000004" x2="26.000000000000004" y1="18.25" y2="18.25"/> + <line stroke="#888888" x1="26.000000000000004" x2="26.000000000000004" y1="18.25" y2="15.750000000000002"/> + <line stroke="#888888" x1="30.000000000000004" x2="30.000000000000004" y1="111.00000000000001" y2="93.00000000000001"/> + <line stroke="#888888" x1="30.000000000000004" x2="60.00000000000001" y1="93.00000000000001" y2="93.00000000000001"/> + <line stroke="#888888" x1="60.00000000000001" x2="60.00000000000001" y1="93.00000000000001" y2="111.00000000000001"/> + <line stroke="#888888" x1="60.00000000000001" x2="30.000000000000004" y1="111.00000000000001" y2="111.00000000000001"/> + <line stroke="#888888" x1="91.40000000000002" x2="92.60000000000001" y1="69.5" y2="69.5"/> + <line stroke="#888888" x1="92.60000000000001" x2="92.60000000000001" y1="69.5" y2="110.50000000000001"/> + <line stroke="#888888" x1="92.60000000000001" x2="91.40000000000002" y1="110.50000000000001" y2="110.50000000000001"/> + <line stroke="#888888" x1="91.40000000000002" x2="91.40000000000002" y1="110.50000000000001" y2="69.5"/> + <line stroke="#888888" x1="71.4" x2="72.60000000000001" y1="70.00000000000001" y2="70.00000000000001"/> + <line stroke="#888888" x1="72.60000000000001" x2="72.60000000000001" y1="70.00000000000001" y2="100.0"/> + <line stroke="#888888" x1="72.60000000000001" x2="71.4" y1="100.0" y2="100.0"/> + <line stroke="#888888" x1="71.4" x2="71.4" y1="100.0" y2="70.00000000000001"/> + <line stroke="#888888" x1="97.00000000000001" x2="97.00000000000001" y1="73.50000000000001" y2="66.50000000000001"/> + <line stroke="#888888" x1="97.00000000000001" x2="117.00000000000001" y1="66.50000000000001" y2="66.50000000000001"/> + <line stroke="#888888" x1="117.00000000000001" x2="117.00000000000001" y1="66.50000000000001" y2="73.50000000000001"/> + <line stroke="#888888" x1="117.00000000000001" x2="97.00000000000001" y1="73.50000000000001" y2="73.50000000000001"/> + <line stroke="#888888" x1="122.25000000000001" x2="122.25000000000001" y1="81.9318181818182" y2="70.3409090909091"/> + <line stroke="#888888" x1="122.25000000000001" x2="122.75000000000001" y1="70.3409090909091" y2="70.3409090909091"/> + <line stroke="#888888" x1="122.75000000000001" x2="122.75000000000001" y1="70.3409090909091" y2="81.9318181818182"/> + <line stroke="#888888" x1="122.75000000000001" x2="122.25000000000001" y1="81.9318181818182" y2="81.9318181818182"/> + <line stroke="#888888" x1="122.25000000000001" x2="122.25000000000001" y1="109.65909090909092" y2="98.06818181818183"/> + <line stroke="#888888" x1="122.25000000000001" x2="122.75000000000001" y1="98.06818181818183" y2="98.06818181818183"/> + <line stroke="#888888" x1="122.75000000000001" x2="122.75000000000001" y1="98.06818181818183" y2="109.65909090909092"/> + <line stroke="#888888" x1="122.75000000000001" x2="122.25000000000001" y1="109.65909090909092" y2="109.65909090909092"/> + <line stroke="#888888" x1="26.000000000000004" x2="26.000000000000004" y1="164.25000000000003" y2="161.75"/> + <line stroke="#888888" x1="26.000000000000004" x2="30.000000000000004" y1="161.75" y2="161.75"/> + <line stroke="#888888" x1="30.000000000000004" x2="30.000000000000004" y1="161.75" y2="164.25000000000003"/> + <line stroke="#888888" x1="14.000000000000002" x2="14.000000000000002" y1="164.25000000000003" y2="161.75"/> + <line stroke="#888888" x1="14.000000000000002" x2="18.000000000000004" y1="161.75" y2="161.75"/> + <line stroke="#888888" x1="18.000000000000004" x2="18.000000000000004" y1="161.75" y2="164.25000000000003"/> + <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="70.5909090909091" y2="70.5909090909091"/> + <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="70.5909090909091" y2="81.68181818181819"/> + <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="81.68181818181819" y2="81.68181818181819"/> + <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="98.31818181818184" y2="98.31818181818184"/> + <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="98.31818181818184" y2="109.40909090909092"/> + <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="109.40909090909092" y2="109.40909090909092"/> + <line stroke="#000000" x1="186.00000000000003" x2="140.00000000000003" y1="90.0" y2="90.0"/> + <line stroke="#000000" x1="198.0" x2="186.00000000000003" y1="90.0" y2="90.0"/> + <line stroke="#000000" x1="210.00000000000003" x2="198.0" y1="90.0" y2="90.0"/> + <line stroke="#000000" x1="222.00000000000003" x2="210.00000000000003" y1="90.0" y2="90.0"/> + <line stroke="#000000" x1="234.00000000000003" x2="222.00000000000003" y1="90.0" y2="90.0"/> + <line stroke="#000000" x1="246.00000000000003" x2="234.00000000000003" y1="90.0" y2="90.0"/> + <line stroke="#000000" x1="258.0" x2="246.00000000000003" y1="90.0" y2="90.0"/> + <line stroke="#000000" x1="270.00000000000006" x2="258.0" y1="90.0" y2="90.0"/> + <line stroke="#000000" x1="270.00000000000006" x2="270.00000000000006" y1="90.0" y2="90.0"/> + <line stroke="#000000" x1="140.00000000000003" x2="270.00000000000006" y1="90.0" y2="90.0"/> + <line stroke="#000000" x1="140.00000000000003" x2="140.00000000000003" y1="90.0" y2="90.0"/> + <line stroke="#888888" x1="206.25000000000003" x2="201.75000000000003" y1="94.00000000000001" y2="94.00000000000001"/> + <line stroke="#888888" x1="201.75000000000003" x2="201.75000000000003" y1="94.00000000000001" y2="93.50000000000001"/> + <line stroke="#888888" x1="201.75000000000003" x2="206.25000000000003" y1="93.50000000000001" y2="93.50000000000001"/> + <line stroke="#888888" x1="206.25000000000003" x2="206.25000000000003" y1="93.50000000000001" y2="94.00000000000001"/> + <line stroke="#888888" x1="218.25000000000003" x2="213.75" y1="94.00000000000001" y2="94.00000000000001"/> + <line stroke="#888888" x1="213.75" x2="213.75" y1="94.00000000000001" y2="93.50000000000001"/> + <line stroke="#888888" x1="213.75" x2="218.25000000000003" y1="93.50000000000001" y2="93.50000000000001"/> + <line stroke="#888888" x1="218.25000000000003" x2="218.25000000000003" y1="93.50000000000001" y2="94.00000000000001"/> + <line stroke="#000000" x1="326.00000000000006" x2="280.00000000000006" y1="90.0" y2="90.0"/> + <line stroke="#000000" x1="338.00000000000006" x2="326.00000000000006" y1="90.0" y2="90.0"/> + <line stroke="#000000" x1="350.0" x2="338.00000000000006" y1="90.0" y2="90.0"/> + <line stroke="#000000" x1="362.00000000000006" x2="350.0" y1="90.0" y2="90.0"/> + <line stroke="#000000" x1="374.00000000000006" x2="362.00000000000006" y1="90.0" y2="90.0"/> + <line stroke="#000000" x1="386.00000000000006" x2="374.00000000000006" y1="90.0" y2="90.0"/> + <line stroke="#000000" x1="398.00000000000006" x2="386.00000000000006" y1="90.0" y2="90.0"/> + <line stroke="#000000" x1="410.00000000000006" x2="398.00000000000006" y1="90.0" y2="90.0"/> + <line stroke="#000000" x1="410.00000000000006" x2="410.00000000000006" y1="90.0" y2="90.0"/> + <line stroke="#000000" x1="280.00000000000006" x2="410.00000000000006" y1="90.0" y2="90.0"/> + <line stroke="#000000" x1="280.00000000000006" x2="280.00000000000006" y1="90.0" y2="90.0"/> + <line stroke="#888888" x1="334.25000000000006" x2="329.75000000000006" y1="94.00000000000001" y2="94.00000000000001"/> + <line stroke="#888888" x1="329.75000000000006" x2="329.75000000000006" y1="94.00000000000001" y2="93.50000000000001"/> + <line stroke="#888888" x1="329.75000000000006" x2="334.25000000000006" y1="93.50000000000001" y2="93.50000000000001"/> + <line stroke="#888888" x1="334.25000000000006" x2="334.25000000000006" y1="93.50000000000001" y2="94.00000000000001"/> + <line stroke="#888888" x1="346.25" x2="341.75" y1="94.00000000000001" y2="94.00000000000001"/> + <line stroke="#888888" x1="341.75" x2="341.75" y1="94.00000000000001" y2="93.50000000000001"/> + <line stroke="#888888" x1="341.75" x2="346.25" y1="93.50000000000001" y2="93.50000000000001"/> + <line stroke="#888888" x1="346.25" x2="346.25" y1="93.50000000000001" y2="94.00000000000001"/> + <line stroke="#000000" x1="612.710678118655" x2="604.710678118655" y1="55.00000000000001" y2="55.00000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="612.710678118655" x2="612.710678118655" y1="55.00000000000001" y2="125.00000000000001"/> + <line stroke="#000000" x1="604.710678118655" x2="612.710678118655" y1="125.00000000000001" y2="125.00000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="604.710678118655" x2="604.710678118655" y1="125.00000000000001" y2="55.00000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="620.710678118655" x2="620.710678118655" y1="55.00000000000001" y2="125.00000000000001"/> + <line stroke="#000000" x1="620.710678118655" x2="620.710678118655" y1="55.00000000000001" y2="5.000000000000001"/> + <line stroke="#000000" x1="612.710678118655" x2="612.710678118655" y1="5.000000000000001" y2="55.00000000000001"/> + <line stroke="#000000" x1="612.710678118655" x2="612.710678118655" y1="0.0" y2="5.000000000000001"/> + <line stroke="#000000" x1="620.710678118655" x2="612.710678118655" y1="0.0" y2="0.0"/> + <line stroke="#000000" x1="620.710678118655" x2="620.710678118655" y1="5.000000000000001" y2="0.0"/> + <line stroke="#000000" x1="628.710678118655" x2="620.710678118655" y1="55.00000000000001" y2="55.00000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="628.710678118655" x2="628.710678118655" y1="55.00000000000001" y2="125.00000000000001"/> + <line stroke="#000000" x1="620.710678118655" x2="628.710678118655" y1="125.00000000000001" y2="125.00000000000001"/> + <line stroke="#000000" x1="636.710678118655" x2="628.710678118655" y1="55.00000000000001" y2="55.00000000000001"/> + <line stroke="#000000" x1="636.710678118655" x2="636.710678118655" y1="125.00000000000001" y2="55.00000000000001"/> + <line stroke="#000000" x1="628.710678118655" x2="636.710678118655" y1="125.00000000000001" y2="125.00000000000001"/> + <line stroke="#000000" x1="612.710678118655" x2="612.710678118655" y1="125.00000000000001" y2="175.0"/> + <line stroke="#000000" x1="620.710678118655" x2="620.710678118655" y1="175.0" y2="125.00000000000001"/> + <line opacity="1.0" stroke="#ff0000" x1="620.710678118655" x2="612.710678118655" y1="175.0" y2="175.0"/> + <line stroke="#000000" x1="612.710678118655" x2="490.7106781186549" y1="175.0" y2="175.0"/> + <line stroke="#000000" x1="620.710678118655" x2="620.710678118655" y1="175.0" y2="175.0"/> + <line stroke="#000000" x1="490.7106781186549" x2="490.7106781186549" y1="175.0" y2="175.0"/> + <line opacity="0.5" stroke="#0000ff" x1="490.7106781186549" x2="620.710678118655" y1="225.00000000000003" y2="225.00000000000003"/> + <line opacity="0.1944001122142148" stroke="#0000ff" x1="490.7106781186549" x2="490.7106781186549" y1="175.0" y2="225.00000000000003"/> + <line opacity="1.0" stroke="#ff0000" x1="458.4510113187008" x2="490.7106781186549" y1="175.0" y2="225.00000000000003"/> + <line opacity="0.9666666666666667" stroke="#ff0000" x1="458.4510113187008" x2="490.7106781186549" y1="175.0" y2="175.0"/> + <line stroke="#000000" x1="458.45101131870075" x2="445.1550063219791" y1="175.0" y2="204.3922158601766"/> + <line opacity="1.0" stroke="#0000ff" x1="445.1550063219791" x2="490.7106781186549" y1="204.3922158601766" y2="225.00000000000003"/> + <line opacity="0.367097734030027" stroke="#0000ff" x1="420.00000000000017" x2="490.7106781186549" y1="260.0" y2="225.00000000000003"/> + <line stroke="#000000" x1="431.85900132525745" x2="420.00000000000017" y1="233.78443172035318" y2="260.0"/> + <line stroke="#000000" x1="445.15500632197916" x2="431.85900132525745" y1="204.3922158601766" y2="233.78443172035318"/> + <line opacity="0.25" stroke="#0000ff" x1="490.7106781186549" x2="490.7106781186549" y1="225.00000000000003" y2="260.0"/> + <line opacity="0.25" stroke="#0000ff" x1="490.7106781186549" x2="490.7106781186549" y1="260.0" y2="295.0"/> + <line opacity="0.367097734030027" stroke="#0000ff" x1="420.00000000000017" x2="490.7106781186549" y1="260.0" y2="295.0"/> + <line opacity="0.5" stroke="#0000ff" x1="490.7106781186549" x2="620.710678118655" y1="295.0" y2="295.0"/> + <line opacity="0.5" stroke="#0000ff" x1="620.710678118655" x2="620.710678118655" y1="260.0" y2="225.00000000000003"/> + <line opacity="0.5" stroke="#0000ff" x1="620.710678118655" x2="620.710678118655" y1="295.0" y2="260.0"/> + <line stroke="#000000" x1="670.7106781186549" x2="670.7106781186549" y1="275.00000000000006" y2="225.00000000000003"/> + <line stroke="#000000" x1="670.7106781186549" x2="670.7106781186549" y1="260.0" y2="275.00000000000006"/> + <line opacity="1.0" stroke="#0000ff" x1="620.710678118655" x2="670.7106781186549" y1="225.00000000000003" y2="225.00000000000003"/> + <line opacity="1.0" stroke="#ff0000" x1="620.710678118655" x2="670.7106781186549" y1="225.00000000000003" y2="175.00000000000003"/> + <line stroke="#000000" x1="670.7106781186549" x2="670.7106781186549" y1="225.00000000000003" y2="175.00000000000003"/> + <line opacity="0.9666666666666667" stroke="#ff0000" x1="620.710678118655" x2="670.7106781186549" y1="175.0" y2="175.0"/> + <line opacity="0.5" stroke="#0000ff" x1="620.710678118655" x2="620.710678118655" y1="225.00000000000003" y2="175.0"/> + <line stroke="#000000" x1="620.710678118655" x2="620.710678118655" y1="158.33333333333337" y2="175.0"/> + <line stroke="#000000" x1="670.7106781186549" x2="620.710678118655" y1="158.33333333333337" y2="158.33333333333337"/> + <line stroke="#000000" x1="670.7106781186549" x2="670.7106781186549" y1="175.0" y2="158.33333333333337"/> + <line opacity="1.0" stroke="#0000ff" x1="670.7106781186549" x2="620.710678118655" y1="295.0" y2="295.0"/> + <line stroke="#000000" x1="670.7106781186549" x2="670.7106781186549" y1="245.00000000000003" y2="260.0"/> + <line stroke="#000000" x1="670.7106781186549" x2="670.7106781186549" y1="295.0" y2="245.00000000000003"/> + <line stroke="#000000" x1="670.7106781186549" x2="670.7106781186549" y1="345.00000000000006" y2="295.0"/> + <line opacity="1.0" stroke="#ff0000" x1="670.7106781186549" x2="620.710678118655" y1="345.00000000000006" y2="295.0"/> + <line opacity="0.5" stroke="#0000ff" x1="620.710678118655" x2="620.710678118655" y1="345.00000000000006" y2="295.0"/> + <line opacity="0.9666666666666667" stroke="#ff0000" x1="670.7106781186549" x2="620.710678118655" y1="345.00000000000006" y2="345.00000000000006"/> + <line opacity="0.1944001122142148" stroke="#0000ff" x1="490.71067811865487" x2="490.71067811865487" y1="295.0" y2="345.00000000000006"/> + <line opacity="0.9666666666666667" stroke="#ff0000" x1="490.71067811865487" x2="458.45101131870075" y1="345.00000000000006" y2="345.00000000000006"/> + <line opacity="1.0" stroke="#ff0000" x1="490.71067811865487" x2="458.45101131870075" y1="295.0" y2="345.00000000000006"/> + <line stroke="#000000" x1="490.71067811865487" x2="490.71067811865487" y1="355.75322226665145" y2="345.00000000000006"/> + <line stroke="#000000" x1="458.45101131870075" x2="490.71067811865487" y1="355.75322226665145" y2="355.75322226665145"/> + <line stroke="#000000" x1="458.45101131870075" x2="458.45101131870075" y1="345.00000000000006" y2="355.75322226665145"/> + <line opacity="1.0" stroke="#0000ff" x1="490.71067811865487" x2="445.1550063219791" y1="295.0" y2="315.6077841398234"/> + <line stroke="#000000" x1="445.1550063219791" x2="458.45101131870075" y1="315.6077841398234" y2="345.00000000000006"/> + <line stroke="#000000" x1="431.8590013252574" x2="445.1550063219791" y1="286.21556827964685" y2="315.6077841398234"/> + <line stroke="#000000" x1="420.00000000000006" x2="431.8590013252574" y1="260.0" y2="286.21556827964685"/> + <line stroke="#000000" x1="612.710678118655" x2="620.710678118655" y1="345.00000000000006" y2="345.00000000000006"/> + <line stroke="#000000" x1="490.71067811865487" x2="612.710678118655" y1="345.00000000000006" y2="345.00000000000006"/> + <line stroke="#000000" x1="490.71067811865487" x2="490.71067811865487" y1="345.00000000000006" y2="345.00000000000006"/> + <line stroke="#000000" x1="620.710678118655" x2="620.710678118655" y1="345.00000000000006" y2="345.00000000000006"/> + <line stroke="#000000" x1="670.7106781186549" x2="670.7106781186549" y1="361.66666666666674" y2="345.00000000000006"/> + <line stroke="#000000" x1="620.710678118655" x2="670.7106781186549" y1="361.66666666666674" y2="361.66666666666674"/> + <line stroke="#000000" x1="620.710678118655" x2="620.710678118655" y1="345.00000000000006" y2="361.66666666666674"/> + <line stroke="#000000" x1="458.4510113187008" x2="458.4510113187008" y1="164.2467777333486" y2="175.0"/> + <line stroke="#000000" x1="490.7106781186549" x2="458.4510113187008" y1="164.2467777333486" y2="164.2467777333486"/> + <line stroke="#000000" x1="490.7106781186549" x2="490.7106781186549" y1="175.0" y2="164.2467777333486"/> + <line stroke="#000000" x1="596.7106781186549" x2="604.710678118655" y1="125.00000000000001" y2="125.00000000000001"/> + <line stroke="#000000" x1="596.7106781186549" x2="596.7106781186549" y1="55.00000000000001" y2="125.00000000000001"/> + <line stroke="#000000" x1="604.710678118655" x2="596.7106781186549" y1="55.00000000000001" y2="55.00000000000001"/> + <line stroke="#888888" x1="604.710678118655" x2="612.710678118655" y1="86.00000000000001" y2="86.00000000000001"/> + <line stroke="#888888" x1="612.710678118655" x2="612.710678118655" y1="86.00000000000001" y2="94.00000000000001"/> + <line stroke="#888888" x1="612.710678118655" x2="604.710678118655" y1="94.00000000000001" y2="94.00000000000001"/> + <line stroke="#888888" x1="604.710678118655" x2="604.710678118655" y1="94.00000000000001" y2="86.00000000000001"/> + <line stroke="#888888" x1="618.0440114519882" x2="618.0440114519882" y1="1.2500000000000002" y2="3.7500000000000004"/> + <line stroke="#888888" x1="618.0440114519882" x2="615.3773447853215" y1="3.7500000000000004" y2="3.7500000000000004"/> + <line stroke="#888888" x1="615.3773447853215" x2="615.3773447853215" y1="3.7500000000000004" y2="1.2500000000000002"/> + <line stroke="#888888" x1="620.710678118655" x2="628.710678118655" y1="86.00000000000001" y2="86.00000000000001"/> + <line stroke="#888888" x1="628.710678118655" x2="628.710678118655" y1="86.00000000000001" y2="94.00000000000001"/> + <line stroke="#888888" x1="628.710678118655" x2="620.710678118655" y1="94.00000000000001" y2="94.00000000000001"/> + <line stroke="#888888" x1="620.710678118655" x2="620.710678118655" y1="94.00000000000001" y2="86.00000000000001"/> + <line stroke="#888888" x1="630.4606781186549" x2="630.4606781186549" y1="80.70454545454547" y2="67.47727272727273"/> + <line stroke="#888888" x1="630.4606781186549" x2="630.9606781186549" y1="67.47727272727273" y2="67.47727272727273"/> + <line stroke="#888888" x1="630.9606781186549" x2="630.9606781186549" y1="67.47727272727273" y2="80.70454545454547"/> + <line stroke="#888888" x1="630.9606781186549" x2="630.4606781186549" y1="80.70454545454547" y2="80.70454545454547"/> + <line stroke="#888888" x1="630.4606781186549" x2="630.4606781186549" y1="112.52272727272728" y2="99.29545454545456"/> + <line stroke="#888888" x1="630.4606781186549" x2="630.9606781186549" y1="99.29545454545456" y2="99.29545454545456"/> + <line stroke="#888888" x1="630.9606781186549" x2="630.9606781186549" y1="99.29545454545456" y2="112.52272727272728"/> + <line stroke="#888888" x1="630.9606781186549" x2="630.4606781186549" y1="112.52272727272728" y2="112.52272727272728"/> + <line stroke="#888888" x1="448.40187590113186" x2="443.7637963941598" y1="217.3888829577983" y2="227.64184496249058"/> + <line stroke="#888888" x1="443.7637963941598" x2="443.308239676193" y1="227.64184496249058" y2="227.43576712109234"/> + <line stroke="#888888" x1="443.308239676193" x2="447.94631918316514" y1="227.43576712109234" y2="217.18280511640006"/> + <line stroke="#888888" x1="447.94631918316514" x2="448.40187590113186" y1="217.18280511640006" y2="217.3888829577983"/> + <line stroke="#888888" x1="657.9606781186549" x2="657.9606781186549" y1="258.58333333333337" y2="241.41666666666669"/> + <line stroke="#888888" x1="657.9606781186549" x2="658.4606781186549" y1="241.41666666666669" y2="241.41666666666669"/> + <line stroke="#888888" x1="658.4606781186549" x2="658.4606781186549" y1="241.41666666666669" y2="258.58333333333337"/> + <line stroke="#888888" x1="658.4606781186549" x2="657.9606781186549" y1="258.58333333333337" y2="258.58333333333337"/> + <line stroke="#888888" x1="654.0440114519881" x2="654.0440114519881" y1="162.50000000000003" y2="170.83333333333334"/> + <line stroke="#888888" x1="654.0440114519881" x2="637.3773447853216" y1="170.83333333333334" y2="170.83333333333334"/> + <line stroke="#888888" x1="637.3773447853216" x2="637.3773447853216" y1="170.83333333333334" y2="162.50000000000003"/> + <line stroke="#888888" x1="657.9606781186549" x2="657.9606781186549" y1="278.5833333333333" y2="261.4166666666667"/> + <line stroke="#888888" x1="657.9606781186549" x2="658.4606781186549" y1="261.4166666666667" y2="261.4166666666667"/> + <line stroke="#888888" x1="658.4606781186549" x2="658.4606781186549" y1="261.4166666666667" y2="278.5833333333333"/> + <line stroke="#888888" x1="658.4606781186549" x2="657.9606781186549" y1="278.5833333333333" y2="278.5833333333333"/> + <line stroke="#888888" x1="469.20423358535214" x2="469.20423358535214" y1="353.06491669998854" y2="347.6883055666629"/> + <line stroke="#888888" x1="469.20423358535214" x2="479.95745585200353" y1="347.6883055666629" y2="347.6883055666629"/> + <line stroke="#888888" x1="479.95745585200353" x2="479.95745585200353" y1="347.6883055666629" y2="353.06491669998854"/> + <line stroke="#888888" x1="443.76379639415967" x2="448.4018759011318" y1="292.3581550375095" y2="302.6111170422017"/> + <line stroke="#888888" x1="448.4018759011318" x2="447.94631918316503" y1="302.6111170422017" y2="302.81719488360005"/> + <line stroke="#888888" x1="447.94631918316503" x2="443.30823967619295" y1="302.81719488360005" y2="292.5642328789077"/> + <line stroke="#888888" x1="443.30823967619295" x2="443.76379639415967" y1="292.5642328789077" y2="292.3581550375095"/> + <line stroke="#888888" x1="615.1273447853216" x2="618.2940114519882" y1="341.0" y2="341.0"/> + <line stroke="#888888" x1="618.2940114519882" x2="618.2940114519882" y1="341.0" y2="341.5"/> + <line stroke="#888888" x1="618.2940114519882" x2="615.1273447853216" y1="341.5" y2="341.5"/> + <line stroke="#888888" x1="615.1273447853216" x2="615.1273447853216" y1="341.5" y2="341.0"/> + <line stroke="#888888" x1="637.3773447853216" x2="637.3773447853216" y1="357.50000000000006" y2="349.16666666666674"/> + <line stroke="#888888" x1="637.3773447853216" x2="654.0440114519881" y1="349.16666666666674" y2="349.16666666666674"/> + <line stroke="#888888" x1="654.0440114519881" x2="654.0440114519881" y1="349.16666666666674" y2="357.50000000000006"/> + <line stroke="#888888" x1="479.95745585200353" x2="479.95745585200353" y1="166.93508330001148" y2="172.31169443333718"/> + <line stroke="#888888" x1="479.95745585200353" x2="469.20423358535214" y1="172.31169443333718" y2="172.31169443333718"/> + <line stroke="#888888" x1="469.20423358535214" x2="469.20423358535214" y1="172.31169443333718" y2="166.93508330001148"/> + <line stroke="#888888" x1="598.7106781186549" x2="598.7106781186549" y1="67.72727272727273" y2="63.727272727272734"/> + <line stroke="#888888" x1="598.7106781186549" x2="602.710678118655" y1="63.727272727272734" y2="67.72727272727273"/> + <line stroke="#888888" x1="602.710678118655" x2="602.710678118655" y1="67.72727272727273" y2="80.45454545454547"/> + <line stroke="#888888" x1="602.710678118655" x2="598.7106781186549" y1="80.45454545454547" y2="84.45454545454547"/> + <line stroke="#888888" x1="598.7106781186549" x2="598.7106781186549" y1="84.45454545454547" y2="80.45454545454547"/> + <line stroke="#888888" x1="598.7106781186549" x2="598.7106781186549" y1="99.54545454545455" y2="95.54545454545456"/> + <line stroke="#888888" x1="598.7106781186549" x2="602.710678118655" y1="95.54545454545456" y2="99.54545454545455"/> + <line stroke="#888888" x1="602.710678118655" x2="602.710678118655" y1="99.54545454545455" y2="112.27272727272728"/> + <line stroke="#888888" x1="602.710678118655" x2="598.7106781186549" y1="112.27272727272728" y2="116.27272727272728"/> + <line stroke="#888888" x1="598.7106781186549" x2="598.7106781186549" y1="116.27272727272728" y2="112.27272727272728"/> </svg> diff --git a/rocolib/output/ESP32StackBoat/graph-autofold-default.dxf b/rocolib/output/ESP32StackBoat/graph-autofold-default.dxf index 5529c8b0c326207d989665887010949cc6d13a55..20ad81f4f008c4e8dd67216c9b0640d2c21a071f 100644 --- a/rocolib/output/ESP32StackBoat/graph-autofold-default.dxf +++ b/rocolib/output/ESP32StackBoat/graph-autofold-default.dxf @@ -577,7 +577,7 @@ CONTINUOUS 0 LAYER 2 -26.565051177077976 +34.99202019855866 70 0 62 @@ -607,7 +607,7 @@ CONTINUOUS 0 LAYER 2 -73.77726564884665 +66.07759212540486 70 0 62 @@ -617,7 +617,7 @@ CONTINUOUS 0 LAYER 2 -38.65980825409008 +45.0 70 0 62 @@ -1037,13 +1037,13 @@ DOTTED 10 34.0 20 -45.0 +59.50000000000001 30 0.0 11 34.0 21 -96.00000000000001 +120.50000000000001 31 0.0 0 @@ -1057,13 +1057,13 @@ DOTTED 10 10.000000000000002 20 -96.00000000000001 +120.50000000000001 30 0.0 11 10.000000000000002 21 -45.0 +59.50000000000001 31 0.0 0 @@ -1077,13 +1077,13 @@ DOTTED 10 10.000000000000002 20 -45.0 +59.50000000000001 30 0.0 11 22.000000000000004 21 -45.0 +59.50000000000001 31 0.0 0 @@ -1097,13 +1097,13 @@ DOTTED 10 22.000000000000004 20 -45.0 +59.50000000000001 30 0.0 11 34.0 21 -45.0 +59.50000000000001 31 0.0 0 @@ -1115,13 +1115,13 @@ cut 10 34.0 20 -45.0 +59.50000000000001 30 0.0 11 34.0 21 -45.0 +59.50000000000001 31 0.0 0 @@ -1133,13 +1133,13 @@ cut 10 10.000000000000002 20 -45.0 +59.50000000000001 30 0.0 11 10.000000000000002 21 -45.0 +59.50000000000001 31 0.0 0 @@ -1151,13 +1151,13 @@ cut 10 10.000000000000002 20 -5.000000000000001 +19.500000000000004 30 0.0 11 10.000000000000002 21 -45.0 +59.50000000000001 31 0.0 0 @@ -1169,13 +1169,13 @@ cut 10 22.000000000000004 20 -45.0 +59.50000000000001 30 0.0 11 22.000000000000004 21 -5.000000000000001 +19.500000000000004 31 0.0 0 @@ -1187,13 +1187,13 @@ cut 10 10.000000000000002 20 -0.0 +14.5 30 0.0 11 10.000000000000002 21 -5.000000000000001 +19.500000000000004 31 0.0 0 @@ -1205,13 +1205,13 @@ cut 10 22.000000000000004 20 -0.0 +14.5 30 0.0 11 10.000000000000002 21 -0.0 +14.5 31 0.0 0 @@ -1223,13 +1223,13 @@ cut 10 22.000000000000004 20 -5.000000000000001 +19.500000000000004 30 0.0 11 22.000000000000004 21 -0.0 +14.5 31 0.0 0 @@ -1241,13 +1241,13 @@ cut 10 22.000000000000004 20 -5.000000000000001 +19.500000000000004 30 0.0 11 22.000000000000004 21 -45.0 +59.50000000000001 31 0.0 0 @@ -1259,13 +1259,13 @@ cut 10 34.0 20 -45.0 +59.50000000000001 30 0.0 11 34.0 21 -5.000000000000001 +19.500000000000004 31 0.0 0 @@ -1277,13 +1277,13 @@ cut 10 22.000000000000004 20 -0.0 +14.5 30 0.0 11 22.000000000000004 21 -5.000000000000001 +19.500000000000004 31 0.0 0 @@ -1295,13 +1295,13 @@ cut 10 34.0 20 -0.0 +14.5 30 0.0 11 22.000000000000004 21 -0.0 +14.5 31 0.0 0 @@ -1313,13 +1313,13 @@ cut 10 34.0 20 -5.000000000000001 +19.500000000000004 30 0.0 11 34.0 21 -0.0 +14.5 31 0.0 0 @@ -1331,13 +1331,13 @@ cut 10 70.00000000000001 20 -45.0 +59.50000000000001 30 0.0 11 34.0 21 -45.0 +59.50000000000001 31 0.0 0 @@ -1351,13 +1351,13 @@ DOTTED 10 70.00000000000001 20 -45.0 +59.50000000000001 30 0.0 11 70.00000000000001 21 -96.00000000000001 +120.50000000000001 31 0.0 0 @@ -1369,13 +1369,13 @@ cut 10 34.0 20 -96.00000000000001 +120.50000000000001 30 0.0 11 70.00000000000001 21 -96.00000000000001 +120.50000000000001 31 0.0 0 @@ -1387,13 +1387,13 @@ cut 10 94.00000000000001 20 -45.0 +59.50000000000001 30 0.0 11 70.00000000000001 21 -45.0 +59.50000000000001 31 0.0 0 @@ -1407,13 +1407,13 @@ DOTTED 10 94.00000000000001 20 -45.0 +59.50000000000001 30 0.0 11 94.00000000000001 21 -96.00000000000001 +120.50000000000001 31 0.0 0 @@ -1425,13 +1425,13 @@ cut 10 70.00000000000001 20 -96.00000000000001 +120.50000000000001 30 0.0 11 94.00000000000001 21 -96.00000000000001 +120.50000000000001 31 0.0 0 @@ -1443,13 +1443,13 @@ cut 10 130.0 20 -45.0 +59.50000000000001 30 0.0 11 94.00000000000001 21 -45.0 +59.50000000000001 31 0.0 0 @@ -1461,13 +1461,13 @@ cut 10 130.0 20 -96.00000000000001 +120.50000000000001 30 0.0 11 130.0 21 -45.0 +59.50000000000001 31 0.0 0 @@ -1479,13 +1479,13 @@ cut 10 94.00000000000001 20 -96.00000000000001 +120.50000000000001 30 0.0 11 130.0 21 -96.00000000000001 +120.50000000000001 31 0.0 0 @@ -1499,13 +1499,13 @@ DOTTED 10 34.0 20 -96.00000000000001 +120.50000000000001 30 0.0 11 22.000000000000004 21 -96.00000000000001 +120.50000000000001 31 0.0 0 @@ -1519,13 +1519,13 @@ DOTTED 10 22.000000000000004 20 -96.00000000000001 +120.50000000000001 30 0.0 11 10.000000000000002 21 -96.00000000000001 +120.50000000000001 31 0.0 0 @@ -1537,13 +1537,13 @@ cut 10 10.000000000000002 20 -96.00000000000001 +120.50000000000001 30 0.0 11 10.000000000000002 21 -96.00000000000001 +120.50000000000001 31 0.0 0 @@ -1555,13 +1555,13 @@ cut 10 34.0 20 -96.00000000000001 +120.50000000000001 30 0.0 11 34.0 21 -96.00000000000001 +120.50000000000001 31 0.0 0 @@ -1573,13 +1573,13 @@ cut 10 34.0 20 -136.0 +160.50000000000003 30 0.0 11 34.0 21 -96.00000000000001 +120.50000000000001 31 0.0 0 @@ -1591,13 +1591,13 @@ cut 10 22.000000000000004 20 -96.00000000000001 +120.50000000000001 30 0.0 11 22.000000000000004 21 -136.0 +160.50000000000003 31 0.0 0 @@ -1609,13 +1609,13 @@ cut 10 34.0 20 -141.0 +165.50000000000003 30 0.0 11 34.0 21 -136.0 +160.50000000000003 31 0.0 0 @@ -1627,13 +1627,13 @@ cut 10 22.000000000000004 20 -141.0 +165.50000000000003 30 0.0 11 34.0 21 -141.0 +165.50000000000003 31 0.0 0 @@ -1645,13 +1645,13 @@ cut 10 22.000000000000004 20 -136.0 +160.50000000000003 30 0.0 11 22.000000000000004 21 -141.0 +165.50000000000003 31 0.0 0 @@ -1663,13 +1663,13 @@ cut 10 22.000000000000004 20 -136.0 +160.50000000000003 30 0.0 11 22.000000000000004 21 -96.00000000000001 +120.50000000000001 31 0.0 0 @@ -1681,13 +1681,13 @@ cut 10 10.000000000000002 20 -96.00000000000001 +120.50000000000001 30 0.0 11 10.000000000000002 21 -136.0 +160.50000000000003 31 0.0 0 @@ -1699,13 +1699,13 @@ cut 10 22.000000000000004 20 -141.0 +165.50000000000003 30 0.0 11 22.000000000000004 21 -136.0 +160.50000000000003 31 0.0 0 @@ -1717,13 +1717,13 @@ cut 10 10.000000000000002 20 -141.0 +165.50000000000003 30 0.0 11 22.000000000000004 21 -141.0 +165.50000000000003 31 0.0 0 @@ -1735,13 +1735,13 @@ cut 10 10.000000000000002 20 -136.0 +160.50000000000003 30 0.0 11 10.000000000000002 21 -141.0 +165.50000000000003 31 0.0 0 @@ -1753,13 +1753,13 @@ cut 10 0.0 20 -96.00000000000001 +120.50000000000001 30 0.0 11 10.000000000000002 21 -96.00000000000001 +120.50000000000001 31 0.0 0 @@ -1771,13 +1771,13 @@ cut 10 0.0 20 -45.0 +59.50000000000001 30 0.0 11 0.0 21 -96.00000000000001 +120.50000000000001 31 0.0 0 @@ -1789,13 +1789,13 @@ cut 10 10.000000000000002 20 -45.0 +59.50000000000001 30 0.0 11 0.0 21 -45.0 +59.50000000000001 31 0.0 0 @@ -1807,13 +1807,13 @@ cut 10 11.400000000000002 20 -50.0 +69.5 30 0.0 11 12.6 21 -50.0 +69.5 31 0.0 0 @@ -1825,13 +1825,13 @@ cut 10 12.6 20 -50.0 +69.5 30 0.0 11 12.6 21 -91.0 +110.50000000000001 31 0.0 0 @@ -1843,13 +1843,13 @@ cut 10 12.6 20 -91.0 +110.50000000000001 30 0.0 11 11.400000000000002 21 -91.0 +110.50000000000001 31 0.0 0 @@ -1861,13 +1861,13 @@ cut 10 11.400000000000002 20 -91.0 +110.50000000000001 30 0.0 11 11.400000000000002 21 -50.0 +69.5 31 0.0 0 @@ -1879,13 +1879,13 @@ cut 10 31.400000000000002 20 -50.50000000000001 +70.00000000000001 30 0.0 11 32.60000000000001 21 -50.50000000000001 +70.00000000000001 31 0.0 0 @@ -1897,13 +1897,13 @@ cut 10 32.60000000000001 20 -50.50000000000001 +70.00000000000001 30 0.0 11 32.60000000000001 21 -80.50000000000001 +100.0 31 0.0 0 @@ -1915,13 +1915,13 @@ cut 10 32.60000000000001 20 -80.50000000000001 +100.0 30 0.0 11 31.400000000000002 21 -80.50000000000001 +100.0 31 0.0 0 @@ -1933,13 +1933,13 @@ cut 10 31.400000000000002 20 -80.50000000000001 +100.0 30 0.0 11 31.400000000000002 21 -50.50000000000001 +70.00000000000001 31 0.0 0 @@ -1951,13 +1951,13 @@ cut 10 18.000000000000004 20 -1.2500000000000002 +15.750000000000002 30 0.0 11 18.000000000000004 21 -3.7500000000000004 +18.25 31 0.0 0 @@ -1969,13 +1969,13 @@ cut 10 18.000000000000004 20 -3.7500000000000004 +18.25 30 0.0 11 14.000000000000002 21 -3.7500000000000004 +18.25 31 0.0 0 @@ -1987,13 +1987,13 @@ cut 10 14.000000000000002 20 -3.7500000000000004 +18.25 30 0.0 11 14.000000000000002 21 -1.2500000000000002 +15.750000000000002 31 0.0 0 @@ -2005,13 +2005,13 @@ cut 10 30.000000000000004 20 -1.2500000000000002 +15.750000000000002 30 0.0 11 30.000000000000004 21 -3.7500000000000004 +18.25 31 0.0 0 @@ -2023,13 +2023,13 @@ cut 10 30.000000000000004 20 -3.7500000000000004 +18.25 30 0.0 11 26.000000000000004 21 -3.7500000000000004 +18.25 31 0.0 0 @@ -2041,13 +2041,13 @@ cut 10 26.000000000000004 20 -3.7500000000000004 +18.25 30 0.0 11 26.000000000000004 21 -1.2500000000000002 +15.750000000000002 31 0.0 0 @@ -2059,13 +2059,13 @@ cut 10 30.000000000000004 20 -91.50000000000001 +111.00000000000001 30 0.0 11 30.000000000000004 21 -73.50000000000001 +93.00000000000001 31 0.0 0 @@ -2077,13 +2077,13 @@ cut 10 30.000000000000004 20 -73.50000000000001 +93.00000000000001 30 0.0 11 60.00000000000001 21 -73.50000000000001 +93.00000000000001 31 0.0 0 @@ -2095,13 +2095,13 @@ cut 10 60.00000000000001 20 -73.50000000000001 +93.00000000000001 30 0.0 11 60.00000000000001 21 -91.50000000000001 +111.00000000000001 31 0.0 0 @@ -2113,13 +2113,13 @@ cut 10 60.00000000000001 20 -91.50000000000001 +111.00000000000001 30 0.0 11 30.000000000000004 21 -91.50000000000001 +111.00000000000001 31 0.0 0 @@ -2131,13 +2131,13 @@ cut 10 91.40000000000002 20 -50.0 +69.5 30 0.0 11 92.60000000000001 21 -50.0 +69.5 31 0.0 0 @@ -2149,13 +2149,13 @@ cut 10 92.60000000000001 20 -50.0 +69.5 30 0.0 11 92.60000000000001 21 -91.0 +110.50000000000001 31 0.0 0 @@ -2167,13 +2167,13 @@ cut 10 92.60000000000001 20 -91.0 +110.50000000000001 30 0.0 11 91.40000000000002 21 -91.0 +110.50000000000001 31 0.0 0 @@ -2185,13 +2185,13 @@ cut 10 91.40000000000002 20 -91.0 +110.50000000000001 30 0.0 11 91.40000000000002 21 -50.0 +69.5 31 0.0 0 @@ -2203,13 +2203,13 @@ cut 10 71.4 20 -50.50000000000001 +70.00000000000001 30 0.0 11 72.60000000000001 21 -50.50000000000001 +70.00000000000001 31 0.0 0 @@ -2221,13 +2221,13 @@ cut 10 72.60000000000001 20 -50.50000000000001 +70.00000000000001 30 0.0 11 72.60000000000001 21 -80.50000000000001 +100.0 31 0.0 0 @@ -2239,13 +2239,13 @@ cut 10 72.60000000000001 20 -80.50000000000001 +100.0 30 0.0 11 71.4 21 -80.50000000000001 +100.0 31 0.0 0 @@ -2257,13 +2257,13 @@ cut 10 71.4 20 -80.50000000000001 +100.0 30 0.0 11 71.4 21 -50.50000000000001 +70.00000000000001 31 0.0 0 @@ -2275,13 +2275,13 @@ cut 10 97.00000000000001 20 -54.00000000000001 +73.50000000000001 30 0.0 11 97.00000000000001 21 -47.00000000000001 +66.50000000000001 31 0.0 0 @@ -2293,13 +2293,13 @@ cut 10 97.00000000000001 20 -47.00000000000001 +66.50000000000001 30 0.0 11 117.00000000000001 21 -47.00000000000001 +66.50000000000001 31 0.0 0 @@ -2311,13 +2311,13 @@ cut 10 117.00000000000001 20 -47.00000000000001 +66.50000000000001 30 0.0 11 117.00000000000001 21 -54.00000000000001 +73.50000000000001 31 0.0 0 @@ -2329,13 +2329,13 @@ cut 10 117.00000000000001 20 -54.00000000000001 +73.50000000000001 30 0.0 11 97.00000000000001 21 -54.00000000000001 +73.50000000000001 31 0.0 0 @@ -2347,13 +2347,13 @@ cut 10 122.25000000000001 20 -79.25000000000001 +81.9318181818182 30 0.0 11 122.25000000000001 21 -61.75000000000001 +70.3409090909091 31 0.0 0 @@ -2365,13 +2365,13 @@ cut 10 122.25000000000001 20 -61.75000000000001 +70.3409090909091 30 0.0 11 122.75000000000001 21 -61.75000000000001 +70.3409090909091 31 0.0 0 @@ -2383,13 +2383,13 @@ cut 10 122.75000000000001 20 -61.75000000000001 +70.3409090909091 30 0.0 11 122.75000000000001 21 -79.25000000000001 +81.9318181818182 31 0.0 0 @@ -2401,13 +2401,85 @@ cut 10 122.75000000000001 20 -79.25000000000001 +81.9318181818182 30 0.0 11 122.25000000000001 21 -79.25000000000001 +81.9318181818182 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +122.25000000000001 + 20 +109.65909090909092 + 30 +0.0 + 11 +122.25000000000001 + 21 +98.06818181818183 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +122.25000000000001 + 20 +98.06818181818183 + 30 +0.0 + 11 +122.75000000000001 + 21 +98.06818181818183 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +122.75000000000001 + 20 +98.06818181818183 + 30 +0.0 + 11 +122.75000000000001 + 21 +109.65909090909092 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +122.75000000000001 + 20 +109.65909090909092 + 30 +0.0 + 11 +122.25000000000001 + 21 +109.65909090909092 31 0.0 0 @@ -2419,13 +2491,13 @@ cut 10 26.000000000000004 20 -139.75000000000003 +164.25000000000003 30 0.0 11 26.000000000000004 21 -137.25000000000003 +161.75 31 0.0 0 @@ -2437,13 +2509,13 @@ cut 10 26.000000000000004 20 -137.25000000000003 +161.75 30 0.0 11 30.000000000000004 21 -137.25000000000003 +161.75 31 0.0 0 @@ -2455,13 +2527,13 @@ cut 10 30.000000000000004 20 -137.25000000000003 +161.75 30 0.0 11 30.000000000000004 21 -139.75000000000003 +164.25000000000003 31 0.0 0 @@ -2473,13 +2545,13 @@ cut 10 14.000000000000002 20 -139.75000000000003 +164.25000000000003 30 0.0 11 14.000000000000002 21 -137.25000000000003 +161.75 31 0.0 0 @@ -2491,13 +2563,13 @@ cut 10 14.000000000000002 20 -137.25000000000003 +161.75 30 0.0 11 18.000000000000004 21 -137.25000000000003 +161.75 31 0.0 0 @@ -2509,13 +2581,13 @@ cut 10 18.000000000000004 20 -137.25000000000003 +161.75 30 0.0 11 18.000000000000004 21 -139.75000000000003 +164.25000000000003 31 0.0 0 @@ -2527,13 +2599,13 @@ cut 10 2.5000000000000004 20 -62.000000000000014 +70.5909090909091 30 0.0 11 -2.5000000000000004 +7.500000000000001 21 -57.00000000000001 +70.5909090909091 31 0.0 0 @@ -2543,15 +2615,15 @@ LINE 8 cut 10 -2.5000000000000004 +7.500000000000001 20 -57.00000000000001 +70.5909090909091 30 0.0 11 7.500000000000001 21 -62.000000000000014 +81.68181818181819 31 0.0 0 @@ -2563,13 +2635,31 @@ cut 10 7.500000000000001 20 -62.000000000000014 +81.68181818181819 + 30 +0.0 + 11 +2.5000000000000004 + 21 +81.68181818181819 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +2.5000000000000004 + 20 +98.31818181818184 30 0.0 11 7.500000000000001 21 -79.00000000000001 +98.31818181818184 31 0.0 0 @@ -2581,13 +2671,13 @@ cut 10 7.500000000000001 20 -79.00000000000001 +98.31818181818184 30 0.0 11 -2.5000000000000004 +7.500000000000001 21 -84.0 +109.40909090909092 31 0.0 0 @@ -2597,15 +2687,15 @@ LINE 8 cut 10 -2.5000000000000004 +7.500000000000001 20 -84.0 +109.40909090909092 30 0.0 11 2.5000000000000004 21 -79.00000000000001 +109.40909090909092 31 0.0 0 @@ -2617,13 +2707,13 @@ cut 10 186.00000000000003 20 -70.5 +90.0 30 0.0 11 140.00000000000003 21 -70.5 +90.0 31 0.0 0 @@ -2635,13 +2725,13 @@ cut 10 198.0 20 -70.5 +90.0 30 0.0 11 186.00000000000003 21 -70.5 +90.0 31 0.0 0 @@ -2653,13 +2743,13 @@ cut 10 210.00000000000003 20 -70.5 +90.0 30 0.0 11 198.0 21 -70.5 +90.0 31 0.0 0 @@ -2671,13 +2761,13 @@ cut 10 222.00000000000003 20 -70.5 +90.0 30 0.0 11 210.00000000000003 21 -70.5 +90.0 31 0.0 0 @@ -2689,13 +2779,13 @@ cut 10 234.00000000000003 20 -70.5 +90.0 30 0.0 11 222.00000000000003 21 -70.5 +90.0 31 0.0 0 @@ -2707,13 +2797,13 @@ cut 10 246.00000000000003 20 -70.5 +90.0 30 0.0 11 234.00000000000003 21 -70.5 +90.0 31 0.0 0 @@ -2725,13 +2815,13 @@ cut 10 258.0 20 -70.5 +90.0 30 0.0 11 246.00000000000003 21 -70.5 +90.0 31 0.0 0 @@ -2743,13 +2833,13 @@ cut 10 270.00000000000006 20 -70.5 +90.0 30 0.0 11 258.0 21 -70.5 +90.0 31 0.0 0 @@ -2761,13 +2851,13 @@ cut 10 270.00000000000006 20 -70.5 +90.0 30 0.0 11 270.00000000000006 21 -70.5 +90.0 31 0.0 0 @@ -2779,13 +2869,13 @@ cut 10 140.00000000000003 20 -70.5 +90.0 30 0.0 11 270.00000000000006 21 -70.5 +90.0 31 0.0 0 @@ -2797,13 +2887,13 @@ cut 10 140.00000000000003 20 -70.5 +90.0 30 0.0 11 140.00000000000003 21 -70.5 +90.0 31 0.0 0 @@ -2815,13 +2905,13 @@ cut 10 206.25000000000003 20 -74.50000000000001 +94.00000000000001 30 0.0 11 201.75000000000003 21 -74.50000000000001 +94.00000000000001 31 0.0 0 @@ -2833,13 +2923,13 @@ cut 10 201.75000000000003 20 -74.50000000000001 +94.00000000000001 30 0.0 11 201.75000000000003 21 -74.0 +93.50000000000001 31 0.0 0 @@ -2851,13 +2941,13 @@ cut 10 201.75000000000003 20 -74.0 +93.50000000000001 30 0.0 11 206.25000000000003 21 -74.0 +93.50000000000001 31 0.0 0 @@ -2869,13 +2959,13 @@ cut 10 206.25000000000003 20 -74.0 +93.50000000000001 30 0.0 11 206.25000000000003 21 -74.50000000000001 +94.00000000000001 31 0.0 0 @@ -2887,13 +2977,13 @@ cut 10 218.25000000000003 20 -74.50000000000001 +94.00000000000001 30 0.0 11 213.75 21 -74.50000000000001 +94.00000000000001 31 0.0 0 @@ -2905,13 +2995,13 @@ cut 10 213.75 20 -74.50000000000001 +94.00000000000001 30 0.0 11 213.75 21 -74.0 +93.50000000000001 31 0.0 0 @@ -2923,13 +3013,13 @@ cut 10 213.75 20 -74.0 +93.50000000000001 30 0.0 11 218.25000000000003 21 -74.0 +93.50000000000001 31 0.0 0 @@ -2941,13 +3031,13 @@ cut 10 218.25000000000003 20 -74.0 +93.50000000000001 30 0.0 11 218.25000000000003 21 -74.50000000000001 +94.00000000000001 31 0.0 0 @@ -2959,13 +3049,13 @@ cut 10 326.00000000000006 20 -70.5 +90.0 30 0.0 11 280.00000000000006 21 -70.5 +90.0 31 0.0 0 @@ -2977,13 +3067,13 @@ cut 10 338.00000000000006 20 -70.5 +90.0 30 0.0 11 326.00000000000006 21 -70.5 +90.0 31 0.0 0 @@ -2995,13 +3085,13 @@ cut 10 350.0 20 -70.5 +90.0 30 0.0 11 338.00000000000006 21 -70.5 +90.0 31 0.0 0 @@ -3013,13 +3103,13 @@ cut 10 362.00000000000006 20 -70.5 +90.0 30 0.0 11 350.0 21 -70.5 +90.0 31 0.0 0 @@ -3031,13 +3121,13 @@ cut 10 374.00000000000006 20 -70.5 +90.0 30 0.0 11 362.00000000000006 21 -70.5 +90.0 31 0.0 0 @@ -3049,13 +3139,13 @@ cut 10 386.00000000000006 20 -70.5 +90.0 30 0.0 11 374.00000000000006 21 -70.5 +90.0 31 0.0 0 @@ -3067,13 +3157,13 @@ cut 10 398.00000000000006 20 -70.5 +90.0 30 0.0 11 386.00000000000006 21 -70.5 +90.0 31 0.0 0 @@ -3085,13 +3175,13 @@ cut 10 410.00000000000006 20 -70.5 +90.0 30 0.0 11 398.00000000000006 21 -70.5 +90.0 31 0.0 0 @@ -3103,13 +3193,13 @@ cut 10 410.00000000000006 20 -70.5 +90.0 30 0.0 11 410.00000000000006 21 -70.5 +90.0 31 0.0 0 @@ -3121,13 +3211,13 @@ cut 10 280.00000000000006 20 -70.5 +90.0 30 0.0 11 410.00000000000006 21 -70.5 +90.0 31 0.0 0 @@ -3139,13 +3229,13 @@ cut 10 280.00000000000006 20 -70.5 +90.0 30 0.0 11 280.00000000000006 21 -70.5 +90.0 31 0.0 0 @@ -3157,13 +3247,13 @@ cut 10 334.25000000000006 20 -74.50000000000001 +94.00000000000001 30 0.0 11 329.75000000000006 21 -74.50000000000001 +94.00000000000001 31 0.0 0 @@ -3175,13 +3265,13 @@ cut 10 329.75000000000006 20 -74.50000000000001 +94.00000000000001 30 0.0 11 329.75000000000006 21 -74.0 +93.50000000000001 31 0.0 0 @@ -3193,13 +3283,13 @@ cut 10 329.75000000000006 20 -74.0 +93.50000000000001 30 0.0 11 334.25000000000006 21 -74.0 +93.50000000000001 31 0.0 0 @@ -3211,13 +3301,13 @@ cut 10 334.25000000000006 20 -74.0 +93.50000000000001 30 0.0 11 334.25000000000006 21 -74.50000000000001 +94.00000000000001 31 0.0 0 @@ -3229,13 +3319,13 @@ cut 10 346.25 20 -74.50000000000001 +94.00000000000001 30 0.0 11 341.75 21 -74.50000000000001 +94.00000000000001 31 0.0 0 @@ -3247,13 +3337,13 @@ cut 10 341.75 20 -74.50000000000001 +94.00000000000001 30 0.0 11 341.75 21 -74.0 +93.50000000000001 31 0.0 0 @@ -3265,13 +3355,13 @@ cut 10 341.75 20 -74.0 +93.50000000000001 30 0.0 11 346.25 21 -74.0 +93.50000000000001 31 0.0 0 @@ -3283,13 +3373,13 @@ cut 10 346.25 20 -74.0 +93.50000000000001 30 0.0 11 346.25 21 -74.50000000000001 +94.00000000000001 31 0.0 0 @@ -3299,15 +3389,15 @@ LINE 8 cut 10 -604.0312423743285 +612.710678118655 20 -45.5 +55.00000000000001 30 0.0 11 -594.0312423743285 +604.710678118655 21 -45.5 +55.00000000000001 31 0.0 0 @@ -3319,15 +3409,15 @@ DOTTED 8 90 10 -604.0312423743285 +612.710678118655 20 -45.5 +55.00000000000001 30 0.0 11 -604.0312423743285 +612.710678118655 21 -95.5 +125.00000000000001 31 0.0 0 @@ -3337,15 +3427,15 @@ LINE 8 cut 10 -594.0312423743285 +604.710678118655 20 -95.5 +125.00000000000001 30 0.0 11 -604.0312423743285 +612.710678118655 21 -95.5 +125.00000000000001 31 0.0 0 @@ -3357,15 +3447,15 @@ DOTTED 8 90 10 -594.0312423743285 +604.710678118655 20 -95.5 +125.00000000000001 30 0.0 11 -594.0312423743285 +604.710678118655 21 -45.5 +55.00000000000001 31 0.0 0 @@ -3377,15 +3467,15 @@ DOTTED 8 90 10 -614.0312423743285 +620.710678118655 20 -45.5 +55.00000000000001 30 0.0 11 -614.0312423743285 +620.710678118655 21 -95.5 +125.00000000000001 31 0.0 0 @@ -3395,15 +3485,15 @@ LINE 8 cut 10 -614.0312423743285 +620.710678118655 20 -45.5 +55.00000000000001 30 0.0 11 -614.0312423743285 +620.710678118655 21 -15.500000000000004 +5.000000000000001 31 0.0 0 @@ -3413,15 +3503,15 @@ LINE 8 cut 10 -604.0312423743285 +612.710678118655 20 -15.500000000000004 +5.000000000000001 30 0.0 11 -604.0312423743285 +612.710678118655 21 -45.5 +55.00000000000001 31 0.0 0 @@ -3431,15 +3521,15 @@ LINE 8 cut 10 -604.0312423743285 +612.710678118655 20 -10.5 +0.0 30 0.0 11 -604.0312423743285 +612.710678118655 21 -15.500000000000004 +5.000000000000001 31 0.0 0 @@ -3449,15 +3539,15 @@ LINE 8 cut 10 -614.0312423743285 +620.710678118655 20 -10.5 +0.0 30 0.0 11 -604.0312423743285 +612.710678118655 21 -10.5 +0.0 31 0.0 0 @@ -3467,15 +3557,15 @@ LINE 8 cut 10 -614.0312423743285 +620.710678118655 20 -15.500000000000004 +5.000000000000001 30 0.0 11 -614.0312423743285 +620.710678118655 21 -10.5 +0.0 31 0.0 0 @@ -3485,15 +3575,15 @@ LINE 8 cut 10 -624.0312423743286 +628.710678118655 20 -45.5 +55.00000000000001 30 0.0 11 -614.0312423743285 +620.710678118655 21 -45.5 +55.00000000000001 31 0.0 0 @@ -3505,15 +3595,15 @@ DOTTED 8 90 10 -624.0312423743286 +628.710678118655 20 -45.5 +55.00000000000001 30 0.0 11 -624.0312423743286 +628.710678118655 21 -95.5 +125.00000000000001 31 0.0 0 @@ -3523,15 +3613,15 @@ LINE 8 cut 10 -614.0312423743285 +620.710678118655 20 -95.5 +125.00000000000001 30 0.0 11 -624.0312423743286 +628.710678118655 21 -95.5 +125.00000000000001 31 0.0 0 @@ -3541,15 +3631,15 @@ LINE 8 cut 10 -634.0312423743286 +636.710678118655 20 -45.5 +55.00000000000001 30 0.0 11 -624.0312423743286 +628.710678118655 21 -45.5 +55.00000000000001 31 0.0 0 @@ -3559,15 +3649,15 @@ LINE 8 cut 10 -634.0312423743286 +636.710678118655 20 -95.5 +125.00000000000001 30 0.0 11 -634.0312423743286 +636.710678118655 21 -45.5 +55.00000000000001 31 0.0 0 @@ -3577,15 +3667,15 @@ LINE 8 cut 10 -624.0312423743286 +628.710678118655 20 -95.5 +125.00000000000001 30 0.0 11 -634.0312423743286 +636.710678118655 21 -95.5 +125.00000000000001 31 0.0 0 @@ -3595,15 +3685,15 @@ LINE 8 cut 10 -604.0312423743285 +612.710678118655 20 -95.5 +125.00000000000001 30 0.0 11 -604.0312423743285 +612.710678118655 21 -125.50000000000001 +175.0 31 0.0 0 @@ -3613,15 +3703,15 @@ LINE 8 cut 10 -614.0312423743285 +620.710678118655 20 -125.50000000000001 +175.0 30 0.0 11 -614.0312423743285 +620.710678118655 21 -95.5 +125.00000000000001 31 0.0 0 @@ -3633,15 +3723,15 @@ DOTTED 8 -180 10 -614.0312423743285 +620.710678118655 20 -125.50000000000001 +175.0 30 0.0 11 -604.0312423743285 +612.710678118655 21 -125.50000000000001 +175.0 31 0.0 0 @@ -3651,15 +3741,15 @@ LINE 8 cut 10 -604.0312423743285 +612.710678118655 20 -125.50000000000001 +175.0 30 0.0 11 -484.03124237432854 +490.7106781186549 21 -125.50000000000001 +175.0 31 0.0 0 @@ -3669,15 +3759,15 @@ LINE 8 cut 10 -614.0312423743285 +620.710678118655 20 -125.50000000000001 +175.0 30 0.0 11 -614.0312423743285 +620.710678118655 21 -125.50000000000001 +175.0 31 0.0 0 @@ -3687,15 +3777,15 @@ LINE 8 cut 10 -484.03124237432854 +490.7106781186549 20 -125.50000000000001 +175.0 30 0.0 11 -484.03124237432854 +490.7106781186549 21 -125.50000000000001 +175.0 31 0.0 0 @@ -3707,15 +3797,15 @@ DOTTED 8 90 10 -484.03124237432854 +490.7106781186549 20 -165.50000000000003 +225.00000000000003 30 0.0 11 -614.0312423743285 +620.710678118655 21 -165.50000000000003 +225.00000000000003 31 0.0 0 @@ -3725,17 +3815,17 @@ DOTTED 62 1 8 -26.565051177077976 +34.99202019855866 10 -484.03124237432854 +490.7106781186549 20 -125.50000000000001 +175.0 30 0.0 11 -484.03124237432854 +490.7106781186549 21 -165.50000000000003 +225.00000000000003 31 0.0 0 @@ -3747,15 +3837,15 @@ DOTTED 8 -180 10 -462.35246120943856 +458.4510113187008 20 -125.50000000000001 +175.0 30 0.0 11 -484.03124237432854 +490.7106781186549 21 -165.50000000000003 +225.00000000000003 31 0.0 0 @@ -3767,15 +3857,15 @@ DOTTED 8 -174 10 -462.35246120943856 +458.4510113187008 20 -125.50000000000001 +175.0 30 0.0 11 -484.03124237432854 +490.7106781186549 21 -125.50000000000001 +175.0 31 0.0 0 @@ -3785,15 +3875,15 @@ LINE 8 cut 10 -462.35246120943856 +458.45101131870075 20 -125.50000000000001 +175.0 30 0.0 11 -450.51765777402795 +445.1550063219791 21 -143.66334166502364 +204.3922158601766 31 0.0 0 @@ -3805,15 +3895,15 @@ DOTTED 8 180 10 -450.51765777402795 +445.1550063219791 20 -143.66334166502364 +204.3922158601766 30 0.0 11 -484.03124237432854 +490.7106781186549 21 -165.50000000000003 +225.00000000000003 31 0.0 0 @@ -3823,17 +3913,17 @@ DOTTED 62 1 8 -73.77726564884665 +66.07759212540486 10 -420.00000000000006 +420.00000000000017 20 -190.50000000000003 +260.0 30 0.0 11 -484.03124237432854 +490.7106781186549 21 -165.50000000000003 +225.00000000000003 31 0.0 0 @@ -3843,15 +3933,15 @@ LINE 8 cut 10 -438.68285433861735 +431.85900132525745 20 -161.8266833300472 +233.78443172035318 30 0.0 11 -420.00000000000006 +420.00000000000017 21 -190.50000000000003 +260.0 31 0.0 0 @@ -3861,15 +3951,15 @@ LINE 8 cut 10 -450.51765777402795 +445.15500632197916 20 -143.6633416650236 +204.3922158601766 30 0.0 11 -438.68285433861735 +431.85900132525745 21 -161.8266833300472 +233.78443172035318 31 0.0 0 @@ -3879,17 +3969,17 @@ DOTTED 62 1 8 -38.65980825409008 +45.0 10 -484.03124237432854 +490.7106781186549 20 -165.50000000000003 +225.00000000000003 30 0.0 11 -484.03124237432854 +490.7106781186549 21 -190.50000000000003 +260.0 31 0.0 0 @@ -3899,17 +3989,17 @@ DOTTED 62 1 8 -38.65980825409008 +45.0 10 -484.03124237432854 +490.7106781186549 20 -190.50000000000003 +260.0 30 0.0 11 -484.03124237432854 +490.7106781186549 21 -215.50000000000003 +295.0 31 0.0 0 @@ -3919,17 +4009,17 @@ DOTTED 62 1 8 -73.77726564884665 +66.07759212540486 10 -420.00000000000006 +420.00000000000017 20 -190.50000000000003 +260.0 30 0.0 11 -484.03124237432854 +490.7106781186549 21 -215.50000000000003 +295.0 31 0.0 0 @@ -3941,15 +4031,15 @@ DOTTED 8 90 10 -484.03124237432854 +490.7106781186549 20 -215.50000000000003 +295.0 30 0.0 11 -614.0312423743285 +620.710678118655 21 -215.50000000000003 +295.0 31 0.0 0 @@ -3961,15 +4051,15 @@ DOTTED 8 90.0 10 -614.0312423743285 +620.710678118655 20 -190.50000000000003 +260.0 30 0.0 11 -614.0312423743285 +620.710678118655 21 -165.50000000000003 +225.00000000000003 31 0.0 0 @@ -3981,15 +4071,15 @@ DOTTED 8 90.0 10 -614.0312423743285 +620.710678118655 20 -215.50000000000003 +295.0 30 0.0 11 -614.0312423743285 +620.710678118655 21 -190.50000000000003 +260.0 31 0.0 0 @@ -3999,15 +4089,15 @@ LINE 8 cut 10 -654.0312423743286 +670.7106781186549 20 -205.5 +275.00000000000006 30 0.0 11 -654.0312423743286 +670.7106781186549 21 -165.50000000000003 +225.00000000000003 31 0.0 0 @@ -4017,15 +4107,15 @@ LINE 8 cut 10 -654.0312423743286 +670.7106781186549 20 -190.50000000000003 +260.0 30 0.0 11 -654.0312423743286 +670.7106781186549 21 -205.5 +275.00000000000006 31 0.0 0 @@ -4037,15 +4127,15 @@ DOTTED 8 180 10 -614.0312423743285 +620.710678118655 20 -165.50000000000003 +225.00000000000003 30 0.0 11 -654.0312423743286 +670.7106781186549 21 -165.50000000000003 +225.00000000000003 31 0.0 0 @@ -4057,15 +4147,15 @@ DOTTED 8 -180 10 -614.0312423743285 +620.710678118655 20 -165.50000000000003 +225.00000000000003 30 0.0 11 -654.0312423743286 +670.7106781186549 21 -125.50000000000003 +175.00000000000003 31 0.0 0 @@ -4075,15 +4165,15 @@ LINE 8 cut 10 -654.0312423743286 +670.7106781186549 20 -165.50000000000003 +225.00000000000003 30 0.0 11 -654.0312423743286 +670.7106781186549 21 -125.50000000000003 +175.00000000000003 31 0.0 0 @@ -4095,15 +4185,15 @@ DOTTED 8 -174 10 -614.0312423743285 +620.710678118655 20 -125.50000000000003 +175.0 30 0.0 11 -654.0312423743286 +670.7106781186549 21 -125.50000000000004 +175.0 31 0.0 0 @@ -4115,15 +4205,15 @@ DOTTED 8 90.0 10 -614.0312423743285 +620.710678118655 20 -165.50000000000003 +225.00000000000003 30 0.0 11 -614.0312423743285 +620.710678118655 21 -125.50000000000003 +175.0 31 0.0 0 @@ -4133,15 +4223,15 @@ LINE 8 cut 10 -614.0312423743285 +620.710678118655 20 -112.1666666666667 +158.33333333333337 30 0.0 11 -614.0312423743285 +620.710678118655 21 -125.50000000000004 +175.0 31 0.0 0 @@ -4151,15 +4241,15 @@ LINE 8 cut 10 -654.0312423743286 +670.7106781186549 20 -112.16666666666671 +158.33333333333337 30 0.0 11 -614.0312423743285 +620.710678118655 21 -112.1666666666667 +158.33333333333337 31 0.0 0 @@ -4169,15 +4259,15 @@ LINE 8 cut 10 -654.0312423743286 +670.7106781186549 20 -125.50000000000004 +175.0 30 0.0 11 -654.0312423743286 +670.7106781186549 21 -112.16666666666671 +158.33333333333337 31 0.0 0 @@ -4189,15 +4279,15 @@ DOTTED 8 180 10 -654.0312423743286 +670.7106781186549 20 -215.50000000000003 +295.0 30 0.0 11 -614.0312423743285 +620.710678118655 21 -215.50000000000003 +295.0 31 0.0 0 @@ -4207,15 +4297,15 @@ LINE 8 cut 10 -654.0312423743286 +670.7106781186549 20 -175.5 +245.00000000000003 30 0.0 11 -654.0312423743286 +670.7106781186549 21 -190.50000000000003 +260.0 31 0.0 0 @@ -4225,15 +4315,15 @@ LINE 8 cut 10 -654.0312423743286 +670.7106781186549 20 -215.50000000000003 +295.0 30 0.0 11 -654.0312423743286 +670.7106781186549 21 -175.5 +245.00000000000003 31 0.0 0 @@ -4243,15 +4333,15 @@ LINE 8 cut 10 -654.0312423743286 +670.7106781186549 20 -255.5 +345.00000000000006 30 0.0 11 -654.0312423743286 +670.7106781186549 21 -215.50000000000003 +295.0 31 0.0 0 @@ -4263,15 +4353,15 @@ DOTTED 8 -180 10 -654.0312423743286 +670.7106781186549 20 -255.5 +345.00000000000006 30 0.0 11 -614.0312423743285 +620.710678118655 21 -215.50000000000003 +295.0 31 0.0 0 @@ -4283,15 +4373,15 @@ DOTTED 8 90.0 10 -614.0312423743285 +620.710678118655 20 -255.50000000000006 +345.00000000000006 30 0.0 11 -614.0312423743285 +620.710678118655 21 -215.50000000000006 +295.0 31 0.0 0 @@ -4303,15 +4393,15 @@ DOTTED 8 -174 10 -654.0312423743286 +670.7106781186549 20 -255.50000000000003 +345.00000000000006 30 0.0 11 -614.0312423743285 +620.710678118655 21 -255.50000000000006 +345.00000000000006 31 0.0 0 @@ -4321,17 +4411,17 @@ DOTTED 62 1 8 -26.565051177077976 +34.99202019855866 10 -484.03124237432854 +490.71067811865487 20 -215.50000000000009 +295.0 30 0.0 11 -484.03124237432854 +490.71067811865487 21 -255.50000000000009 +345.00000000000006 31 0.0 0 @@ -4343,15 +4433,15 @@ DOTTED 8 -174 10 -484.03124237432854 +490.71067811865487 20 -255.50000000000006 +345.00000000000006 30 0.0 11 -462.3524612094386 +458.45101131870075 21 -255.50000000000009 +345.00000000000006 31 0.0 0 @@ -4363,15 +4453,15 @@ DOTTED 8 -180 10 -484.03124237432854 +490.71067811865487 20 -215.50000000000009 +295.0 30 0.0 11 -462.3524612094386 +458.45101131870075 21 -255.50000000000009 +345.00000000000006 31 0.0 0 @@ -4381,15 +4471,15 @@ LINE 8 cut 10 -484.03124237432854 +490.71067811865487 20 -262.7262603882967 +355.75322226665145 30 0.0 11 -484.03124237432854 +490.71067811865487 21 -255.50000000000006 +345.00000000000006 31 0.0 0 @@ -4399,15 +4489,15 @@ LINE 8 cut 10 -462.35246120943856 +458.45101131870075 20 -262.7262603882967 +355.75322226665145 30 0.0 11 -484.03124237432854 +490.71067811865487 21 -262.7262603882967 +355.75322226665145 31 0.0 0 @@ -4417,15 +4507,15 @@ LINE 8 cut 10 -462.35246120943856 +458.45101131870075 20 -255.50000000000006 +345.00000000000006 30 0.0 11 -462.35246120943856 +458.45101131870075 21 -262.7262603882967 +355.75322226665145 31 0.0 0 @@ -4437,15 +4527,15 @@ DOTTED 8 180 10 -484.03124237432854 +490.71067811865487 20 -215.50000000000009 +295.0 30 0.0 11 -450.517657774028 +445.1550063219791 21 -237.33665833497648 +315.6077841398234 31 0.0 0 @@ -4455,15 +4545,15 @@ LINE 8 cut 10 -450.517657774028 +445.1550063219791 20 -237.33665833497648 +315.6077841398234 30 0.0 11 -462.35246120943856 +458.45101131870075 21 -255.50000000000006 +345.00000000000006 31 0.0 0 @@ -4473,15 +4563,15 @@ LINE 8 cut 10 -438.68285433861735 +431.8590013252574 20 -219.1733166699529 +286.21556827964685 30 0.0 11 -450.517657774028 +445.1550063219791 21 -237.33665833497648 +315.6077841398234 31 0.0 0 @@ -4493,13 +4583,13 @@ cut 10 420.00000000000006 20 -190.50000000000009 +260.0 30 0.0 11 -438.68285433861735 +431.8590013252574 21 -219.1733166699529 +286.21556827964685 31 0.0 0 @@ -4509,15 +4599,15 @@ LINE 8 cut 10 -604.0312423743285 +612.710678118655 20 -255.50000000000003 +345.00000000000006 30 0.0 11 -614.0312423743285 +620.710678118655 21 -255.50000000000003 +345.00000000000006 31 0.0 0 @@ -4527,15 +4617,15 @@ LINE 8 cut 10 -484.03124237432854 +490.71067811865487 20 -255.50000000000006 +345.00000000000006 30 0.0 11 -604.0312423743285 +612.710678118655 21 -255.50000000000003 +345.00000000000006 31 0.0 0 @@ -4545,15 +4635,15 @@ LINE 8 cut 10 -484.03124237432854 +490.71067811865487 20 -255.50000000000006 +345.00000000000006 30 0.0 11 -484.03124237432854 +490.71067811865487 21 -255.50000000000006 +345.00000000000006 31 0.0 0 @@ -4563,15 +4653,15 @@ LINE 8 cut 10 -614.0312423743285 +620.710678118655 20 -255.50000000000003 +345.00000000000006 30 0.0 11 -614.0312423743285 +620.710678118655 21 -255.50000000000003 +345.00000000000006 31 0.0 0 @@ -4581,15 +4671,15 @@ LINE 8 cut 10 -654.0312423743286 +670.7106781186549 20 -268.8333333333333 +361.66666666666674 30 0.0 11 -654.0312423743286 +670.7106781186549 21 -255.50000000000003 +345.00000000000006 31 0.0 0 @@ -4599,15 +4689,15 @@ LINE 8 cut 10 -614.0312423743285 +620.710678118655 20 -268.8333333333333 +361.66666666666674 30 0.0 11 -654.0312423743286 +670.7106781186549 21 -268.8333333333333 +361.66666666666674 31 0.0 0 @@ -4617,15 +4707,15 @@ LINE 8 cut 10 -614.0312423743285 +620.710678118655 20 -255.50000000000003 +345.00000000000006 30 0.0 11 -614.0312423743285 +620.710678118655 21 -268.8333333333333 +361.66666666666674 31 0.0 0 @@ -4635,15 +4725,15 @@ LINE 8 cut 10 -462.35246120943856 +458.4510113187008 20 -118.27373961170336 +164.2467777333486 30 0.0 11 -462.35246120943856 +458.4510113187008 21 -125.50000000000001 +175.0 31 0.0 0 @@ -4653,15 +4743,15 @@ LINE 8 cut 10 -484.03124237432854 +490.7106781186549 20 -118.27373961170336 +164.2467777333486 30 0.0 11 -462.35246120943856 +458.4510113187008 21 -118.27373961170336 +164.2467777333486 31 0.0 0 @@ -4671,15 +4761,15 @@ LINE 8 cut 10 -484.03124237432854 +490.7106781186549 20 -125.50000000000001 +175.0 30 0.0 11 -484.03124237432854 +490.7106781186549 21 -118.27373961170336 +164.2467777333486 31 0.0 0 @@ -4689,15 +4779,15 @@ LINE 8 cut 10 -584.0312423743285 +596.7106781186549 20 -95.5 +125.00000000000001 30 0.0 11 -594.0312423743285 +604.710678118655 21 -95.5 +125.00000000000001 31 0.0 0 @@ -4707,15 +4797,15 @@ LINE 8 cut 10 -584.0312423743285 +596.7106781186549 20 -45.5 +55.00000000000001 30 0.0 11 -584.0312423743285 +596.7106781186549 21 -95.5 +125.00000000000001 31 0.0 0 @@ -4725,15 +4815,15 @@ LINE 8 cut 10 -594.0312423743285 +604.710678118655 20 -45.5 +55.00000000000001 30 0.0 11 -584.0312423743285 +596.7106781186549 21 -45.5 +55.00000000000001 31 0.0 0 @@ -4743,15 +4833,15 @@ LINE 8 cut 10 -594.0312423743285 +604.710678118655 20 -65.5 +86.00000000000001 30 0.0 11 -604.0312423743285 +612.710678118655 21 -65.5 +86.00000000000001 31 0.0 0 @@ -4761,15 +4851,177 @@ LINE 8 cut 10 -604.0312423743285 +612.710678118655 20 -65.5 +86.00000000000001 + 30 +0.0 + 11 +612.710678118655 + 21 +94.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +612.710678118655 + 20 +94.00000000000001 + 30 +0.0 + 11 +604.710678118655 + 21 +94.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +604.710678118655 + 20 +94.00000000000001 + 30 +0.0 + 11 +604.710678118655 + 21 +86.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +618.0440114519882 + 20 +1.2500000000000002 + 30 +0.0 + 11 +618.0440114519882 + 21 +3.7500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +618.0440114519882 + 20 +3.7500000000000004 + 30 +0.0 + 11 +615.3773447853215 + 21 +3.7500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +615.3773447853215 + 20 +3.7500000000000004 + 30 +0.0 + 11 +615.3773447853215 + 21 +1.2500000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +620.710678118655 + 20 +86.00000000000001 + 30 +0.0 + 11 +628.710678118655 + 21 +86.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +628.710678118655 + 20 +86.00000000000001 + 30 +0.0 + 11 +628.710678118655 + 21 +94.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +628.710678118655 + 20 +94.00000000000001 + 30 +0.0 + 11 +620.710678118655 + 21 +94.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +620.710678118655 + 20 +94.00000000000001 30 0.0 11 -604.0312423743285 +620.710678118655 21 -75.50000000000001 +86.00000000000001 31 0.0 0 @@ -4779,15 +5031,15 @@ LINE 8 cut 10 -604.0312423743285 +630.4606781186549 20 -75.50000000000001 +80.70454545454547 30 0.0 11 -594.0312423743285 +630.4606781186549 21 -75.50000000000001 +67.47727272727273 31 0.0 0 @@ -4797,15 +5049,15 @@ LINE 8 cut 10 -594.0312423743285 +630.4606781186549 20 -75.50000000000001 +67.47727272727273 30 0.0 11 -594.0312423743285 +630.9606781186549 21 -65.5 +67.47727272727273 31 0.0 0 @@ -4815,15 +5067,15 @@ LINE 8 cut 10 -610.6979090409952 +630.9606781186549 20 -11.750000000000002 +67.47727272727273 30 0.0 11 -610.6979090409952 +630.9606781186549 21 -14.250000000000002 +80.70454545454547 31 0.0 0 @@ -4833,15 +5085,15 @@ LINE 8 cut 10 -610.6979090409952 +630.9606781186549 20 -14.250000000000002 +80.70454545454547 30 0.0 11 -607.364575707662 +630.4606781186549 21 -14.250000000000002 +80.70454545454547 31 0.0 0 @@ -4851,15 +5103,15 @@ LINE 8 cut 10 -607.364575707662 +630.4606781186549 20 -14.250000000000002 +112.52272727272728 30 0.0 11 -607.364575707662 +630.4606781186549 21 -11.750000000000002 +99.29545454545456 31 0.0 0 @@ -4869,15 +5121,15 @@ LINE 8 cut 10 -614.0312423743285 +630.4606781186549 20 -65.5 +99.29545454545456 30 0.0 11 -624.0312423743286 +630.9606781186549 21 -65.5 +99.29545454545456 31 0.0 0 @@ -4887,15 +5139,15 @@ LINE 8 cut 10 -624.0312423743286 +630.9606781186549 20 -65.5 +99.29545454545456 30 0.0 11 -624.0312423743286 +630.9606781186549 21 -75.50000000000001 +112.52272727272728 31 0.0 0 @@ -4905,15 +5157,15 @@ LINE 8 cut 10 -624.0312423743286 +630.9606781186549 20 -75.50000000000001 +112.52272727272728 30 0.0 11 -614.0312423743285 +630.4606781186549 21 -75.50000000000001 +112.52272727272728 31 0.0 0 @@ -4923,15 +5175,15 @@ LINE 8 cut 10 -614.0312423743285 +448.40187590113186 20 -75.50000000000001 +217.3888829577983 30 0.0 11 -614.0312423743285 +443.7637963941598 21 -65.5 +227.64184496249058 31 0.0 0 @@ -4941,15 +5193,15 @@ LINE 8 cut 10 -626.2812423743285 +443.7637963941598 20 -79.08333333333336 +227.64184496249058 30 0.0 11 -626.2812423743285 +443.308239676193 21 -61.91666666666668 +227.43576712109234 31 0.0 0 @@ -4959,15 +5211,15 @@ LINE 8 cut 10 -626.2812423743285 +443.308239676193 20 -61.91666666666668 +227.43576712109234 30 0.0 11 -626.7812423743285 +447.94631918316514 21 -61.91666666666668 +217.18280511640006 31 0.0 0 @@ -4977,15 +5229,15 @@ LINE 8 cut 10 -626.7812423743285 +447.94631918316514 20 -61.91666666666668 +217.18280511640006 30 0.0 11 -626.7812423743285 +448.40187590113186 21 -79.08333333333336 +217.3888829577983 31 0.0 0 @@ -4995,15 +5247,15 @@ LINE 8 cut 10 -626.7812423743285 +657.9606781186549 20 -79.08333333333336 +258.58333333333337 30 0.0 11 -626.2812423743285 +657.9606781186549 21 -79.08333333333336 +241.41666666666669 31 0.0 0 @@ -5013,15 +5265,15 @@ LINE 8 cut 10 -451.4594977301591 +657.9606781186549 20 -152.60350895639252 +241.41666666666669 30 0.0 11 -447.2416050225017 +658.4606781186549 21 -159.0768759855708 +241.41666666666669 31 0.0 0 @@ -5031,15 +5283,15 @@ LINE 8 cut 10 -447.2416050225017 +658.4606781186549 20 -159.0768759855708 +241.41666666666669 30 0.0 11 -446.822685214998 +658.4606781186549 21 -158.80391775638356 +258.58333333333337 31 0.0 0 @@ -5049,15 +5301,15 @@ LINE 8 cut 10 -446.822685214998 +658.4606781186549 20 -158.80391775638356 +258.58333333333337 30 0.0 11 -451.04057792265536 +657.9606781186549 21 -152.33055072720532 +258.58333333333337 31 0.0 0 @@ -5067,15 +5319,15 @@ LINE 8 cut 10 -451.04057792265536 +654.0440114519881 20 -152.33055072720532 +162.50000000000003 30 0.0 11 -451.4594977301591 +654.0440114519881 21 -152.60350895639252 +170.83333333333334 31 0.0 0 @@ -5085,15 +5337,15 @@ LINE 8 cut 10 -643.7812423743285 +654.0440114519881 20 -192.41666666666669 +170.83333333333334 30 0.0 11 -643.7812423743285 +637.3773447853216 21 -178.58333333333334 +170.83333333333334 31 0.0 0 @@ -5103,15 +5355,15 @@ LINE 8 cut 10 -643.7812423743285 +637.3773447853216 20 -178.58333333333334 +170.83333333333334 30 0.0 11 -644.2812423743285 +637.3773447853216 21 -178.58333333333334 +162.50000000000003 31 0.0 0 @@ -5121,15 +5373,15 @@ LINE 8 cut 10 -644.2812423743285 +657.9606781186549 20 -178.58333333333334 +278.5833333333333 30 0.0 11 -644.2812423743285 +657.9606781186549 21 -192.41666666666669 +261.4166666666667 31 0.0 0 @@ -5139,15 +5391,15 @@ LINE 8 cut 10 -644.2812423743285 +657.9606781186549 20 -192.41666666666669 +261.4166666666667 30 0.0 11 -643.7812423743285 +658.4606781186549 21 -192.41666666666669 +261.4166666666667 31 0.0 0 @@ -5157,15 +5409,15 @@ LINE 8 cut 10 -640.6979090409951 +658.4606781186549 20 -115.50000000000004 +261.4166666666667 30 0.0 11 -640.6979090409951 +658.4606781186549 21 -122.1666666666667 +278.5833333333333 31 0.0 0 @@ -5175,15 +5427,15 @@ LINE 8 cut 10 -640.6979090409951 +658.4606781186549 20 -122.1666666666667 +278.5833333333333 30 0.0 11 -627.3645757076619 +657.9606781186549 21 -122.1666666666667 +278.5833333333333 31 0.0 0 @@ -5193,15 +5445,15 @@ LINE 8 cut 10 -627.3645757076619 +469.20423358535214 20 -122.1666666666667 +353.06491669998854 30 0.0 11 -627.3645757076619 +469.20423358535214 21 -115.50000000000004 +347.6883055666629 31 0.0 0 @@ -5211,15 +5463,15 @@ LINE 8 cut 10 -643.7812423743285 +469.20423358535214 20 -202.41666666666666 +347.6883055666629 30 0.0 11 -643.7812423743285 +479.95745585200353 21 -188.58333333333334 +347.6883055666629 31 0.0 0 @@ -5229,15 +5481,15 @@ LINE 8 cut 10 -643.7812423743285 +479.95745585200353 20 -188.58333333333334 +347.6883055666629 30 0.0 11 -644.2812423743285 +479.95745585200353 21 -188.58333333333334 +353.06491669998854 31 0.0 0 @@ -5247,15 +5499,15 @@ LINE 8 cut 10 -644.2812423743285 +443.76379639415967 20 -188.58333333333334 +292.3581550375095 30 0.0 11 -644.2812423743285 +448.4018759011318 21 -202.41666666666666 +302.6111170422017 31 0.0 0 @@ -5265,15 +5517,15 @@ LINE 8 cut 10 -644.2812423743285 +448.4018759011318 20 -202.41666666666666 +302.6111170422017 30 0.0 11 -643.7812423743285 +447.94631918316503 21 -202.41666666666666 +302.81719488360005 31 0.0 0 @@ -5283,15 +5535,15 @@ LINE 8 cut 10 -469.57872159773524 +447.94631918316503 20 -260.9196952912225 +302.81719488360005 30 0.0 11 -469.57872159773524 +443.30823967619295 21 -257.3065650970742 +292.5642328789077 31 0.0 0 @@ -5301,15 +5553,15 @@ LINE 8 cut 10 -469.57872159773524 +443.30823967619295 20 -257.3065650970742 +292.5642328789077 30 0.0 11 -476.8049819860319 +443.76379639415967 21 -257.3065650970742 +292.3581550375095 31 0.0 0 @@ -5319,15 +5571,15 @@ LINE 8 cut 10 -476.8049819860319 +615.1273447853216 20 -257.3065650970742 +341.0 30 0.0 11 -476.8049819860319 +618.2940114519882 21 -260.9196952912225 +341.0 31 0.0 0 @@ -5337,15 +5589,15 @@ LINE 8 cut 10 -447.24160502250174 +618.2940114519882 20 -221.9231240144293 +341.0 30 0.0 11 -451.45949773015917 +618.2940114519882 21 -228.3964910436076 +341.5 31 0.0 0 @@ -5355,15 +5607,15 @@ LINE 8 cut 10 -451.45949773015917 +618.2940114519882 20 -228.3964910436076 +341.5 30 0.0 11 -451.0405779226554 +615.1273447853216 21 -228.6694492727948 +341.5 31 0.0 0 @@ -5373,15 +5625,15 @@ LINE 8 cut 10 -451.0405779226554 +615.1273447853216 20 -228.6694492727948 +341.5 30 0.0 11 -446.822685214998 +615.1273447853216 21 -222.1960822436165 +341.0 31 0.0 0 @@ -5391,15 +5643,15 @@ LINE 8 cut 10 -446.822685214998 +637.3773447853216 20 -222.1960822436165 +357.50000000000006 30 0.0 11 -447.24160502250174 +637.3773447853216 21 -221.9231240144293 +349.16666666666674 31 0.0 0 @@ -5409,15 +5661,15 @@ LINE 8 cut 10 -607.1145757076617 +637.3773447853216 20 -251.50000000000003 +349.16666666666674 30 0.0 11 -610.9479090409952 +654.0440114519881 21 -251.50000000000003 +349.16666666666674 31 0.0 0 @@ -5427,15 +5679,15 @@ LINE 8 cut 10 -610.9479090409952 +654.0440114519881 20 -251.50000000000003 +349.16666666666674 30 0.0 11 -610.9479090409952 +654.0440114519881 21 -252.00000000000003 +357.50000000000006 31 0.0 0 @@ -5445,15 +5697,15 @@ LINE 8 cut 10 -610.9479090409952 +479.95745585200353 20 -252.00000000000003 +166.93508330001148 30 0.0 11 -607.1145757076617 +479.95745585200353 21 -252.00000000000003 +172.31169443333718 31 0.0 0 @@ -5463,15 +5715,15 @@ LINE 8 cut 10 -607.1145757076617 +479.95745585200353 20 -252.00000000000003 +172.31169443333718 30 0.0 11 -607.1145757076617 +469.20423358535214 21 -251.50000000000003 +172.31169443333718 31 0.0 0 @@ -5481,15 +5733,15 @@ LINE 8 cut 10 -627.3645757076619 +469.20423358535214 20 -265.50000000000006 +172.31169443333718 30 0.0 11 -627.3645757076619 +469.20423358535214 21 -258.8333333333334 +166.93508330001148 31 0.0 0 @@ -5499,15 +5751,15 @@ LINE 8 cut 10 -627.3645757076619 +598.7106781186549 20 -258.8333333333334 +67.72727272727273 30 0.0 11 -640.6979090409951 +598.7106781186549 21 -258.8333333333334 +63.727272727272734 31 0.0 0 @@ -5517,15 +5769,15 @@ LINE 8 cut 10 -640.6979090409951 +598.7106781186549 20 -258.8333333333334 +63.727272727272734 30 0.0 11 -640.6979090409951 +602.710678118655 21 -265.50000000000006 +67.72727272727273 31 0.0 0 @@ -5535,15 +5787,15 @@ LINE 8 cut 10 -476.80498198603186 +602.710678118655 20 -120.08030470877752 +67.72727272727273 30 0.0 11 -476.80498198603186 +602.710678118655 21 -123.69343490292586 +80.45454545454547 31 0.0 0 @@ -5553,15 +5805,15 @@ LINE 8 cut 10 -476.80498198603186 +602.710678118655 20 -123.69343490292586 +80.45454545454547 30 0.0 11 -469.5787215977352 +598.7106781186549 21 -123.69343490292586 +84.45454545454547 31 0.0 0 @@ -5571,15 +5823,15 @@ LINE 8 cut 10 -469.5787215977352 +598.7106781186549 20 -123.69343490292586 +84.45454545454547 30 0.0 11 -469.5787215977352 +598.7106781186549 21 -120.08030470877752 +80.45454545454547 31 0.0 0 @@ -5589,15 +5841,15 @@ LINE 8 cut 10 -586.5312423743285 +598.7106781186549 20 -62.16666666666668 +99.54545454545455 30 0.0 11 -586.5312423743285 +598.7106781186549 21 -57.16666666666668 +95.54545454545456 31 0.0 0 @@ -5607,15 +5859,15 @@ LINE 8 cut 10 -586.5312423743285 +598.7106781186549 20 -57.16666666666668 +95.54545454545456 30 0.0 11 -591.5312423743286 +602.710678118655 21 -62.16666666666668 +99.54545454545455 31 0.0 0 @@ -5625,15 +5877,15 @@ LINE 8 cut 10 -591.5312423743286 +602.710678118655 20 -62.16666666666668 +99.54545454545455 30 0.0 11 -591.5312423743286 +602.710678118655 21 -78.83333333333336 +112.27272727272728 31 0.0 0 @@ -5643,15 +5895,15 @@ LINE 8 cut 10 -591.5312423743286 +602.710678118655 20 -78.83333333333336 +112.27272727272728 30 0.0 11 -586.5312423743285 +598.7106781186549 21 -83.83333333333336 +116.27272727272728 31 0.0 0 @@ -5661,15 +5913,15 @@ LINE 8 cut 10 -586.5312423743285 +598.7106781186549 20 -83.83333333333336 +116.27272727272728 30 0.0 11 -586.5312423743285 +598.7106781186549 21 -78.83333333333336 +112.27272727272728 31 0.0 0 diff --git a/rocolib/output/ESP32StackBoat/graph-autofold-graph.dxf b/rocolib/output/ESP32StackBoat/graph-autofold-graph.dxf index cc2623f09f146b1fdfd3b33c2b9aab4f2383b1d2..cb05fa41fd897ee1437560a14272ddafc9923593 100644 --- a/rocolib/output/ESP32StackBoat/graph-autofold-graph.dxf +++ b/rocolib/output/ESP32StackBoat/graph-autofold-graph.dxf @@ -947,13 +947,13 @@ DOTTED 10 34.0 20 -45.0 +59.50000000000001 30 0.0 11 34.0 21 -96.00000000000001 +120.50000000000001 31 0.0 0 @@ -967,13 +967,13 @@ DOTTED 10 10.000000000000002 20 -96.00000000000001 +120.50000000000001 30 0.0 11 10.000000000000002 21 -45.0 +59.50000000000001 31 0.0 0 @@ -987,13 +987,13 @@ DOTTED 10 10.000000000000002 20 -45.0 +59.50000000000001 30 0.0 11 22.000000000000004 21 -45.0 +59.50000000000001 31 0.0 0 @@ -1007,13 +1007,13 @@ DOTTED 10 22.000000000000004 20 -45.0 +59.50000000000001 30 0.0 11 34.0 21 -45.0 +59.50000000000001 31 0.0 0 @@ -1025,13 +1025,13 @@ LINE 10 34.0 20 -45.0 +59.50000000000001 30 0.0 11 34.0 21 -45.0 +59.50000000000001 31 0.0 0 @@ -1043,13 +1043,13 @@ LINE 10 10.000000000000002 20 -45.0 +59.50000000000001 30 0.0 11 10.000000000000002 21 -45.0 +59.50000000000001 31 0.0 0 @@ -1061,13 +1061,13 @@ LINE 10 10.000000000000002 20 -5.000000000000001 +19.500000000000004 30 0.0 11 10.000000000000002 21 -45.0 +59.50000000000001 31 0.0 0 @@ -1079,13 +1079,13 @@ LINE 10 22.000000000000004 20 -45.0 +59.50000000000001 30 0.0 11 22.000000000000004 21 -5.000000000000001 +19.500000000000004 31 0.0 0 @@ -1097,13 +1097,13 @@ LINE 10 10.000000000000002 20 -0.0 +14.5 30 0.0 11 10.000000000000002 21 -5.000000000000001 +19.500000000000004 31 0.0 0 @@ -1115,13 +1115,13 @@ LINE 10 22.000000000000004 20 -0.0 +14.5 30 0.0 11 10.000000000000002 21 -0.0 +14.5 31 0.0 0 @@ -1133,13 +1133,13 @@ LINE 10 22.000000000000004 20 -5.000000000000001 +19.500000000000004 30 0.0 11 22.000000000000004 21 -0.0 +14.5 31 0.0 0 @@ -1151,13 +1151,13 @@ LINE 10 22.000000000000004 20 -5.000000000000001 +19.500000000000004 30 0.0 11 22.000000000000004 21 -45.0 +59.50000000000001 31 0.0 0 @@ -1169,13 +1169,13 @@ LINE 10 34.0 20 -45.0 +59.50000000000001 30 0.0 11 34.0 21 -5.000000000000001 +19.500000000000004 31 0.0 0 @@ -1187,13 +1187,13 @@ LINE 10 22.000000000000004 20 -0.0 +14.5 30 0.0 11 22.000000000000004 21 -5.000000000000001 +19.500000000000004 31 0.0 0 @@ -1205,13 +1205,13 @@ LINE 10 34.0 20 -0.0 +14.5 30 0.0 11 22.000000000000004 21 -0.0 +14.5 31 0.0 0 @@ -1223,13 +1223,13 @@ LINE 10 34.0 20 -5.000000000000001 +19.500000000000004 30 0.0 11 34.0 21 -0.0 +14.5 31 0.0 0 @@ -1241,13 +1241,13 @@ LINE 10 70.00000000000001 20 -45.0 +59.50000000000001 30 0.0 11 34.0 21 -45.0 +59.50000000000001 31 0.0 0 @@ -1261,13 +1261,13 @@ DOTTED 10 70.00000000000001 20 -45.0 +59.50000000000001 30 0.0 11 70.00000000000001 21 -96.00000000000001 +120.50000000000001 31 0.0 0 @@ -1279,13 +1279,13 @@ LINE 10 34.0 20 -96.00000000000001 +120.50000000000001 30 0.0 11 70.00000000000001 21 -96.00000000000001 +120.50000000000001 31 0.0 0 @@ -1297,13 +1297,13 @@ LINE 10 94.00000000000001 20 -45.0 +59.50000000000001 30 0.0 11 70.00000000000001 21 -45.0 +59.50000000000001 31 0.0 0 @@ -1317,13 +1317,13 @@ DOTTED 10 94.00000000000001 20 -45.0 +59.50000000000001 30 0.0 11 94.00000000000001 21 -96.00000000000001 +120.50000000000001 31 0.0 0 @@ -1335,13 +1335,13 @@ LINE 10 70.00000000000001 20 -96.00000000000001 +120.50000000000001 30 0.0 11 94.00000000000001 21 -96.00000000000001 +120.50000000000001 31 0.0 0 @@ -1353,13 +1353,13 @@ LINE 10 130.0 20 -45.0 +59.50000000000001 30 0.0 11 94.00000000000001 21 -45.0 +59.50000000000001 31 0.0 0 @@ -1371,13 +1371,13 @@ LINE 10 130.0 20 -96.00000000000001 +120.50000000000001 30 0.0 11 130.0 21 -45.0 +59.50000000000001 31 0.0 0 @@ -1389,13 +1389,13 @@ LINE 10 94.00000000000001 20 -96.00000000000001 +120.50000000000001 30 0.0 11 130.0 21 -96.00000000000001 +120.50000000000001 31 0.0 0 @@ -1409,13 +1409,13 @@ DOTTED 10 34.0 20 -96.00000000000001 +120.50000000000001 30 0.0 11 22.000000000000004 21 -96.00000000000001 +120.50000000000001 31 0.0 0 @@ -1429,13 +1429,13 @@ DOTTED 10 22.000000000000004 20 -96.00000000000001 +120.50000000000001 30 0.0 11 10.000000000000002 21 -96.00000000000001 +120.50000000000001 31 0.0 0 @@ -1447,13 +1447,13 @@ LINE 10 10.000000000000002 20 -96.00000000000001 +120.50000000000001 30 0.0 11 10.000000000000002 21 -96.00000000000001 +120.50000000000001 31 0.0 0 @@ -1465,13 +1465,13 @@ LINE 10 34.0 20 -96.00000000000001 +120.50000000000001 30 0.0 11 34.0 21 -96.00000000000001 +120.50000000000001 31 0.0 0 @@ -1483,13 +1483,13 @@ LINE 10 34.0 20 -136.0 +160.50000000000003 30 0.0 11 34.0 21 -96.00000000000001 +120.50000000000001 31 0.0 0 @@ -1501,13 +1501,13 @@ LINE 10 22.000000000000004 20 -96.00000000000001 +120.50000000000001 30 0.0 11 22.000000000000004 21 -136.0 +160.50000000000003 31 0.0 0 @@ -1519,13 +1519,13 @@ LINE 10 34.0 20 -141.0 +165.50000000000003 30 0.0 11 34.0 21 -136.0 +160.50000000000003 31 0.0 0 @@ -1537,13 +1537,13 @@ LINE 10 22.000000000000004 20 -141.0 +165.50000000000003 30 0.0 11 34.0 21 -141.0 +165.50000000000003 31 0.0 0 @@ -1555,13 +1555,13 @@ LINE 10 22.000000000000004 20 -136.0 +160.50000000000003 30 0.0 11 22.000000000000004 21 -141.0 +165.50000000000003 31 0.0 0 @@ -1573,13 +1573,13 @@ LINE 10 22.000000000000004 20 -136.0 +160.50000000000003 30 0.0 11 22.000000000000004 21 -96.00000000000001 +120.50000000000001 31 0.0 0 @@ -1591,13 +1591,13 @@ LINE 10 10.000000000000002 20 -96.00000000000001 +120.50000000000001 30 0.0 11 10.000000000000002 21 -136.0 +160.50000000000003 31 0.0 0 @@ -1609,13 +1609,13 @@ LINE 10 22.000000000000004 20 -141.0 +165.50000000000003 30 0.0 11 22.000000000000004 21 -136.0 +160.50000000000003 31 0.0 0 @@ -1627,13 +1627,13 @@ LINE 10 10.000000000000002 20 -141.0 +165.50000000000003 30 0.0 11 22.000000000000004 21 -141.0 +165.50000000000003 31 0.0 0 @@ -1645,13 +1645,13 @@ LINE 10 10.000000000000002 20 -136.0 +160.50000000000003 30 0.0 11 10.000000000000002 21 -141.0 +165.50000000000003 31 0.0 0 @@ -1663,13 +1663,13 @@ LINE 10 0.0 20 -96.00000000000001 +120.50000000000001 30 0.0 11 10.000000000000002 21 -96.00000000000001 +120.50000000000001 31 0.0 0 @@ -1681,13 +1681,13 @@ LINE 10 0.0 20 -45.0 +59.50000000000001 30 0.0 11 0.0 21 -96.00000000000001 +120.50000000000001 31 0.0 0 @@ -1699,13 +1699,13 @@ LINE 10 10.000000000000002 20 -45.0 +59.50000000000001 30 0.0 11 0.0 21 -45.0 +59.50000000000001 31 0.0 0 @@ -1717,13 +1717,13 @@ LINE 10 11.400000000000002 20 -50.0 +69.5 30 0.0 11 12.6 21 -50.0 +69.5 31 0.0 0 @@ -1735,13 +1735,13 @@ LINE 10 12.6 20 -50.0 +69.5 30 0.0 11 12.6 21 -91.0 +110.50000000000001 31 0.0 0 @@ -1753,13 +1753,13 @@ LINE 10 12.6 20 -91.0 +110.50000000000001 30 0.0 11 11.400000000000002 21 -91.0 +110.50000000000001 31 0.0 0 @@ -1771,13 +1771,13 @@ LINE 10 11.400000000000002 20 -91.0 +110.50000000000001 30 0.0 11 11.400000000000002 21 -50.0 +69.5 31 0.0 0 @@ -1789,13 +1789,13 @@ LINE 10 31.400000000000002 20 -50.50000000000001 +70.00000000000001 30 0.0 11 32.60000000000001 21 -50.50000000000001 +70.00000000000001 31 0.0 0 @@ -1807,13 +1807,13 @@ LINE 10 32.60000000000001 20 -50.50000000000001 +70.00000000000001 30 0.0 11 32.60000000000001 21 -80.50000000000001 +100.0 31 0.0 0 @@ -1825,13 +1825,13 @@ LINE 10 32.60000000000001 20 -80.50000000000001 +100.0 30 0.0 11 31.400000000000002 21 -80.50000000000001 +100.0 31 0.0 0 @@ -1843,13 +1843,13 @@ LINE 10 31.400000000000002 20 -80.50000000000001 +100.0 30 0.0 11 31.400000000000002 21 -50.50000000000001 +70.00000000000001 31 0.0 0 @@ -1861,13 +1861,13 @@ LINE 10 18.000000000000004 20 -1.2500000000000002 +15.750000000000002 30 0.0 11 18.000000000000004 21 -3.7500000000000004 +18.25 31 0.0 0 @@ -1879,13 +1879,13 @@ LINE 10 18.000000000000004 20 -3.7500000000000004 +18.25 30 0.0 11 14.000000000000002 21 -3.7500000000000004 +18.25 31 0.0 0 @@ -1897,13 +1897,13 @@ LINE 10 14.000000000000002 20 -3.7500000000000004 +18.25 30 0.0 11 14.000000000000002 21 -1.2500000000000002 +15.750000000000002 31 0.0 0 @@ -1915,13 +1915,13 @@ LINE 10 30.000000000000004 20 -1.2500000000000002 +15.750000000000002 30 0.0 11 30.000000000000004 21 -3.7500000000000004 +18.25 31 0.0 0 @@ -1933,13 +1933,13 @@ LINE 10 30.000000000000004 20 -3.7500000000000004 +18.25 30 0.0 11 26.000000000000004 21 -3.7500000000000004 +18.25 31 0.0 0 @@ -1951,13 +1951,13 @@ LINE 10 26.000000000000004 20 -3.7500000000000004 +18.25 30 0.0 11 26.000000000000004 21 -1.2500000000000002 +15.750000000000002 31 0.0 0 @@ -1969,13 +1969,13 @@ LINE 10 30.000000000000004 20 -91.50000000000001 +111.00000000000001 30 0.0 11 30.000000000000004 21 -73.50000000000001 +93.00000000000001 31 0.0 0 @@ -1987,13 +1987,13 @@ LINE 10 30.000000000000004 20 -73.50000000000001 +93.00000000000001 30 0.0 11 60.00000000000001 21 -73.50000000000001 +93.00000000000001 31 0.0 0 @@ -2005,13 +2005,13 @@ LINE 10 60.00000000000001 20 -73.50000000000001 +93.00000000000001 30 0.0 11 60.00000000000001 21 -91.50000000000001 +111.00000000000001 31 0.0 0 @@ -2023,13 +2023,13 @@ LINE 10 60.00000000000001 20 -91.50000000000001 +111.00000000000001 30 0.0 11 30.000000000000004 21 -91.50000000000001 +111.00000000000001 31 0.0 0 @@ -2041,13 +2041,13 @@ LINE 10 91.40000000000002 20 -50.0 +69.5 30 0.0 11 92.60000000000001 21 -50.0 +69.5 31 0.0 0 @@ -2059,13 +2059,13 @@ LINE 10 92.60000000000001 20 -50.0 +69.5 30 0.0 11 92.60000000000001 21 -91.0 +110.50000000000001 31 0.0 0 @@ -2077,13 +2077,13 @@ LINE 10 92.60000000000001 20 -91.0 +110.50000000000001 30 0.0 11 91.40000000000002 21 -91.0 +110.50000000000001 31 0.0 0 @@ -2095,13 +2095,13 @@ LINE 10 91.40000000000002 20 -91.0 +110.50000000000001 30 0.0 11 91.40000000000002 21 -50.0 +69.5 31 0.0 0 @@ -2113,13 +2113,13 @@ LINE 10 71.4 20 -50.50000000000001 +70.00000000000001 30 0.0 11 72.60000000000001 21 -50.50000000000001 +70.00000000000001 31 0.0 0 @@ -2131,13 +2131,13 @@ LINE 10 72.60000000000001 20 -50.50000000000001 +70.00000000000001 30 0.0 11 72.60000000000001 21 -80.50000000000001 +100.0 31 0.0 0 @@ -2149,13 +2149,13 @@ LINE 10 72.60000000000001 20 -80.50000000000001 +100.0 30 0.0 11 71.4 21 -80.50000000000001 +100.0 31 0.0 0 @@ -2167,13 +2167,13 @@ LINE 10 71.4 20 -80.50000000000001 +100.0 30 0.0 11 71.4 21 -50.50000000000001 +70.00000000000001 31 0.0 0 @@ -2185,13 +2185,13 @@ LINE 10 97.00000000000001 20 -54.00000000000001 +73.50000000000001 30 0.0 11 97.00000000000001 21 -47.00000000000001 +66.50000000000001 31 0.0 0 @@ -2203,13 +2203,13 @@ LINE 10 97.00000000000001 20 -47.00000000000001 +66.50000000000001 30 0.0 11 117.00000000000001 21 -47.00000000000001 +66.50000000000001 31 0.0 0 @@ -2221,13 +2221,13 @@ LINE 10 117.00000000000001 20 -47.00000000000001 +66.50000000000001 30 0.0 11 117.00000000000001 21 -54.00000000000001 +73.50000000000001 31 0.0 0 @@ -2239,13 +2239,13 @@ LINE 10 117.00000000000001 20 -54.00000000000001 +73.50000000000001 30 0.0 11 97.00000000000001 21 -54.00000000000001 +73.50000000000001 31 0.0 0 @@ -2257,13 +2257,13 @@ LINE 10 122.25000000000001 20 -79.25000000000001 +81.9318181818182 30 0.0 11 122.25000000000001 21 -61.75000000000001 +70.3409090909091 31 0.0 0 @@ -2275,13 +2275,13 @@ LINE 10 122.25000000000001 20 -61.75000000000001 +70.3409090909091 30 0.0 11 122.75000000000001 21 -61.75000000000001 +70.3409090909091 31 0.0 0 @@ -2293,13 +2293,13 @@ LINE 10 122.75000000000001 20 -61.75000000000001 +70.3409090909091 30 0.0 11 122.75000000000001 21 -79.25000000000001 +81.9318181818182 31 0.0 0 @@ -2311,13 +2311,85 @@ LINE 10 122.75000000000001 20 -79.25000000000001 +81.9318181818182 30 0.0 11 122.25000000000001 21 -79.25000000000001 +81.9318181818182 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +122.25000000000001 + 20 +109.65909090909092 + 30 +0.0 + 11 +122.25000000000001 + 21 +98.06818181818183 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +122.25000000000001 + 20 +98.06818181818183 + 30 +0.0 + 11 +122.75000000000001 + 21 +98.06818181818183 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +122.75000000000001 + 20 +98.06818181818183 + 30 +0.0 + 11 +122.75000000000001 + 21 +109.65909090909092 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +122.75000000000001 + 20 +109.65909090909092 + 30 +0.0 + 11 +122.25000000000001 + 21 +109.65909090909092 31 0.0 0 @@ -2329,13 +2401,13 @@ LINE 10 26.000000000000004 20 -139.75000000000003 +164.25000000000003 30 0.0 11 26.000000000000004 21 -137.25000000000003 +161.75 31 0.0 0 @@ -2347,13 +2419,13 @@ LINE 10 26.000000000000004 20 -137.25000000000003 +161.75 30 0.0 11 30.000000000000004 21 -137.25000000000003 +161.75 31 0.0 0 @@ -2365,13 +2437,13 @@ LINE 10 30.000000000000004 20 -137.25000000000003 +161.75 30 0.0 11 30.000000000000004 21 -139.75000000000003 +164.25000000000003 31 0.0 0 @@ -2383,13 +2455,13 @@ LINE 10 14.000000000000002 20 -139.75000000000003 +164.25000000000003 30 0.0 11 14.000000000000002 21 -137.25000000000003 +161.75 31 0.0 0 @@ -2401,13 +2473,13 @@ LINE 10 14.000000000000002 20 -137.25000000000003 +161.75 30 0.0 11 18.000000000000004 21 -137.25000000000003 +161.75 31 0.0 0 @@ -2419,13 +2491,13 @@ LINE 10 18.000000000000004 20 -137.25000000000003 +161.75 30 0.0 11 18.000000000000004 21 -139.75000000000003 +164.25000000000003 31 0.0 0 @@ -2437,13 +2509,13 @@ LINE 10 2.5000000000000004 20 -62.000000000000014 +70.5909090909091 30 0.0 11 -2.5000000000000004 +7.500000000000001 21 -57.00000000000001 +70.5909090909091 31 0.0 0 @@ -2453,15 +2525,15 @@ LINE 8 0 10 -2.5000000000000004 +7.500000000000001 20 -57.00000000000001 +70.5909090909091 30 0.0 11 7.500000000000001 21 -62.000000000000014 +81.68181818181819 31 0.0 0 @@ -2473,13 +2545,31 @@ LINE 10 7.500000000000001 20 -62.000000000000014 +81.68181818181819 + 30 +0.0 + 11 +2.5000000000000004 + 21 +81.68181818181819 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +2.5000000000000004 + 20 +98.31818181818184 30 0.0 11 7.500000000000001 21 -79.00000000000001 +98.31818181818184 31 0.0 0 @@ -2491,13 +2581,13 @@ LINE 10 7.500000000000001 20 -79.00000000000001 +98.31818181818184 30 0.0 11 -2.5000000000000004 +7.500000000000001 21 -84.0 +109.40909090909092 31 0.0 0 @@ -2507,15 +2597,15 @@ LINE 8 0 10 -2.5000000000000004 +7.500000000000001 20 -84.0 +109.40909090909092 30 0.0 11 2.5000000000000004 21 -79.00000000000001 +109.40909090909092 31 0.0 0 @@ -2527,13 +2617,13 @@ LINE 10 186.00000000000003 20 -70.5 +90.0 30 0.0 11 140.00000000000003 21 -70.5 +90.0 31 0.0 0 @@ -2545,13 +2635,13 @@ LINE 10 198.0 20 -70.5 +90.0 30 0.0 11 186.00000000000003 21 -70.5 +90.0 31 0.0 0 @@ -2563,13 +2653,13 @@ LINE 10 210.00000000000003 20 -70.5 +90.0 30 0.0 11 198.0 21 -70.5 +90.0 31 0.0 0 @@ -2581,13 +2671,13 @@ LINE 10 222.00000000000003 20 -70.5 +90.0 30 0.0 11 210.00000000000003 21 -70.5 +90.0 31 0.0 0 @@ -2599,13 +2689,13 @@ LINE 10 234.00000000000003 20 -70.5 +90.0 30 0.0 11 222.00000000000003 21 -70.5 +90.0 31 0.0 0 @@ -2617,13 +2707,13 @@ LINE 10 246.00000000000003 20 -70.5 +90.0 30 0.0 11 234.00000000000003 21 -70.5 +90.0 31 0.0 0 @@ -2635,13 +2725,13 @@ LINE 10 258.0 20 -70.5 +90.0 30 0.0 11 246.00000000000003 21 -70.5 +90.0 31 0.0 0 @@ -2653,13 +2743,13 @@ LINE 10 270.00000000000006 20 -70.5 +90.0 30 0.0 11 258.0 21 -70.5 +90.0 31 0.0 0 @@ -2671,13 +2761,13 @@ LINE 10 270.00000000000006 20 -70.5 +90.0 30 0.0 11 270.00000000000006 21 -70.5 +90.0 31 0.0 0 @@ -2689,13 +2779,13 @@ LINE 10 140.00000000000003 20 -70.5 +90.0 30 0.0 11 270.00000000000006 21 -70.5 +90.0 31 0.0 0 @@ -2707,13 +2797,13 @@ LINE 10 140.00000000000003 20 -70.5 +90.0 30 0.0 11 140.00000000000003 21 -70.5 +90.0 31 0.0 0 @@ -2725,13 +2815,13 @@ LINE 10 206.25000000000003 20 -74.50000000000001 +94.00000000000001 30 0.0 11 201.75000000000003 21 -74.50000000000001 +94.00000000000001 31 0.0 0 @@ -2743,13 +2833,13 @@ LINE 10 201.75000000000003 20 -74.50000000000001 +94.00000000000001 30 0.0 11 201.75000000000003 21 -74.0 +93.50000000000001 31 0.0 0 @@ -2761,13 +2851,13 @@ LINE 10 201.75000000000003 20 -74.0 +93.50000000000001 30 0.0 11 206.25000000000003 21 -74.0 +93.50000000000001 31 0.0 0 @@ -2779,13 +2869,13 @@ LINE 10 206.25000000000003 20 -74.0 +93.50000000000001 30 0.0 11 206.25000000000003 21 -74.50000000000001 +94.00000000000001 31 0.0 0 @@ -2797,13 +2887,13 @@ LINE 10 218.25000000000003 20 -74.50000000000001 +94.00000000000001 30 0.0 11 213.75 21 -74.50000000000001 +94.00000000000001 31 0.0 0 @@ -2815,13 +2905,13 @@ LINE 10 213.75 20 -74.50000000000001 +94.00000000000001 30 0.0 11 213.75 21 -74.0 +93.50000000000001 31 0.0 0 @@ -2833,13 +2923,13 @@ LINE 10 213.75 20 -74.0 +93.50000000000001 30 0.0 11 218.25000000000003 21 -74.0 +93.50000000000001 31 0.0 0 @@ -2851,13 +2941,13 @@ LINE 10 218.25000000000003 20 -74.0 +93.50000000000001 30 0.0 11 218.25000000000003 21 -74.50000000000001 +94.00000000000001 31 0.0 0 @@ -2869,13 +2959,13 @@ LINE 10 326.00000000000006 20 -70.5 +90.0 30 0.0 11 280.00000000000006 21 -70.5 +90.0 31 0.0 0 @@ -2887,13 +2977,13 @@ LINE 10 338.00000000000006 20 -70.5 +90.0 30 0.0 11 326.00000000000006 21 -70.5 +90.0 31 0.0 0 @@ -2905,13 +2995,13 @@ LINE 10 350.0 20 -70.5 +90.0 30 0.0 11 338.00000000000006 21 -70.5 +90.0 31 0.0 0 @@ -2923,13 +3013,13 @@ LINE 10 362.00000000000006 20 -70.5 +90.0 30 0.0 11 350.0 21 -70.5 +90.0 31 0.0 0 @@ -2941,13 +3031,13 @@ LINE 10 374.00000000000006 20 -70.5 +90.0 30 0.0 11 362.00000000000006 21 -70.5 +90.0 31 0.0 0 @@ -2959,13 +3049,13 @@ LINE 10 386.00000000000006 20 -70.5 +90.0 30 0.0 11 374.00000000000006 21 -70.5 +90.0 31 0.0 0 @@ -2977,13 +3067,13 @@ LINE 10 398.00000000000006 20 -70.5 +90.0 30 0.0 11 386.00000000000006 21 -70.5 +90.0 31 0.0 0 @@ -2995,13 +3085,13 @@ LINE 10 410.00000000000006 20 -70.5 +90.0 30 0.0 11 398.00000000000006 21 -70.5 +90.0 31 0.0 0 @@ -3013,13 +3103,13 @@ LINE 10 410.00000000000006 20 -70.5 +90.0 30 0.0 11 410.00000000000006 21 -70.5 +90.0 31 0.0 0 @@ -3031,13 +3121,13 @@ LINE 10 280.00000000000006 20 -70.5 +90.0 30 0.0 11 410.00000000000006 21 -70.5 +90.0 31 0.0 0 @@ -3049,13 +3139,13 @@ LINE 10 280.00000000000006 20 -70.5 +90.0 30 0.0 11 280.00000000000006 21 -70.5 +90.0 31 0.0 0 @@ -3067,13 +3157,13 @@ LINE 10 334.25000000000006 20 -74.50000000000001 +94.00000000000001 30 0.0 11 329.75000000000006 21 -74.50000000000001 +94.00000000000001 31 0.0 0 @@ -3085,13 +3175,13 @@ LINE 10 329.75000000000006 20 -74.50000000000001 +94.00000000000001 30 0.0 11 329.75000000000006 21 -74.0 +93.50000000000001 31 0.0 0 @@ -3103,13 +3193,13 @@ LINE 10 329.75000000000006 20 -74.0 +93.50000000000001 30 0.0 11 334.25000000000006 21 -74.0 +93.50000000000001 31 0.0 0 @@ -3121,13 +3211,13 @@ LINE 10 334.25000000000006 20 -74.0 +93.50000000000001 30 0.0 11 334.25000000000006 21 -74.50000000000001 +94.00000000000001 31 0.0 0 @@ -3139,13 +3229,13 @@ LINE 10 346.25 20 -74.50000000000001 +94.00000000000001 30 0.0 11 341.75 21 -74.50000000000001 +94.00000000000001 31 0.0 0 @@ -3157,13 +3247,13 @@ LINE 10 341.75 20 -74.50000000000001 +94.00000000000001 30 0.0 11 341.75 21 -74.0 +93.50000000000001 31 0.0 0 @@ -3175,13 +3265,13 @@ LINE 10 341.75 20 -74.0 +93.50000000000001 30 0.0 11 346.25 21 -74.0 +93.50000000000001 31 0.0 0 @@ -3193,13 +3283,13 @@ LINE 10 346.25 20 -74.0 +93.50000000000001 30 0.0 11 346.25 21 -74.50000000000001 +94.00000000000001 31 0.0 0 @@ -3209,15 +3299,15 @@ LINE 8 0 10 -604.0312423743285 +612.710678118655 20 -45.5 +55.00000000000001 30 0.0 11 -594.0312423743285 +604.710678118655 21 -45.5 +55.00000000000001 31 0.0 0 @@ -3229,15 +3319,15 @@ DOTTED 8 0 10 -604.0312423743285 +612.710678118655 20 -45.5 +55.00000000000001 30 0.0 11 -604.0312423743285 +612.710678118655 21 -95.5 +125.00000000000001 31 0.0 0 @@ -3247,15 +3337,15 @@ LINE 8 0 10 -594.0312423743285 +604.710678118655 20 -95.5 +125.00000000000001 30 0.0 11 -604.0312423743285 +612.710678118655 21 -95.5 +125.00000000000001 31 0.0 0 @@ -3267,15 +3357,15 @@ DOTTED 8 0 10 -594.0312423743285 +604.710678118655 20 -95.5 +125.00000000000001 30 0.0 11 -594.0312423743285 +604.710678118655 21 -45.5 +55.00000000000001 31 0.0 0 @@ -3287,15 +3377,15 @@ DOTTED 8 0 10 -614.0312423743285 +620.710678118655 20 -45.5 +55.00000000000001 30 0.0 11 -614.0312423743285 +620.710678118655 21 -95.5 +125.00000000000001 31 0.0 0 @@ -3305,15 +3395,15 @@ LINE 8 0 10 -614.0312423743285 +620.710678118655 20 -45.5 +55.00000000000001 30 0.0 11 -614.0312423743285 +620.710678118655 21 -15.500000000000004 +5.000000000000001 31 0.0 0 @@ -3323,15 +3413,15 @@ LINE 8 0 10 -604.0312423743285 +612.710678118655 20 -15.500000000000004 +5.000000000000001 30 0.0 11 -604.0312423743285 +612.710678118655 21 -45.5 +55.00000000000001 31 0.0 0 @@ -3341,15 +3431,15 @@ LINE 8 0 10 -604.0312423743285 +612.710678118655 20 -10.5 +0.0 30 0.0 11 -604.0312423743285 +612.710678118655 21 -15.500000000000004 +5.000000000000001 31 0.0 0 @@ -3359,15 +3449,15 @@ LINE 8 0 10 -614.0312423743285 +620.710678118655 20 -10.5 +0.0 30 0.0 11 -604.0312423743285 +612.710678118655 21 -10.5 +0.0 31 0.0 0 @@ -3377,15 +3467,15 @@ LINE 8 0 10 -614.0312423743285 +620.710678118655 20 -15.500000000000004 +5.000000000000001 30 0.0 11 -614.0312423743285 +620.710678118655 21 -10.5 +0.0 31 0.0 0 @@ -3395,15 +3485,15 @@ LINE 8 0 10 -624.0312423743286 +628.710678118655 20 -45.5 +55.00000000000001 30 0.0 11 -614.0312423743285 +620.710678118655 21 -45.5 +55.00000000000001 31 0.0 0 @@ -3415,15 +3505,15 @@ DOTTED 8 0 10 -624.0312423743286 +628.710678118655 20 -45.5 +55.00000000000001 30 0.0 11 -624.0312423743286 +628.710678118655 21 -95.5 +125.00000000000001 31 0.0 0 @@ -3433,15 +3523,15 @@ LINE 8 0 10 -614.0312423743285 +620.710678118655 20 -95.5 +125.00000000000001 30 0.0 11 -624.0312423743286 +628.710678118655 21 -95.5 +125.00000000000001 31 0.0 0 @@ -3451,15 +3541,15 @@ LINE 8 0 10 -634.0312423743286 +636.710678118655 20 -45.5 +55.00000000000001 30 0.0 11 -624.0312423743286 +628.710678118655 21 -45.5 +55.00000000000001 31 0.0 0 @@ -3469,15 +3559,15 @@ LINE 8 0 10 -634.0312423743286 +636.710678118655 20 -95.5 +125.00000000000001 30 0.0 11 -634.0312423743286 +636.710678118655 21 -45.5 +55.00000000000001 31 0.0 0 @@ -3487,15 +3577,15 @@ LINE 8 0 10 -624.0312423743286 +628.710678118655 20 -95.5 +125.00000000000001 30 0.0 11 -634.0312423743286 +636.710678118655 21 -95.5 +125.00000000000001 31 0.0 0 @@ -3505,15 +3595,15 @@ LINE 8 0 10 -604.0312423743285 +612.710678118655 20 -95.5 +125.00000000000001 30 0.0 11 -604.0312423743285 +612.710678118655 21 -125.50000000000001 +175.0 31 0.0 0 @@ -3523,15 +3613,15 @@ LINE 8 0 10 -614.0312423743285 +620.710678118655 20 -125.50000000000001 +175.0 30 0.0 11 -614.0312423743285 +620.710678118655 21 -95.5 +125.00000000000001 31 0.0 0 @@ -3543,15 +3633,15 @@ DOTTED 8 0 10 -614.0312423743285 +620.710678118655 20 -125.50000000000001 +175.0 30 0.0 11 -604.0312423743285 +612.710678118655 21 -125.50000000000001 +175.0 31 0.0 0 @@ -3561,15 +3651,15 @@ LINE 8 0 10 -604.0312423743285 +612.710678118655 20 -125.50000000000001 +175.0 30 0.0 11 -484.03124237432854 +490.7106781186549 21 -125.50000000000001 +175.0 31 0.0 0 @@ -3579,15 +3669,15 @@ LINE 8 0 10 -614.0312423743285 +620.710678118655 20 -125.50000000000001 +175.0 30 0.0 11 -614.0312423743285 +620.710678118655 21 -125.50000000000001 +175.0 31 0.0 0 @@ -3597,15 +3687,15 @@ LINE 8 0 10 -484.03124237432854 +490.7106781186549 20 -125.50000000000001 +175.0 30 0.0 11 -484.03124237432854 +490.7106781186549 21 -125.50000000000001 +175.0 31 0.0 0 @@ -3617,15 +3707,15 @@ DOTTED 8 0 10 -484.03124237432854 +490.7106781186549 20 -165.50000000000003 +225.00000000000003 30 0.0 11 -614.0312423743285 +620.710678118655 21 -165.50000000000003 +225.00000000000003 31 0.0 0 @@ -3637,15 +3727,15 @@ DOTTED 8 0 10 -484.03124237432854 +490.7106781186549 20 -125.50000000000001 +175.0 30 0.0 11 -484.03124237432854 +490.7106781186549 21 -165.50000000000003 +225.00000000000003 31 0.0 0 @@ -3657,15 +3747,15 @@ DOTTED 8 0 10 -462.35246120943856 +458.4510113187008 20 -125.50000000000001 +175.0 30 0.0 11 -484.03124237432854 +490.7106781186549 21 -165.50000000000003 +225.00000000000003 31 0.0 0 @@ -3677,15 +3767,15 @@ DOTTED 8 0 10 -462.35246120943856 +458.4510113187008 20 -125.50000000000001 +175.0 30 0.0 11 -484.03124237432854 +490.7106781186549 21 -125.50000000000001 +175.0 31 0.0 0 @@ -3695,15 +3785,15 @@ LINE 8 0 10 -462.35246120943856 +458.45101131870075 20 -125.50000000000001 +175.0 30 0.0 11 -450.51765777402795 +445.1550063219791 21 -143.66334166502364 +204.3922158601766 31 0.0 0 @@ -3715,15 +3805,15 @@ DOTTED 8 0 10 -450.51765777402795 +445.1550063219791 20 -143.66334166502364 +204.3922158601766 30 0.0 11 -484.03124237432854 +490.7106781186549 21 -165.50000000000003 +225.00000000000003 31 0.0 0 @@ -3735,15 +3825,15 @@ DOTTED 8 0 10 -420.00000000000006 +420.00000000000017 20 -190.50000000000003 +260.0 30 0.0 11 -484.03124237432854 +490.7106781186549 21 -165.50000000000003 +225.00000000000003 31 0.0 0 @@ -3753,15 +3843,15 @@ LINE 8 0 10 -438.68285433861735 +431.85900132525745 20 -161.8266833300472 +233.78443172035318 30 0.0 11 -420.00000000000006 +420.00000000000017 21 -190.50000000000003 +260.0 31 0.0 0 @@ -3771,15 +3861,15 @@ LINE 8 0 10 -450.51765777402795 +445.15500632197916 20 -143.6633416650236 +204.3922158601766 30 0.0 11 -438.68285433861735 +431.85900132525745 21 -161.8266833300472 +233.78443172035318 31 0.0 0 @@ -3791,15 +3881,15 @@ DOTTED 8 0 10 -484.03124237432854 +490.7106781186549 20 -165.50000000000003 +225.00000000000003 30 0.0 11 -484.03124237432854 +490.7106781186549 21 -190.50000000000003 +260.0 31 0.0 0 @@ -3811,15 +3901,15 @@ DOTTED 8 0 10 -484.03124237432854 +490.7106781186549 20 -190.50000000000003 +260.0 30 0.0 11 -484.03124237432854 +490.7106781186549 21 -215.50000000000003 +295.0 31 0.0 0 @@ -3831,15 +3921,15 @@ DOTTED 8 0 10 -420.00000000000006 +420.00000000000017 20 -190.50000000000003 +260.0 30 0.0 11 -484.03124237432854 +490.7106781186549 21 -215.50000000000003 +295.0 31 0.0 0 @@ -3851,15 +3941,15 @@ DOTTED 8 0 10 -484.03124237432854 +490.7106781186549 20 -215.50000000000003 +295.0 30 0.0 11 -614.0312423743285 +620.710678118655 21 -215.50000000000003 +295.0 31 0.0 0 @@ -3871,15 +3961,15 @@ DOTTED 8 0 10 -614.0312423743285 +620.710678118655 20 -190.50000000000003 +260.0 30 0.0 11 -614.0312423743285 +620.710678118655 21 -165.50000000000003 +225.00000000000003 31 0.0 0 @@ -3891,15 +3981,15 @@ DOTTED 8 0 10 -614.0312423743285 +620.710678118655 20 -215.50000000000003 +295.0 30 0.0 11 -614.0312423743285 +620.710678118655 21 -190.50000000000003 +260.0 31 0.0 0 @@ -3909,15 +3999,15 @@ LINE 8 0 10 -654.0312423743286 +670.7106781186549 20 -205.5 +275.00000000000006 30 0.0 11 -654.0312423743286 +670.7106781186549 21 -165.50000000000003 +225.00000000000003 31 0.0 0 @@ -3927,15 +4017,15 @@ LINE 8 0 10 -654.0312423743286 +670.7106781186549 20 -190.50000000000003 +260.0 30 0.0 11 -654.0312423743286 +670.7106781186549 21 -205.5 +275.00000000000006 31 0.0 0 @@ -3947,15 +4037,15 @@ DOTTED 8 0 10 -614.0312423743285 +620.710678118655 20 -165.50000000000003 +225.00000000000003 30 0.0 11 -654.0312423743286 +670.7106781186549 21 -165.50000000000003 +225.00000000000003 31 0.0 0 @@ -3967,15 +4057,15 @@ DOTTED 8 0 10 -614.0312423743285 +620.710678118655 20 -165.50000000000003 +225.00000000000003 30 0.0 11 -654.0312423743286 +670.7106781186549 21 -125.50000000000003 +175.00000000000003 31 0.0 0 @@ -3985,15 +4075,15 @@ LINE 8 0 10 -654.0312423743286 +670.7106781186549 20 -165.50000000000003 +225.00000000000003 30 0.0 11 -654.0312423743286 +670.7106781186549 21 -125.50000000000003 +175.00000000000003 31 0.0 0 @@ -4005,15 +4095,15 @@ DOTTED 8 0 10 -614.0312423743285 +620.710678118655 20 -125.50000000000003 +175.0 30 0.0 11 -654.0312423743286 +670.7106781186549 21 -125.50000000000004 +175.0 31 0.0 0 @@ -4025,15 +4115,15 @@ DOTTED 8 0 10 -614.0312423743285 +620.710678118655 20 -165.50000000000003 +225.00000000000003 30 0.0 11 -614.0312423743285 +620.710678118655 21 -125.50000000000003 +175.0 31 0.0 0 @@ -4043,15 +4133,15 @@ LINE 8 0 10 -614.0312423743285 +620.710678118655 20 -112.1666666666667 +158.33333333333337 30 0.0 11 -614.0312423743285 +620.710678118655 21 -125.50000000000004 +175.0 31 0.0 0 @@ -4061,15 +4151,15 @@ LINE 8 0 10 -654.0312423743286 +670.7106781186549 20 -112.16666666666671 +158.33333333333337 30 0.0 11 -614.0312423743285 +620.710678118655 21 -112.1666666666667 +158.33333333333337 31 0.0 0 @@ -4079,15 +4169,15 @@ LINE 8 0 10 -654.0312423743286 +670.7106781186549 20 -125.50000000000004 +175.0 30 0.0 11 -654.0312423743286 +670.7106781186549 21 -112.16666666666671 +158.33333333333337 31 0.0 0 @@ -4099,15 +4189,15 @@ DOTTED 8 0 10 -654.0312423743286 +670.7106781186549 20 -215.50000000000003 +295.0 30 0.0 11 -614.0312423743285 +620.710678118655 21 -215.50000000000003 +295.0 31 0.0 0 @@ -4117,15 +4207,15 @@ LINE 8 0 10 -654.0312423743286 +670.7106781186549 20 -175.5 +245.00000000000003 30 0.0 11 -654.0312423743286 +670.7106781186549 21 -190.50000000000003 +260.0 31 0.0 0 @@ -4135,15 +4225,15 @@ LINE 8 0 10 -654.0312423743286 +670.7106781186549 20 -215.50000000000003 +295.0 30 0.0 11 -654.0312423743286 +670.7106781186549 21 -175.5 +245.00000000000003 31 0.0 0 @@ -4153,15 +4243,15 @@ LINE 8 0 10 -654.0312423743286 +670.7106781186549 20 -255.5 +345.00000000000006 30 0.0 11 -654.0312423743286 +670.7106781186549 21 -215.50000000000003 +295.0 31 0.0 0 @@ -4173,15 +4263,15 @@ DOTTED 8 0 10 -654.0312423743286 +670.7106781186549 20 -255.5 +345.00000000000006 30 0.0 11 -614.0312423743285 +620.710678118655 21 -215.50000000000003 +295.0 31 0.0 0 @@ -4193,15 +4283,15 @@ DOTTED 8 0 10 -614.0312423743285 +620.710678118655 20 -255.50000000000006 +345.00000000000006 30 0.0 11 -614.0312423743285 +620.710678118655 21 -215.50000000000006 +295.0 31 0.0 0 @@ -4213,15 +4303,15 @@ DOTTED 8 0 10 -654.0312423743286 +670.7106781186549 20 -255.50000000000003 +345.00000000000006 30 0.0 11 -614.0312423743285 +620.710678118655 21 -255.50000000000006 +345.00000000000006 31 0.0 0 @@ -4233,15 +4323,15 @@ DOTTED 8 0 10 -484.03124237432854 +490.71067811865487 20 -215.50000000000009 +295.0 30 0.0 11 -484.03124237432854 +490.71067811865487 21 -255.50000000000009 +345.00000000000006 31 0.0 0 @@ -4253,15 +4343,15 @@ DOTTED 8 0 10 -484.03124237432854 +490.71067811865487 20 -255.50000000000006 +345.00000000000006 30 0.0 11 -462.3524612094386 +458.45101131870075 21 -255.50000000000009 +345.00000000000006 31 0.0 0 @@ -4273,15 +4363,15 @@ DOTTED 8 0 10 -484.03124237432854 +490.71067811865487 20 -215.50000000000009 +295.0 30 0.0 11 -462.3524612094386 +458.45101131870075 21 -255.50000000000009 +345.00000000000006 31 0.0 0 @@ -4291,15 +4381,15 @@ LINE 8 0 10 -484.03124237432854 +490.71067811865487 20 -262.7262603882967 +355.75322226665145 30 0.0 11 -484.03124237432854 +490.71067811865487 21 -255.50000000000006 +345.00000000000006 31 0.0 0 @@ -4309,15 +4399,15 @@ LINE 8 0 10 -462.35246120943856 +458.45101131870075 20 -262.7262603882967 +355.75322226665145 30 0.0 11 -484.03124237432854 +490.71067811865487 21 -262.7262603882967 +355.75322226665145 31 0.0 0 @@ -4327,15 +4417,15 @@ LINE 8 0 10 -462.35246120943856 +458.45101131870075 20 -255.50000000000006 +345.00000000000006 30 0.0 11 -462.35246120943856 +458.45101131870075 21 -262.7262603882967 +355.75322226665145 31 0.0 0 @@ -4347,15 +4437,15 @@ DOTTED 8 0 10 -484.03124237432854 +490.71067811865487 20 -215.50000000000009 +295.0 30 0.0 11 -450.517657774028 +445.1550063219791 21 -237.33665833497648 +315.6077841398234 31 0.0 0 @@ -4365,15 +4455,15 @@ LINE 8 0 10 -450.517657774028 +445.1550063219791 20 -237.33665833497648 +315.6077841398234 30 0.0 11 -462.35246120943856 +458.45101131870075 21 -255.50000000000006 +345.00000000000006 31 0.0 0 @@ -4383,15 +4473,15 @@ LINE 8 0 10 -438.68285433861735 +431.8590013252574 20 -219.1733166699529 +286.21556827964685 30 0.0 11 -450.517657774028 +445.1550063219791 21 -237.33665833497648 +315.6077841398234 31 0.0 0 @@ -4403,13 +4493,85 @@ LINE 10 420.00000000000006 20 -190.50000000000009 +260.0 + 30 +0.0 + 11 +431.8590013252574 + 21 +286.21556827964685 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +612.710678118655 + 20 +345.00000000000006 + 30 +0.0 + 11 +620.710678118655 + 21 +345.00000000000006 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +490.71067811865487 + 20 +345.00000000000006 + 30 +0.0 + 11 +612.710678118655 + 21 +345.00000000000006 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +490.71067811865487 + 20 +345.00000000000006 + 30 +0.0 + 11 +490.71067811865487 + 21 +345.00000000000006 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +620.710678118655 + 20 +345.00000000000006 30 0.0 11 -438.68285433861735 +620.710678118655 21 -219.1733166699529 +345.00000000000006 31 0.0 0 @@ -4419,15 +4581,15 @@ LINE 8 0 10 -604.0312423743285 +670.7106781186549 20 -255.50000000000003 +361.66666666666674 30 0.0 11 -614.0312423743285 +670.7106781186549 21 -255.50000000000003 +345.00000000000006 31 0.0 0 @@ -4437,15 +4599,15 @@ LINE 8 0 10 -484.03124237432854 +620.710678118655 20 -255.50000000000006 +361.66666666666674 30 0.0 11 -604.0312423743285 +670.7106781186549 21 -255.50000000000003 +361.66666666666674 31 0.0 0 @@ -4455,15 +4617,15 @@ LINE 8 0 10 -484.03124237432854 +620.710678118655 20 -255.50000000000006 +345.00000000000006 30 0.0 11 -484.03124237432854 +620.710678118655 21 -255.50000000000006 +361.66666666666674 31 0.0 0 @@ -4473,15 +4635,15 @@ LINE 8 0 10 -614.0312423743285 +458.4510113187008 20 -255.50000000000003 +164.2467777333486 30 0.0 11 -614.0312423743285 +458.4510113187008 21 -255.50000000000003 +175.0 31 0.0 0 @@ -4491,15 +4653,15 @@ LINE 8 0 10 -654.0312423743286 +490.7106781186549 20 -268.8333333333333 +164.2467777333486 30 0.0 11 -654.0312423743286 +458.4510113187008 21 -255.50000000000003 +164.2467777333486 31 0.0 0 @@ -4509,15 +4671,15 @@ LINE 8 0 10 -614.0312423743285 +490.7106781186549 20 -268.8333333333333 +175.0 30 0.0 11 -654.0312423743286 +490.7106781186549 21 -268.8333333333333 +164.2467777333486 31 0.0 0 @@ -4527,15 +4689,15 @@ LINE 8 0 10 -614.0312423743285 +596.7106781186549 20 -255.50000000000003 +125.00000000000001 30 0.0 11 -614.0312423743285 +604.710678118655 21 -268.8333333333333 +125.00000000000001 31 0.0 0 @@ -4545,15 +4707,15 @@ LINE 8 0 10 -462.35246120943856 +596.7106781186549 20 -118.27373961170336 +55.00000000000001 30 0.0 11 -462.35246120943856 +596.7106781186549 21 -125.50000000000001 +125.00000000000001 31 0.0 0 @@ -4563,15 +4725,15 @@ LINE 8 0 10 -484.03124237432854 +604.710678118655 20 -118.27373961170336 +55.00000000000001 30 0.0 11 -462.35246120943856 +596.7106781186549 21 -118.27373961170336 +55.00000000000001 31 0.0 0 @@ -4581,15 +4743,15 @@ LINE 8 0 10 -484.03124237432854 +604.710678118655 20 -125.50000000000001 +86.00000000000001 30 0.0 11 -484.03124237432854 +612.710678118655 21 -118.27373961170336 +86.00000000000001 31 0.0 0 @@ -4599,15 +4761,87 @@ LINE 8 0 10 -584.0312423743285 +612.710678118655 20 -95.5 +86.00000000000001 30 0.0 11 -594.0312423743285 +612.710678118655 21 -95.5 +94.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +612.710678118655 + 20 +94.00000000000001 + 30 +0.0 + 11 +604.710678118655 + 21 +94.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +604.710678118655 + 20 +94.00000000000001 + 30 +0.0 + 11 +604.710678118655 + 21 +86.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +618.0440114519882 + 20 +1.2500000000000002 + 30 +0.0 + 11 +618.0440114519882 + 21 +3.7500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +618.0440114519882 + 20 +3.7500000000000004 + 30 +0.0 + 11 +615.3773447853215 + 21 +3.7500000000000004 31 0.0 0 @@ -4617,15 +4851,15 @@ LINE 8 0 10 -584.0312423743285 +615.3773447853215 20 -45.5 +3.7500000000000004 30 0.0 11 -584.0312423743285 +615.3773447853215 21 -95.5 +1.2500000000000002 31 0.0 0 @@ -4635,15 +4869,15 @@ LINE 8 0 10 -594.0312423743285 +620.710678118655 20 -45.5 +86.00000000000001 30 0.0 11 -584.0312423743285 +628.710678118655 21 -45.5 +86.00000000000001 31 0.0 0 @@ -4653,15 +4887,15 @@ LINE 8 0 10 -594.0312423743285 +628.710678118655 20 -65.5 +86.00000000000001 30 0.0 11 -604.0312423743285 +628.710678118655 21 -65.5 +94.00000000000001 31 0.0 0 @@ -4671,15 +4905,33 @@ LINE 8 0 10 -604.0312423743285 +628.710678118655 20 -65.5 +94.00000000000001 + 30 +0.0 + 11 +620.710678118655 + 21 +94.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +620.710678118655 + 20 +94.00000000000001 30 0.0 11 -604.0312423743285 +620.710678118655 21 -75.50000000000001 +86.00000000000001 31 0.0 0 @@ -4689,15 +4941,15 @@ LINE 8 0 10 -604.0312423743285 +630.4606781186549 20 -75.50000000000001 +80.70454545454547 30 0.0 11 -594.0312423743285 +630.4606781186549 21 -75.50000000000001 +67.47727272727273 31 0.0 0 @@ -4707,15 +4959,15 @@ LINE 8 0 10 -594.0312423743285 +630.4606781186549 20 -75.50000000000001 +67.47727272727273 30 0.0 11 -594.0312423743285 +630.9606781186549 21 -65.5 +67.47727272727273 31 0.0 0 @@ -4725,15 +4977,15 @@ LINE 8 0 10 -610.6979090409952 +630.9606781186549 20 -11.750000000000002 +67.47727272727273 30 0.0 11 -610.6979090409952 +630.9606781186549 21 -14.250000000000002 +80.70454545454547 31 0.0 0 @@ -4743,15 +4995,15 @@ LINE 8 0 10 -610.6979090409952 +630.9606781186549 20 -14.250000000000002 +80.70454545454547 30 0.0 11 -607.364575707662 +630.4606781186549 21 -14.250000000000002 +80.70454545454547 31 0.0 0 @@ -4761,15 +5013,15 @@ LINE 8 0 10 -607.364575707662 +630.4606781186549 20 -14.250000000000002 +112.52272727272728 30 0.0 11 -607.364575707662 +630.4606781186549 21 -11.750000000000002 +99.29545454545456 31 0.0 0 @@ -4779,15 +5031,15 @@ LINE 8 0 10 -614.0312423743285 +630.4606781186549 20 -65.5 +99.29545454545456 30 0.0 11 -624.0312423743286 +630.9606781186549 21 -65.5 +99.29545454545456 31 0.0 0 @@ -4797,15 +5049,15 @@ LINE 8 0 10 -624.0312423743286 +630.9606781186549 20 -65.5 +99.29545454545456 30 0.0 11 -624.0312423743286 +630.9606781186549 21 -75.50000000000001 +112.52272727272728 31 0.0 0 @@ -4815,15 +5067,15 @@ LINE 8 0 10 -624.0312423743286 +630.9606781186549 20 -75.50000000000001 +112.52272727272728 30 0.0 11 -614.0312423743285 +630.4606781186549 21 -75.50000000000001 +112.52272727272728 31 0.0 0 @@ -4833,15 +5085,15 @@ LINE 8 0 10 -614.0312423743285 +448.40187590113186 20 -75.50000000000001 +217.3888829577983 30 0.0 11 -614.0312423743285 +443.7637963941598 21 -65.5 +227.64184496249058 31 0.0 0 @@ -4851,15 +5103,15 @@ LINE 8 0 10 -626.2812423743285 +443.7637963941598 20 -79.08333333333336 +227.64184496249058 30 0.0 11 -626.2812423743285 +443.308239676193 21 -61.91666666666668 +227.43576712109234 31 0.0 0 @@ -4869,15 +5121,15 @@ LINE 8 0 10 -626.2812423743285 +443.308239676193 20 -61.91666666666668 +227.43576712109234 30 0.0 11 -626.7812423743285 +447.94631918316514 21 -61.91666666666668 +217.18280511640006 31 0.0 0 @@ -4887,15 +5139,15 @@ LINE 8 0 10 -626.7812423743285 +447.94631918316514 20 -61.91666666666668 +217.18280511640006 30 0.0 11 -626.7812423743285 +448.40187590113186 21 -79.08333333333336 +217.3888829577983 31 0.0 0 @@ -4905,15 +5157,15 @@ LINE 8 0 10 -626.7812423743285 +657.9606781186549 20 -79.08333333333336 +258.58333333333337 30 0.0 11 -626.2812423743285 +657.9606781186549 21 -79.08333333333336 +241.41666666666669 31 0.0 0 @@ -4923,15 +5175,15 @@ LINE 8 0 10 -451.4594977301591 +657.9606781186549 20 -152.60350895639252 +241.41666666666669 30 0.0 11 -447.2416050225017 +658.4606781186549 21 -159.0768759855708 +241.41666666666669 31 0.0 0 @@ -4941,15 +5193,15 @@ LINE 8 0 10 -447.2416050225017 +658.4606781186549 20 -159.0768759855708 +241.41666666666669 30 0.0 11 -446.822685214998 +658.4606781186549 21 -158.80391775638356 +258.58333333333337 31 0.0 0 @@ -4959,15 +5211,15 @@ LINE 8 0 10 -446.822685214998 +658.4606781186549 20 -158.80391775638356 +258.58333333333337 30 0.0 11 -451.04057792265536 +657.9606781186549 21 -152.33055072720532 +258.58333333333337 31 0.0 0 @@ -4977,15 +5229,15 @@ LINE 8 0 10 -451.04057792265536 +654.0440114519881 20 -152.33055072720532 +162.50000000000003 30 0.0 11 -451.4594977301591 +654.0440114519881 21 -152.60350895639252 +170.83333333333334 31 0.0 0 @@ -4995,15 +5247,15 @@ LINE 8 0 10 -643.7812423743285 +654.0440114519881 20 -192.41666666666669 +170.83333333333334 30 0.0 11 -643.7812423743285 +637.3773447853216 21 -178.58333333333334 +170.83333333333334 31 0.0 0 @@ -5013,15 +5265,15 @@ LINE 8 0 10 -643.7812423743285 +637.3773447853216 20 -178.58333333333334 +170.83333333333334 30 0.0 11 -644.2812423743285 +637.3773447853216 21 -178.58333333333334 +162.50000000000003 31 0.0 0 @@ -5031,15 +5283,15 @@ LINE 8 0 10 -644.2812423743285 +657.9606781186549 20 -178.58333333333334 +278.5833333333333 30 0.0 11 -644.2812423743285 +657.9606781186549 21 -192.41666666666669 +261.4166666666667 31 0.0 0 @@ -5049,15 +5301,15 @@ LINE 8 0 10 -644.2812423743285 +657.9606781186549 20 -192.41666666666669 +261.4166666666667 30 0.0 11 -643.7812423743285 +658.4606781186549 21 -192.41666666666669 +261.4166666666667 31 0.0 0 @@ -5067,15 +5319,15 @@ LINE 8 0 10 -640.6979090409951 +658.4606781186549 20 -115.50000000000004 +261.4166666666667 30 0.0 11 -640.6979090409951 +658.4606781186549 21 -122.1666666666667 +278.5833333333333 31 0.0 0 @@ -5085,15 +5337,15 @@ LINE 8 0 10 -640.6979090409951 +658.4606781186549 20 -122.1666666666667 +278.5833333333333 30 0.0 11 -627.3645757076619 +657.9606781186549 21 -122.1666666666667 +278.5833333333333 31 0.0 0 @@ -5103,15 +5355,15 @@ LINE 8 0 10 -627.3645757076619 +469.20423358535214 20 -122.1666666666667 +353.06491669998854 30 0.0 11 -627.3645757076619 +469.20423358535214 21 -115.50000000000004 +347.6883055666629 31 0.0 0 @@ -5121,15 +5373,15 @@ LINE 8 0 10 -643.7812423743285 +469.20423358535214 20 -202.41666666666666 +347.6883055666629 30 0.0 11 -643.7812423743285 +479.95745585200353 21 -188.58333333333334 +347.6883055666629 31 0.0 0 @@ -5139,15 +5391,15 @@ LINE 8 0 10 -643.7812423743285 +479.95745585200353 20 -188.58333333333334 +347.6883055666629 30 0.0 11 -644.2812423743285 +479.95745585200353 21 -188.58333333333334 +353.06491669998854 31 0.0 0 @@ -5157,15 +5409,15 @@ LINE 8 0 10 -644.2812423743285 +443.76379639415967 20 -188.58333333333334 +292.3581550375095 30 0.0 11 -644.2812423743285 +448.4018759011318 21 -202.41666666666666 +302.6111170422017 31 0.0 0 @@ -5175,15 +5427,15 @@ LINE 8 0 10 -644.2812423743285 +448.4018759011318 20 -202.41666666666666 +302.6111170422017 30 0.0 11 -643.7812423743285 +447.94631918316503 21 -202.41666666666666 +302.81719488360005 31 0.0 0 @@ -5193,15 +5445,15 @@ LINE 8 0 10 -469.57872159773524 +447.94631918316503 20 -260.9196952912225 +302.81719488360005 30 0.0 11 -469.57872159773524 +443.30823967619295 21 -257.3065650970742 +292.5642328789077 31 0.0 0 @@ -5211,15 +5463,15 @@ LINE 8 0 10 -469.57872159773524 +443.30823967619295 20 -257.3065650970742 +292.5642328789077 30 0.0 11 -476.8049819860319 +443.76379639415967 21 -257.3065650970742 +292.3581550375095 31 0.0 0 @@ -5229,15 +5481,15 @@ LINE 8 0 10 -476.8049819860319 +615.1273447853216 20 -257.3065650970742 +341.0 30 0.0 11 -476.8049819860319 +618.2940114519882 21 -260.9196952912225 +341.0 31 0.0 0 @@ -5247,15 +5499,15 @@ LINE 8 0 10 -447.24160502250174 +618.2940114519882 20 -221.9231240144293 +341.0 30 0.0 11 -451.45949773015917 +618.2940114519882 21 -228.3964910436076 +341.5 31 0.0 0 @@ -5265,15 +5517,15 @@ LINE 8 0 10 -451.45949773015917 +618.2940114519882 20 -228.3964910436076 +341.5 30 0.0 11 -451.0405779226554 +615.1273447853216 21 -228.6694492727948 +341.5 31 0.0 0 @@ -5283,15 +5535,15 @@ LINE 8 0 10 -451.0405779226554 +615.1273447853216 20 -228.6694492727948 +341.5 30 0.0 11 -446.822685214998 +615.1273447853216 21 -222.1960822436165 +341.0 31 0.0 0 @@ -5301,15 +5553,15 @@ LINE 8 0 10 -446.822685214998 +637.3773447853216 20 -222.1960822436165 +357.50000000000006 30 0.0 11 -447.24160502250174 +637.3773447853216 21 -221.9231240144293 +349.16666666666674 31 0.0 0 @@ -5319,15 +5571,15 @@ LINE 8 0 10 -607.1145757076617 +637.3773447853216 20 -251.50000000000003 +349.16666666666674 30 0.0 11 -610.9479090409952 +654.0440114519881 21 -251.50000000000003 +349.16666666666674 31 0.0 0 @@ -5337,15 +5589,15 @@ LINE 8 0 10 -610.9479090409952 +654.0440114519881 20 -251.50000000000003 +349.16666666666674 30 0.0 11 -610.9479090409952 +654.0440114519881 21 -252.00000000000003 +357.50000000000006 31 0.0 0 @@ -5355,15 +5607,15 @@ LINE 8 0 10 -610.9479090409952 +479.95745585200353 20 -252.00000000000003 +166.93508330001148 30 0.0 11 -607.1145757076617 +479.95745585200353 21 -252.00000000000003 +172.31169443333718 31 0.0 0 @@ -5373,15 +5625,15 @@ LINE 8 0 10 -607.1145757076617 +479.95745585200353 20 -252.00000000000003 +172.31169443333718 30 0.0 11 -607.1145757076617 +469.20423358535214 21 -251.50000000000003 +172.31169443333718 31 0.0 0 @@ -5391,15 +5643,15 @@ LINE 8 0 10 -627.3645757076619 +469.20423358535214 20 -265.50000000000006 +172.31169443333718 30 0.0 11 -627.3645757076619 +469.20423358535214 21 -258.8333333333334 +166.93508330001148 31 0.0 0 @@ -5409,15 +5661,15 @@ LINE 8 0 10 -627.3645757076619 +598.7106781186549 20 -258.8333333333334 +67.72727272727273 30 0.0 11 -640.6979090409951 +598.7106781186549 21 -258.8333333333334 +63.727272727272734 31 0.0 0 @@ -5427,15 +5679,15 @@ LINE 8 0 10 -640.6979090409951 +598.7106781186549 20 -258.8333333333334 +63.727272727272734 30 0.0 11 -640.6979090409951 +602.710678118655 21 -265.50000000000006 +67.72727272727273 31 0.0 0 @@ -5445,15 +5697,15 @@ LINE 8 0 10 -476.80498198603186 +602.710678118655 20 -120.08030470877752 +67.72727272727273 30 0.0 11 -476.80498198603186 +602.710678118655 21 -123.69343490292586 +80.45454545454547 31 0.0 0 @@ -5463,15 +5715,15 @@ LINE 8 0 10 -476.80498198603186 +602.710678118655 20 -123.69343490292586 +80.45454545454547 30 0.0 11 -469.5787215977352 +598.7106781186549 21 -123.69343490292586 +84.45454545454547 31 0.0 0 @@ -5481,15 +5733,15 @@ LINE 8 0 10 -469.5787215977352 +598.7106781186549 20 -123.69343490292586 +84.45454545454547 30 0.0 11 -469.5787215977352 +598.7106781186549 21 -120.08030470877752 +80.45454545454547 31 0.0 0 @@ -5499,15 +5751,15 @@ LINE 8 0 10 -586.5312423743285 +598.7106781186549 20 -62.16666666666668 +99.54545454545455 30 0.0 11 -586.5312423743285 +598.7106781186549 21 -57.16666666666668 +95.54545454545456 31 0.0 0 @@ -5517,15 +5769,15 @@ LINE 8 0 10 -586.5312423743285 +598.7106781186549 20 -57.16666666666668 +95.54545454545456 30 0.0 11 -591.5312423743286 +602.710678118655 21 -62.16666666666668 +99.54545454545455 31 0.0 0 @@ -5535,15 +5787,15 @@ LINE 8 0 10 -591.5312423743286 +602.710678118655 20 -62.16666666666668 +99.54545454545455 30 0.0 11 -591.5312423743286 +602.710678118655 21 -78.83333333333336 +112.27272727272728 31 0.0 0 @@ -5553,15 +5805,15 @@ LINE 8 0 10 -591.5312423743286 +602.710678118655 20 -78.83333333333336 +112.27272727272728 30 0.0 11 -586.5312423743285 +598.7106781186549 21 -83.83333333333336 +116.27272727272728 31 0.0 0 @@ -5571,15 +5823,15 @@ LINE 8 0 10 -586.5312423743285 +598.7106781186549 20 -83.83333333333336 +116.27272727272728 30 0.0 11 -586.5312423743285 +598.7106781186549 21 -78.83333333333336 +112.27272727272728 31 0.0 0 diff --git a/rocolib/output/ESP32StackBoat/graph-lasercutter.svg b/rocolib/output/ESP32StackBoat/graph-lasercutter.svg index cb4fb1fb56908fd03836f674d5299aa666fbac26..fbe90f4b60bd0fd51135e3d3c6b56b9d2eda71b7 100644 --- a/rocolib/output/ESP32StackBoat/graph-lasercutter.svg +++ b/rocolib/output/ESP32StackBoat/graph-lasercutter.svg @@ -1,258 +1,272 @@ <?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="268.833333mm" version="1.1" viewBox="0.000000 0.000000 654.031242 268.833333" width="654.031242mm"> +<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="361.666667mm" version="1.1" viewBox="0.000000 0.000000 670.710678 361.666667" width="670.710678mm"> <defs/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="34.0" x2="34.0" y1="45.0" y2="96.00000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="10.000000000000002" x2="10.000000000000002" y1="96.00000000000001" y2="45.0"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="10.000000000000002" x2="22.000000000000004" y1="45.0" y2="45.0"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="22.000000000000004" x2="34.0" y1="45.0" y2="45.0"/> - <line stroke="#000000" x1="34.0" x2="34.0" y1="45.0" y2="45.0"/> - <line stroke="#000000" x1="10.000000000000002" x2="10.000000000000002" y1="45.0" y2="45.0"/> - <line stroke="#000000" x1="10.000000000000002" x2="10.000000000000002" y1="5.000000000000001" y2="45.0"/> - <line stroke="#000000" x1="22.000000000000004" x2="22.000000000000004" y1="45.0" y2="5.000000000000001"/> - <line stroke="#000000" x1="10.000000000000002" x2="10.000000000000002" y1="0.0" y2="5.000000000000001"/> - <line stroke="#000000" x1="22.000000000000004" x2="10.000000000000002" y1="0.0" y2="0.0"/> - <line stroke="#000000" x1="22.000000000000004" x2="22.000000000000004" y1="5.000000000000001" y2="0.0"/> - <line stroke="#000000" x1="22.000000000000004" x2="22.000000000000004" y1="5.000000000000001" y2="45.0"/> - <line stroke="#000000" x1="34.0" x2="34.0" y1="45.0" y2="5.000000000000001"/> - <line stroke="#000000" x1="22.000000000000004" x2="22.000000000000004" y1="0.0" y2="5.000000000000001"/> - <line stroke="#000000" x1="34.0" x2="22.000000000000004" y1="0.0" y2="0.0"/> - <line stroke="#000000" x1="34.0" x2="34.0" y1="5.000000000000001" y2="0.0"/> - <line stroke="#000000" x1="70.00000000000001" x2="34.0" y1="45.0" y2="45.0"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="70.00000000000001" x2="70.00000000000001" y1="45.0" y2="96.00000000000001"/> - <line stroke="#000000" x1="34.0" x2="70.00000000000001" y1="96.00000000000001" y2="96.00000000000001"/> - <line stroke="#000000" x1="94.00000000000001" x2="70.00000000000001" y1="45.0" y2="45.0"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="94.00000000000001" x2="94.00000000000001" y1="45.0" y2="96.00000000000001"/> - <line stroke="#000000" x1="70.00000000000001" x2="94.00000000000001" y1="96.00000000000001" y2="96.00000000000001"/> - <line stroke="#000000" x1="130.0" x2="94.00000000000001" y1="45.0" y2="45.0"/> - <line stroke="#000000" x1="130.0" x2="130.0" y1="96.00000000000001" y2="45.0"/> - <line stroke="#000000" x1="94.00000000000001" x2="130.0" y1="96.00000000000001" y2="96.00000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="34.0" x2="22.000000000000004" y1="96.00000000000001" y2="96.00000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="22.000000000000004" x2="10.000000000000002" y1="96.00000000000001" y2="96.00000000000001"/> - <line stroke="#000000" x1="10.000000000000002" x2="10.000000000000002" y1="96.00000000000001" y2="96.00000000000001"/> - <line stroke="#000000" x1="34.0" x2="34.0" y1="96.00000000000001" y2="96.00000000000001"/> - <line stroke="#000000" x1="34.0" x2="34.0" y1="136.0" y2="96.00000000000001"/> - <line stroke="#000000" x1="22.000000000000004" x2="22.000000000000004" y1="96.00000000000001" y2="136.0"/> - <line stroke="#000000" x1="34.0" x2="34.0" y1="141.0" y2="136.0"/> - <line stroke="#000000" x1="22.000000000000004" x2="34.0" y1="141.0" y2="141.0"/> - <line stroke="#000000" x1="22.000000000000004" x2="22.000000000000004" y1="136.0" y2="141.0"/> - <line stroke="#000000" x1="22.000000000000004" x2="22.000000000000004" y1="136.0" y2="96.00000000000001"/> - <line stroke="#000000" x1="10.000000000000002" x2="10.000000000000002" y1="96.00000000000001" y2="136.0"/> - <line stroke="#000000" x1="22.000000000000004" x2="22.000000000000004" y1="141.0" y2="136.0"/> - <line stroke="#000000" x1="10.000000000000002" x2="22.000000000000004" y1="141.0" y2="141.0"/> - <line stroke="#000000" x1="10.000000000000002" x2="10.000000000000002" y1="136.0" y2="141.0"/> - <line stroke="#000000" x1="0.0" x2="10.000000000000002" y1="96.00000000000001" y2="96.00000000000001"/> - <line stroke="#000000" x1="0.0" x2="0.0" y1="45.0" y2="96.00000000000001"/> - <line stroke="#000000" x1="10.000000000000002" x2="0.0" y1="45.0" y2="45.0"/> - <line stroke="#888888" x1="11.400000000000002" x2="12.6" y1="50.0" y2="50.0"/> - <line stroke="#888888" x1="12.6" x2="12.6" y1="50.0" y2="91.0"/> - <line stroke="#888888" x1="12.6" x2="11.400000000000002" y1="91.0" y2="91.0"/> - <line stroke="#888888" x1="11.400000000000002" x2="11.400000000000002" y1="91.0" y2="50.0"/> - <line stroke="#888888" x1="31.400000000000002" x2="32.60000000000001" y1="50.50000000000001" y2="50.50000000000001"/> - <line stroke="#888888" x1="32.60000000000001" x2="32.60000000000001" y1="50.50000000000001" y2="80.50000000000001"/> - <line stroke="#888888" x1="32.60000000000001" x2="31.400000000000002" y1="80.50000000000001" y2="80.50000000000001"/> - <line stroke="#888888" x1="31.400000000000002" x2="31.400000000000002" y1="80.50000000000001" y2="50.50000000000001"/> - <line stroke="#888888" x1="18.000000000000004" x2="18.000000000000004" y1="1.2500000000000002" y2="3.7500000000000004"/> - <line stroke="#888888" x1="18.000000000000004" x2="14.000000000000002" y1="3.7500000000000004" y2="3.7500000000000004"/> - <line stroke="#888888" x1="14.000000000000002" x2="14.000000000000002" y1="3.7500000000000004" y2="1.2500000000000002"/> - <line stroke="#888888" x1="30.000000000000004" x2="30.000000000000004" y1="1.2500000000000002" y2="3.7500000000000004"/> - <line stroke="#888888" x1="30.000000000000004" x2="26.000000000000004" y1="3.7500000000000004" y2="3.7500000000000004"/> - <line stroke="#888888" x1="26.000000000000004" x2="26.000000000000004" y1="3.7500000000000004" y2="1.2500000000000002"/> - <line stroke="#888888" x1="30.000000000000004" x2="30.000000000000004" y1="91.50000000000001" y2="73.50000000000001"/> - <line stroke="#888888" x1="30.000000000000004" x2="60.00000000000001" y1="73.50000000000001" y2="73.50000000000001"/> - <line stroke="#888888" x1="60.00000000000001" x2="60.00000000000001" y1="73.50000000000001" y2="91.50000000000001"/> - <line stroke="#888888" x1="60.00000000000001" x2="30.000000000000004" y1="91.50000000000001" y2="91.50000000000001"/> - <line stroke="#888888" x1="91.40000000000002" x2="92.60000000000001" y1="50.0" y2="50.0"/> - <line stroke="#888888" x1="92.60000000000001" x2="92.60000000000001" y1="50.0" y2="91.0"/> - <line stroke="#888888" x1="92.60000000000001" x2="91.40000000000002" y1="91.0" y2="91.0"/> - <line stroke="#888888" x1="91.40000000000002" x2="91.40000000000002" y1="91.0" y2="50.0"/> - <line stroke="#888888" x1="71.4" x2="72.60000000000001" y1="50.50000000000001" y2="50.50000000000001"/> - <line stroke="#888888" x1="72.60000000000001" x2="72.60000000000001" y1="50.50000000000001" y2="80.50000000000001"/> - <line stroke="#888888" x1="72.60000000000001" x2="71.4" y1="80.50000000000001" y2="80.50000000000001"/> - <line stroke="#888888" x1="71.4" x2="71.4" y1="80.50000000000001" y2="50.50000000000001"/> - <line stroke="#888888" x1="97.00000000000001" x2="97.00000000000001" y1="54.00000000000001" y2="47.00000000000001"/> - <line stroke="#888888" x1="97.00000000000001" x2="117.00000000000001" y1="47.00000000000001" y2="47.00000000000001"/> - <line stroke="#888888" x1="117.00000000000001" x2="117.00000000000001" y1="47.00000000000001" y2="54.00000000000001"/> - <line stroke="#888888" x1="117.00000000000001" x2="97.00000000000001" y1="54.00000000000001" y2="54.00000000000001"/> - <line stroke="#888888" x1="122.25000000000001" x2="122.25000000000001" y1="79.25000000000001" y2="61.75000000000001"/> - <line stroke="#888888" x1="122.25000000000001" x2="122.75000000000001" y1="61.75000000000001" y2="61.75000000000001"/> - <line stroke="#888888" x1="122.75000000000001" x2="122.75000000000001" y1="61.75000000000001" y2="79.25000000000001"/> - <line stroke="#888888" x1="122.75000000000001" x2="122.25000000000001" y1="79.25000000000001" y2="79.25000000000001"/> - <line stroke="#888888" x1="26.000000000000004" x2="26.000000000000004" y1="139.75000000000003" y2="137.25000000000003"/> - <line stroke="#888888" x1="26.000000000000004" x2="30.000000000000004" y1="137.25000000000003" y2="137.25000000000003"/> - <line stroke="#888888" x1="30.000000000000004" x2="30.000000000000004" y1="137.25000000000003" y2="139.75000000000003"/> - <line stroke="#888888" x1="14.000000000000002" x2="14.000000000000002" y1="139.75000000000003" y2="137.25000000000003"/> - <line stroke="#888888" x1="14.000000000000002" x2="18.000000000000004" y1="137.25000000000003" y2="137.25000000000003"/> - <line stroke="#888888" x1="18.000000000000004" x2="18.000000000000004" y1="137.25000000000003" y2="139.75000000000003"/> - <line stroke="#888888" x1="2.5000000000000004" x2="2.5000000000000004" y1="62.000000000000014" y2="57.00000000000001"/> - <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="57.00000000000001" y2="62.000000000000014"/> - <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="62.000000000000014" y2="79.00000000000001"/> - <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="79.00000000000001" y2="84.0"/> - <line stroke="#888888" x1="2.5000000000000004" x2="2.5000000000000004" y1="84.0" y2="79.00000000000001"/> - <line stroke="#000000" x1="186.00000000000003" x2="140.00000000000003" y1="70.5" y2="70.5"/> - <line stroke="#000000" x1="198.0" x2="186.00000000000003" y1="70.5" y2="70.5"/> - <line stroke="#000000" x1="210.00000000000003" x2="198.0" y1="70.5" y2="70.5"/> - <line stroke="#000000" x1="222.00000000000003" x2="210.00000000000003" y1="70.5" y2="70.5"/> - <line stroke="#000000" x1="234.00000000000003" x2="222.00000000000003" y1="70.5" y2="70.5"/> - <line stroke="#000000" x1="246.00000000000003" x2="234.00000000000003" y1="70.5" y2="70.5"/> - <line stroke="#000000" x1="258.0" x2="246.00000000000003" y1="70.5" y2="70.5"/> - <line stroke="#000000" x1="270.00000000000006" x2="258.0" y1="70.5" y2="70.5"/> - <line stroke="#000000" x1="270.00000000000006" x2="270.00000000000006" y1="70.5" y2="70.5"/> - <line stroke="#000000" x1="140.00000000000003" x2="270.00000000000006" y1="70.5" y2="70.5"/> - <line stroke="#000000" x1="140.00000000000003" x2="140.00000000000003" y1="70.5" y2="70.5"/> - <line stroke="#888888" x1="206.25000000000003" x2="201.75000000000003" y1="74.50000000000001" y2="74.50000000000001"/> - <line stroke="#888888" x1="201.75000000000003" x2="201.75000000000003" y1="74.50000000000001" y2="74.0"/> - <line stroke="#888888" x1="201.75000000000003" x2="206.25000000000003" y1="74.0" y2="74.0"/> - <line stroke="#888888" x1="206.25000000000003" x2="206.25000000000003" y1="74.0" y2="74.50000000000001"/> - <line stroke="#888888" x1="218.25000000000003" x2="213.75" y1="74.50000000000001" y2="74.50000000000001"/> - <line stroke="#888888" x1="213.75" x2="213.75" y1="74.50000000000001" y2="74.0"/> - <line stroke="#888888" x1="213.75" x2="218.25000000000003" y1="74.0" y2="74.0"/> - <line stroke="#888888" x1="218.25000000000003" x2="218.25000000000003" y1="74.0" y2="74.50000000000001"/> - <line stroke="#000000" x1="326.00000000000006" x2="280.00000000000006" y1="70.5" y2="70.5"/> - <line stroke="#000000" x1="338.00000000000006" x2="326.00000000000006" y1="70.5" y2="70.5"/> - <line stroke="#000000" x1="350.0" x2="338.00000000000006" y1="70.5" y2="70.5"/> - <line stroke="#000000" x1="362.00000000000006" x2="350.0" y1="70.5" y2="70.5"/> - <line stroke="#000000" x1="374.00000000000006" x2="362.00000000000006" y1="70.5" y2="70.5"/> - <line stroke="#000000" x1="386.00000000000006" x2="374.00000000000006" y1="70.5" y2="70.5"/> - <line stroke="#000000" x1="398.00000000000006" x2="386.00000000000006" y1="70.5" y2="70.5"/> - <line stroke="#000000" x1="410.00000000000006" x2="398.00000000000006" y1="70.5" y2="70.5"/> - <line stroke="#000000" x1="410.00000000000006" x2="410.00000000000006" y1="70.5" y2="70.5"/> - <line stroke="#000000" x1="280.00000000000006" x2="410.00000000000006" y1="70.5" y2="70.5"/> - <line stroke="#000000" x1="280.00000000000006" x2="280.00000000000006" y1="70.5" y2="70.5"/> - <line stroke="#888888" x1="334.25000000000006" x2="329.75000000000006" y1="74.50000000000001" y2="74.50000000000001"/> - <line stroke="#888888" x1="329.75000000000006" x2="329.75000000000006" y1="74.50000000000001" y2="74.0"/> - <line stroke="#888888" x1="329.75000000000006" x2="334.25000000000006" y1="74.0" y2="74.0"/> - <line stroke="#888888" x1="334.25000000000006" x2="334.25000000000006" y1="74.0" y2="74.50000000000001"/> - <line stroke="#888888" x1="346.25" x2="341.75" y1="74.50000000000001" y2="74.50000000000001"/> - <line stroke="#888888" x1="341.75" x2="341.75" y1="74.50000000000001" y2="74.0"/> - <line stroke="#888888" x1="341.75" x2="346.25" y1="74.0" y2="74.0"/> - <line stroke="#888888" x1="346.25" x2="346.25" y1="74.0" y2="74.50000000000001"/> - <line stroke="#000000" x1="604.0312423743285" x2="594.0312423743285" y1="45.5" y2="45.5"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="604.0312423743285" x2="604.0312423743285" y1="45.5" y2="95.5"/> - <line stroke="#000000" x1="594.0312423743285" x2="604.0312423743285" y1="95.5" y2="95.5"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="594.0312423743285" x2="594.0312423743285" y1="95.5" y2="45.5"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="614.0312423743285" x2="614.0312423743285" y1="45.5" y2="95.5"/> - <line stroke="#000000" x1="614.0312423743285" x2="614.0312423743285" y1="45.5" y2="15.500000000000004"/> - <line stroke="#000000" x1="604.0312423743285" x2="604.0312423743285" y1="15.500000000000004" y2="45.5"/> - <line stroke="#000000" x1="604.0312423743285" x2="604.0312423743285" y1="10.5" y2="15.500000000000004"/> - <line stroke="#000000" x1="614.0312423743285" x2="604.0312423743285" y1="10.5" y2="10.5"/> - <line stroke="#000000" x1="614.0312423743285" x2="614.0312423743285" y1="15.500000000000004" y2="10.5"/> - <line stroke="#000000" x1="624.0312423743286" x2="614.0312423743285" y1="45.5" y2="45.5"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="624.0312423743286" x2="624.0312423743286" y1="45.5" y2="95.5"/> - <line stroke="#000000" x1="614.0312423743285" x2="624.0312423743286" y1="95.5" y2="95.5"/> - <line stroke="#000000" x1="634.0312423743286" x2="624.0312423743286" y1="45.5" y2="45.5"/> - <line stroke="#000000" x1="634.0312423743286" x2="634.0312423743286" y1="95.5" y2="45.5"/> - <line stroke="#000000" x1="624.0312423743286" x2="634.0312423743286" y1="95.5" y2="95.5"/> - <line stroke="#000000" x1="604.0312423743285" x2="604.0312423743285" y1="95.5" y2="125.50000000000001"/> - <line stroke="#000000" x1="614.0312423743285" x2="614.0312423743285" y1="125.50000000000001" y2="95.5"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="614.0312423743285" x2="604.0312423743285" y1="125.50000000000001" y2="125.50000000000001"/> - <line stroke="#000000" x1="604.0312423743285" x2="484.03124237432854" y1="125.50000000000001" y2="125.50000000000001"/> - <line stroke="#000000" x1="614.0312423743285" x2="614.0312423743285" y1="125.50000000000001" y2="125.50000000000001"/> - <line stroke="#000000" x1="484.03124237432854" x2="484.03124237432854" y1="125.50000000000001" y2="125.50000000000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="484.03124237432854" x2="614.0312423743285" y1="165.50000000000003" y2="165.50000000000003"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="484.03124237432854" x2="484.03124237432854" y1="125.50000000000001" y2="165.50000000000003"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="462.35246120943856" x2="484.03124237432854" y1="125.50000000000001" y2="165.50000000000003"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="462.35246120943856" x2="484.03124237432854" y1="125.50000000000001" y2="125.50000000000001"/> - <line stroke="#000000" x1="462.35246120943856" x2="450.51765777402795" y1="125.50000000000001" y2="143.66334166502364"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="450.51765777402795" x2="484.03124237432854" y1="143.66334166502364" y2="165.50000000000003"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="420.00000000000006" x2="484.03124237432854" y1="190.50000000000003" y2="165.50000000000003"/> - <line stroke="#000000" x1="438.68285433861735" x2="420.00000000000006" y1="161.8266833300472" y2="190.50000000000003"/> - <line stroke="#000000" x1="450.51765777402795" x2="438.68285433861735" y1="143.6633416650236" y2="161.8266833300472"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="484.03124237432854" x2="484.03124237432854" y1="165.50000000000003" y2="190.50000000000003"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="484.03124237432854" x2="484.03124237432854" y1="190.50000000000003" y2="215.50000000000003"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="420.00000000000006" x2="484.03124237432854" y1="190.50000000000003" y2="215.50000000000003"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="484.03124237432854" x2="614.0312423743285" y1="215.50000000000003" y2="215.50000000000003"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="614.0312423743285" x2="614.0312423743285" y1="190.50000000000003" y2="165.50000000000003"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="614.0312423743285" x2="614.0312423743285" y1="215.50000000000003" y2="190.50000000000003"/> - <line stroke="#000000" x1="654.0312423743286" x2="654.0312423743286" y1="205.5" y2="165.50000000000003"/> - <line stroke="#000000" x1="654.0312423743286" x2="654.0312423743286" y1="190.50000000000003" y2="205.5"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="614.0312423743285" x2="654.0312423743286" y1="165.50000000000003" y2="165.50000000000003"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="614.0312423743285" x2="654.0312423743286" y1="165.50000000000003" y2="125.50000000000003"/> - <line stroke="#000000" x1="654.0312423743286" x2="654.0312423743286" y1="165.50000000000003" y2="125.50000000000003"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="614.0312423743285" x2="654.0312423743286" y1="125.50000000000003" y2="125.50000000000004"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="614.0312423743285" x2="614.0312423743285" y1="165.50000000000003" y2="125.50000000000003"/> - <line stroke="#000000" x1="614.0312423743285" x2="614.0312423743285" y1="112.1666666666667" y2="125.50000000000004"/> - <line stroke="#000000" x1="654.0312423743286" x2="614.0312423743285" y1="112.16666666666671" y2="112.1666666666667"/> - <line stroke="#000000" x1="654.0312423743286" x2="654.0312423743286" y1="125.50000000000004" y2="112.16666666666671"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="654.0312423743286" x2="614.0312423743285" y1="215.50000000000003" y2="215.50000000000003"/> - <line stroke="#000000" x1="654.0312423743286" x2="654.0312423743286" y1="175.5" y2="190.50000000000003"/> - <line stroke="#000000" x1="654.0312423743286" x2="654.0312423743286" y1="215.50000000000003" y2="175.5"/> - <line stroke="#000000" x1="654.0312423743286" x2="654.0312423743286" y1="255.5" y2="215.50000000000003"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="654.0312423743286" x2="614.0312423743285" y1="255.5" y2="215.50000000000003"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="614.0312423743285" x2="614.0312423743285" y1="255.50000000000006" y2="215.50000000000006"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="654.0312423743286" x2="614.0312423743285" y1="255.50000000000003" y2="255.50000000000006"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="484.03124237432854" x2="484.03124237432854" y1="215.50000000000009" y2="255.50000000000009"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="484.03124237432854" x2="462.3524612094386" y1="255.50000000000006" y2="255.50000000000009"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="484.03124237432854" x2="462.3524612094386" y1="215.50000000000009" y2="255.50000000000009"/> - <line stroke="#000000" x1="484.03124237432854" x2="484.03124237432854" y1="262.7262603882967" y2="255.50000000000006"/> - <line stroke="#000000" x1="462.35246120943856" x2="484.03124237432854" y1="262.7262603882967" y2="262.7262603882967"/> - <line stroke="#000000" x1="462.35246120943856" x2="462.35246120943856" y1="255.50000000000006" y2="262.7262603882967"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="484.03124237432854" x2="450.517657774028" y1="215.50000000000009" y2="237.33665833497648"/> - <line stroke="#000000" x1="450.517657774028" x2="462.35246120943856" y1="237.33665833497648" y2="255.50000000000006"/> - <line stroke="#000000" x1="438.68285433861735" x2="450.517657774028" y1="219.1733166699529" y2="237.33665833497648"/> - <line stroke="#000000" x1="420.00000000000006" x2="438.68285433861735" y1="190.50000000000009" y2="219.1733166699529"/> - <line stroke="#000000" x1="604.0312423743285" x2="614.0312423743285" y1="255.50000000000003" y2="255.50000000000003"/> - <line stroke="#000000" x1="484.03124237432854" x2="604.0312423743285" y1="255.50000000000006" y2="255.50000000000003"/> - <line stroke="#000000" x1="484.03124237432854" x2="484.03124237432854" y1="255.50000000000006" y2="255.50000000000006"/> - <line stroke="#000000" x1="614.0312423743285" x2="614.0312423743285" y1="255.50000000000003" y2="255.50000000000003"/> - <line stroke="#000000" x1="654.0312423743286" x2="654.0312423743286" y1="268.8333333333333" y2="255.50000000000003"/> - <line stroke="#000000" x1="614.0312423743285" x2="654.0312423743286" y1="268.8333333333333" y2="268.8333333333333"/> - <line stroke="#000000" x1="614.0312423743285" x2="614.0312423743285" y1="255.50000000000003" y2="268.8333333333333"/> - <line stroke="#000000" x1="462.35246120943856" x2="462.35246120943856" y1="118.27373961170336" y2="125.50000000000001"/> - <line stroke="#000000" x1="484.03124237432854" x2="462.35246120943856" y1="118.27373961170336" y2="118.27373961170336"/> - <line stroke="#000000" x1="484.03124237432854" x2="484.03124237432854" y1="125.50000000000001" y2="118.27373961170336"/> - <line stroke="#000000" x1="584.0312423743285" x2="594.0312423743285" y1="95.5" y2="95.5"/> - <line stroke="#000000" x1="584.0312423743285" x2="584.0312423743285" y1="45.5" y2="95.5"/> - <line stroke="#000000" x1="594.0312423743285" x2="584.0312423743285" y1="45.5" y2="45.5"/> - <line stroke="#888888" x1="594.0312423743285" x2="604.0312423743285" y1="65.5" y2="65.5"/> - <line stroke="#888888" x1="604.0312423743285" x2="604.0312423743285" y1="65.5" y2="75.50000000000001"/> - <line stroke="#888888" x1="604.0312423743285" x2="594.0312423743285" y1="75.50000000000001" y2="75.50000000000001"/> - <line stroke="#888888" x1="594.0312423743285" x2="594.0312423743285" y1="75.50000000000001" y2="65.5"/> - <line stroke="#888888" x1="610.6979090409952" x2="610.6979090409952" y1="11.750000000000002" y2="14.250000000000002"/> - <line stroke="#888888" x1="610.6979090409952" x2="607.364575707662" y1="14.250000000000002" y2="14.250000000000002"/> - <line stroke="#888888" x1="607.364575707662" x2="607.364575707662" y1="14.250000000000002" y2="11.750000000000002"/> - <line stroke="#888888" x1="614.0312423743285" x2="624.0312423743286" y1="65.5" y2="65.5"/> - <line stroke="#888888" x1="624.0312423743286" x2="624.0312423743286" y1="65.5" y2="75.50000000000001"/> - <line stroke="#888888" x1="624.0312423743286" x2="614.0312423743285" y1="75.50000000000001" y2="75.50000000000001"/> - <line stroke="#888888" x1="614.0312423743285" x2="614.0312423743285" y1="75.50000000000001" y2="65.5"/> - <line stroke="#888888" x1="626.2812423743285" x2="626.2812423743285" y1="79.08333333333336" y2="61.91666666666668"/> - <line stroke="#888888" x1="626.2812423743285" x2="626.7812423743285" y1="61.91666666666668" y2="61.91666666666668"/> - <line stroke="#888888" x1="626.7812423743285" x2="626.7812423743285" y1="61.91666666666668" y2="79.08333333333336"/> - <line stroke="#888888" x1="626.7812423743285" x2="626.2812423743285" y1="79.08333333333336" y2="79.08333333333336"/> - <line stroke="#888888" x1="451.4594977301591" x2="447.2416050225017" y1="152.60350895639252" y2="159.0768759855708"/> - <line stroke="#888888" x1="447.2416050225017" x2="446.822685214998" y1="159.0768759855708" y2="158.80391775638356"/> - <line stroke="#888888" x1="446.822685214998" x2="451.04057792265536" y1="158.80391775638356" y2="152.33055072720532"/> - <line stroke="#888888" x1="451.04057792265536" x2="451.4594977301591" y1="152.33055072720532" y2="152.60350895639252"/> - <line stroke="#888888" x1="643.7812423743285" x2="643.7812423743285" y1="192.41666666666669" y2="178.58333333333334"/> - <line stroke="#888888" x1="643.7812423743285" x2="644.2812423743285" y1="178.58333333333334" y2="178.58333333333334"/> - <line stroke="#888888" x1="644.2812423743285" x2="644.2812423743285" y1="178.58333333333334" y2="192.41666666666669"/> - <line stroke="#888888" x1="644.2812423743285" x2="643.7812423743285" y1="192.41666666666669" y2="192.41666666666669"/> - <line stroke="#888888" x1="640.6979090409951" x2="640.6979090409951" y1="115.50000000000004" y2="122.1666666666667"/> - <line stroke="#888888" x1="640.6979090409951" x2="627.3645757076619" y1="122.1666666666667" y2="122.1666666666667"/> - <line stroke="#888888" x1="627.3645757076619" x2="627.3645757076619" y1="122.1666666666667" y2="115.50000000000004"/> - <line stroke="#888888" x1="643.7812423743285" x2="643.7812423743285" y1="202.41666666666666" y2="188.58333333333334"/> - <line stroke="#888888" x1="643.7812423743285" x2="644.2812423743285" y1="188.58333333333334" y2="188.58333333333334"/> - <line stroke="#888888" x1="644.2812423743285" x2="644.2812423743285" y1="188.58333333333334" y2="202.41666666666666"/> - <line stroke="#888888" x1="644.2812423743285" x2="643.7812423743285" y1="202.41666666666666" y2="202.41666666666666"/> - <line stroke="#888888" x1="469.57872159773524" x2="469.57872159773524" y1="260.9196952912225" y2="257.3065650970742"/> - <line stroke="#888888" x1="469.57872159773524" x2="476.8049819860319" y1="257.3065650970742" y2="257.3065650970742"/> - <line stroke="#888888" x1="476.8049819860319" x2="476.8049819860319" y1="257.3065650970742" y2="260.9196952912225"/> - <line stroke="#888888" x1="447.24160502250174" x2="451.45949773015917" y1="221.9231240144293" y2="228.3964910436076"/> - <line stroke="#888888" x1="451.45949773015917" x2="451.0405779226554" y1="228.3964910436076" y2="228.6694492727948"/> - <line stroke="#888888" x1="451.0405779226554" x2="446.822685214998" y1="228.6694492727948" y2="222.1960822436165"/> - <line stroke="#888888" x1="446.822685214998" x2="447.24160502250174" y1="222.1960822436165" y2="221.9231240144293"/> - <line stroke="#888888" x1="607.1145757076617" x2="610.9479090409952" y1="251.50000000000003" y2="251.50000000000003"/> - <line stroke="#888888" x1="610.9479090409952" x2="610.9479090409952" y1="251.50000000000003" y2="252.00000000000003"/> - <line stroke="#888888" x1="610.9479090409952" x2="607.1145757076617" y1="252.00000000000003" y2="252.00000000000003"/> - <line stroke="#888888" x1="607.1145757076617" x2="607.1145757076617" y1="252.00000000000003" y2="251.50000000000003"/> - <line stroke="#888888" x1="627.3645757076619" x2="627.3645757076619" y1="265.50000000000006" y2="258.8333333333334"/> - <line stroke="#888888" x1="627.3645757076619" x2="640.6979090409951" y1="258.8333333333334" y2="258.8333333333334"/> - <line stroke="#888888" x1="640.6979090409951" x2="640.6979090409951" y1="258.8333333333334" y2="265.50000000000006"/> - <line stroke="#888888" x1="476.80498198603186" x2="476.80498198603186" y1="120.08030470877752" y2="123.69343490292586"/> - <line stroke="#888888" x1="476.80498198603186" x2="469.5787215977352" y1="123.69343490292586" y2="123.69343490292586"/> - <line stroke="#888888" x1="469.5787215977352" x2="469.5787215977352" y1="123.69343490292586" y2="120.08030470877752"/> - <line stroke="#888888" x1="586.5312423743285" x2="586.5312423743285" y1="62.16666666666668" y2="57.16666666666668"/> - <line stroke="#888888" x1="586.5312423743285" x2="591.5312423743286" y1="57.16666666666668" y2="62.16666666666668"/> - <line stroke="#888888" x1="591.5312423743286" x2="591.5312423743286" y1="62.16666666666668" y2="78.83333333333336"/> - <line stroke="#888888" x1="591.5312423743286" x2="586.5312423743285" y1="78.83333333333336" y2="83.83333333333336"/> - <line stroke="#888888" x1="586.5312423743285" x2="586.5312423743285" y1="83.83333333333336" y2="78.83333333333336"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="34.0" x2="34.0" y1="59.50000000000001" y2="120.50000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="10.000000000000002" x2="10.000000000000002" y1="120.50000000000001" y2="59.50000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="10.000000000000002" x2="22.000000000000004" y1="59.50000000000001" y2="59.50000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="22.000000000000004" x2="34.0" y1="59.50000000000001" y2="59.50000000000001"/> + <line stroke="#000000" x1="34.0" x2="34.0" y1="59.50000000000001" y2="59.50000000000001"/> + <line stroke="#000000" x1="10.000000000000002" x2="10.000000000000002" y1="59.50000000000001" y2="59.50000000000001"/> + <line stroke="#000000" x1="10.000000000000002" x2="10.000000000000002" y1="19.500000000000004" y2="59.50000000000001"/> + <line stroke="#000000" x1="22.000000000000004" x2="22.000000000000004" y1="59.50000000000001" y2="19.500000000000004"/> + <line stroke="#000000" x1="10.000000000000002" x2="10.000000000000002" y1="14.5" y2="19.500000000000004"/> + <line stroke="#000000" x1="22.000000000000004" x2="10.000000000000002" y1="14.5" y2="14.5"/> + <line stroke="#000000" x1="22.000000000000004" x2="22.000000000000004" y1="19.500000000000004" y2="14.5"/> + <line stroke="#000000" x1="22.000000000000004" x2="22.000000000000004" y1="19.500000000000004" y2="59.50000000000001"/> + <line stroke="#000000" x1="34.0" x2="34.0" y1="59.50000000000001" y2="19.500000000000004"/> + <line stroke="#000000" x1="22.000000000000004" x2="22.000000000000004" y1="14.5" y2="19.500000000000004"/> + <line stroke="#000000" x1="34.0" x2="22.000000000000004" y1="14.5" y2="14.5"/> + <line stroke="#000000" x1="34.0" x2="34.0" y1="19.500000000000004" y2="14.5"/> + <line stroke="#000000" x1="70.00000000000001" x2="34.0" y1="59.50000000000001" y2="59.50000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="70.00000000000001" x2="70.00000000000001" y1="59.50000000000001" y2="120.50000000000001"/> + <line stroke="#000000" x1="34.0" x2="70.00000000000001" y1="120.50000000000001" y2="120.50000000000001"/> + <line stroke="#000000" x1="94.00000000000001" x2="70.00000000000001" y1="59.50000000000001" y2="59.50000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="94.00000000000001" x2="94.00000000000001" y1="59.50000000000001" y2="120.50000000000001"/> + <line stroke="#000000" x1="70.00000000000001" x2="94.00000000000001" y1="120.50000000000001" y2="120.50000000000001"/> + <line stroke="#000000" x1="130.0" x2="94.00000000000001" y1="59.50000000000001" y2="59.50000000000001"/> + <line stroke="#000000" x1="130.0" x2="130.0" y1="120.50000000000001" y2="59.50000000000001"/> + <line stroke="#000000" x1="94.00000000000001" x2="130.0" y1="120.50000000000001" y2="120.50000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="34.0" x2="22.000000000000004" y1="120.50000000000001" y2="120.50000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="22.000000000000004" x2="10.000000000000002" y1="120.50000000000001" y2="120.50000000000001"/> + <line stroke="#000000" x1="10.000000000000002" x2="10.000000000000002" y1="120.50000000000001" y2="120.50000000000001"/> + <line stroke="#000000" x1="34.0" x2="34.0" y1="120.50000000000001" y2="120.50000000000001"/> + <line stroke="#000000" x1="34.0" x2="34.0" y1="160.50000000000003" y2="120.50000000000001"/> + <line stroke="#000000" x1="22.000000000000004" x2="22.000000000000004" y1="120.50000000000001" y2="160.50000000000003"/> + <line stroke="#000000" x1="34.0" x2="34.0" y1="165.50000000000003" y2="160.50000000000003"/> + <line stroke="#000000" x1="22.000000000000004" x2="34.0" y1="165.50000000000003" y2="165.50000000000003"/> + <line stroke="#000000" x1="22.000000000000004" x2="22.000000000000004" y1="160.50000000000003" y2="165.50000000000003"/> + <line stroke="#000000" x1="22.000000000000004" x2="22.000000000000004" y1="160.50000000000003" y2="120.50000000000001"/> + <line stroke="#000000" x1="10.000000000000002" x2="10.000000000000002" y1="120.50000000000001" y2="160.50000000000003"/> + <line stroke="#000000" x1="22.000000000000004" x2="22.000000000000004" y1="165.50000000000003" y2="160.50000000000003"/> + <line stroke="#000000" x1="10.000000000000002" x2="22.000000000000004" y1="165.50000000000003" y2="165.50000000000003"/> + <line stroke="#000000" x1="10.000000000000002" x2="10.000000000000002" y1="160.50000000000003" y2="165.50000000000003"/> + <line stroke="#000000" x1="0.0" x2="10.000000000000002" y1="120.50000000000001" y2="120.50000000000001"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="59.50000000000001" y2="120.50000000000001"/> + <line stroke="#000000" x1="10.000000000000002" x2="0.0" y1="59.50000000000001" y2="59.50000000000001"/> + <line stroke="#888888" x1="11.400000000000002" x2="12.6" y1="69.5" y2="69.5"/> + <line stroke="#888888" x1="12.6" x2="12.6" y1="69.5" y2="110.50000000000001"/> + <line stroke="#888888" x1="12.6" x2="11.400000000000002" y1="110.50000000000001" y2="110.50000000000001"/> + <line stroke="#888888" x1="11.400000000000002" x2="11.400000000000002" y1="110.50000000000001" y2="69.5"/> + <line stroke="#888888" x1="31.400000000000002" x2="32.60000000000001" y1="70.00000000000001" y2="70.00000000000001"/> + <line stroke="#888888" x1="32.60000000000001" x2="32.60000000000001" y1="70.00000000000001" y2="100.0"/> + <line stroke="#888888" x1="32.60000000000001" x2="31.400000000000002" y1="100.0" y2="100.0"/> + <line stroke="#888888" x1="31.400000000000002" x2="31.400000000000002" y1="100.0" y2="70.00000000000001"/> + <line stroke="#888888" x1="18.000000000000004" x2="18.000000000000004" y1="15.750000000000002" y2="18.25"/> + <line stroke="#888888" x1="18.000000000000004" x2="14.000000000000002" y1="18.25" y2="18.25"/> + <line stroke="#888888" x1="14.000000000000002" x2="14.000000000000002" y1="18.25" y2="15.750000000000002"/> + <line stroke="#888888" x1="30.000000000000004" x2="30.000000000000004" y1="15.750000000000002" y2="18.25"/> + <line stroke="#888888" x1="30.000000000000004" x2="26.000000000000004" y1="18.25" y2="18.25"/> + <line stroke="#888888" x1="26.000000000000004" x2="26.000000000000004" y1="18.25" y2="15.750000000000002"/> + <line stroke="#888888" x1="30.000000000000004" x2="30.000000000000004" y1="111.00000000000001" y2="93.00000000000001"/> + <line stroke="#888888" x1="30.000000000000004" x2="60.00000000000001" y1="93.00000000000001" y2="93.00000000000001"/> + <line stroke="#888888" x1="60.00000000000001" x2="60.00000000000001" y1="93.00000000000001" y2="111.00000000000001"/> + <line stroke="#888888" x1="60.00000000000001" x2="30.000000000000004" y1="111.00000000000001" y2="111.00000000000001"/> + <line stroke="#888888" x1="91.40000000000002" x2="92.60000000000001" y1="69.5" y2="69.5"/> + <line stroke="#888888" x1="92.60000000000001" x2="92.60000000000001" y1="69.5" y2="110.50000000000001"/> + <line stroke="#888888" x1="92.60000000000001" x2="91.40000000000002" y1="110.50000000000001" y2="110.50000000000001"/> + <line stroke="#888888" x1="91.40000000000002" x2="91.40000000000002" y1="110.50000000000001" y2="69.5"/> + <line stroke="#888888" x1="71.4" x2="72.60000000000001" y1="70.00000000000001" y2="70.00000000000001"/> + <line stroke="#888888" x1="72.60000000000001" x2="72.60000000000001" y1="70.00000000000001" y2="100.0"/> + <line stroke="#888888" x1="72.60000000000001" x2="71.4" y1="100.0" y2="100.0"/> + <line stroke="#888888" x1="71.4" x2="71.4" y1="100.0" y2="70.00000000000001"/> + <line stroke="#888888" x1="97.00000000000001" x2="97.00000000000001" y1="73.50000000000001" y2="66.50000000000001"/> + <line stroke="#888888" x1="97.00000000000001" x2="117.00000000000001" y1="66.50000000000001" y2="66.50000000000001"/> + <line stroke="#888888" x1="117.00000000000001" x2="117.00000000000001" y1="66.50000000000001" y2="73.50000000000001"/> + <line stroke="#888888" x1="117.00000000000001" x2="97.00000000000001" y1="73.50000000000001" y2="73.50000000000001"/> + <line stroke="#888888" x1="122.25000000000001" x2="122.25000000000001" y1="81.9318181818182" y2="70.3409090909091"/> + <line stroke="#888888" x1="122.25000000000001" x2="122.75000000000001" y1="70.3409090909091" y2="70.3409090909091"/> + <line stroke="#888888" x1="122.75000000000001" x2="122.75000000000001" y1="70.3409090909091" y2="81.9318181818182"/> + <line stroke="#888888" x1="122.75000000000001" x2="122.25000000000001" y1="81.9318181818182" y2="81.9318181818182"/> + <line stroke="#888888" x1="122.25000000000001" x2="122.25000000000001" y1="109.65909090909092" y2="98.06818181818183"/> + <line stroke="#888888" x1="122.25000000000001" x2="122.75000000000001" y1="98.06818181818183" y2="98.06818181818183"/> + <line stroke="#888888" x1="122.75000000000001" x2="122.75000000000001" y1="98.06818181818183" y2="109.65909090909092"/> + <line stroke="#888888" x1="122.75000000000001" x2="122.25000000000001" y1="109.65909090909092" y2="109.65909090909092"/> + <line stroke="#888888" x1="26.000000000000004" x2="26.000000000000004" y1="164.25000000000003" y2="161.75"/> + <line stroke="#888888" x1="26.000000000000004" x2="30.000000000000004" y1="161.75" y2="161.75"/> + <line stroke="#888888" x1="30.000000000000004" x2="30.000000000000004" y1="161.75" y2="164.25000000000003"/> + <line stroke="#888888" x1="14.000000000000002" x2="14.000000000000002" y1="164.25000000000003" y2="161.75"/> + <line stroke="#888888" x1="14.000000000000002" x2="18.000000000000004" y1="161.75" y2="161.75"/> + <line stroke="#888888" x1="18.000000000000004" x2="18.000000000000004" y1="161.75" y2="164.25000000000003"/> + <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="70.5909090909091" y2="70.5909090909091"/> + <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="70.5909090909091" y2="81.68181818181819"/> + <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="81.68181818181819" y2="81.68181818181819"/> + <line stroke="#888888" x1="2.5000000000000004" x2="7.500000000000001" y1="98.31818181818184" y2="98.31818181818184"/> + <line stroke="#888888" x1="7.500000000000001" x2="7.500000000000001" y1="98.31818181818184" y2="109.40909090909092"/> + <line stroke="#888888" x1="7.500000000000001" x2="2.5000000000000004" y1="109.40909090909092" y2="109.40909090909092"/> + <line stroke="#000000" x1="186.00000000000003" x2="140.00000000000003" y1="90.0" y2="90.0"/> + <line stroke="#000000" x1="198.0" x2="186.00000000000003" y1="90.0" y2="90.0"/> + <line stroke="#000000" x1="210.00000000000003" x2="198.0" y1="90.0" y2="90.0"/> + <line stroke="#000000" x1="222.00000000000003" x2="210.00000000000003" y1="90.0" y2="90.0"/> + <line stroke="#000000" x1="234.00000000000003" x2="222.00000000000003" y1="90.0" y2="90.0"/> + <line stroke="#000000" x1="246.00000000000003" x2="234.00000000000003" y1="90.0" y2="90.0"/> + <line stroke="#000000" x1="258.0" x2="246.00000000000003" y1="90.0" y2="90.0"/> + <line stroke="#000000" x1="270.00000000000006" x2="258.0" y1="90.0" y2="90.0"/> + <line stroke="#000000" x1="270.00000000000006" x2="270.00000000000006" y1="90.0" y2="90.0"/> + <line stroke="#000000" x1="140.00000000000003" x2="270.00000000000006" y1="90.0" y2="90.0"/> + <line stroke="#000000" x1="140.00000000000003" x2="140.00000000000003" y1="90.0" y2="90.0"/> + <line stroke="#888888" x1="206.25000000000003" x2="201.75000000000003" y1="94.00000000000001" y2="94.00000000000001"/> + <line stroke="#888888" x1="201.75000000000003" x2="201.75000000000003" y1="94.00000000000001" y2="93.50000000000001"/> + <line stroke="#888888" x1="201.75000000000003" x2="206.25000000000003" y1="93.50000000000001" y2="93.50000000000001"/> + <line stroke="#888888" x1="206.25000000000003" x2="206.25000000000003" y1="93.50000000000001" y2="94.00000000000001"/> + <line stroke="#888888" x1="218.25000000000003" x2="213.75" y1="94.00000000000001" y2="94.00000000000001"/> + <line stroke="#888888" x1="213.75" x2="213.75" y1="94.00000000000001" y2="93.50000000000001"/> + <line stroke="#888888" x1="213.75" x2="218.25000000000003" y1="93.50000000000001" y2="93.50000000000001"/> + <line stroke="#888888" x1="218.25000000000003" x2="218.25000000000003" y1="93.50000000000001" y2="94.00000000000001"/> + <line stroke="#000000" x1="326.00000000000006" x2="280.00000000000006" y1="90.0" y2="90.0"/> + <line stroke="#000000" x1="338.00000000000006" x2="326.00000000000006" y1="90.0" y2="90.0"/> + <line stroke="#000000" x1="350.0" x2="338.00000000000006" y1="90.0" y2="90.0"/> + <line stroke="#000000" x1="362.00000000000006" x2="350.0" y1="90.0" y2="90.0"/> + <line stroke="#000000" x1="374.00000000000006" x2="362.00000000000006" y1="90.0" y2="90.0"/> + <line stroke="#000000" x1="386.00000000000006" x2="374.00000000000006" y1="90.0" y2="90.0"/> + <line stroke="#000000" x1="398.00000000000006" x2="386.00000000000006" y1="90.0" y2="90.0"/> + <line stroke="#000000" x1="410.00000000000006" x2="398.00000000000006" y1="90.0" y2="90.0"/> + <line stroke="#000000" x1="410.00000000000006" x2="410.00000000000006" y1="90.0" y2="90.0"/> + <line stroke="#000000" x1="280.00000000000006" x2="410.00000000000006" y1="90.0" y2="90.0"/> + <line stroke="#000000" x1="280.00000000000006" x2="280.00000000000006" y1="90.0" y2="90.0"/> + <line stroke="#888888" x1="334.25000000000006" x2="329.75000000000006" y1="94.00000000000001" y2="94.00000000000001"/> + <line stroke="#888888" x1="329.75000000000006" x2="329.75000000000006" y1="94.00000000000001" y2="93.50000000000001"/> + <line stroke="#888888" x1="329.75000000000006" x2="334.25000000000006" y1="93.50000000000001" y2="93.50000000000001"/> + <line stroke="#888888" x1="334.25000000000006" x2="334.25000000000006" y1="93.50000000000001" y2="94.00000000000001"/> + <line stroke="#888888" x1="346.25" x2="341.75" y1="94.00000000000001" y2="94.00000000000001"/> + <line stroke="#888888" x1="341.75" x2="341.75" y1="94.00000000000001" y2="93.50000000000001"/> + <line stroke="#888888" x1="341.75" x2="346.25" y1="93.50000000000001" y2="93.50000000000001"/> + <line stroke="#888888" x1="346.25" x2="346.25" y1="93.50000000000001" y2="94.00000000000001"/> + <line stroke="#000000" x1="612.710678118655" x2="604.710678118655" y1="55.00000000000001" y2="55.00000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="612.710678118655" x2="612.710678118655" y1="55.00000000000001" y2="125.00000000000001"/> + <line stroke="#000000" x1="604.710678118655" x2="612.710678118655" y1="125.00000000000001" y2="125.00000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="604.710678118655" x2="604.710678118655" y1="125.00000000000001" y2="55.00000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="620.710678118655" x2="620.710678118655" y1="55.00000000000001" y2="125.00000000000001"/> + <line stroke="#000000" x1="620.710678118655" x2="620.710678118655" y1="55.00000000000001" y2="5.000000000000001"/> + <line stroke="#000000" x1="612.710678118655" x2="612.710678118655" y1="5.000000000000001" y2="55.00000000000001"/> + <line stroke="#000000" x1="612.710678118655" x2="612.710678118655" y1="0.0" y2="5.000000000000001"/> + <line stroke="#000000" x1="620.710678118655" x2="612.710678118655" y1="0.0" y2="0.0"/> + <line stroke="#000000" x1="620.710678118655" x2="620.710678118655" y1="5.000000000000001" y2="0.0"/> + <line stroke="#000000" x1="628.710678118655" x2="620.710678118655" y1="55.00000000000001" y2="55.00000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="628.710678118655" x2="628.710678118655" y1="55.00000000000001" y2="125.00000000000001"/> + <line stroke="#000000" x1="620.710678118655" x2="628.710678118655" y1="125.00000000000001" y2="125.00000000000001"/> + <line stroke="#000000" x1="636.710678118655" x2="628.710678118655" y1="55.00000000000001" y2="55.00000000000001"/> + <line stroke="#000000" x1="636.710678118655" x2="636.710678118655" y1="125.00000000000001" y2="55.00000000000001"/> + <line stroke="#000000" x1="628.710678118655" x2="636.710678118655" y1="125.00000000000001" y2="125.00000000000001"/> + <line stroke="#000000" x1="612.710678118655" x2="612.710678118655" y1="125.00000000000001" y2="175.0"/> + <line stroke="#000000" x1="620.710678118655" x2="620.710678118655" y1="175.0" y2="125.00000000000001"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="620.710678118655" x2="612.710678118655" y1="175.0" y2="175.0"/> + <line stroke="#000000" x1="612.710678118655" x2="490.7106781186549" y1="175.0" y2="175.0"/> + <line stroke="#000000" x1="620.710678118655" x2="620.710678118655" y1="175.0" y2="175.0"/> + <line stroke="#000000" x1="490.7106781186549" x2="490.7106781186549" y1="175.0" y2="175.0"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="490.7106781186549" x2="620.710678118655" y1="225.00000000000003" y2="225.00000000000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="490.7106781186549" x2="490.7106781186549" y1="175.0" y2="225.00000000000003"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="458.4510113187008" x2="490.7106781186549" y1="175.0" y2="225.00000000000003"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="458.4510113187008" x2="490.7106781186549" y1="175.0" y2="175.0"/> + <line stroke="#000000" x1="458.45101131870075" x2="445.1550063219791" y1="175.0" y2="204.3922158601766"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="445.1550063219791" x2="490.7106781186549" y1="204.3922158601766" y2="225.00000000000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="420.00000000000017" x2="490.7106781186549" y1="260.0" y2="225.00000000000003"/> + <line stroke="#000000" x1="431.85900132525745" x2="420.00000000000017" y1="233.78443172035318" y2="260.0"/> + <line stroke="#000000" x1="445.15500632197916" x2="431.85900132525745" y1="204.3922158601766" y2="233.78443172035318"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="490.7106781186549" x2="490.7106781186549" y1="225.00000000000003" y2="260.0"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="490.7106781186549" x2="490.7106781186549" y1="260.0" y2="295.0"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="420.00000000000017" x2="490.7106781186549" y1="260.0" y2="295.0"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="490.7106781186549" x2="620.710678118655" y1="295.0" y2="295.0"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="620.710678118655" x2="620.710678118655" y1="260.0" y2="225.00000000000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="620.710678118655" x2="620.710678118655" y1="295.0" y2="260.0"/> + <line stroke="#000000" x1="670.7106781186549" x2="670.7106781186549" y1="275.00000000000006" y2="225.00000000000003"/> + <line stroke="#000000" x1="670.7106781186549" x2="670.7106781186549" y1="260.0" y2="275.00000000000006"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="620.710678118655" x2="670.7106781186549" y1="225.00000000000003" y2="225.00000000000003"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="620.710678118655" x2="670.7106781186549" y1="225.00000000000003" y2="175.00000000000003"/> + <line stroke="#000000" x1="670.7106781186549" x2="670.7106781186549" y1="225.00000000000003" y2="175.00000000000003"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="620.710678118655" x2="670.7106781186549" y1="175.0" y2="175.0"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="620.710678118655" x2="620.710678118655" y1="225.00000000000003" y2="175.0"/> + <line stroke="#000000" x1="620.710678118655" x2="620.710678118655" y1="158.33333333333337" y2="175.0"/> + <line stroke="#000000" x1="670.7106781186549" x2="620.710678118655" y1="158.33333333333337" y2="158.33333333333337"/> + <line stroke="#000000" x1="670.7106781186549" x2="670.7106781186549" y1="175.0" y2="158.33333333333337"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="670.7106781186549" x2="620.710678118655" y1="295.0" y2="295.0"/> + <line stroke="#000000" x1="670.7106781186549" x2="670.7106781186549" y1="245.00000000000003" y2="260.0"/> + <line stroke="#000000" x1="670.7106781186549" x2="670.7106781186549" y1="295.0" y2="245.00000000000003"/> + <line stroke="#000000" x1="670.7106781186549" x2="670.7106781186549" y1="345.00000000000006" y2="295.0"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="670.7106781186549" x2="620.710678118655" y1="345.00000000000006" y2="295.0"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="620.710678118655" x2="620.710678118655" y1="345.00000000000006" y2="295.0"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="670.7106781186549" x2="620.710678118655" y1="345.00000000000006" y2="345.00000000000006"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="490.71067811865487" x2="490.71067811865487" y1="295.0" y2="345.00000000000006"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="490.71067811865487" x2="458.45101131870075" y1="345.00000000000006" y2="345.00000000000006"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="490.71067811865487" x2="458.45101131870075" y1="295.0" y2="345.00000000000006"/> + <line stroke="#000000" x1="490.71067811865487" x2="490.71067811865487" y1="355.75322226665145" y2="345.00000000000006"/> + <line stroke="#000000" x1="458.45101131870075" x2="490.71067811865487" y1="355.75322226665145" y2="355.75322226665145"/> + <line stroke="#000000" x1="458.45101131870075" x2="458.45101131870075" y1="345.00000000000006" y2="355.75322226665145"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="490.71067811865487" x2="445.1550063219791" y1="295.0" y2="315.6077841398234"/> + <line stroke="#000000" x1="445.1550063219791" x2="458.45101131870075" y1="315.6077841398234" y2="345.00000000000006"/> + <line stroke="#000000" x1="431.8590013252574" x2="445.1550063219791" y1="286.21556827964685" y2="315.6077841398234"/> + <line stroke="#000000" x1="420.00000000000006" x2="431.8590013252574" y1="260.0" y2="286.21556827964685"/> + <line stroke="#000000" x1="612.710678118655" x2="620.710678118655" y1="345.00000000000006" y2="345.00000000000006"/> + <line stroke="#000000" x1="490.71067811865487" x2="612.710678118655" y1="345.00000000000006" y2="345.00000000000006"/> + <line stroke="#000000" x1="490.71067811865487" x2="490.71067811865487" y1="345.00000000000006" y2="345.00000000000006"/> + <line stroke="#000000" x1="620.710678118655" x2="620.710678118655" y1="345.00000000000006" y2="345.00000000000006"/> + <line stroke="#000000" x1="670.7106781186549" x2="670.7106781186549" y1="361.66666666666674" y2="345.00000000000006"/> + <line stroke="#000000" x1="620.710678118655" x2="670.7106781186549" y1="361.66666666666674" y2="361.66666666666674"/> + <line stroke="#000000" x1="620.710678118655" x2="620.710678118655" y1="345.00000000000006" y2="361.66666666666674"/> + <line stroke="#000000" x1="458.4510113187008" x2="458.4510113187008" y1="164.2467777333486" y2="175.0"/> + <line stroke="#000000" x1="490.7106781186549" x2="458.4510113187008" y1="164.2467777333486" y2="164.2467777333486"/> + <line stroke="#000000" x1="490.7106781186549" x2="490.7106781186549" y1="175.0" y2="164.2467777333486"/> + <line stroke="#000000" x1="596.7106781186549" x2="604.710678118655" y1="125.00000000000001" y2="125.00000000000001"/> + <line stroke="#000000" x1="596.7106781186549" x2="596.7106781186549" y1="55.00000000000001" y2="125.00000000000001"/> + <line stroke="#000000" x1="604.710678118655" x2="596.7106781186549" y1="55.00000000000001" y2="55.00000000000001"/> + <line stroke="#888888" x1="604.710678118655" x2="612.710678118655" y1="86.00000000000001" y2="86.00000000000001"/> + <line stroke="#888888" x1="612.710678118655" x2="612.710678118655" y1="86.00000000000001" y2="94.00000000000001"/> + <line stroke="#888888" x1="612.710678118655" x2="604.710678118655" y1="94.00000000000001" y2="94.00000000000001"/> + <line stroke="#888888" x1="604.710678118655" x2="604.710678118655" y1="94.00000000000001" y2="86.00000000000001"/> + <line stroke="#888888" x1="618.0440114519882" x2="618.0440114519882" y1="1.2500000000000002" y2="3.7500000000000004"/> + <line stroke="#888888" x1="618.0440114519882" x2="615.3773447853215" y1="3.7500000000000004" y2="3.7500000000000004"/> + <line stroke="#888888" x1="615.3773447853215" x2="615.3773447853215" y1="3.7500000000000004" y2="1.2500000000000002"/> + <line stroke="#888888" x1="620.710678118655" x2="628.710678118655" y1="86.00000000000001" y2="86.00000000000001"/> + <line stroke="#888888" x1="628.710678118655" x2="628.710678118655" y1="86.00000000000001" y2="94.00000000000001"/> + <line stroke="#888888" x1="628.710678118655" x2="620.710678118655" y1="94.00000000000001" y2="94.00000000000001"/> + <line stroke="#888888" x1="620.710678118655" x2="620.710678118655" y1="94.00000000000001" y2="86.00000000000001"/> + <line stroke="#888888" x1="630.4606781186549" x2="630.4606781186549" y1="80.70454545454547" y2="67.47727272727273"/> + <line stroke="#888888" x1="630.4606781186549" x2="630.9606781186549" y1="67.47727272727273" y2="67.47727272727273"/> + <line stroke="#888888" x1="630.9606781186549" x2="630.9606781186549" y1="67.47727272727273" y2="80.70454545454547"/> + <line stroke="#888888" x1="630.9606781186549" x2="630.4606781186549" y1="80.70454545454547" y2="80.70454545454547"/> + <line stroke="#888888" x1="630.4606781186549" x2="630.4606781186549" y1="112.52272727272728" y2="99.29545454545456"/> + <line stroke="#888888" x1="630.4606781186549" x2="630.9606781186549" y1="99.29545454545456" y2="99.29545454545456"/> + <line stroke="#888888" x1="630.9606781186549" x2="630.9606781186549" y1="99.29545454545456" y2="112.52272727272728"/> + <line stroke="#888888" x1="630.9606781186549" x2="630.4606781186549" y1="112.52272727272728" y2="112.52272727272728"/> + <line stroke="#888888" x1="448.40187590113186" x2="443.7637963941598" y1="217.3888829577983" y2="227.64184496249058"/> + <line stroke="#888888" x1="443.7637963941598" x2="443.308239676193" y1="227.64184496249058" y2="227.43576712109234"/> + <line stroke="#888888" x1="443.308239676193" x2="447.94631918316514" y1="227.43576712109234" y2="217.18280511640006"/> + <line stroke="#888888" x1="447.94631918316514" x2="448.40187590113186" y1="217.18280511640006" y2="217.3888829577983"/> + <line stroke="#888888" x1="657.9606781186549" x2="657.9606781186549" y1="258.58333333333337" y2="241.41666666666669"/> + <line stroke="#888888" x1="657.9606781186549" x2="658.4606781186549" y1="241.41666666666669" y2="241.41666666666669"/> + <line stroke="#888888" x1="658.4606781186549" x2="658.4606781186549" y1="241.41666666666669" y2="258.58333333333337"/> + <line stroke="#888888" x1="658.4606781186549" x2="657.9606781186549" y1="258.58333333333337" y2="258.58333333333337"/> + <line stroke="#888888" x1="654.0440114519881" x2="654.0440114519881" y1="162.50000000000003" y2="170.83333333333334"/> + <line stroke="#888888" x1="654.0440114519881" x2="637.3773447853216" y1="170.83333333333334" y2="170.83333333333334"/> + <line stroke="#888888" x1="637.3773447853216" x2="637.3773447853216" y1="170.83333333333334" y2="162.50000000000003"/> + <line stroke="#888888" x1="657.9606781186549" x2="657.9606781186549" y1="278.5833333333333" y2="261.4166666666667"/> + <line stroke="#888888" x1="657.9606781186549" x2="658.4606781186549" y1="261.4166666666667" y2="261.4166666666667"/> + <line stroke="#888888" x1="658.4606781186549" x2="658.4606781186549" y1="261.4166666666667" y2="278.5833333333333"/> + <line stroke="#888888" x1="658.4606781186549" x2="657.9606781186549" y1="278.5833333333333" y2="278.5833333333333"/> + <line stroke="#888888" x1="469.20423358535214" x2="469.20423358535214" y1="353.06491669998854" y2="347.6883055666629"/> + <line stroke="#888888" x1="469.20423358535214" x2="479.95745585200353" y1="347.6883055666629" y2="347.6883055666629"/> + <line stroke="#888888" x1="479.95745585200353" x2="479.95745585200353" y1="347.6883055666629" y2="353.06491669998854"/> + <line stroke="#888888" x1="443.76379639415967" x2="448.4018759011318" y1="292.3581550375095" y2="302.6111170422017"/> + <line stroke="#888888" x1="448.4018759011318" x2="447.94631918316503" y1="302.6111170422017" y2="302.81719488360005"/> + <line stroke="#888888" x1="447.94631918316503" x2="443.30823967619295" y1="302.81719488360005" y2="292.5642328789077"/> + <line stroke="#888888" x1="443.30823967619295" x2="443.76379639415967" y1="292.5642328789077" y2="292.3581550375095"/> + <line stroke="#888888" x1="615.1273447853216" x2="618.2940114519882" y1="341.0" y2="341.0"/> + <line stroke="#888888" x1="618.2940114519882" x2="618.2940114519882" y1="341.0" y2="341.5"/> + <line stroke="#888888" x1="618.2940114519882" x2="615.1273447853216" y1="341.5" y2="341.5"/> + <line stroke="#888888" x1="615.1273447853216" x2="615.1273447853216" y1="341.5" y2="341.0"/> + <line stroke="#888888" x1="637.3773447853216" x2="637.3773447853216" y1="357.50000000000006" y2="349.16666666666674"/> + <line stroke="#888888" x1="637.3773447853216" x2="654.0440114519881" y1="349.16666666666674" y2="349.16666666666674"/> + <line stroke="#888888" x1="654.0440114519881" x2="654.0440114519881" y1="349.16666666666674" y2="357.50000000000006"/> + <line stroke="#888888" x1="479.95745585200353" x2="479.95745585200353" y1="166.93508330001148" y2="172.31169443333718"/> + <line stroke="#888888" x1="479.95745585200353" x2="469.20423358535214" y1="172.31169443333718" y2="172.31169443333718"/> + <line stroke="#888888" x1="469.20423358535214" x2="469.20423358535214" y1="172.31169443333718" y2="166.93508330001148"/> + <line stroke="#888888" x1="598.7106781186549" x2="598.7106781186549" y1="67.72727272727273" y2="63.727272727272734"/> + <line stroke="#888888" x1="598.7106781186549" x2="602.710678118655" y1="63.727272727272734" y2="67.72727272727273"/> + <line stroke="#888888" x1="602.710678118655" x2="602.710678118655" y1="67.72727272727273" y2="80.45454545454547"/> + <line stroke="#888888" x1="602.710678118655" x2="598.7106781186549" y1="80.45454545454547" y2="84.45454545454547"/> + <line stroke="#888888" x1="598.7106781186549" x2="598.7106781186549" y1="84.45454545454547" y2="80.45454545454547"/> + <line stroke="#888888" x1="598.7106781186549" x2="598.7106781186549" y1="99.54545454545455" y2="95.54545454545456"/> + <line stroke="#888888" x1="598.7106781186549" x2="602.710678118655" y1="95.54545454545456" y2="99.54545454545455"/> + <line stroke="#888888" x1="602.710678118655" x2="602.710678118655" y1="99.54545454545455" y2="112.27272727272728"/> + <line stroke="#888888" x1="602.710678118655" x2="598.7106781186549" y1="112.27272727272728" y2="116.27272727272728"/> + <line stroke="#888888" x1="598.7106781186549" x2="598.7106781186549" y1="116.27272727272728" y2="112.27272727272728"/> </svg> diff --git a/rocolib/output/ESP32StackBoat/graph-model.png b/rocolib/output/ESP32StackBoat/graph-model.png index 71333ce0194bc937985ce9778993c66d9165ee58..ac353a9a662e60f0c2cbca3b35a56bbf32288e29 100644 Binary files a/rocolib/output/ESP32StackBoat/graph-model.png and b/rocolib/output/ESP32StackBoat/graph-model.png differ diff --git a/rocolib/output/ESP32StackBoat/graph-model.stl b/rocolib/output/ESP32StackBoat/graph-model.stl index cdc929250dc12483ff933eef488f1eac9f9b182c..425c3baec9659c38acd98a7c1c7eb19872486874 100644 --- a/rocolib/output/ESP32StackBoat/graph-model.stl +++ b/rocolib/output/ESP32StackBoat/graph-model.stl @@ -1,7 +1,7 @@ solid python facet normal 0 0 0 outer loop -vertex -0.0120 -0.0255 0.0000 +vertex -0.0120 -0.0305 0.0000 vertex -0.0094 -0.0205 0.0000 vertex -0.0106 -0.0205 0.0000 endloop @@ -9,20 +9,20 @@ endfacet facet normal 0 0 0 outer loop vertex -0.0094 -0.0205 0.0000 -vertex -0.0120 -0.0255 0.0000 -vertex 0.0120 -0.0255 0.0000 +vertex -0.0120 -0.0305 0.0000 +vertex 0.0120 -0.0305 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0120 -0.0255 0.0000 +vertex -0.0120 -0.0305 0.0000 vertex -0.0106 -0.0205 0.0000 vertex -0.0106 0.0205 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0120 0.0255 0.0000 +vertex -0.0120 0.0305 0.0000 vertex -0.0106 0.0205 0.0000 vertex -0.0094 0.0205 0.0000 endloop @@ -30,15 +30,15 @@ endfacet facet normal 0 0 0 outer loop vertex -0.0106 0.0205 0.0000 -vertex -0.0120 0.0255 0.0000 -vertex -0.0120 -0.0255 0.0000 +vertex -0.0120 0.0305 0.0000 +vertex -0.0120 -0.0305 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0120 0.0255 0.0000 +vertex -0.0120 0.0305 0.0000 vertex -0.0094 0.0205 0.0000 -vertex 0.0120 0.0255 0.0000 +vertex 0.0120 0.0305 0.0000 endloop endfacet facet normal 0 0 0 @@ -51,13 +51,13 @@ endfacet facet normal 0 0 0 outer loop vertex 0.0094 -0.0200 0.0000 -vertex 0.0120 -0.0255 0.0000 +vertex 0.0120 -0.0305 0.0000 vertex 0.0106 -0.0200 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0120 -0.0255 0.0000 +vertex 0.0120 -0.0305 0.0000 vertex 0.0094 -0.0200 0.0000 vertex -0.0094 -0.0205 0.0000 endloop @@ -65,7 +65,7 @@ endfacet facet normal 0 0 0 outer loop vertex 0.0106 -0.0200 0.0000 -vertex 0.0120 -0.0255 0.0000 +vertex 0.0120 -0.0305 0.0000 vertex 0.0106 0.0100 0.0000 endloop endfacet @@ -73,20 +73,20 @@ facet normal 0 0 0 outer loop vertex 0.0094 0.0100 0.0000 vertex 0.0106 0.0100 0.0000 -vertex 0.0120 0.0255 0.0000 +vertex 0.0120 0.0305 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0120 0.0255 0.0000 +vertex 0.0120 0.0305 0.0000 vertex 0.0106 0.0100 0.0000 -vertex 0.0120 -0.0255 0.0000 +vertex 0.0120 -0.0305 0.0000 endloop endfacet facet normal 0 0 0 outer loop vertex 0.0094 0.0100 0.0000 -vertex 0.0120 0.0255 0.0000 +vertex 0.0120 0.0305 0.0000 vertex -0.0094 0.0205 0.0000 endloop endfacet @@ -99,14 +99,14 @@ endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0120 0.0210 0.0040 vertex 0.0120 0.0030 0.0040 vertex 0.0120 0.0030 0.0000 +vertex 0.0120 0.0210 0.0040 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0120 -0.0255 0.0000 +vertex 0.0120 -0.0305 0.0000 vertex 0.0120 0.0030 -0.0260 vertex 0.0120 0.0030 0.0000 endloop @@ -114,27 +114,27 @@ endfacet facet normal 0 0 0 outer loop vertex 0.0120 0.0030 -0.0260 -vertex 0.0120 -0.0255 -0.0360 -vertex 0.0120 0.0255 -0.0360 +vertex 0.0120 -0.0305 -0.0360 +vertex 0.0120 0.0305 -0.0360 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0120 -0.0255 -0.0360 +vertex 0.0120 -0.0305 -0.0360 vertex 0.0120 0.0030 -0.0260 -vertex 0.0120 -0.0255 0.0000 +vertex 0.0120 -0.0305 0.0000 endloop endfacet facet normal 0 0 0 outer loop vertex 0.0120 0.0210 -0.0260 -vertex 0.0120 0.0255 -0.0360 -vertex 0.0120 0.0255 0.0000 +vertex 0.0120 0.0305 -0.0360 +vertex 0.0120 0.0305 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0120 0.0255 -0.0360 +vertex 0.0120 0.0305 -0.0360 vertex 0.0120 0.0210 -0.0260 vertex 0.0120 0.0030 -0.0260 endloop @@ -148,14 +148,14 @@ endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0120 0.0210 -0.0260 -vertex 0.0120 0.0255 0.0000 +vertex 0.0120 0.0305 0.0000 vertex 0.0120 0.0210 0.0000 +vertex 0.0120 0.0210 -0.0260 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0120 -0.0255 -0.0360 +vertex 0.0120 -0.0305 -0.0360 vertex 0.0094 -0.0200 -0.0360 vertex 0.0106 -0.0200 -0.0360 endloop @@ -163,20 +163,20 @@ endfacet facet normal 0 0 0 outer loop vertex 0.0094 -0.0200 -0.0360 -vertex 0.0120 -0.0255 -0.0360 +vertex 0.0120 -0.0305 -0.0360 vertex -0.0094 -0.0205 -0.0360 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0120 -0.0255 -0.0360 +vertex 0.0120 -0.0305 -0.0360 vertex 0.0106 -0.0200 -0.0360 vertex 0.0106 0.0100 -0.0360 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0120 0.0255 -0.0360 +vertex 0.0120 0.0305 -0.0360 vertex 0.0106 0.0100 -0.0360 vertex 0.0094 0.0100 -0.0360 endloop @@ -184,13 +184,13 @@ endfacet facet normal 0 0 0 outer loop vertex 0.0106 0.0100 -0.0360 -vertex 0.0120 0.0255 -0.0360 -vertex 0.0120 -0.0255 -0.0360 +vertex 0.0120 0.0305 -0.0360 +vertex 0.0120 -0.0305 -0.0360 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0120 0.0255 -0.0360 +vertex 0.0120 0.0305 -0.0360 vertex 0.0094 0.0100 -0.0360 vertex -0.0094 0.0205 -0.0360 endloop @@ -205,34 +205,34 @@ endfacet facet normal 0 0 0 outer loop vertex -0.0094 -0.0205 -0.0360 -vertex -0.0120 -0.0255 -0.0360 +vertex -0.0120 -0.0305 -0.0360 vertex -0.0106 -0.0205 -0.0360 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0120 -0.0255 -0.0360 +vertex -0.0120 -0.0305 -0.0360 vertex -0.0094 -0.0205 -0.0360 -vertex 0.0120 -0.0255 -0.0360 +vertex 0.0120 -0.0305 -0.0360 endloop endfacet facet normal 0 0 0 outer loop vertex -0.0106 -0.0205 -0.0360 -vertex -0.0120 -0.0255 -0.0360 -vertex -0.0120 0.0255 -0.0360 +vertex -0.0120 -0.0305 -0.0360 +vertex -0.0120 0.0305 -0.0360 endloop endfacet facet normal 0 0 0 outer loop vertex -0.0094 0.0205 -0.0360 vertex -0.0106 0.0205 -0.0360 -vertex -0.0120 0.0255 -0.0360 +vertex -0.0120 0.0305 -0.0360 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0120 0.0255 -0.0360 +vertex -0.0120 0.0305 -0.0360 vertex -0.0106 0.0205 -0.0360 vertex -0.0106 -0.0205 -0.0360 endloop @@ -240,8 +240,8 @@ endfacet facet normal 0 0 0 outer loop vertex -0.0094 0.0205 -0.0360 -vertex -0.0120 0.0255 -0.0360 -vertex 0.0120 0.0255 -0.0360 +vertex -0.0120 0.0305 -0.0360 +vertex 0.0120 0.0305 -0.0360 endloop endfacet facet normal 0 0 0 @@ -253,7 +253,7 @@ endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0120 -0.0255 -0.0360 +vertex -0.0120 -0.0305 -0.0360 vertex -0.0120 -0.0235 -0.0330 vertex -0.0120 -0.0165 -0.0330 endloop @@ -261,13 +261,13 @@ endfacet facet normal 0 0 0 outer loop vertex -0.0120 -0.0235 -0.0330 -vertex -0.0120 -0.0255 -0.0360 +vertex -0.0120 -0.0305 -0.0360 vertex -0.0120 -0.0235 -0.0130 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0120 0.0255 -0.0360 +vertex -0.0120 0.0305 -0.0360 vertex -0.0120 -0.0165 -0.0330 vertex -0.0120 -0.0165 -0.0130 endloop @@ -275,526 +275,526 @@ endfacet facet normal 0 0 0 outer loop vertex -0.0120 -0.0165 -0.0330 -vertex -0.0120 0.0255 -0.0360 -vertex -0.0120 -0.0255 -0.0360 +vertex -0.0120 0.0305 -0.0360 +vertex -0.0120 -0.0305 -0.0360 endloop endfacet facet normal 0 0 0 outer loop vertex -0.0120 -0.0235 -0.0130 -vertex -0.0120 -0.0255 0.0000 +vertex -0.0120 -0.0305 0.0000 vertex -0.0120 -0.0165 -0.0130 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0120 -0.0255 0.0000 +vertex -0.0120 -0.0305 0.0000 vertex -0.0120 -0.0235 -0.0130 -vertex -0.0120 -0.0255 -0.0360 +vertex -0.0120 -0.0305 -0.0360 endloop endfacet facet normal 0 0 0 outer loop vertex -0.0120 -0.0165 -0.0130 -vertex -0.0120 0.0255 0.0000 -vertex -0.0120 0.0255 -0.0360 +vertex -0.0120 0.0305 0.0000 +vertex -0.0120 0.0305 -0.0360 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0120 0.0255 0.0000 +vertex -0.0120 0.0305 0.0000 vertex -0.0120 -0.0165 -0.0130 -vertex -0.0120 -0.0255 0.0000 +vertex -0.0120 -0.0305 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0120 -0.0255 0.0000 -vertex 0.0000 -0.0255 0.0000 -vertex 0.0000 -0.0255 -0.0400 +vertex 0.0120 -0.0305 0.0000 +vertex 0.0000 -0.0305 0.0000 +vertex 0.0000 -0.0305 -0.0400 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0000 -0.0255 -0.0400 -vertex 0.0120 -0.0255 -0.0400 -vertex 0.0120 -0.0255 0.0000 +vertex 0.0000 -0.0305 -0.0400 +vertex 0.0120 -0.0305 -0.0400 +vertex 0.0120 -0.0305 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0000 -0.0255 0.0000 -vertex -0.0120 -0.0255 0.0000 -vertex -0.0120 -0.0255 -0.0400 +vertex 0.0000 -0.0305 0.0000 +vertex -0.0120 -0.0305 0.0000 +vertex -0.0120 -0.0305 -0.0400 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0120 -0.0255 -0.0400 -vertex 0.0000 -0.0255 -0.0400 -vertex 0.0000 -0.0255 0.0000 +vertex -0.0120 -0.0305 -0.0400 +vertex 0.0000 -0.0305 -0.0400 +vertex 0.0000 -0.0305 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0120 0.0255 0.0000 -vertex 0.0000 0.0255 0.0000 -vertex 0.0000 0.0255 -0.0400 +vertex -0.0120 0.0305 0.0000 +vertex 0.0000 0.0305 0.0000 +vertex 0.0000 0.0305 -0.0400 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0000 0.0255 -0.0400 -vertex -0.0120 0.0255 -0.0400 -vertex -0.0120 0.0255 0.0000 +vertex 0.0000 0.0305 -0.0400 +vertex -0.0120 0.0305 -0.0400 +vertex -0.0120 0.0305 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0000 0.0255 0.0000 -vertex 0.0120 0.0255 0.0000 -vertex 0.0120 0.0255 -0.0400 +vertex 0.0000 0.0305 0.0000 +vertex 0.0120 0.0305 0.0000 +vertex 0.0120 0.0305 -0.0400 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0120 0.0255 -0.0400 -vertex 0.0000 0.0255 -0.0400 -vertex 0.0000 0.0255 0.0000 +vertex 0.0120 0.0305 -0.0400 +vertex 0.0000 0.0305 -0.0400 +vertex 0.0000 0.0305 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0050 -0.0050 0.0000 -vertex -0.0050 -0.0250 0.0000 -vertex 0.0050 -0.0250 0.0000 +vertex -0.0040 -0.0040 0.0000 +vertex -0.0040 -0.0350 0.0000 +vertex 0.0040 -0.0350 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0050 0.0250 0.0000 -vertex -0.0050 0.0050 0.0000 -vertex 0.0050 0.0050 0.0000 +vertex -0.0040 0.0350 0.0000 +vertex -0.0040 0.0040 0.0000 +vertex 0.0040 0.0040 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0050 -0.0250 0.0000 -vertex 0.0050 -0.0050 0.0000 -vertex -0.0050 -0.0050 0.0000 +vertex 0.0040 -0.0350 0.0000 +vertex 0.0040 -0.0040 0.0000 +vertex -0.0040 -0.0040 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0050 0.0050 0.0000 -vertex 0.0050 0.0250 0.0000 -vertex -0.0050 0.0250 0.0000 +vertex 0.0040 0.0040 0.0000 +vertex 0.0040 0.0350 0.0000 +vertex -0.0040 0.0350 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0050 0.0250 0.0000 -vertex 0.0050 -0.0250 0.0000 -vertex 0.0050 -0.0250 -0.0100 +vertex 0.0040 0.0350 0.0000 +vertex 0.0040 -0.0350 0.0000 +vertex 0.0040 -0.0350 -0.0080 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0050 -0.0250 -0.0100 -vertex 0.0050 0.0250 -0.0100 -vertex 0.0050 0.0250 0.0000 +vertex 0.0040 -0.0350 -0.0080 +vertex 0.0040 0.0350 -0.0080 +vertex 0.0040 0.0350 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0050 -0.0050 -0.0100 -vertex 0.0050 -0.0250 -0.0100 -vertex -0.0050 -0.0250 -0.0100 +vertex 0.0040 -0.0040 -0.0080 +vertex 0.0040 -0.0350 -0.0080 +vertex -0.0040 -0.0350 -0.0080 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0050 0.0250 -0.0100 -vertex 0.0050 0.0050 -0.0100 -vertex -0.0050 0.0050 -0.0100 +vertex 0.0040 0.0350 -0.0080 +vertex 0.0040 0.0040 -0.0080 +vertex -0.0040 0.0040 -0.0080 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0050 -0.0250 -0.0100 -vertex -0.0050 -0.0050 -0.0100 -vertex 0.0050 -0.0050 -0.0100 +vertex -0.0040 -0.0350 -0.0080 +vertex -0.0040 -0.0040 -0.0080 +vertex 0.0040 -0.0040 -0.0080 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0050 0.0050 -0.0100 -vertex -0.0050 0.0250 -0.0100 -vertex 0.0050 0.0250 -0.0100 +vertex -0.0040 0.0040 -0.0080 +vertex -0.0040 0.0350 -0.0080 +vertex 0.0040 0.0350 -0.0080 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0050 0.0250 -0.0100 -vertex -0.0050 -0.0250 -0.0100 -vertex -0.0050 -0.0250 -0.0000 +vertex -0.0040 0.0350 -0.0080 +vertex -0.0040 -0.0350 -0.0080 +vertex -0.0040 -0.0350 -0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0050 -0.0250 -0.0000 -vertex -0.0050 0.0250 -0.0000 -vertex -0.0050 0.0250 -0.0100 +vertex -0.0040 -0.0350 -0.0000 +vertex -0.0040 0.0350 -0.0000 +vertex -0.0040 0.0350 -0.0080 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0550 0.0150 -0.0100 -vertex 0.0550 0.0150 0.1200 -vertex 0.0050 0.0150 0.1200 +vertex 0.0740 0.0350 -0.0080 +vertex 0.0740 0.0350 0.1220 +vertex 0.0040 0.0350 0.1220 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0050 0.0150 0.1200 -vertex 0.0050 0.0150 -0.0100 -vertex 0.0550 0.0150 -0.0100 +vertex 0.0040 0.0350 0.1220 +vertex 0.0040 0.0350 -0.0080 +vertex 0.0740 0.0350 -0.0080 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0550 0.0550 -0.0100 -vertex 0.0550 0.0550 0.1200 -vertex 0.0550 0.0150 0.1200 +vertex 0.0740 0.0850 -0.0080 +vertex 0.0740 0.0850 0.1220 +vertex 0.0740 0.0350 0.1220 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0550 0.0150 0.1200 -vertex 0.0550 0.0150 -0.0100 -vertex 0.0550 0.0550 -0.0100 +vertex 0.0740 0.0350 0.1220 +vertex 0.0740 0.0350 -0.0080 +vertex 0.0740 0.0850 -0.0080 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0050 0.0150 -0.0100 -vertex 0.0050 0.0150 0.1200 -vertex 0.0050 0.0550 0.1200 +vertex 0.0040 0.0350 -0.0080 +vertex 0.0040 0.0350 0.1220 +vertex 0.0040 0.0850 0.1220 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0050 0.0550 0.1200 -vertex 0.0050 0.0550 -0.0100 -vertex 0.0050 0.0150 -0.0100 +vertex 0.0040 0.0850 0.1220 +vertex 0.0040 0.0850 -0.0080 +vertex 0.0040 0.0350 -0.0080 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0050 -0.0550 0.0000 -vertex 0.0050 -0.0550 -0.0100 -vertex 0.0050 -0.0250 -0.0100 +vertex 0.0040 -0.0850 0.0000 +vertex 0.0040 -0.0850 -0.0080 +vertex 0.0040 -0.0350 -0.0080 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0050 -0.0250 -0.0100 -vertex 0.0050 -0.0250 0.0000 -vertex 0.0050 -0.0550 0.0000 +vertex 0.0040 -0.0350 -0.0080 +vertex 0.0040 -0.0350 0.0000 +vertex 0.0040 -0.0850 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0050 0.0550 -0.0100 -vertex 0.0050 0.0550 0.0000 -vertex 0.0050 0.0250 0.0000 +vertex 0.0040 0.0850 -0.0080 +vertex 0.0040 0.0850 0.0000 +vertex 0.0040 0.0350 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0050 0.0250 0.0000 -vertex 0.0050 0.0250 -0.0100 -vertex 0.0050 0.0550 -0.0100 +vertex 0.0040 0.0350 0.0000 +vertex 0.0040 0.0350 -0.0080 +vertex 0.0040 0.0850 -0.0080 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0550 0.0150 0.1200 -vertex 0.0550 0.0550 0.1200 -vertex 0.0453 0.0550 0.1394 +vertex 0.0740 0.0350 0.1220 +vertex 0.0740 0.0850 0.1220 +vertex 0.0555 0.0850 0.1484 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0453 0.0550 0.1394 -vertex 0.0300 0.0550 0.1700 -vertex 0.0550 0.0150 0.1200 +vertex 0.0555 0.0850 0.1484 +vertex 0.0390 0.0850 0.1720 +vertex 0.0740 0.0350 0.1220 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0300 0.0150 0.1200 -vertex 0.0550 0.0150 0.1200 -vertex 0.0300 0.0550 0.1700 +vertex 0.0390 0.0350 0.1220 +vertex 0.0740 0.0350 0.1220 +vertex 0.0390 0.0850 0.1720 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0300 0.0150 0.1200 -vertex 0.0300 0.0550 0.1700 -vertex 0.0050 0.0150 0.1200 +vertex 0.0390 0.0350 0.1220 +vertex 0.0390 0.0850 0.1720 +vertex 0.0040 0.0350 0.1220 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0147 0.0550 0.1394 -vertex 0.0050 0.0550 0.1200 -vertex 0.0050 0.0150 0.1200 +vertex 0.0225 0.0850 0.1484 +vertex 0.0040 0.0850 0.1220 +vertex 0.0040 0.0350 0.1220 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0050 0.0150 0.1200 -vertex 0.0300 0.0550 0.1700 -vertex 0.0147 0.0550 0.1394 +vertex 0.0040 0.0350 0.1220 +vertex 0.0390 0.0850 0.1720 +vertex 0.0225 0.0850 0.1484 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0550 0.0550 0.1200 -vertex 0.0550 0.0150 0.1200 -vertex 0.0453 0.0550 0.1394 +vertex 0.0740 0.0850 0.1220 +vertex 0.0740 0.0350 0.1220 +vertex 0.0555 0.0850 0.1484 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0550 0.0550 0.1200 -vertex 0.0453 0.0550 0.1394 -vertex 0.0550 0.0150 0.1200 +vertex 0.0740 0.0850 0.1220 +vertex 0.0555 0.0850 0.1484 +vertex 0.0740 0.0350 0.1220 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0050 0.0550 0.1200 -vertex 0.0147 0.0550 0.1394 -vertex 0.0050 0.0150 0.1200 +vertex 0.0040 0.0850 0.1220 +vertex 0.0225 0.0850 0.1484 +vertex 0.0040 0.0350 0.1220 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0050 0.0550 0.1200 -vertex 0.0050 0.0150 0.1200 -vertex 0.0147 0.0550 0.1394 +vertex 0.0040 0.0850 0.1220 +vertex 0.0040 0.0350 0.1220 +vertex 0.0225 0.0850 0.1484 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0050 0.0150 -0.0100 -vertex 0.0050 0.0550 -0.0100 -vertex 0.0300 0.0550 -0.0100 +vertex 0.0040 0.0350 -0.0080 +vertex 0.0040 0.0850 -0.0080 +vertex 0.0390 0.0850 -0.0080 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0300 0.0150 -0.0100 -vertex 0.0050 0.0150 -0.0100 -vertex 0.0300 0.0550 -0.0100 +vertex 0.0390 0.0350 -0.0080 +vertex 0.0040 0.0350 -0.0080 +vertex 0.0390 0.0850 -0.0080 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0300 0.0150 -0.0100 -vertex 0.0300 0.0550 -0.0100 -vertex 0.0550 0.0150 -0.0100 +vertex 0.0390 0.0350 -0.0080 +vertex 0.0390 0.0850 -0.0080 +vertex 0.0740 0.0350 -0.0080 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0300 0.0550 -0.0100 -vertex 0.0550 0.0550 -0.0100 -vertex 0.0550 0.0150 -0.0100 +vertex 0.0390 0.0850 -0.0080 +vertex 0.0740 0.0850 -0.0080 +vertex 0.0740 0.0350 -0.0080 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0050 0.0550 -0.0100 -vertex 0.0050 0.0150 -0.0100 -vertex 0.0450 0.0550 -0.0100 +vertex 0.0040 0.0850 -0.0080 +vertex 0.0040 0.0350 -0.0080 +vertex 0.0540 0.0850 -0.0080 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0050 0.0550 -0.0100 -vertex 0.0450 0.0550 -0.0100 -vertex 0.0050 0.0150 -0.0100 +vertex 0.0040 0.0850 -0.0080 +vertex 0.0540 0.0850 -0.0080 +vertex 0.0040 0.0350 -0.0080 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0550 0.0550 -0.0100 -vertex 0.0150 0.0550 -0.0100 -vertex 0.0550 0.0150 -0.0100 +vertex 0.0740 0.0850 -0.0080 +vertex 0.0240 0.0850 -0.0080 +vertex 0.0740 0.0350 -0.0080 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0550 0.0550 -0.0100 -vertex 0.0550 0.0150 -0.0100 -vertex 0.0150 0.0550 -0.0100 +vertex 0.0740 0.0850 -0.0080 +vertex 0.0740 0.0350 -0.0080 +vertex 0.0240 0.0850 -0.0080 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0120 -0.0255 -0.0100 -vertex -0.0120 -0.0255 0.0000 -vertex -0.0120 0.0255 0.0000 +vertex -0.0120 -0.0305 -0.0100 +vertex -0.0120 -0.0305 0.0000 +vertex -0.0120 0.0305 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0120 0.0255 0.0000 -vertex -0.0120 0.0255 -0.0100 -vertex -0.0120 -0.0255 -0.0100 +vertex -0.0120 0.0305 0.0000 +vertex -0.0120 0.0305 -0.0100 +vertex -0.0120 -0.0305 -0.0100 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0000 -0.0255 -0.0450 -vertex 0.0000 -0.0255 -0.0400 -vertex -0.0120 -0.0255 -0.0400 +vertex 0.0000 -0.0305 -0.0450 +vertex 0.0000 -0.0305 -0.0400 +vertex -0.0120 -0.0305 -0.0400 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0120 -0.0255 -0.0400 -vertex -0.0120 -0.0255 -0.0450 -vertex 0.0000 -0.0255 -0.0450 +vertex -0.0120 -0.0305 -0.0400 +vertex -0.0120 -0.0305 -0.0450 +vertex 0.0000 -0.0305 -0.0450 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0120 -0.0255 -0.0450 -vertex 0.0120 -0.0255 -0.0400 -vertex 0.0000 -0.0255 -0.0400 +vertex 0.0120 -0.0305 -0.0450 +vertex 0.0120 -0.0305 -0.0400 +vertex 0.0000 -0.0305 -0.0400 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0000 -0.0255 -0.0400 -vertex 0.0000 -0.0255 -0.0450 -vertex 0.0120 -0.0255 -0.0450 +vertex 0.0000 -0.0305 -0.0400 +vertex 0.0000 -0.0305 -0.0450 +vertex 0.0120 -0.0305 -0.0450 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0000 0.0255 -0.0450 -vertex 0.0000 0.0255 -0.0400 -vertex 0.0120 0.0255 -0.0400 +vertex 0.0000 0.0305 -0.0450 +vertex 0.0000 0.0305 -0.0400 +vertex 0.0120 0.0305 -0.0400 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0120 0.0255 -0.0400 -vertex 0.0120 0.0255 -0.0450 -vertex 0.0000 0.0255 -0.0450 +vertex 0.0120 0.0305 -0.0400 +vertex 0.0120 0.0305 -0.0450 +vertex 0.0000 0.0305 -0.0450 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0120 0.0255 -0.0450 -vertex -0.0120 0.0255 -0.0400 -vertex 0.0000 0.0255 -0.0400 +vertex -0.0120 0.0305 -0.0450 +vertex -0.0120 0.0305 -0.0400 +vertex 0.0000 0.0305 -0.0400 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0000 0.0255 -0.0400 -vertex 0.0000 0.0255 -0.0450 -vertex -0.0120 0.0255 -0.0450 +vertex 0.0000 0.0305 -0.0400 +vertex 0.0000 0.0305 -0.0450 +vertex -0.0120 0.0305 -0.0450 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0050 -0.0250 -0.0100 -vertex -0.0050 -0.0250 0.0000 -vertex -0.0050 0.0250 0.0000 +vertex -0.0040 -0.0350 -0.0080 +vertex -0.0040 -0.0350 0.0000 +vertex -0.0040 0.0350 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0050 0.0250 0.0000 -vertex -0.0050 0.0250 -0.0100 -vertex -0.0050 -0.0250 -0.0100 +vertex -0.0040 0.0350 0.0000 +vertex -0.0040 0.0350 -0.0080 +vertex -0.0040 -0.0350 -0.0080 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0460 0.0478 0.1397 -vertex 0.0453 0.0550 0.1394 -vertex 0.0550 0.0550 0.1200 +vertex 0.0564 0.0743 0.1491 +vertex 0.0555 0.0850 0.1484 +vertex 0.0740 0.0850 0.1220 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0550 0.0550 0.1200 -vertex 0.0557 0.0478 0.1203 -vertex 0.0460 0.0478 0.1397 +vertex 0.0740 0.0850 0.1220 +vertex 0.0749 0.0743 0.1226 +vertex 0.0564 0.0743 0.1491 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0043 0.0478 0.1203 -vertex 0.0050 0.0550 0.1200 -vertex 0.0147 0.0550 0.1394 +vertex 0.0031 0.0743 0.1226 +vertex 0.0040 0.0850 0.1220 +vertex 0.0225 0.0850 0.1484 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0147 0.0550 0.1394 -vertex 0.0140 0.0478 0.1397 -vertex 0.0043 0.0478 0.1203 +vertex 0.0225 0.0850 0.1484 +vertex 0.0216 0.0743 0.1491 +vertex 0.0031 0.0743 0.1226 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0450 0.0417 -0.0114 -vertex 0.0450 0.0550 -0.0100 -vertex 0.0050 0.0550 -0.0100 +vertex 0.0540 0.0684 -0.0097 +vertex 0.0540 0.0850 -0.0080 +vertex 0.0040 0.0850 -0.0080 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0050 0.0550 -0.0100 -vertex 0.0050 0.0417 -0.0114 -vertex 0.0450 0.0417 -0.0114 +vertex 0.0040 0.0850 -0.0080 +vertex 0.0040 0.0684 -0.0097 +vertex 0.0540 0.0684 -0.0097 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0550 0.0417 -0.0114 -vertex 0.0550 0.0550 -0.0100 -vertex 0.0150 0.0550 -0.0100 +vertex 0.0740 0.0684 -0.0097 +vertex 0.0740 0.0850 -0.0080 +vertex 0.0240 0.0850 -0.0080 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0150 0.0550 -0.0100 -vertex 0.0150 0.0417 -0.0114 -vertex 0.0550 0.0417 -0.0114 +vertex 0.0240 0.0850 -0.0080 +vertex 0.0240 0.0684 -0.0097 +vertex 0.0740 0.0684 -0.0097 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0050 -0.0600 -0.0100 -vertex 0.0050 -0.0550 -0.0100 -vertex 0.0050 -0.0550 0.0000 +vertex 0.0040 -0.0900 -0.0080 +vertex 0.0040 -0.0850 -0.0080 +vertex 0.0040 -0.0850 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0050 -0.0550 0.0000 -vertex 0.0050 -0.0600 0.0000 -vertex 0.0050 -0.0600 -0.0100 +vertex 0.0040 -0.0850 0.0000 +vertex 0.0040 -0.0900 0.0000 +vertex 0.0040 -0.0900 -0.0080 endloop endfacet endsolid python diff --git a/rocolib/output/ESP32StackBoat/graph-silhouette.dxf b/rocolib/output/ESP32StackBoat/graph-silhouette.dxf index 3ccc91f34d1a162064f08ca338c0edd31317f632..2b1bbe5c6f71dd411292bf3ac752e4b4c634895c 100644 --- a/rocolib/output/ESP32StackBoat/graph-silhouette.dxf +++ b/rocolib/output/ESP32StackBoat/graph-silhouette.dxf @@ -947,13 +947,13 @@ DOTTED 10 34.0 20 -45.0 +59.50000000000001 30 0.0 11 34.0 21 -96.00000000000001 +120.50000000000001 31 0.0 0 @@ -967,13 +967,13 @@ DOTTED 10 10.000000000000002 20 -96.00000000000001 +120.50000000000001 30 0.0 11 10.000000000000002 21 -45.0 +59.50000000000001 31 0.0 0 @@ -987,13 +987,13 @@ DOTTED 10 10.000000000000002 20 -45.0 +59.50000000000001 30 0.0 11 22.000000000000004 21 -45.0 +59.50000000000001 31 0.0 0 @@ -1007,13 +1007,13 @@ DOTTED 10 22.000000000000004 20 -45.0 +59.50000000000001 30 0.0 11 34.0 21 -45.0 +59.50000000000001 31 0.0 0 @@ -1025,13 +1025,13 @@ LINE 10 34.0 20 -45.0 +59.50000000000001 30 0.0 11 34.0 21 -45.0 +59.50000000000001 31 0.0 0 @@ -1043,13 +1043,13 @@ LINE 10 10.000000000000002 20 -45.0 +59.50000000000001 30 0.0 11 10.000000000000002 21 -45.0 +59.50000000000001 31 0.0 0 @@ -1061,13 +1061,13 @@ LINE 10 10.000000000000002 20 -5.000000000000001 +19.500000000000004 30 0.0 11 10.000000000000002 21 -45.0 +59.50000000000001 31 0.0 0 @@ -1079,13 +1079,13 @@ LINE 10 22.000000000000004 20 -45.0 +59.50000000000001 30 0.0 11 22.000000000000004 21 -5.000000000000001 +19.500000000000004 31 0.0 0 @@ -1097,13 +1097,13 @@ LINE 10 10.000000000000002 20 -0.0 +14.5 30 0.0 11 10.000000000000002 21 -5.000000000000001 +19.500000000000004 31 0.0 0 @@ -1115,13 +1115,13 @@ LINE 10 22.000000000000004 20 -0.0 +14.5 30 0.0 11 10.000000000000002 21 -0.0 +14.5 31 0.0 0 @@ -1133,13 +1133,13 @@ LINE 10 22.000000000000004 20 -5.000000000000001 +19.500000000000004 30 0.0 11 22.000000000000004 21 -0.0 +14.5 31 0.0 0 @@ -1151,13 +1151,13 @@ LINE 10 22.000000000000004 20 -5.000000000000001 +19.500000000000004 30 0.0 11 22.000000000000004 21 -45.0 +59.50000000000001 31 0.0 0 @@ -1169,13 +1169,13 @@ LINE 10 34.0 20 -45.0 +59.50000000000001 30 0.0 11 34.0 21 -5.000000000000001 +19.500000000000004 31 0.0 0 @@ -1187,13 +1187,13 @@ LINE 10 22.000000000000004 20 -0.0 +14.5 30 0.0 11 22.000000000000004 21 -5.000000000000001 +19.500000000000004 31 0.0 0 @@ -1205,13 +1205,13 @@ LINE 10 34.0 20 -0.0 +14.5 30 0.0 11 22.000000000000004 21 -0.0 +14.5 31 0.0 0 @@ -1223,13 +1223,13 @@ LINE 10 34.0 20 -5.000000000000001 +19.500000000000004 30 0.0 11 34.0 21 -0.0 +14.5 31 0.0 0 @@ -1241,13 +1241,13 @@ LINE 10 70.00000000000001 20 -45.0 +59.50000000000001 30 0.0 11 34.0 21 -45.0 +59.50000000000001 31 0.0 0 @@ -1261,13 +1261,13 @@ DOTTED 10 70.00000000000001 20 -45.0 +59.50000000000001 30 0.0 11 70.00000000000001 21 -96.00000000000001 +120.50000000000001 31 0.0 0 @@ -1279,13 +1279,13 @@ LINE 10 34.0 20 -96.00000000000001 +120.50000000000001 30 0.0 11 70.00000000000001 21 -96.00000000000001 +120.50000000000001 31 0.0 0 @@ -1297,13 +1297,13 @@ LINE 10 94.00000000000001 20 -45.0 +59.50000000000001 30 0.0 11 70.00000000000001 21 -45.0 +59.50000000000001 31 0.0 0 @@ -1317,13 +1317,13 @@ DOTTED 10 94.00000000000001 20 -45.0 +59.50000000000001 30 0.0 11 94.00000000000001 21 -96.00000000000001 +120.50000000000001 31 0.0 0 @@ -1335,13 +1335,13 @@ LINE 10 70.00000000000001 20 -96.00000000000001 +120.50000000000001 30 0.0 11 94.00000000000001 21 -96.00000000000001 +120.50000000000001 31 0.0 0 @@ -1353,13 +1353,13 @@ LINE 10 130.0 20 -45.0 +59.50000000000001 30 0.0 11 94.00000000000001 21 -45.0 +59.50000000000001 31 0.0 0 @@ -1371,13 +1371,13 @@ LINE 10 130.0 20 -96.00000000000001 +120.50000000000001 30 0.0 11 130.0 21 -45.0 +59.50000000000001 31 0.0 0 @@ -1389,13 +1389,13 @@ LINE 10 94.00000000000001 20 -96.00000000000001 +120.50000000000001 30 0.0 11 130.0 21 -96.00000000000001 +120.50000000000001 31 0.0 0 @@ -1409,13 +1409,13 @@ DOTTED 10 34.0 20 -96.00000000000001 +120.50000000000001 30 0.0 11 22.000000000000004 21 -96.00000000000001 +120.50000000000001 31 0.0 0 @@ -1429,13 +1429,13 @@ DOTTED 10 22.000000000000004 20 -96.00000000000001 +120.50000000000001 30 0.0 11 10.000000000000002 21 -96.00000000000001 +120.50000000000001 31 0.0 0 @@ -1447,13 +1447,13 @@ LINE 10 10.000000000000002 20 -96.00000000000001 +120.50000000000001 30 0.0 11 10.000000000000002 21 -96.00000000000001 +120.50000000000001 31 0.0 0 @@ -1465,13 +1465,13 @@ LINE 10 34.0 20 -96.00000000000001 +120.50000000000001 30 0.0 11 34.0 21 -96.00000000000001 +120.50000000000001 31 0.0 0 @@ -1483,13 +1483,13 @@ LINE 10 34.0 20 -136.0 +160.50000000000003 30 0.0 11 34.0 21 -96.00000000000001 +120.50000000000001 31 0.0 0 @@ -1501,13 +1501,13 @@ LINE 10 22.000000000000004 20 -96.00000000000001 +120.50000000000001 30 0.0 11 22.000000000000004 21 -136.0 +160.50000000000003 31 0.0 0 @@ -1519,13 +1519,13 @@ LINE 10 34.0 20 -141.0 +165.50000000000003 30 0.0 11 34.0 21 -136.0 +160.50000000000003 31 0.0 0 @@ -1537,13 +1537,13 @@ LINE 10 22.000000000000004 20 -141.0 +165.50000000000003 30 0.0 11 34.0 21 -141.0 +165.50000000000003 31 0.0 0 @@ -1555,13 +1555,13 @@ LINE 10 22.000000000000004 20 -136.0 +160.50000000000003 30 0.0 11 22.000000000000004 21 -141.0 +165.50000000000003 31 0.0 0 @@ -1573,13 +1573,13 @@ LINE 10 22.000000000000004 20 -136.0 +160.50000000000003 30 0.0 11 22.000000000000004 21 -96.00000000000001 +120.50000000000001 31 0.0 0 @@ -1591,13 +1591,13 @@ LINE 10 10.000000000000002 20 -96.00000000000001 +120.50000000000001 30 0.0 11 10.000000000000002 21 -136.0 +160.50000000000003 31 0.0 0 @@ -1609,13 +1609,13 @@ LINE 10 22.000000000000004 20 -141.0 +165.50000000000003 30 0.0 11 22.000000000000004 21 -136.0 +160.50000000000003 31 0.0 0 @@ -1627,13 +1627,13 @@ LINE 10 10.000000000000002 20 -141.0 +165.50000000000003 30 0.0 11 22.000000000000004 21 -141.0 +165.50000000000003 31 0.0 0 @@ -1645,13 +1645,13 @@ LINE 10 10.000000000000002 20 -136.0 +160.50000000000003 30 0.0 11 10.000000000000002 21 -141.0 +165.50000000000003 31 0.0 0 @@ -1663,13 +1663,13 @@ LINE 10 0.0 20 -96.00000000000001 +120.50000000000001 30 0.0 11 10.000000000000002 21 -96.00000000000001 +120.50000000000001 31 0.0 0 @@ -1681,13 +1681,13 @@ LINE 10 0.0 20 -45.0 +59.50000000000001 30 0.0 11 0.0 21 -96.00000000000001 +120.50000000000001 31 0.0 0 @@ -1699,13 +1699,13 @@ LINE 10 10.000000000000002 20 -45.0 +59.50000000000001 30 0.0 11 0.0 21 -45.0 +59.50000000000001 31 0.0 0 @@ -1717,13 +1717,13 @@ LINE 10 11.400000000000002 20 -50.0 +69.5 30 0.0 11 12.6 21 -50.0 +69.5 31 0.0 0 @@ -1735,13 +1735,13 @@ LINE 10 12.6 20 -50.0 +69.5 30 0.0 11 12.6 21 -91.0 +110.50000000000001 31 0.0 0 @@ -1753,13 +1753,13 @@ LINE 10 12.6 20 -91.0 +110.50000000000001 30 0.0 11 11.400000000000002 21 -91.0 +110.50000000000001 31 0.0 0 @@ -1771,13 +1771,13 @@ LINE 10 11.400000000000002 20 -91.0 +110.50000000000001 30 0.0 11 11.400000000000002 21 -50.0 +69.5 31 0.0 0 @@ -1789,13 +1789,13 @@ LINE 10 31.400000000000002 20 -50.50000000000001 +70.00000000000001 30 0.0 11 32.60000000000001 21 -50.50000000000001 +70.00000000000001 31 0.0 0 @@ -1807,13 +1807,13 @@ LINE 10 32.60000000000001 20 -50.50000000000001 +70.00000000000001 30 0.0 11 32.60000000000001 21 -80.50000000000001 +100.0 31 0.0 0 @@ -1825,13 +1825,13 @@ LINE 10 32.60000000000001 20 -80.50000000000001 +100.0 30 0.0 11 31.400000000000002 21 -80.50000000000001 +100.0 31 0.0 0 @@ -1843,13 +1843,13 @@ LINE 10 31.400000000000002 20 -80.50000000000001 +100.0 30 0.0 11 31.400000000000002 21 -50.50000000000001 +70.00000000000001 31 0.0 0 @@ -1861,13 +1861,13 @@ LINE 10 18.000000000000004 20 -1.2500000000000002 +15.750000000000002 30 0.0 11 18.000000000000004 21 -3.7500000000000004 +18.25 31 0.0 0 @@ -1879,13 +1879,13 @@ LINE 10 18.000000000000004 20 -3.7500000000000004 +18.25 30 0.0 11 14.000000000000002 21 -3.7500000000000004 +18.25 31 0.0 0 @@ -1897,13 +1897,13 @@ LINE 10 14.000000000000002 20 -3.7500000000000004 +18.25 30 0.0 11 14.000000000000002 21 -1.2500000000000002 +15.750000000000002 31 0.0 0 @@ -1915,13 +1915,13 @@ LINE 10 30.000000000000004 20 -1.2500000000000002 +15.750000000000002 30 0.0 11 30.000000000000004 21 -3.7500000000000004 +18.25 31 0.0 0 @@ -1933,13 +1933,13 @@ LINE 10 30.000000000000004 20 -3.7500000000000004 +18.25 30 0.0 11 26.000000000000004 21 -3.7500000000000004 +18.25 31 0.0 0 @@ -1951,13 +1951,13 @@ LINE 10 26.000000000000004 20 -3.7500000000000004 +18.25 30 0.0 11 26.000000000000004 21 -1.2500000000000002 +15.750000000000002 31 0.0 0 @@ -1969,13 +1969,13 @@ LINE 10 30.000000000000004 20 -91.50000000000001 +111.00000000000001 30 0.0 11 30.000000000000004 21 -73.50000000000001 +93.00000000000001 31 0.0 0 @@ -1987,13 +1987,13 @@ LINE 10 30.000000000000004 20 -73.50000000000001 +93.00000000000001 30 0.0 11 60.00000000000001 21 -73.50000000000001 +93.00000000000001 31 0.0 0 @@ -2005,13 +2005,13 @@ LINE 10 60.00000000000001 20 -73.50000000000001 +93.00000000000001 30 0.0 11 60.00000000000001 21 -91.50000000000001 +111.00000000000001 31 0.0 0 @@ -2023,13 +2023,13 @@ LINE 10 60.00000000000001 20 -91.50000000000001 +111.00000000000001 30 0.0 11 30.000000000000004 21 -91.50000000000001 +111.00000000000001 31 0.0 0 @@ -2041,13 +2041,13 @@ LINE 10 91.40000000000002 20 -50.0 +69.5 30 0.0 11 92.60000000000001 21 -50.0 +69.5 31 0.0 0 @@ -2059,13 +2059,13 @@ LINE 10 92.60000000000001 20 -50.0 +69.5 30 0.0 11 92.60000000000001 21 -91.0 +110.50000000000001 31 0.0 0 @@ -2077,13 +2077,13 @@ LINE 10 92.60000000000001 20 -91.0 +110.50000000000001 30 0.0 11 91.40000000000002 21 -91.0 +110.50000000000001 31 0.0 0 @@ -2095,13 +2095,13 @@ LINE 10 91.40000000000002 20 -91.0 +110.50000000000001 30 0.0 11 91.40000000000002 21 -50.0 +69.5 31 0.0 0 @@ -2113,13 +2113,13 @@ LINE 10 71.4 20 -50.50000000000001 +70.00000000000001 30 0.0 11 72.60000000000001 21 -50.50000000000001 +70.00000000000001 31 0.0 0 @@ -2131,13 +2131,13 @@ LINE 10 72.60000000000001 20 -50.50000000000001 +70.00000000000001 30 0.0 11 72.60000000000001 21 -80.50000000000001 +100.0 31 0.0 0 @@ -2149,13 +2149,13 @@ LINE 10 72.60000000000001 20 -80.50000000000001 +100.0 30 0.0 11 71.4 21 -80.50000000000001 +100.0 31 0.0 0 @@ -2167,13 +2167,13 @@ LINE 10 71.4 20 -80.50000000000001 +100.0 30 0.0 11 71.4 21 -50.50000000000001 +70.00000000000001 31 0.0 0 @@ -2185,13 +2185,13 @@ LINE 10 97.00000000000001 20 -54.00000000000001 +73.50000000000001 30 0.0 11 97.00000000000001 21 -47.00000000000001 +66.50000000000001 31 0.0 0 @@ -2203,13 +2203,13 @@ LINE 10 97.00000000000001 20 -47.00000000000001 +66.50000000000001 30 0.0 11 117.00000000000001 21 -47.00000000000001 +66.50000000000001 31 0.0 0 @@ -2221,13 +2221,13 @@ LINE 10 117.00000000000001 20 -47.00000000000001 +66.50000000000001 30 0.0 11 117.00000000000001 21 -54.00000000000001 +73.50000000000001 31 0.0 0 @@ -2239,13 +2239,13 @@ LINE 10 117.00000000000001 20 -54.00000000000001 +73.50000000000001 30 0.0 11 97.00000000000001 21 -54.00000000000001 +73.50000000000001 31 0.0 0 @@ -2257,13 +2257,13 @@ LINE 10 122.25000000000001 20 -79.25000000000001 +81.9318181818182 30 0.0 11 122.25000000000001 21 -61.75000000000001 +70.3409090909091 31 0.0 0 @@ -2275,13 +2275,13 @@ LINE 10 122.25000000000001 20 -61.75000000000001 +70.3409090909091 30 0.0 11 122.75000000000001 21 -61.75000000000001 +70.3409090909091 31 0.0 0 @@ -2293,13 +2293,13 @@ LINE 10 122.75000000000001 20 -61.75000000000001 +70.3409090909091 30 0.0 11 122.75000000000001 21 -79.25000000000001 +81.9318181818182 31 0.0 0 @@ -2311,13 +2311,85 @@ LINE 10 122.75000000000001 20 -79.25000000000001 +81.9318181818182 30 0.0 11 122.25000000000001 21 -79.25000000000001 +81.9318181818182 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +122.25000000000001 + 20 +109.65909090909092 + 30 +0.0 + 11 +122.25000000000001 + 21 +98.06818181818183 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +122.25000000000001 + 20 +98.06818181818183 + 30 +0.0 + 11 +122.75000000000001 + 21 +98.06818181818183 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +122.75000000000001 + 20 +98.06818181818183 + 30 +0.0 + 11 +122.75000000000001 + 21 +109.65909090909092 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +122.75000000000001 + 20 +109.65909090909092 + 30 +0.0 + 11 +122.25000000000001 + 21 +109.65909090909092 31 0.0 0 @@ -2329,13 +2401,13 @@ LINE 10 26.000000000000004 20 -139.75000000000003 +164.25000000000003 30 0.0 11 26.000000000000004 21 -137.25000000000003 +161.75 31 0.0 0 @@ -2347,13 +2419,13 @@ LINE 10 26.000000000000004 20 -137.25000000000003 +161.75 30 0.0 11 30.000000000000004 21 -137.25000000000003 +161.75 31 0.0 0 @@ -2365,13 +2437,13 @@ LINE 10 30.000000000000004 20 -137.25000000000003 +161.75 30 0.0 11 30.000000000000004 21 -139.75000000000003 +164.25000000000003 31 0.0 0 @@ -2383,13 +2455,13 @@ LINE 10 14.000000000000002 20 -139.75000000000003 +164.25000000000003 30 0.0 11 14.000000000000002 21 -137.25000000000003 +161.75 31 0.0 0 @@ -2401,13 +2473,13 @@ LINE 10 14.000000000000002 20 -137.25000000000003 +161.75 30 0.0 11 18.000000000000004 21 -137.25000000000003 +161.75 31 0.0 0 @@ -2419,13 +2491,13 @@ LINE 10 18.000000000000004 20 -137.25000000000003 +161.75 30 0.0 11 18.000000000000004 21 -139.75000000000003 +164.25000000000003 31 0.0 0 @@ -2437,13 +2509,13 @@ LINE 10 2.5000000000000004 20 -62.000000000000014 +70.5909090909091 30 0.0 11 -2.5000000000000004 +7.500000000000001 21 -57.00000000000001 +70.5909090909091 31 0.0 0 @@ -2453,15 +2525,15 @@ LINE 8 0 10 -2.5000000000000004 +7.500000000000001 20 -57.00000000000001 +70.5909090909091 30 0.0 11 7.500000000000001 21 -62.000000000000014 +81.68181818181819 31 0.0 0 @@ -2473,13 +2545,31 @@ LINE 10 7.500000000000001 20 -62.000000000000014 +81.68181818181819 + 30 +0.0 + 11 +2.5000000000000004 + 21 +81.68181818181819 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +2.5000000000000004 + 20 +98.31818181818184 30 0.0 11 7.500000000000001 21 -79.00000000000001 +98.31818181818184 31 0.0 0 @@ -2491,13 +2581,13 @@ LINE 10 7.500000000000001 20 -79.00000000000001 +98.31818181818184 30 0.0 11 -2.5000000000000004 +7.500000000000001 21 -84.0 +109.40909090909092 31 0.0 0 @@ -2507,15 +2597,15 @@ LINE 8 0 10 -2.5000000000000004 +7.500000000000001 20 -84.0 +109.40909090909092 30 0.0 11 2.5000000000000004 21 -79.00000000000001 +109.40909090909092 31 0.0 0 @@ -2527,13 +2617,13 @@ LINE 10 186.00000000000003 20 -70.5 +90.0 30 0.0 11 140.00000000000003 21 -70.5 +90.0 31 0.0 0 @@ -2545,13 +2635,13 @@ LINE 10 198.0 20 -70.5 +90.0 30 0.0 11 186.00000000000003 21 -70.5 +90.0 31 0.0 0 @@ -2563,13 +2653,13 @@ LINE 10 210.00000000000003 20 -70.5 +90.0 30 0.0 11 198.0 21 -70.5 +90.0 31 0.0 0 @@ -2581,13 +2671,13 @@ LINE 10 222.00000000000003 20 -70.5 +90.0 30 0.0 11 210.00000000000003 21 -70.5 +90.0 31 0.0 0 @@ -2599,13 +2689,13 @@ LINE 10 234.00000000000003 20 -70.5 +90.0 30 0.0 11 222.00000000000003 21 -70.5 +90.0 31 0.0 0 @@ -2617,13 +2707,13 @@ LINE 10 246.00000000000003 20 -70.5 +90.0 30 0.0 11 234.00000000000003 21 -70.5 +90.0 31 0.0 0 @@ -2635,13 +2725,13 @@ LINE 10 258.0 20 -70.5 +90.0 30 0.0 11 246.00000000000003 21 -70.5 +90.0 31 0.0 0 @@ -2653,13 +2743,13 @@ LINE 10 270.00000000000006 20 -70.5 +90.0 30 0.0 11 258.0 21 -70.5 +90.0 31 0.0 0 @@ -2671,13 +2761,13 @@ LINE 10 270.00000000000006 20 -70.5 +90.0 30 0.0 11 270.00000000000006 21 -70.5 +90.0 31 0.0 0 @@ -2689,13 +2779,13 @@ LINE 10 140.00000000000003 20 -70.5 +90.0 30 0.0 11 270.00000000000006 21 -70.5 +90.0 31 0.0 0 @@ -2707,13 +2797,13 @@ LINE 10 140.00000000000003 20 -70.5 +90.0 30 0.0 11 140.00000000000003 21 -70.5 +90.0 31 0.0 0 @@ -2725,13 +2815,13 @@ LINE 10 206.25000000000003 20 -74.50000000000001 +94.00000000000001 30 0.0 11 201.75000000000003 21 -74.50000000000001 +94.00000000000001 31 0.0 0 @@ -2743,13 +2833,13 @@ LINE 10 201.75000000000003 20 -74.50000000000001 +94.00000000000001 30 0.0 11 201.75000000000003 21 -74.0 +93.50000000000001 31 0.0 0 @@ -2761,13 +2851,13 @@ LINE 10 201.75000000000003 20 -74.0 +93.50000000000001 30 0.0 11 206.25000000000003 21 -74.0 +93.50000000000001 31 0.0 0 @@ -2779,13 +2869,13 @@ LINE 10 206.25000000000003 20 -74.0 +93.50000000000001 30 0.0 11 206.25000000000003 21 -74.50000000000001 +94.00000000000001 31 0.0 0 @@ -2797,13 +2887,13 @@ LINE 10 218.25000000000003 20 -74.50000000000001 +94.00000000000001 30 0.0 11 213.75 21 -74.50000000000001 +94.00000000000001 31 0.0 0 @@ -2815,13 +2905,13 @@ LINE 10 213.75 20 -74.50000000000001 +94.00000000000001 30 0.0 11 213.75 21 -74.0 +93.50000000000001 31 0.0 0 @@ -2833,13 +2923,13 @@ LINE 10 213.75 20 -74.0 +93.50000000000001 30 0.0 11 218.25000000000003 21 -74.0 +93.50000000000001 31 0.0 0 @@ -2851,13 +2941,13 @@ LINE 10 218.25000000000003 20 -74.0 +93.50000000000001 30 0.0 11 218.25000000000003 21 -74.50000000000001 +94.00000000000001 31 0.0 0 @@ -2869,13 +2959,13 @@ LINE 10 326.00000000000006 20 -70.5 +90.0 30 0.0 11 280.00000000000006 21 -70.5 +90.0 31 0.0 0 @@ -2887,13 +2977,13 @@ LINE 10 338.00000000000006 20 -70.5 +90.0 30 0.0 11 326.00000000000006 21 -70.5 +90.0 31 0.0 0 @@ -2905,13 +2995,13 @@ LINE 10 350.0 20 -70.5 +90.0 30 0.0 11 338.00000000000006 21 -70.5 +90.0 31 0.0 0 @@ -2923,13 +3013,13 @@ LINE 10 362.00000000000006 20 -70.5 +90.0 30 0.0 11 350.0 21 -70.5 +90.0 31 0.0 0 @@ -2941,13 +3031,13 @@ LINE 10 374.00000000000006 20 -70.5 +90.0 30 0.0 11 362.00000000000006 21 -70.5 +90.0 31 0.0 0 @@ -2959,13 +3049,13 @@ LINE 10 386.00000000000006 20 -70.5 +90.0 30 0.0 11 374.00000000000006 21 -70.5 +90.0 31 0.0 0 @@ -2977,13 +3067,13 @@ LINE 10 398.00000000000006 20 -70.5 +90.0 30 0.0 11 386.00000000000006 21 -70.5 +90.0 31 0.0 0 @@ -2995,13 +3085,13 @@ LINE 10 410.00000000000006 20 -70.5 +90.0 30 0.0 11 398.00000000000006 21 -70.5 +90.0 31 0.0 0 @@ -3013,13 +3103,13 @@ LINE 10 410.00000000000006 20 -70.5 +90.0 30 0.0 11 410.00000000000006 21 -70.5 +90.0 31 0.0 0 @@ -3031,13 +3121,13 @@ LINE 10 280.00000000000006 20 -70.5 +90.0 30 0.0 11 410.00000000000006 21 -70.5 +90.0 31 0.0 0 @@ -3049,13 +3139,13 @@ LINE 10 280.00000000000006 20 -70.5 +90.0 30 0.0 11 280.00000000000006 21 -70.5 +90.0 31 0.0 0 @@ -3067,13 +3157,13 @@ LINE 10 334.25000000000006 20 -74.50000000000001 +94.00000000000001 30 0.0 11 329.75000000000006 21 -74.50000000000001 +94.00000000000001 31 0.0 0 @@ -3085,13 +3175,13 @@ LINE 10 329.75000000000006 20 -74.50000000000001 +94.00000000000001 30 0.0 11 329.75000000000006 21 -74.0 +93.50000000000001 31 0.0 0 @@ -3103,13 +3193,13 @@ LINE 10 329.75000000000006 20 -74.0 +93.50000000000001 30 0.0 11 334.25000000000006 21 -74.0 +93.50000000000001 31 0.0 0 @@ -3121,13 +3211,13 @@ LINE 10 334.25000000000006 20 -74.0 +93.50000000000001 30 0.0 11 334.25000000000006 21 -74.50000000000001 +94.00000000000001 31 0.0 0 @@ -3139,13 +3229,13 @@ LINE 10 346.25 20 -74.50000000000001 +94.00000000000001 30 0.0 11 341.75 21 -74.50000000000001 +94.00000000000001 31 0.0 0 @@ -3157,13 +3247,13 @@ LINE 10 341.75 20 -74.50000000000001 +94.00000000000001 30 0.0 11 341.75 21 -74.0 +93.50000000000001 31 0.0 0 @@ -3175,13 +3265,13 @@ LINE 10 341.75 20 -74.0 +93.50000000000001 30 0.0 11 346.25 21 -74.0 +93.50000000000001 31 0.0 0 @@ -3193,13 +3283,13 @@ LINE 10 346.25 20 -74.0 +93.50000000000001 30 0.0 11 346.25 21 -74.50000000000001 +94.00000000000001 31 0.0 0 @@ -3209,15 +3299,15 @@ LINE 8 0 10 -604.0312423743285 +612.710678118655 20 -45.5 +55.00000000000001 30 0.0 11 -594.0312423743285 +604.710678118655 21 -45.5 +55.00000000000001 31 0.0 0 @@ -3229,15 +3319,15 @@ DOTTED 8 0 10 -604.0312423743285 +612.710678118655 20 -45.5 +55.00000000000001 30 0.0 11 -604.0312423743285 +612.710678118655 21 -95.5 +125.00000000000001 31 0.0 0 @@ -3247,15 +3337,15 @@ LINE 8 0 10 -594.0312423743285 +604.710678118655 20 -95.5 +125.00000000000001 30 0.0 11 -604.0312423743285 +612.710678118655 21 -95.5 +125.00000000000001 31 0.0 0 @@ -3267,15 +3357,15 @@ DOTTED 8 0 10 -594.0312423743285 +604.710678118655 20 -95.5 +125.00000000000001 30 0.0 11 -594.0312423743285 +604.710678118655 21 -45.5 +55.00000000000001 31 0.0 0 @@ -3287,15 +3377,15 @@ DOTTED 8 0 10 -614.0312423743285 +620.710678118655 20 -45.5 +55.00000000000001 30 0.0 11 -614.0312423743285 +620.710678118655 21 -95.5 +125.00000000000001 31 0.0 0 @@ -3305,15 +3395,15 @@ LINE 8 0 10 -614.0312423743285 +620.710678118655 20 -45.5 +55.00000000000001 30 0.0 11 -614.0312423743285 +620.710678118655 21 -15.500000000000004 +5.000000000000001 31 0.0 0 @@ -3323,15 +3413,15 @@ LINE 8 0 10 -604.0312423743285 +612.710678118655 20 -15.500000000000004 +5.000000000000001 30 0.0 11 -604.0312423743285 +612.710678118655 21 -45.5 +55.00000000000001 31 0.0 0 @@ -3341,15 +3431,15 @@ LINE 8 0 10 -604.0312423743285 +612.710678118655 20 -10.5 +0.0 30 0.0 11 -604.0312423743285 +612.710678118655 21 -15.500000000000004 +5.000000000000001 31 0.0 0 @@ -3359,15 +3449,15 @@ LINE 8 0 10 -614.0312423743285 +620.710678118655 20 -10.5 +0.0 30 0.0 11 -604.0312423743285 +612.710678118655 21 -10.5 +0.0 31 0.0 0 @@ -3377,15 +3467,15 @@ LINE 8 0 10 -614.0312423743285 +620.710678118655 20 -15.500000000000004 +5.000000000000001 30 0.0 11 -614.0312423743285 +620.710678118655 21 -10.5 +0.0 31 0.0 0 @@ -3395,15 +3485,15 @@ LINE 8 0 10 -624.0312423743286 +628.710678118655 20 -45.5 +55.00000000000001 30 0.0 11 -614.0312423743285 +620.710678118655 21 -45.5 +55.00000000000001 31 0.0 0 @@ -3415,15 +3505,15 @@ DOTTED 8 0 10 -624.0312423743286 +628.710678118655 20 -45.5 +55.00000000000001 30 0.0 11 -624.0312423743286 +628.710678118655 21 -95.5 +125.00000000000001 31 0.0 0 @@ -3433,15 +3523,15 @@ LINE 8 0 10 -614.0312423743285 +620.710678118655 20 -95.5 +125.00000000000001 30 0.0 11 -624.0312423743286 +628.710678118655 21 -95.5 +125.00000000000001 31 0.0 0 @@ -3451,15 +3541,15 @@ LINE 8 0 10 -634.0312423743286 +636.710678118655 20 -45.5 +55.00000000000001 30 0.0 11 -624.0312423743286 +628.710678118655 21 -45.5 +55.00000000000001 31 0.0 0 @@ -3469,15 +3559,15 @@ LINE 8 0 10 -634.0312423743286 +636.710678118655 20 -95.5 +125.00000000000001 30 0.0 11 -634.0312423743286 +636.710678118655 21 -45.5 +55.00000000000001 31 0.0 0 @@ -3487,15 +3577,15 @@ LINE 8 0 10 -624.0312423743286 +628.710678118655 20 -95.5 +125.00000000000001 30 0.0 11 -634.0312423743286 +636.710678118655 21 -95.5 +125.00000000000001 31 0.0 0 @@ -3505,15 +3595,15 @@ LINE 8 0 10 -604.0312423743285 +612.710678118655 20 -95.5 +125.00000000000001 30 0.0 11 -604.0312423743285 +612.710678118655 21 -125.50000000000001 +175.0 31 0.0 0 @@ -3523,15 +3613,15 @@ LINE 8 0 10 -614.0312423743285 +620.710678118655 20 -125.50000000000001 +175.0 30 0.0 11 -614.0312423743285 +620.710678118655 21 -95.5 +125.00000000000001 31 0.0 0 @@ -3543,15 +3633,15 @@ DOTTED 8 0 10 -614.0312423743285 +620.710678118655 20 -125.50000000000001 +175.0 30 0.0 11 -604.0312423743285 +612.710678118655 21 -125.50000000000001 +175.0 31 0.0 0 @@ -3561,15 +3651,15 @@ LINE 8 0 10 -604.0312423743285 +612.710678118655 20 -125.50000000000001 +175.0 30 0.0 11 -484.03124237432854 +490.7106781186549 21 -125.50000000000001 +175.0 31 0.0 0 @@ -3579,15 +3669,15 @@ LINE 8 0 10 -614.0312423743285 +620.710678118655 20 -125.50000000000001 +175.0 30 0.0 11 -614.0312423743285 +620.710678118655 21 -125.50000000000001 +175.0 31 0.0 0 @@ -3597,15 +3687,15 @@ LINE 8 0 10 -484.03124237432854 +490.7106781186549 20 -125.50000000000001 +175.0 30 0.0 11 -484.03124237432854 +490.7106781186549 21 -125.50000000000001 +175.0 31 0.0 0 @@ -3617,15 +3707,15 @@ DOTTED 8 0 10 -484.03124237432854 +490.7106781186549 20 -165.50000000000003 +225.00000000000003 30 0.0 11 -614.0312423743285 +620.710678118655 21 -165.50000000000003 +225.00000000000003 31 0.0 0 @@ -3637,15 +3727,15 @@ DOTTED 8 0 10 -484.03124237432854 +490.7106781186549 20 -125.50000000000001 +175.0 30 0.0 11 -484.03124237432854 +490.7106781186549 21 -165.50000000000003 +225.00000000000003 31 0.0 0 @@ -3657,15 +3747,15 @@ DOTTED 8 0 10 -462.35246120943856 +458.4510113187008 20 -125.50000000000001 +175.0 30 0.0 11 -484.03124237432854 +490.7106781186549 21 -165.50000000000003 +225.00000000000003 31 0.0 0 @@ -3677,15 +3767,15 @@ DOTTED 8 0 10 -462.35246120943856 +458.4510113187008 20 -125.50000000000001 +175.0 30 0.0 11 -484.03124237432854 +490.7106781186549 21 -125.50000000000001 +175.0 31 0.0 0 @@ -3695,15 +3785,15 @@ LINE 8 0 10 -462.35246120943856 +458.45101131870075 20 -125.50000000000001 +175.0 30 0.0 11 -450.51765777402795 +445.1550063219791 21 -143.66334166502364 +204.3922158601766 31 0.0 0 @@ -3715,15 +3805,15 @@ DOTTED 8 0 10 -450.51765777402795 +445.1550063219791 20 -143.66334166502364 +204.3922158601766 30 0.0 11 -484.03124237432854 +490.7106781186549 21 -165.50000000000003 +225.00000000000003 31 0.0 0 @@ -3735,15 +3825,15 @@ DOTTED 8 0 10 -420.00000000000006 +420.00000000000017 20 -190.50000000000003 +260.0 30 0.0 11 -484.03124237432854 +490.7106781186549 21 -165.50000000000003 +225.00000000000003 31 0.0 0 @@ -3753,15 +3843,15 @@ LINE 8 0 10 -438.68285433861735 +431.85900132525745 20 -161.8266833300472 +233.78443172035318 30 0.0 11 -420.00000000000006 +420.00000000000017 21 -190.50000000000003 +260.0 31 0.0 0 @@ -3771,15 +3861,15 @@ LINE 8 0 10 -450.51765777402795 +445.15500632197916 20 -143.6633416650236 +204.3922158601766 30 0.0 11 -438.68285433861735 +431.85900132525745 21 -161.8266833300472 +233.78443172035318 31 0.0 0 @@ -3791,15 +3881,15 @@ DOTTED 8 0 10 -484.03124237432854 +490.7106781186549 20 -165.50000000000003 +225.00000000000003 30 0.0 11 -484.03124237432854 +490.7106781186549 21 -190.50000000000003 +260.0 31 0.0 0 @@ -3811,15 +3901,15 @@ DOTTED 8 0 10 -484.03124237432854 +490.7106781186549 20 -190.50000000000003 +260.0 30 0.0 11 -484.03124237432854 +490.7106781186549 21 -215.50000000000003 +295.0 31 0.0 0 @@ -3831,15 +3921,15 @@ DOTTED 8 0 10 -420.00000000000006 +420.00000000000017 20 -190.50000000000003 +260.0 30 0.0 11 -484.03124237432854 +490.7106781186549 21 -215.50000000000003 +295.0 31 0.0 0 @@ -3851,15 +3941,15 @@ DOTTED 8 0 10 -484.03124237432854 +490.7106781186549 20 -215.50000000000003 +295.0 30 0.0 11 -614.0312423743285 +620.710678118655 21 -215.50000000000003 +295.0 31 0.0 0 @@ -3871,15 +3961,15 @@ DOTTED 8 0 10 -614.0312423743285 +620.710678118655 20 -190.50000000000003 +260.0 30 0.0 11 -614.0312423743285 +620.710678118655 21 -165.50000000000003 +225.00000000000003 31 0.0 0 @@ -3891,15 +3981,15 @@ DOTTED 8 0 10 -614.0312423743285 +620.710678118655 20 -215.50000000000003 +295.0 30 0.0 11 -614.0312423743285 +620.710678118655 21 -190.50000000000003 +260.0 31 0.0 0 @@ -3909,15 +3999,15 @@ LINE 8 0 10 -654.0312423743286 +670.7106781186549 20 -205.5 +275.00000000000006 30 0.0 11 -654.0312423743286 +670.7106781186549 21 -165.50000000000003 +225.00000000000003 31 0.0 0 @@ -3927,15 +4017,15 @@ LINE 8 0 10 -654.0312423743286 +670.7106781186549 20 -190.50000000000003 +260.0 30 0.0 11 -654.0312423743286 +670.7106781186549 21 -205.5 +275.00000000000006 31 0.0 0 @@ -3947,15 +4037,15 @@ DOTTED 8 0 10 -614.0312423743285 +620.710678118655 20 -165.50000000000003 +225.00000000000003 30 0.0 11 -654.0312423743286 +670.7106781186549 21 -165.50000000000003 +225.00000000000003 31 0.0 0 @@ -3967,15 +4057,15 @@ DOTTED 8 0 10 -614.0312423743285 +620.710678118655 20 -165.50000000000003 +225.00000000000003 30 0.0 11 -654.0312423743286 +670.7106781186549 21 -125.50000000000003 +175.00000000000003 31 0.0 0 @@ -3985,15 +4075,15 @@ LINE 8 0 10 -654.0312423743286 +670.7106781186549 20 -165.50000000000003 +225.00000000000003 30 0.0 11 -654.0312423743286 +670.7106781186549 21 -125.50000000000003 +175.00000000000003 31 0.0 0 @@ -4005,15 +4095,15 @@ DOTTED 8 0 10 -614.0312423743285 +620.710678118655 20 -125.50000000000003 +175.0 30 0.0 11 -654.0312423743286 +670.7106781186549 21 -125.50000000000004 +175.0 31 0.0 0 @@ -4025,15 +4115,15 @@ DOTTED 8 0 10 -614.0312423743285 +620.710678118655 20 -165.50000000000003 +225.00000000000003 30 0.0 11 -614.0312423743285 +620.710678118655 21 -125.50000000000003 +175.0 31 0.0 0 @@ -4043,15 +4133,15 @@ LINE 8 0 10 -614.0312423743285 +620.710678118655 20 -112.1666666666667 +158.33333333333337 30 0.0 11 -614.0312423743285 +620.710678118655 21 -125.50000000000004 +175.0 31 0.0 0 @@ -4061,15 +4151,15 @@ LINE 8 0 10 -654.0312423743286 +670.7106781186549 20 -112.16666666666671 +158.33333333333337 30 0.0 11 -614.0312423743285 +620.710678118655 21 -112.1666666666667 +158.33333333333337 31 0.0 0 @@ -4079,15 +4169,15 @@ LINE 8 0 10 -654.0312423743286 +670.7106781186549 20 -125.50000000000004 +175.0 30 0.0 11 -654.0312423743286 +670.7106781186549 21 -112.16666666666671 +158.33333333333337 31 0.0 0 @@ -4099,15 +4189,15 @@ DOTTED 8 0 10 -654.0312423743286 +670.7106781186549 20 -215.50000000000003 +295.0 30 0.0 11 -614.0312423743285 +620.710678118655 21 -215.50000000000003 +295.0 31 0.0 0 @@ -4117,15 +4207,15 @@ LINE 8 0 10 -654.0312423743286 +670.7106781186549 20 -175.5 +245.00000000000003 30 0.0 11 -654.0312423743286 +670.7106781186549 21 -190.50000000000003 +260.0 31 0.0 0 @@ -4135,15 +4225,15 @@ LINE 8 0 10 -654.0312423743286 +670.7106781186549 20 -215.50000000000003 +295.0 30 0.0 11 -654.0312423743286 +670.7106781186549 21 -175.5 +245.00000000000003 31 0.0 0 @@ -4153,15 +4243,15 @@ LINE 8 0 10 -654.0312423743286 +670.7106781186549 20 -255.5 +345.00000000000006 30 0.0 11 -654.0312423743286 +670.7106781186549 21 -215.50000000000003 +295.0 31 0.0 0 @@ -4173,15 +4263,15 @@ DOTTED 8 0 10 -654.0312423743286 +670.7106781186549 20 -255.5 +345.00000000000006 30 0.0 11 -614.0312423743285 +620.710678118655 21 -215.50000000000003 +295.0 31 0.0 0 @@ -4193,15 +4283,15 @@ DOTTED 8 0 10 -614.0312423743285 +620.710678118655 20 -255.50000000000006 +345.00000000000006 30 0.0 11 -614.0312423743285 +620.710678118655 21 -215.50000000000006 +295.0 31 0.0 0 @@ -4213,15 +4303,15 @@ DOTTED 8 0 10 -654.0312423743286 +670.7106781186549 20 -255.50000000000003 +345.00000000000006 30 0.0 11 -614.0312423743285 +620.710678118655 21 -255.50000000000006 +345.00000000000006 31 0.0 0 @@ -4233,15 +4323,15 @@ DOTTED 8 0 10 -484.03124237432854 +490.71067811865487 20 -215.50000000000009 +295.0 30 0.0 11 -484.03124237432854 +490.71067811865487 21 -255.50000000000009 +345.00000000000006 31 0.0 0 @@ -4253,15 +4343,15 @@ DOTTED 8 0 10 -484.03124237432854 +490.71067811865487 20 -255.50000000000006 +345.00000000000006 30 0.0 11 -462.3524612094386 +458.45101131870075 21 -255.50000000000009 +345.00000000000006 31 0.0 0 @@ -4273,15 +4363,15 @@ DOTTED 8 0 10 -484.03124237432854 +490.71067811865487 20 -215.50000000000009 +295.0 30 0.0 11 -462.3524612094386 +458.45101131870075 21 -255.50000000000009 +345.00000000000006 31 0.0 0 @@ -4291,15 +4381,15 @@ LINE 8 0 10 -484.03124237432854 +490.71067811865487 20 -262.7262603882967 +355.75322226665145 30 0.0 11 -484.03124237432854 +490.71067811865487 21 -255.50000000000006 +345.00000000000006 31 0.0 0 @@ -4309,15 +4399,15 @@ LINE 8 0 10 -462.35246120943856 +458.45101131870075 20 -262.7262603882967 +355.75322226665145 30 0.0 11 -484.03124237432854 +490.71067811865487 21 -262.7262603882967 +355.75322226665145 31 0.0 0 @@ -4327,15 +4417,15 @@ LINE 8 0 10 -462.35246120943856 +458.45101131870075 20 -255.50000000000006 +345.00000000000006 30 0.0 11 -462.35246120943856 +458.45101131870075 21 -262.7262603882967 +355.75322226665145 31 0.0 0 @@ -4347,15 +4437,15 @@ DOTTED 8 0 10 -484.03124237432854 +490.71067811865487 20 -215.50000000000009 +295.0 30 0.0 11 -450.517657774028 +445.1550063219791 21 -237.33665833497648 +315.6077841398234 31 0.0 0 @@ -4365,15 +4455,15 @@ LINE 8 0 10 -450.517657774028 +445.1550063219791 20 -237.33665833497648 +315.6077841398234 30 0.0 11 -462.35246120943856 +458.45101131870075 21 -255.50000000000006 +345.00000000000006 31 0.0 0 @@ -4383,15 +4473,15 @@ LINE 8 0 10 -438.68285433861735 +431.8590013252574 20 -219.1733166699529 +286.21556827964685 30 0.0 11 -450.517657774028 +445.1550063219791 21 -237.33665833497648 +315.6077841398234 31 0.0 0 @@ -4403,13 +4493,85 @@ LINE 10 420.00000000000006 20 -190.50000000000009 +260.0 + 30 +0.0 + 11 +431.8590013252574 + 21 +286.21556827964685 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +612.710678118655 + 20 +345.00000000000006 + 30 +0.0 + 11 +620.710678118655 + 21 +345.00000000000006 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +490.71067811865487 + 20 +345.00000000000006 + 30 +0.0 + 11 +612.710678118655 + 21 +345.00000000000006 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +490.71067811865487 + 20 +345.00000000000006 + 30 +0.0 + 11 +490.71067811865487 + 21 +345.00000000000006 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +620.710678118655 + 20 +345.00000000000006 30 0.0 11 -438.68285433861735 +620.710678118655 21 -219.1733166699529 +345.00000000000006 31 0.0 0 @@ -4419,15 +4581,15 @@ LINE 8 0 10 -604.0312423743285 +670.7106781186549 20 -255.50000000000003 +361.66666666666674 30 0.0 11 -614.0312423743285 +670.7106781186549 21 -255.50000000000003 +345.00000000000006 31 0.0 0 @@ -4437,15 +4599,15 @@ LINE 8 0 10 -484.03124237432854 +620.710678118655 20 -255.50000000000006 +361.66666666666674 30 0.0 11 -604.0312423743285 +670.7106781186549 21 -255.50000000000003 +361.66666666666674 31 0.0 0 @@ -4455,15 +4617,15 @@ LINE 8 0 10 -484.03124237432854 +620.710678118655 20 -255.50000000000006 +345.00000000000006 30 0.0 11 -484.03124237432854 +620.710678118655 21 -255.50000000000006 +361.66666666666674 31 0.0 0 @@ -4473,15 +4635,15 @@ LINE 8 0 10 -614.0312423743285 +458.4510113187008 20 -255.50000000000003 +164.2467777333486 30 0.0 11 -614.0312423743285 +458.4510113187008 21 -255.50000000000003 +175.0 31 0.0 0 @@ -4491,15 +4653,15 @@ LINE 8 0 10 -654.0312423743286 +490.7106781186549 20 -268.8333333333333 +164.2467777333486 30 0.0 11 -654.0312423743286 +458.4510113187008 21 -255.50000000000003 +164.2467777333486 31 0.0 0 @@ -4509,15 +4671,15 @@ LINE 8 0 10 -614.0312423743285 +490.7106781186549 20 -268.8333333333333 +175.0 30 0.0 11 -654.0312423743286 +490.7106781186549 21 -268.8333333333333 +164.2467777333486 31 0.0 0 @@ -4527,15 +4689,15 @@ LINE 8 0 10 -614.0312423743285 +596.7106781186549 20 -255.50000000000003 +125.00000000000001 30 0.0 11 -614.0312423743285 +604.710678118655 21 -268.8333333333333 +125.00000000000001 31 0.0 0 @@ -4545,15 +4707,15 @@ LINE 8 0 10 -462.35246120943856 +596.7106781186549 20 -118.27373961170336 +55.00000000000001 30 0.0 11 -462.35246120943856 +596.7106781186549 21 -125.50000000000001 +125.00000000000001 31 0.0 0 @@ -4563,15 +4725,15 @@ LINE 8 0 10 -484.03124237432854 +604.710678118655 20 -118.27373961170336 +55.00000000000001 30 0.0 11 -462.35246120943856 +596.7106781186549 21 -118.27373961170336 +55.00000000000001 31 0.0 0 @@ -4581,15 +4743,15 @@ LINE 8 0 10 -484.03124237432854 +604.710678118655 20 -125.50000000000001 +86.00000000000001 30 0.0 11 -484.03124237432854 +612.710678118655 21 -118.27373961170336 +86.00000000000001 31 0.0 0 @@ -4599,15 +4761,87 @@ LINE 8 0 10 -584.0312423743285 +612.710678118655 20 -95.5 +86.00000000000001 30 0.0 11 -594.0312423743285 +612.710678118655 21 -95.5 +94.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +612.710678118655 + 20 +94.00000000000001 + 30 +0.0 + 11 +604.710678118655 + 21 +94.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +604.710678118655 + 20 +94.00000000000001 + 30 +0.0 + 11 +604.710678118655 + 21 +86.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +618.0440114519882 + 20 +1.2500000000000002 + 30 +0.0 + 11 +618.0440114519882 + 21 +3.7500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +618.0440114519882 + 20 +3.7500000000000004 + 30 +0.0 + 11 +615.3773447853215 + 21 +3.7500000000000004 31 0.0 0 @@ -4617,15 +4851,15 @@ LINE 8 0 10 -584.0312423743285 +615.3773447853215 20 -45.5 +3.7500000000000004 30 0.0 11 -584.0312423743285 +615.3773447853215 21 -95.5 +1.2500000000000002 31 0.0 0 @@ -4635,15 +4869,15 @@ LINE 8 0 10 -594.0312423743285 +620.710678118655 20 -45.5 +86.00000000000001 30 0.0 11 -584.0312423743285 +628.710678118655 21 -45.5 +86.00000000000001 31 0.0 0 @@ -4653,15 +4887,15 @@ LINE 8 0 10 -594.0312423743285 +628.710678118655 20 -65.5 +86.00000000000001 30 0.0 11 -604.0312423743285 +628.710678118655 21 -65.5 +94.00000000000001 31 0.0 0 @@ -4671,15 +4905,33 @@ LINE 8 0 10 -604.0312423743285 +628.710678118655 20 -65.5 +94.00000000000001 + 30 +0.0 + 11 +620.710678118655 + 21 +94.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +620.710678118655 + 20 +94.00000000000001 30 0.0 11 -604.0312423743285 +620.710678118655 21 -75.50000000000001 +86.00000000000001 31 0.0 0 @@ -4689,15 +4941,15 @@ LINE 8 0 10 -604.0312423743285 +630.4606781186549 20 -75.50000000000001 +80.70454545454547 30 0.0 11 -594.0312423743285 +630.4606781186549 21 -75.50000000000001 +67.47727272727273 31 0.0 0 @@ -4707,15 +4959,15 @@ LINE 8 0 10 -594.0312423743285 +630.4606781186549 20 -75.50000000000001 +67.47727272727273 30 0.0 11 -594.0312423743285 +630.9606781186549 21 -65.5 +67.47727272727273 31 0.0 0 @@ -4725,15 +4977,15 @@ LINE 8 0 10 -610.6979090409952 +630.9606781186549 20 -11.750000000000002 +67.47727272727273 30 0.0 11 -610.6979090409952 +630.9606781186549 21 -14.250000000000002 +80.70454545454547 31 0.0 0 @@ -4743,15 +4995,15 @@ LINE 8 0 10 -610.6979090409952 +630.9606781186549 20 -14.250000000000002 +80.70454545454547 30 0.0 11 -607.364575707662 +630.4606781186549 21 -14.250000000000002 +80.70454545454547 31 0.0 0 @@ -4761,15 +5013,15 @@ LINE 8 0 10 -607.364575707662 +630.4606781186549 20 -14.250000000000002 +112.52272727272728 30 0.0 11 -607.364575707662 +630.4606781186549 21 -11.750000000000002 +99.29545454545456 31 0.0 0 @@ -4779,15 +5031,15 @@ LINE 8 0 10 -614.0312423743285 +630.4606781186549 20 -65.5 +99.29545454545456 30 0.0 11 -624.0312423743286 +630.9606781186549 21 -65.5 +99.29545454545456 31 0.0 0 @@ -4797,15 +5049,15 @@ LINE 8 0 10 -624.0312423743286 +630.9606781186549 20 -65.5 +99.29545454545456 30 0.0 11 -624.0312423743286 +630.9606781186549 21 -75.50000000000001 +112.52272727272728 31 0.0 0 @@ -4815,15 +5067,15 @@ LINE 8 0 10 -624.0312423743286 +630.9606781186549 20 -75.50000000000001 +112.52272727272728 30 0.0 11 -614.0312423743285 +630.4606781186549 21 -75.50000000000001 +112.52272727272728 31 0.0 0 @@ -4833,15 +5085,15 @@ LINE 8 0 10 -614.0312423743285 +448.40187590113186 20 -75.50000000000001 +217.3888829577983 30 0.0 11 -614.0312423743285 +443.7637963941598 21 -65.5 +227.64184496249058 31 0.0 0 @@ -4851,15 +5103,15 @@ LINE 8 0 10 -626.2812423743285 +443.7637963941598 20 -79.08333333333336 +227.64184496249058 30 0.0 11 -626.2812423743285 +443.308239676193 21 -61.91666666666668 +227.43576712109234 31 0.0 0 @@ -4869,15 +5121,15 @@ LINE 8 0 10 -626.2812423743285 +443.308239676193 20 -61.91666666666668 +227.43576712109234 30 0.0 11 -626.7812423743285 +447.94631918316514 21 -61.91666666666668 +217.18280511640006 31 0.0 0 @@ -4887,15 +5139,15 @@ LINE 8 0 10 -626.7812423743285 +447.94631918316514 20 -61.91666666666668 +217.18280511640006 30 0.0 11 -626.7812423743285 +448.40187590113186 21 -79.08333333333336 +217.3888829577983 31 0.0 0 @@ -4905,15 +5157,15 @@ LINE 8 0 10 -626.7812423743285 +657.9606781186549 20 -79.08333333333336 +258.58333333333337 30 0.0 11 -626.2812423743285 +657.9606781186549 21 -79.08333333333336 +241.41666666666669 31 0.0 0 @@ -4923,15 +5175,15 @@ LINE 8 0 10 -451.4594977301591 +657.9606781186549 20 -152.60350895639252 +241.41666666666669 30 0.0 11 -447.2416050225017 +658.4606781186549 21 -159.0768759855708 +241.41666666666669 31 0.0 0 @@ -4941,15 +5193,15 @@ LINE 8 0 10 -447.2416050225017 +658.4606781186549 20 -159.0768759855708 +241.41666666666669 30 0.0 11 -446.822685214998 +658.4606781186549 21 -158.80391775638356 +258.58333333333337 31 0.0 0 @@ -4959,15 +5211,15 @@ LINE 8 0 10 -446.822685214998 +658.4606781186549 20 -158.80391775638356 +258.58333333333337 30 0.0 11 -451.04057792265536 +657.9606781186549 21 -152.33055072720532 +258.58333333333337 31 0.0 0 @@ -4977,15 +5229,15 @@ LINE 8 0 10 -451.04057792265536 +654.0440114519881 20 -152.33055072720532 +162.50000000000003 30 0.0 11 -451.4594977301591 +654.0440114519881 21 -152.60350895639252 +170.83333333333334 31 0.0 0 @@ -4995,15 +5247,15 @@ LINE 8 0 10 -643.7812423743285 +654.0440114519881 20 -192.41666666666669 +170.83333333333334 30 0.0 11 -643.7812423743285 +637.3773447853216 21 -178.58333333333334 +170.83333333333334 31 0.0 0 @@ -5013,15 +5265,15 @@ LINE 8 0 10 -643.7812423743285 +637.3773447853216 20 -178.58333333333334 +170.83333333333334 30 0.0 11 -644.2812423743285 +637.3773447853216 21 -178.58333333333334 +162.50000000000003 31 0.0 0 @@ -5031,15 +5283,15 @@ LINE 8 0 10 -644.2812423743285 +657.9606781186549 20 -178.58333333333334 +278.5833333333333 30 0.0 11 -644.2812423743285 +657.9606781186549 21 -192.41666666666669 +261.4166666666667 31 0.0 0 @@ -5049,15 +5301,15 @@ LINE 8 0 10 -644.2812423743285 +657.9606781186549 20 -192.41666666666669 +261.4166666666667 30 0.0 11 -643.7812423743285 +658.4606781186549 21 -192.41666666666669 +261.4166666666667 31 0.0 0 @@ -5067,15 +5319,15 @@ LINE 8 0 10 -640.6979090409951 +658.4606781186549 20 -115.50000000000004 +261.4166666666667 30 0.0 11 -640.6979090409951 +658.4606781186549 21 -122.1666666666667 +278.5833333333333 31 0.0 0 @@ -5085,15 +5337,15 @@ LINE 8 0 10 -640.6979090409951 +658.4606781186549 20 -122.1666666666667 +278.5833333333333 30 0.0 11 -627.3645757076619 +657.9606781186549 21 -122.1666666666667 +278.5833333333333 31 0.0 0 @@ -5103,15 +5355,15 @@ LINE 8 0 10 -627.3645757076619 +469.20423358535214 20 -122.1666666666667 +353.06491669998854 30 0.0 11 -627.3645757076619 +469.20423358535214 21 -115.50000000000004 +347.6883055666629 31 0.0 0 @@ -5121,15 +5373,15 @@ LINE 8 0 10 -643.7812423743285 +469.20423358535214 20 -202.41666666666666 +347.6883055666629 30 0.0 11 -643.7812423743285 +479.95745585200353 21 -188.58333333333334 +347.6883055666629 31 0.0 0 @@ -5139,15 +5391,15 @@ LINE 8 0 10 -643.7812423743285 +479.95745585200353 20 -188.58333333333334 +347.6883055666629 30 0.0 11 -644.2812423743285 +479.95745585200353 21 -188.58333333333334 +353.06491669998854 31 0.0 0 @@ -5157,15 +5409,15 @@ LINE 8 0 10 -644.2812423743285 +443.76379639415967 20 -188.58333333333334 +292.3581550375095 30 0.0 11 -644.2812423743285 +448.4018759011318 21 -202.41666666666666 +302.6111170422017 31 0.0 0 @@ -5175,15 +5427,15 @@ LINE 8 0 10 -644.2812423743285 +448.4018759011318 20 -202.41666666666666 +302.6111170422017 30 0.0 11 -643.7812423743285 +447.94631918316503 21 -202.41666666666666 +302.81719488360005 31 0.0 0 @@ -5193,15 +5445,15 @@ LINE 8 0 10 -469.57872159773524 +447.94631918316503 20 -260.9196952912225 +302.81719488360005 30 0.0 11 -469.57872159773524 +443.30823967619295 21 -257.3065650970742 +292.5642328789077 31 0.0 0 @@ -5211,15 +5463,15 @@ LINE 8 0 10 -469.57872159773524 +443.30823967619295 20 -257.3065650970742 +292.5642328789077 30 0.0 11 -476.8049819860319 +443.76379639415967 21 -257.3065650970742 +292.3581550375095 31 0.0 0 @@ -5229,15 +5481,15 @@ LINE 8 0 10 -476.8049819860319 +615.1273447853216 20 -257.3065650970742 +341.0 30 0.0 11 -476.8049819860319 +618.2940114519882 21 -260.9196952912225 +341.0 31 0.0 0 @@ -5247,15 +5499,15 @@ LINE 8 0 10 -447.24160502250174 +618.2940114519882 20 -221.9231240144293 +341.0 30 0.0 11 -451.45949773015917 +618.2940114519882 21 -228.3964910436076 +341.5 31 0.0 0 @@ -5265,15 +5517,15 @@ LINE 8 0 10 -451.45949773015917 +618.2940114519882 20 -228.3964910436076 +341.5 30 0.0 11 -451.0405779226554 +615.1273447853216 21 -228.6694492727948 +341.5 31 0.0 0 @@ -5283,15 +5535,15 @@ LINE 8 0 10 -451.0405779226554 +615.1273447853216 20 -228.6694492727948 +341.5 30 0.0 11 -446.822685214998 +615.1273447853216 21 -222.1960822436165 +341.0 31 0.0 0 @@ -5301,15 +5553,15 @@ LINE 8 0 10 -446.822685214998 +637.3773447853216 20 -222.1960822436165 +357.50000000000006 30 0.0 11 -447.24160502250174 +637.3773447853216 21 -221.9231240144293 +349.16666666666674 31 0.0 0 @@ -5319,15 +5571,15 @@ LINE 8 0 10 -607.1145757076617 +637.3773447853216 20 -251.50000000000003 +349.16666666666674 30 0.0 11 -610.9479090409952 +654.0440114519881 21 -251.50000000000003 +349.16666666666674 31 0.0 0 @@ -5337,15 +5589,15 @@ LINE 8 0 10 -610.9479090409952 +654.0440114519881 20 -251.50000000000003 +349.16666666666674 30 0.0 11 -610.9479090409952 +654.0440114519881 21 -252.00000000000003 +357.50000000000006 31 0.0 0 @@ -5355,15 +5607,15 @@ LINE 8 0 10 -610.9479090409952 +479.95745585200353 20 -252.00000000000003 +166.93508330001148 30 0.0 11 -607.1145757076617 +479.95745585200353 21 -252.00000000000003 +172.31169443333718 31 0.0 0 @@ -5373,15 +5625,15 @@ LINE 8 0 10 -607.1145757076617 +479.95745585200353 20 -252.00000000000003 +172.31169443333718 30 0.0 11 -607.1145757076617 +469.20423358535214 21 -251.50000000000003 +172.31169443333718 31 0.0 0 @@ -5391,15 +5643,15 @@ LINE 8 0 10 -627.3645757076619 +469.20423358535214 20 -265.50000000000006 +172.31169443333718 30 0.0 11 -627.3645757076619 +469.20423358535214 21 -258.8333333333334 +166.93508330001148 31 0.0 0 @@ -5409,15 +5661,15 @@ LINE 8 0 10 -627.3645757076619 +598.7106781186549 20 -258.8333333333334 +67.72727272727273 30 0.0 11 -640.6979090409951 +598.7106781186549 21 -258.8333333333334 +63.727272727272734 31 0.0 0 @@ -5427,15 +5679,15 @@ LINE 8 0 10 -640.6979090409951 +598.7106781186549 20 -258.8333333333334 +63.727272727272734 30 0.0 11 -640.6979090409951 +602.710678118655 21 -265.50000000000006 +67.72727272727273 31 0.0 0 @@ -5445,15 +5697,15 @@ LINE 8 0 10 -476.80498198603186 +602.710678118655 20 -120.08030470877752 +67.72727272727273 30 0.0 11 -476.80498198603186 +602.710678118655 21 -123.69343490292586 +80.45454545454547 31 0.0 0 @@ -5463,15 +5715,15 @@ LINE 8 0 10 -476.80498198603186 +602.710678118655 20 -123.69343490292586 +80.45454545454547 30 0.0 11 -469.5787215977352 +598.7106781186549 21 -123.69343490292586 +84.45454545454547 31 0.0 0 @@ -5481,15 +5733,15 @@ LINE 8 0 10 -469.5787215977352 +598.7106781186549 20 -123.69343490292586 +84.45454545454547 30 0.0 11 -469.5787215977352 +598.7106781186549 21 -120.08030470877752 +80.45454545454547 31 0.0 0 @@ -5499,15 +5751,15 @@ LINE 8 0 10 -586.5312423743285 +598.7106781186549 20 -62.16666666666668 +99.54545454545455 30 0.0 11 -586.5312423743285 +598.7106781186549 21 -57.16666666666668 +95.54545454545456 31 0.0 0 @@ -5517,15 +5769,15 @@ LINE 8 0 10 -586.5312423743285 +598.7106781186549 20 -57.16666666666668 +95.54545454545456 30 0.0 11 -591.5312423743286 +602.710678118655 21 -62.16666666666668 +99.54545454545455 31 0.0 0 @@ -5535,15 +5787,15 @@ LINE 8 0 10 -591.5312423743286 +602.710678118655 20 -62.16666666666668 +99.54545454545455 30 0.0 11 -591.5312423743286 +602.710678118655 21 -78.83333333333336 +112.27272727272728 31 0.0 0 @@ -5553,15 +5805,15 @@ LINE 8 0 10 -591.5312423743286 +602.710678118655 20 -78.83333333333336 +112.27272727272728 30 0.0 11 -586.5312423743285 +598.7106781186549 21 -83.83333333333336 +116.27272727272728 31 0.0 0 @@ -5571,15 +5823,15 @@ LINE 8 0 10 -586.5312423743285 +598.7106781186549 20 -83.83333333333336 +116.27272727272728 30 0.0 11 -586.5312423743285 +598.7106781186549 21 -78.83333333333336 +112.27272727272728 31 0.0 0