diff --git a/rocolib/builders/BoatPointFlatBuilder.py b/rocolib/builders/BoatPointFlatBuilder.py index de9f16529d0353dd793230f98554090171708440..954af142e19de120f2db8e34c3dd4a3b19e16d4b 100644 --- a/rocolib/builders/BoatPointFlatBuilder.py +++ b/rocolib/builders/BoatPointFlatBuilder.py @@ -6,7 +6,7 @@ c.addParameter("length", 130, paramType="length") c.addParameter("width", 50, paramType="length") c.addParameter("depth", 40, paramType="length") -c.addSubcomponent("boat","SimpleUChannel", inherit=True, prefix=None) +c.addSubcomponent("boat","SimpleUChannel", inherit=True) c.addSubcomponent("bow","BoatPoint") c.addSubcomponent("stern","BoatPoint") diff --git a/rocolib/builders/ESP32StackBoatBuilder.py b/rocolib/builders/ESP32StackBoatBuilder.py index f4c36a1e936d00d59aa0145115232e30994ff8df..3cf90fc712827760fbef4c9d4a91c8351c9ca980 100644 --- a/rocolib/builders/ESP32StackBoatBuilder.py +++ b/rocolib/builders/ESP32StackBoatBuilder.py @@ -3,7 +3,7 @@ from rocolib.api.components.Component import Component #ESP3 STACK WITH PWM SERVO FEATHERWING c = Component() -c.addSubcomponent("boat", "BoatBase") +c.addSubcomponent("boat", "BoatBaseFlat", inherit=True) #the length of the both should always be a multiple of the width of the motor #as of now i will be setting the length to 117 (so that means 9 * width of the motor which is 13) @@ -11,10 +11,10 @@ c.addParameter("length", 130, paramType="length") c.addParameter("width", 50, paramType="length") c.addParameter("depth", 40, paramType="length") c.addParameter("brains", "esp32stack", paramType="dimension") - -c.addConstraint(("boat", "boat.length"), "length") -c.addConstraint(("boat", "boat.width"), "width") -c.addConstraint(("boat", "boat.depth"), "depth") +# +# c.addConstraint(("boat", "boat.length"), "length") +# c.addConstraint(("boat", "boat.width"), "width") +# c.addConstraint(("boat", "boat.depth"), "depth") for i in range(2): @@ -52,4 +52,4 @@ c.addConnection(("support2", "r"), ("splitside1", "botedge5"), tabWidth=5) c.addConnection(("support3", "r"), ("splitside1", "botedge6"), tabWidth=5) -c.toLibrary("ESP32StackBoat") \ No newline at end of file +c.toLibrary("ESP32StackBoat") diff --git a/rocolib/library/BoatBaseFlat.yaml b/rocolib/library/BoatBaseFlat.yaml index 49e0d9aa7d9010e3029281360b8bfbabb3f3b479..eec1ca2631fbd9324d88a605e4bd3ebf245cd8c0 100644 --- a/rocolib/library/BoatBaseFlat.yaml +++ b/rocolib/library/BoatBaseFlat.yaml @@ -67,43 +67,43 @@ interfaces: interface: redge subcomponent: boat parameters: - _dx: + boat._dx: defaultValue: 0 spec: minValue: null units: mm valueType: (float, int) - _dy: + boat._dy: defaultValue: 0 spec: minValue: null units: mm valueType: (float, int) - _dz: + boat._dz: defaultValue: 0 spec: minValue: null units: mm valueType: (float, int) - _q_a: + boat._q_a: defaultValue: 1 spec: maxValue: 1 minValue: -1 valueType: (int, float) - _q_i: + boat._q_i: defaultValue: 0 spec: maxValue: 1 minValue: -1 valueType: (int, float) - _q_j: + boat._q_j: defaultValue: 0 spec: maxValue: 1 minValue: -1 valueType: (int, float) - _q_k: + boat._q_k: defaultValue: 0 spec: maxValue: 1 @@ -142,19 +142,19 @@ subcomponents: kwargs: {} parameters: _dx: - parameter: _dx + parameter: boat._dx _dy: - parameter: _dy + parameter: boat._dy _dz: - parameter: _dz + parameter: boat._dz _q_a: - parameter: _q_a + parameter: boat._q_a _q_i: - parameter: _q_i + parameter: boat._q_i _q_j: - parameter: _q_j + parameter: boat._q_j _q_k: - parameter: _q_k + parameter: boat._q_k depth: parameter: depth length: diff --git a/rocolib/library/ESP32StackBoat.yaml b/rocolib/library/ESP32StackBoat.yaml index 5005c167fb3332768ec02ed4ddbb8ee2a9f28cd5..875518782afd13292ea5f9f1dfaaa9677e582069 100644 --- a/rocolib/library/ESP32StackBoat.yaml +++ b/rocolib/library/ESP32StackBoat.yaml @@ -73,6 +73,74 @@ connections: - 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 + spec: + minValue: 0 + units: mm + valueType: (float, int) + boat.dx1: + defaultValue: 10 + spec: + parameterType: length + boat.dy1: + defaultValue: 10 + spec: + parameterType: length + boat.length: + defaultValue: 130 + spec: + minValue: 0 + units: mm + valueType: (float, int) + boat.width: + defaultValue: 50 + spec: + minValue: 0 + units: mm + valueType: (float, int) brains: defaultValue: esp32stack spec: @@ -95,18 +163,36 @@ parameters: minValue: 0 units: mm valueType: (float, int) -source: ..\builders\ESP32StackBoatBuilder.py +source: ../builders/ESP32StackBoatBuilder.py subcomponents: boat: - classname: BoatBase + classname: BoatBaseFlat kwargs: {} parameters: - boat.depth: - parameter: depth - boat.length: - parameter: length - boat.width: - parameter: width + 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: + parameter: boat.dx1 + dy1: + parameter: boat.dy1 + length: + parameter: boat.length + width: + parameter: boat.width split0: classname: SplitEdge kwargs: {} diff --git a/rocolib/output/ESP32StackBoat/graph-anim.svg b/rocolib/output/ESP32StackBoat/graph-anim.svg new file mode 100644 index 0000000000000000000000000000000000000000..63d1ade2a943dd68f022433d3b2c48af1c64dcf4 --- /dev/null +++ b/rocolib/output/ESP32StackBoat/graph-anim.svg @@ -0,0 +1,258 @@ +<?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"> + <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"/> +</svg> diff --git a/rocolib/output/ESP32StackBoat/graph-autofold-default.dxf b/rocolib/output/ESP32StackBoat/graph-autofold-default.dxf new file mode 100644 index 0000000000000000000000000000000000000000..5529c8b0c326207d989665887010949cc6d13a55 --- /dev/null +++ b/rocolib/output/ESP32StackBoat/graph-autofold-default.dxf @@ -0,0 +1,5678 @@ + 0 +SECTION + 2 +HEADER + 9 +$ACADVER + 1 +AC1009 + 9 +$INSBASE + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMIN + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMAX + 10 +100.0 + 20 +100.0 + 30 +0.0 + 9 +$UNITMODE + 70 +0 + 9 +$AUNITS + 70 +0 + 9 +$ANGBASE + 50 +0.0 + 9 +$ANGDIR + 70 +0 + 0 +ENDSEC + 0 +SECTION + 2 +TABLES + 0 +TABLE + 2 +LTYPE + 70 +20 + 0 +LTYPE + 2 +CONTINUOUS + 70 +0 + 3 +Solid + 72 +65 + 73 +0 + 40 +0.0 + 0 +LTYPE + 2 +CENTER + 70 +0 + 3 +Center ____ _ ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +2.0 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +CENTERX2 + 70 +0 + 3 +Center (2x) ________ __ ________ __ ________ + 72 +65 + 73 +4 + 40 +3.5 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +CENTER2 + 70 +0 + 3 +Center (.5x) ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +1.0 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHED + 70 +0 + 3 +Dashed __ __ __ __ __ __ __ __ __ __ __ __ __ _ + 72 +65 + 73 +2 + 40 +0.6 + 49 +0.5 + 49 +-0.1 + 0 +LTYPE + 2 +DASHEDX2 + 70 +0 + 3 +Dashed (2x) ____ ____ ____ ____ ____ ____ + 72 +65 + 73 +2 + 40 +1.2 + 49 +1.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHED2 + 70 +0 + 3 +Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 +65 + 73 +2 + 40 +0.3 + 49 +0.25 + 49 +-0.05 + 0 +LTYPE + 2 +PHANTOM + 70 +0 + 3 +Phantom ______ __ __ ______ __ __ ______ + 72 +65 + 73 +6 + 40 +2.5 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOMX2 + 70 +0 + 3 +Phantom (2x)____________ ____ ____ ____________ + 72 +65 + 73 +6 + 40 +4.25 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOM2 + 70 +0 + 3 +Phantom (.5x) ___ _ _ ___ _ _ ___ _ _ ___ _ _ ___ + 72 +65 + 73 +6 + 40 +1.25 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHDOT + 70 +0 + 3 +Dash dot __ . __ . __ . __ . __ . __ . __ . __ + 72 +65 + 73 +4 + 40 +1.4 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOTX2 + 70 +0 + 3 +Dash dot (2x) ____ . ____ . ____ . ____ + 72 +65 + 73 +4 + 40 +2.4 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOT2 + 70 +0 + 3 +Dash dot (.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +4 + 40 +0.7 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOT + 70 +0 + 3 +Dot . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DOTX2 + 70 +0 + 3 +Dot (2x) . . . . . . . . + 72 +65 + 73 +2 + 40 +0.4 + 49 +0.0 + 49 +-0.4 + 0 +LTYPE + 2 +DOT2 + 70 +0 + 3 +Dot (.5) . . . . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DIVIDE + 70 +0 + 3 +Divide __ . . __ . . __ . . __ . . __ . . __ + 72 +65 + 73 +6 + 40 +1.6 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDEX2 + 70 +0 + 3 +Divide (2x) ____ . . ____ . . ____ . . ____ + 72 +65 + 73 +6 + 40 +2.6 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDE2 + 70 +0 + 3 +Divide(.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +6 + 40 +0.8 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOTTED + 70 +0 + 3 + + 72 +65 + 73 +2 + 40 +1.0 + 49 +0.0 + 49 +-1.0 + 0 +ENDTAB + 0 +TABLE + 2 +LAYER + 70 +14 + 0 +LAYER + 2 +DIMENSIONS + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEBACKGROUND + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLECONTENT + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEGRID + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +VIEWPORTS + 70 +0 + 62 +7 + 6 +CONTINUOUS + 0 +LAYER + 2 +90 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +0 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +-180 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +26.565051177077976 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +-174 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +180 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +73.77726564884665 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +38.65980825409008 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +90.0 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +ENDTAB + 0 +TABLE + 2 +STYLE + 70 +12 + 0 +STYLE + 2 +STANDARD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbd.ttf + 4 + + 0 +STYLE + 2 +ARIAL_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariali.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbi.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BLACK + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariblk.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeur.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeui.ttf + 4 + + 0 +STYLE + 2 +TIMES + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +times.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbd.ttf + 4 + + 0 +STYLE + 2 +TIMES_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesi.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbi.ttf + 4 + + 0 +ENDTAB + 0 +TABLE + 2 +VIEW + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +APPID + 70 +1 + 0 +APPID + 2 +DXFWRITE + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +VPORT + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +UCS + 70 +0 + 0 +ENDTAB + 0 +ENDSEC + 0 +SECTION + 2 +BLOCKS + 0 +ENDSEC + 0 +SECTION + 2 +ENTITIES + 0 +VIEWPORT + 8 +VIEWPORTS + 67 +1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +1.0 + 41 +1.0 + 68 +1 + 69 +1 +1001 +ACAD +1000 +MVIEW +1002 +{ +1070 +16 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1040 +0.0 +1040 +1.0 +1040 +0.0 +1040 +0.0 +1040 +50.0 +1040 +0.0 +1040 +0.0 +1070 +0 +1070 +100 +1070 +1 +1070 +3 +1070 +0 +1070 +0 +1070 +0 +1070 +0 +1040 +0.0 +1040 +0.0 +1040 +0.0 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1070 +0 +1002 +{ +1002 +} +1002 +} + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +34.0 + 20 +45.0 + 30 +0.0 + 11 +34.0 + 21 +96.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +10.000000000000002 + 20 +96.00000000000001 + 30 +0.0 + 11 +10.000000000000002 + 21 +45.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +10.000000000000002 + 20 +45.0 + 30 +0.0 + 11 +22.000000000000004 + 21 +45.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +22.000000000000004 + 20 +45.0 + 30 +0.0 + 11 +34.0 + 21 +45.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +34.0 + 20 +45.0 + 30 +0.0 + 11 +34.0 + 21 +45.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +10.000000000000002 + 20 +45.0 + 30 +0.0 + 11 +10.000000000000002 + 21 +45.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +10.000000000000002 + 20 +5.000000000000001 + 30 +0.0 + 11 +10.000000000000002 + 21 +45.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +22.000000000000004 + 20 +45.0 + 30 +0.0 + 11 +22.000000000000004 + 21 +5.000000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +10.000000000000002 + 20 +0.0 + 30 +0.0 + 11 +10.000000000000002 + 21 +5.000000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +22.000000000000004 + 20 +0.0 + 30 +0.0 + 11 +10.000000000000002 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +22.000000000000004 + 20 +5.000000000000001 + 30 +0.0 + 11 +22.000000000000004 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +22.000000000000004 + 20 +5.000000000000001 + 30 +0.0 + 11 +22.000000000000004 + 21 +45.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +34.0 + 20 +45.0 + 30 +0.0 + 11 +34.0 + 21 +5.000000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +22.000000000000004 + 20 +0.0 + 30 +0.0 + 11 +22.000000000000004 + 21 +5.000000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +34.0 + 20 +0.0 + 30 +0.0 + 11 +22.000000000000004 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +34.0 + 20 +5.000000000000001 + 30 +0.0 + 11 +34.0 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +70.00000000000001 + 20 +45.0 + 30 +0.0 + 11 +34.0 + 21 +45.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +70.00000000000001 + 20 +45.0 + 30 +0.0 + 11 +70.00000000000001 + 21 +96.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +34.0 + 20 +96.00000000000001 + 30 +0.0 + 11 +70.00000000000001 + 21 +96.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +94.00000000000001 + 20 +45.0 + 30 +0.0 + 11 +70.00000000000001 + 21 +45.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +94.00000000000001 + 20 +45.0 + 30 +0.0 + 11 +94.00000000000001 + 21 +96.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +70.00000000000001 + 20 +96.00000000000001 + 30 +0.0 + 11 +94.00000000000001 + 21 +96.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +130.0 + 20 +45.0 + 30 +0.0 + 11 +94.00000000000001 + 21 +45.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +130.0 + 20 +96.00000000000001 + 30 +0.0 + 11 +130.0 + 21 +45.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +94.00000000000001 + 20 +96.00000000000001 + 30 +0.0 + 11 +130.0 + 21 +96.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +34.0 + 20 +96.00000000000001 + 30 +0.0 + 11 +22.000000000000004 + 21 +96.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +22.000000000000004 + 20 +96.00000000000001 + 30 +0.0 + 11 +10.000000000000002 + 21 +96.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +10.000000000000002 + 20 +96.00000000000001 + 30 +0.0 + 11 +10.000000000000002 + 21 +96.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +34.0 + 20 +96.00000000000001 + 30 +0.0 + 11 +34.0 + 21 +96.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +34.0 + 20 +136.0 + 30 +0.0 + 11 +34.0 + 21 +96.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +22.000000000000004 + 20 +96.00000000000001 + 30 +0.0 + 11 +22.000000000000004 + 21 +136.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +34.0 + 20 +141.0 + 30 +0.0 + 11 +34.0 + 21 +136.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +22.000000000000004 + 20 +141.0 + 30 +0.0 + 11 +34.0 + 21 +141.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +22.000000000000004 + 20 +136.0 + 30 +0.0 + 11 +22.000000000000004 + 21 +141.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +22.000000000000004 + 20 +136.0 + 30 +0.0 + 11 +22.000000000000004 + 21 +96.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +10.000000000000002 + 20 +96.00000000000001 + 30 +0.0 + 11 +10.000000000000002 + 21 +136.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +22.000000000000004 + 20 +141.0 + 30 +0.0 + 11 +22.000000000000004 + 21 +136.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +10.000000000000002 + 20 +141.0 + 30 +0.0 + 11 +22.000000000000004 + 21 +141.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +10.000000000000002 + 20 +136.0 + 30 +0.0 + 11 +10.000000000000002 + 21 +141.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +0.0 + 20 +96.00000000000001 + 30 +0.0 + 11 +10.000000000000002 + 21 +96.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +0.0 + 20 +45.0 + 30 +0.0 + 11 +0.0 + 21 +96.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +10.000000000000002 + 20 +45.0 + 30 +0.0 + 11 +0.0 + 21 +45.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +11.400000000000002 + 20 +50.0 + 30 +0.0 + 11 +12.6 + 21 +50.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +12.6 + 20 +50.0 + 30 +0.0 + 11 +12.6 + 21 +91.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +12.6 + 20 +91.0 + 30 +0.0 + 11 +11.400000000000002 + 21 +91.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +11.400000000000002 + 20 +91.0 + 30 +0.0 + 11 +11.400000000000002 + 21 +50.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +31.400000000000002 + 20 +50.50000000000001 + 30 +0.0 + 11 +32.60000000000001 + 21 +50.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +32.60000000000001 + 20 +50.50000000000001 + 30 +0.0 + 11 +32.60000000000001 + 21 +80.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +32.60000000000001 + 20 +80.50000000000001 + 30 +0.0 + 11 +31.400000000000002 + 21 +80.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +31.400000000000002 + 20 +80.50000000000001 + 30 +0.0 + 11 +31.400000000000002 + 21 +50.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +18.000000000000004 + 20 +1.2500000000000002 + 30 +0.0 + 11 +18.000000000000004 + 21 +3.7500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +18.000000000000004 + 20 +3.7500000000000004 + 30 +0.0 + 11 +14.000000000000002 + 21 +3.7500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +14.000000000000002 + 20 +3.7500000000000004 + 30 +0.0 + 11 +14.000000000000002 + 21 +1.2500000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +30.000000000000004 + 20 +1.2500000000000002 + 30 +0.0 + 11 +30.000000000000004 + 21 +3.7500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +30.000000000000004 + 20 +3.7500000000000004 + 30 +0.0 + 11 +26.000000000000004 + 21 +3.7500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +26.000000000000004 + 20 +3.7500000000000004 + 30 +0.0 + 11 +26.000000000000004 + 21 +1.2500000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +30.000000000000004 + 20 +91.50000000000001 + 30 +0.0 + 11 +30.000000000000004 + 21 +73.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +30.000000000000004 + 20 +73.50000000000001 + 30 +0.0 + 11 +60.00000000000001 + 21 +73.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +60.00000000000001 + 20 +73.50000000000001 + 30 +0.0 + 11 +60.00000000000001 + 21 +91.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +60.00000000000001 + 20 +91.50000000000001 + 30 +0.0 + 11 +30.000000000000004 + 21 +91.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +91.40000000000002 + 20 +50.0 + 30 +0.0 + 11 +92.60000000000001 + 21 +50.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +92.60000000000001 + 20 +50.0 + 30 +0.0 + 11 +92.60000000000001 + 21 +91.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +92.60000000000001 + 20 +91.0 + 30 +0.0 + 11 +91.40000000000002 + 21 +91.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +91.40000000000002 + 20 +91.0 + 30 +0.0 + 11 +91.40000000000002 + 21 +50.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +71.4 + 20 +50.50000000000001 + 30 +0.0 + 11 +72.60000000000001 + 21 +50.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +72.60000000000001 + 20 +50.50000000000001 + 30 +0.0 + 11 +72.60000000000001 + 21 +80.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +72.60000000000001 + 20 +80.50000000000001 + 30 +0.0 + 11 +71.4 + 21 +80.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +71.4 + 20 +80.50000000000001 + 30 +0.0 + 11 +71.4 + 21 +50.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +97.00000000000001 + 20 +54.00000000000001 + 30 +0.0 + 11 +97.00000000000001 + 21 +47.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +97.00000000000001 + 20 +47.00000000000001 + 30 +0.0 + 11 +117.00000000000001 + 21 +47.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +117.00000000000001 + 20 +47.00000000000001 + 30 +0.0 + 11 +117.00000000000001 + 21 +54.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +117.00000000000001 + 20 +54.00000000000001 + 30 +0.0 + 11 +97.00000000000001 + 21 +54.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +122.25000000000001 + 20 +79.25000000000001 + 30 +0.0 + 11 +122.25000000000001 + 21 +61.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +122.25000000000001 + 20 +61.75000000000001 + 30 +0.0 + 11 +122.75000000000001 + 21 +61.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +122.75000000000001 + 20 +61.75000000000001 + 30 +0.0 + 11 +122.75000000000001 + 21 +79.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +122.75000000000001 + 20 +79.25000000000001 + 30 +0.0 + 11 +122.25000000000001 + 21 +79.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +26.000000000000004 + 20 +139.75000000000003 + 30 +0.0 + 11 +26.000000000000004 + 21 +137.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +26.000000000000004 + 20 +137.25000000000003 + 30 +0.0 + 11 +30.000000000000004 + 21 +137.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +30.000000000000004 + 20 +137.25000000000003 + 30 +0.0 + 11 +30.000000000000004 + 21 +139.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +14.000000000000002 + 20 +139.75000000000003 + 30 +0.0 + 11 +14.000000000000002 + 21 +137.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +14.000000000000002 + 20 +137.25000000000003 + 30 +0.0 + 11 +18.000000000000004 + 21 +137.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +18.000000000000004 + 20 +137.25000000000003 + 30 +0.0 + 11 +18.000000000000004 + 21 +139.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +2.5000000000000004 + 20 +62.000000000000014 + 30 +0.0 + 11 +2.5000000000000004 + 21 +57.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +2.5000000000000004 + 20 +57.00000000000001 + 30 +0.0 + 11 +7.500000000000001 + 21 +62.000000000000014 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +7.500000000000001 + 20 +62.000000000000014 + 30 +0.0 + 11 +7.500000000000001 + 21 +79.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +7.500000000000001 + 20 +79.00000000000001 + 30 +0.0 + 11 +2.5000000000000004 + 21 +84.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +2.5000000000000004 + 20 +84.0 + 30 +0.0 + 11 +2.5000000000000004 + 21 +79.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +186.00000000000003 + 20 +70.5 + 30 +0.0 + 11 +140.00000000000003 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +198.0 + 20 +70.5 + 30 +0.0 + 11 +186.00000000000003 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +210.00000000000003 + 20 +70.5 + 30 +0.0 + 11 +198.0 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +222.00000000000003 + 20 +70.5 + 30 +0.0 + 11 +210.00000000000003 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +234.00000000000003 + 20 +70.5 + 30 +0.0 + 11 +222.00000000000003 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +246.00000000000003 + 20 +70.5 + 30 +0.0 + 11 +234.00000000000003 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +258.0 + 20 +70.5 + 30 +0.0 + 11 +246.00000000000003 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +270.00000000000006 + 20 +70.5 + 30 +0.0 + 11 +258.0 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +270.00000000000006 + 20 +70.5 + 30 +0.0 + 11 +270.00000000000006 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +140.00000000000003 + 20 +70.5 + 30 +0.0 + 11 +270.00000000000006 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +140.00000000000003 + 20 +70.5 + 30 +0.0 + 11 +140.00000000000003 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +206.25000000000003 + 20 +74.50000000000001 + 30 +0.0 + 11 +201.75000000000003 + 21 +74.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +201.75000000000003 + 20 +74.50000000000001 + 30 +0.0 + 11 +201.75000000000003 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +201.75000000000003 + 20 +74.0 + 30 +0.0 + 11 +206.25000000000003 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +206.25000000000003 + 20 +74.0 + 30 +0.0 + 11 +206.25000000000003 + 21 +74.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +218.25000000000003 + 20 +74.50000000000001 + 30 +0.0 + 11 +213.75 + 21 +74.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +213.75 + 20 +74.50000000000001 + 30 +0.0 + 11 +213.75 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +213.75 + 20 +74.0 + 30 +0.0 + 11 +218.25000000000003 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +218.25000000000003 + 20 +74.0 + 30 +0.0 + 11 +218.25000000000003 + 21 +74.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +326.00000000000006 + 20 +70.5 + 30 +0.0 + 11 +280.00000000000006 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +338.00000000000006 + 20 +70.5 + 30 +0.0 + 11 +326.00000000000006 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +350.0 + 20 +70.5 + 30 +0.0 + 11 +338.00000000000006 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +362.00000000000006 + 20 +70.5 + 30 +0.0 + 11 +350.0 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +374.00000000000006 + 20 +70.5 + 30 +0.0 + 11 +362.00000000000006 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +386.00000000000006 + 20 +70.5 + 30 +0.0 + 11 +374.00000000000006 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +398.00000000000006 + 20 +70.5 + 30 +0.0 + 11 +386.00000000000006 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +410.00000000000006 + 20 +70.5 + 30 +0.0 + 11 +398.00000000000006 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +410.00000000000006 + 20 +70.5 + 30 +0.0 + 11 +410.00000000000006 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +280.00000000000006 + 20 +70.5 + 30 +0.0 + 11 +410.00000000000006 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +280.00000000000006 + 20 +70.5 + 30 +0.0 + 11 +280.00000000000006 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +334.25000000000006 + 20 +74.50000000000001 + 30 +0.0 + 11 +329.75000000000006 + 21 +74.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +329.75000000000006 + 20 +74.50000000000001 + 30 +0.0 + 11 +329.75000000000006 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +329.75000000000006 + 20 +74.0 + 30 +0.0 + 11 +334.25000000000006 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +334.25000000000006 + 20 +74.0 + 30 +0.0 + 11 +334.25000000000006 + 21 +74.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +346.25 + 20 +74.50000000000001 + 30 +0.0 + 11 +341.75 + 21 +74.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +341.75 + 20 +74.50000000000001 + 30 +0.0 + 11 +341.75 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +341.75 + 20 +74.0 + 30 +0.0 + 11 +346.25 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +346.25 + 20 +74.0 + 30 +0.0 + 11 +346.25 + 21 +74.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +604.0312423743285 + 20 +45.5 + 30 +0.0 + 11 +594.0312423743285 + 21 +45.5 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +604.0312423743285 + 20 +45.5 + 30 +0.0 + 11 +604.0312423743285 + 21 +95.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +594.0312423743285 + 20 +95.5 + 30 +0.0 + 11 +604.0312423743285 + 21 +95.5 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +594.0312423743285 + 20 +95.5 + 30 +0.0 + 11 +594.0312423743285 + 21 +45.5 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +614.0312423743285 + 20 +45.5 + 30 +0.0 + 11 +614.0312423743285 + 21 +95.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +614.0312423743285 + 20 +45.5 + 30 +0.0 + 11 +614.0312423743285 + 21 +15.500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +604.0312423743285 + 20 +15.500000000000004 + 30 +0.0 + 11 +604.0312423743285 + 21 +45.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +604.0312423743285 + 20 +10.5 + 30 +0.0 + 11 +604.0312423743285 + 21 +15.500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +614.0312423743285 + 20 +10.5 + 30 +0.0 + 11 +604.0312423743285 + 21 +10.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +614.0312423743285 + 20 +15.500000000000004 + 30 +0.0 + 11 +614.0312423743285 + 21 +10.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +624.0312423743286 + 20 +45.5 + 30 +0.0 + 11 +614.0312423743285 + 21 +45.5 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +624.0312423743286 + 20 +45.5 + 30 +0.0 + 11 +624.0312423743286 + 21 +95.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +614.0312423743285 + 20 +95.5 + 30 +0.0 + 11 +624.0312423743286 + 21 +95.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +634.0312423743286 + 20 +45.5 + 30 +0.0 + 11 +624.0312423743286 + 21 +45.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +634.0312423743286 + 20 +95.5 + 30 +0.0 + 11 +634.0312423743286 + 21 +45.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +624.0312423743286 + 20 +95.5 + 30 +0.0 + 11 +634.0312423743286 + 21 +95.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +604.0312423743285 + 20 +95.5 + 30 +0.0 + 11 +604.0312423743285 + 21 +125.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +614.0312423743285 + 20 +125.50000000000001 + 30 +0.0 + 11 +614.0312423743285 + 21 +95.5 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-180 + 10 +614.0312423743285 + 20 +125.50000000000001 + 30 +0.0 + 11 +604.0312423743285 + 21 +125.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +604.0312423743285 + 20 +125.50000000000001 + 30 +0.0 + 11 +484.03124237432854 + 21 +125.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +614.0312423743285 + 20 +125.50000000000001 + 30 +0.0 + 11 +614.0312423743285 + 21 +125.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +484.03124237432854 + 20 +125.50000000000001 + 30 +0.0 + 11 +484.03124237432854 + 21 +125.50000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +484.03124237432854 + 20 +165.50000000000003 + 30 +0.0 + 11 +614.0312423743285 + 21 +165.50000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +26.565051177077976 + 10 +484.03124237432854 + 20 +125.50000000000001 + 30 +0.0 + 11 +484.03124237432854 + 21 +165.50000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-180 + 10 +462.35246120943856 + 20 +125.50000000000001 + 30 +0.0 + 11 +484.03124237432854 + 21 +165.50000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-174 + 10 +462.35246120943856 + 20 +125.50000000000001 + 30 +0.0 + 11 +484.03124237432854 + 21 +125.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +462.35246120943856 + 20 +125.50000000000001 + 30 +0.0 + 11 +450.51765777402795 + 21 +143.66334166502364 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +180 + 10 +450.51765777402795 + 20 +143.66334166502364 + 30 +0.0 + 11 +484.03124237432854 + 21 +165.50000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +73.77726564884665 + 10 +420.00000000000006 + 20 +190.50000000000003 + 30 +0.0 + 11 +484.03124237432854 + 21 +165.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +438.68285433861735 + 20 +161.8266833300472 + 30 +0.0 + 11 +420.00000000000006 + 21 +190.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +450.51765777402795 + 20 +143.6633416650236 + 30 +0.0 + 11 +438.68285433861735 + 21 +161.8266833300472 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +38.65980825409008 + 10 +484.03124237432854 + 20 +165.50000000000003 + 30 +0.0 + 11 +484.03124237432854 + 21 +190.50000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +38.65980825409008 + 10 +484.03124237432854 + 20 +190.50000000000003 + 30 +0.0 + 11 +484.03124237432854 + 21 +215.50000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +73.77726564884665 + 10 +420.00000000000006 + 20 +190.50000000000003 + 30 +0.0 + 11 +484.03124237432854 + 21 +215.50000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +484.03124237432854 + 20 +215.50000000000003 + 30 +0.0 + 11 +614.0312423743285 + 21 +215.50000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90.0 + 10 +614.0312423743285 + 20 +190.50000000000003 + 30 +0.0 + 11 +614.0312423743285 + 21 +165.50000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90.0 + 10 +614.0312423743285 + 20 +215.50000000000003 + 30 +0.0 + 11 +614.0312423743285 + 21 +190.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +654.0312423743286 + 20 +205.5 + 30 +0.0 + 11 +654.0312423743286 + 21 +165.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +654.0312423743286 + 20 +190.50000000000003 + 30 +0.0 + 11 +654.0312423743286 + 21 +205.5 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +180 + 10 +614.0312423743285 + 20 +165.50000000000003 + 30 +0.0 + 11 +654.0312423743286 + 21 +165.50000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-180 + 10 +614.0312423743285 + 20 +165.50000000000003 + 30 +0.0 + 11 +654.0312423743286 + 21 +125.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +654.0312423743286 + 20 +165.50000000000003 + 30 +0.0 + 11 +654.0312423743286 + 21 +125.50000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-174 + 10 +614.0312423743285 + 20 +125.50000000000003 + 30 +0.0 + 11 +654.0312423743286 + 21 +125.50000000000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90.0 + 10 +614.0312423743285 + 20 +165.50000000000003 + 30 +0.0 + 11 +614.0312423743285 + 21 +125.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +614.0312423743285 + 20 +112.1666666666667 + 30 +0.0 + 11 +614.0312423743285 + 21 +125.50000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +654.0312423743286 + 20 +112.16666666666671 + 30 +0.0 + 11 +614.0312423743285 + 21 +112.1666666666667 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +654.0312423743286 + 20 +125.50000000000004 + 30 +0.0 + 11 +654.0312423743286 + 21 +112.16666666666671 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +180 + 10 +654.0312423743286 + 20 +215.50000000000003 + 30 +0.0 + 11 +614.0312423743285 + 21 +215.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +654.0312423743286 + 20 +175.5 + 30 +0.0 + 11 +654.0312423743286 + 21 +190.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +654.0312423743286 + 20 +215.50000000000003 + 30 +0.0 + 11 +654.0312423743286 + 21 +175.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +654.0312423743286 + 20 +255.5 + 30 +0.0 + 11 +654.0312423743286 + 21 +215.50000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-180 + 10 +654.0312423743286 + 20 +255.5 + 30 +0.0 + 11 +614.0312423743285 + 21 +215.50000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90.0 + 10 +614.0312423743285 + 20 +255.50000000000006 + 30 +0.0 + 11 +614.0312423743285 + 21 +215.50000000000006 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-174 + 10 +654.0312423743286 + 20 +255.50000000000003 + 30 +0.0 + 11 +614.0312423743285 + 21 +255.50000000000006 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +26.565051177077976 + 10 +484.03124237432854 + 20 +215.50000000000009 + 30 +0.0 + 11 +484.03124237432854 + 21 +255.50000000000009 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-174 + 10 +484.03124237432854 + 20 +255.50000000000006 + 30 +0.0 + 11 +462.3524612094386 + 21 +255.50000000000009 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-180 + 10 +484.03124237432854 + 20 +215.50000000000009 + 30 +0.0 + 11 +462.3524612094386 + 21 +255.50000000000009 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +484.03124237432854 + 20 +262.7262603882967 + 30 +0.0 + 11 +484.03124237432854 + 21 +255.50000000000006 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +462.35246120943856 + 20 +262.7262603882967 + 30 +0.0 + 11 +484.03124237432854 + 21 +262.7262603882967 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +462.35246120943856 + 20 +255.50000000000006 + 30 +0.0 + 11 +462.35246120943856 + 21 +262.7262603882967 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +180 + 10 +484.03124237432854 + 20 +215.50000000000009 + 30 +0.0 + 11 +450.517657774028 + 21 +237.33665833497648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +450.517657774028 + 20 +237.33665833497648 + 30 +0.0 + 11 +462.35246120943856 + 21 +255.50000000000006 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +438.68285433861735 + 20 +219.1733166699529 + 30 +0.0 + 11 +450.517657774028 + 21 +237.33665833497648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +420.00000000000006 + 20 +190.50000000000009 + 30 +0.0 + 11 +438.68285433861735 + 21 +219.1733166699529 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +604.0312423743285 + 20 +255.50000000000003 + 30 +0.0 + 11 +614.0312423743285 + 21 +255.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +484.03124237432854 + 20 +255.50000000000006 + 30 +0.0 + 11 +604.0312423743285 + 21 +255.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +484.03124237432854 + 20 +255.50000000000006 + 30 +0.0 + 11 +484.03124237432854 + 21 +255.50000000000006 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +614.0312423743285 + 20 +255.50000000000003 + 30 +0.0 + 11 +614.0312423743285 + 21 +255.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +654.0312423743286 + 20 +268.8333333333333 + 30 +0.0 + 11 +654.0312423743286 + 21 +255.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +614.0312423743285 + 20 +268.8333333333333 + 30 +0.0 + 11 +654.0312423743286 + 21 +268.8333333333333 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +614.0312423743285 + 20 +255.50000000000003 + 30 +0.0 + 11 +614.0312423743285 + 21 +268.8333333333333 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +462.35246120943856 + 20 +118.27373961170336 + 30 +0.0 + 11 +462.35246120943856 + 21 +125.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +484.03124237432854 + 20 +118.27373961170336 + 30 +0.0 + 11 +462.35246120943856 + 21 +118.27373961170336 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +484.03124237432854 + 20 +125.50000000000001 + 30 +0.0 + 11 +484.03124237432854 + 21 +118.27373961170336 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +584.0312423743285 + 20 +95.5 + 30 +0.0 + 11 +594.0312423743285 + 21 +95.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +584.0312423743285 + 20 +45.5 + 30 +0.0 + 11 +584.0312423743285 + 21 +95.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +594.0312423743285 + 20 +45.5 + 30 +0.0 + 11 +584.0312423743285 + 21 +45.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +594.0312423743285 + 20 +65.5 + 30 +0.0 + 11 +604.0312423743285 + 21 +65.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +604.0312423743285 + 20 +65.5 + 30 +0.0 + 11 +604.0312423743285 + 21 +75.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +604.0312423743285 + 20 +75.50000000000001 + 30 +0.0 + 11 +594.0312423743285 + 21 +75.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +594.0312423743285 + 20 +75.50000000000001 + 30 +0.0 + 11 +594.0312423743285 + 21 +65.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +610.6979090409952 + 20 +11.750000000000002 + 30 +0.0 + 11 +610.6979090409952 + 21 +14.250000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +610.6979090409952 + 20 +14.250000000000002 + 30 +0.0 + 11 +607.364575707662 + 21 +14.250000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +607.364575707662 + 20 +14.250000000000002 + 30 +0.0 + 11 +607.364575707662 + 21 +11.750000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +614.0312423743285 + 20 +65.5 + 30 +0.0 + 11 +624.0312423743286 + 21 +65.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +624.0312423743286 + 20 +65.5 + 30 +0.0 + 11 +624.0312423743286 + 21 +75.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +624.0312423743286 + 20 +75.50000000000001 + 30 +0.0 + 11 +614.0312423743285 + 21 +75.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +614.0312423743285 + 20 +75.50000000000001 + 30 +0.0 + 11 +614.0312423743285 + 21 +65.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +626.2812423743285 + 20 +79.08333333333336 + 30 +0.0 + 11 +626.2812423743285 + 21 +61.91666666666668 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +626.2812423743285 + 20 +61.91666666666668 + 30 +0.0 + 11 +626.7812423743285 + 21 +61.91666666666668 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +626.7812423743285 + 20 +61.91666666666668 + 30 +0.0 + 11 +626.7812423743285 + 21 +79.08333333333336 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +626.7812423743285 + 20 +79.08333333333336 + 30 +0.0 + 11 +626.2812423743285 + 21 +79.08333333333336 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +451.4594977301591 + 20 +152.60350895639252 + 30 +0.0 + 11 +447.2416050225017 + 21 +159.0768759855708 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +447.2416050225017 + 20 +159.0768759855708 + 30 +0.0 + 11 +446.822685214998 + 21 +158.80391775638356 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +446.822685214998 + 20 +158.80391775638356 + 30 +0.0 + 11 +451.04057792265536 + 21 +152.33055072720532 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +451.04057792265536 + 20 +152.33055072720532 + 30 +0.0 + 11 +451.4594977301591 + 21 +152.60350895639252 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +643.7812423743285 + 20 +192.41666666666669 + 30 +0.0 + 11 +643.7812423743285 + 21 +178.58333333333334 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +643.7812423743285 + 20 +178.58333333333334 + 30 +0.0 + 11 +644.2812423743285 + 21 +178.58333333333334 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +644.2812423743285 + 20 +178.58333333333334 + 30 +0.0 + 11 +644.2812423743285 + 21 +192.41666666666669 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +644.2812423743285 + 20 +192.41666666666669 + 30 +0.0 + 11 +643.7812423743285 + 21 +192.41666666666669 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +640.6979090409951 + 20 +115.50000000000004 + 30 +0.0 + 11 +640.6979090409951 + 21 +122.1666666666667 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +640.6979090409951 + 20 +122.1666666666667 + 30 +0.0 + 11 +627.3645757076619 + 21 +122.1666666666667 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +627.3645757076619 + 20 +122.1666666666667 + 30 +0.0 + 11 +627.3645757076619 + 21 +115.50000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +643.7812423743285 + 20 +202.41666666666666 + 30 +0.0 + 11 +643.7812423743285 + 21 +188.58333333333334 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +643.7812423743285 + 20 +188.58333333333334 + 30 +0.0 + 11 +644.2812423743285 + 21 +188.58333333333334 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +644.2812423743285 + 20 +188.58333333333334 + 30 +0.0 + 11 +644.2812423743285 + 21 +202.41666666666666 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +644.2812423743285 + 20 +202.41666666666666 + 30 +0.0 + 11 +643.7812423743285 + 21 +202.41666666666666 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +469.57872159773524 + 20 +260.9196952912225 + 30 +0.0 + 11 +469.57872159773524 + 21 +257.3065650970742 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +469.57872159773524 + 20 +257.3065650970742 + 30 +0.0 + 11 +476.8049819860319 + 21 +257.3065650970742 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +476.8049819860319 + 20 +257.3065650970742 + 30 +0.0 + 11 +476.8049819860319 + 21 +260.9196952912225 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +447.24160502250174 + 20 +221.9231240144293 + 30 +0.0 + 11 +451.45949773015917 + 21 +228.3964910436076 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +451.45949773015917 + 20 +228.3964910436076 + 30 +0.0 + 11 +451.0405779226554 + 21 +228.6694492727948 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +451.0405779226554 + 20 +228.6694492727948 + 30 +0.0 + 11 +446.822685214998 + 21 +222.1960822436165 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +446.822685214998 + 20 +222.1960822436165 + 30 +0.0 + 11 +447.24160502250174 + 21 +221.9231240144293 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +607.1145757076617 + 20 +251.50000000000003 + 30 +0.0 + 11 +610.9479090409952 + 21 +251.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +610.9479090409952 + 20 +251.50000000000003 + 30 +0.0 + 11 +610.9479090409952 + 21 +252.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +610.9479090409952 + 20 +252.00000000000003 + 30 +0.0 + 11 +607.1145757076617 + 21 +252.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +607.1145757076617 + 20 +252.00000000000003 + 30 +0.0 + 11 +607.1145757076617 + 21 +251.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +627.3645757076619 + 20 +265.50000000000006 + 30 +0.0 + 11 +627.3645757076619 + 21 +258.8333333333334 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +627.3645757076619 + 20 +258.8333333333334 + 30 +0.0 + 11 +640.6979090409951 + 21 +258.8333333333334 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +640.6979090409951 + 20 +258.8333333333334 + 30 +0.0 + 11 +640.6979090409951 + 21 +265.50000000000006 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +476.80498198603186 + 20 +120.08030470877752 + 30 +0.0 + 11 +476.80498198603186 + 21 +123.69343490292586 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +476.80498198603186 + 20 +123.69343490292586 + 30 +0.0 + 11 +469.5787215977352 + 21 +123.69343490292586 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +469.5787215977352 + 20 +123.69343490292586 + 30 +0.0 + 11 +469.5787215977352 + 21 +120.08030470877752 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +586.5312423743285 + 20 +62.16666666666668 + 30 +0.0 + 11 +586.5312423743285 + 21 +57.16666666666668 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +586.5312423743285 + 20 +57.16666666666668 + 30 +0.0 + 11 +591.5312423743286 + 21 +62.16666666666668 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +591.5312423743286 + 20 +62.16666666666668 + 30 +0.0 + 11 +591.5312423743286 + 21 +78.83333333333336 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +591.5312423743286 + 20 +78.83333333333336 + 30 +0.0 + 11 +586.5312423743285 + 21 +83.83333333333336 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +586.5312423743285 + 20 +83.83333333333336 + 30 +0.0 + 11 +586.5312423743285 + 21 +78.83333333333336 + 31 +0.0 + 0 +ENDSEC + 0 +EOF diff --git a/rocolib/output/ESP32StackBoat/graph-autofold-graph.dxf b/rocolib/output/ESP32StackBoat/graph-autofold-graph.dxf new file mode 100644 index 0000000000000000000000000000000000000000..cc2623f09f146b1fdfd3b33c2b9aab4f2383b1d2 --- /dev/null +++ b/rocolib/output/ESP32StackBoat/graph-autofold-graph.dxf @@ -0,0 +1,5588 @@ + 0 +SECTION + 2 +HEADER + 9 +$ACADVER + 1 +AC1009 + 9 +$INSBASE + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMIN + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMAX + 10 +100.0 + 20 +100.0 + 30 +0.0 + 9 +$UNITMODE + 70 +0 + 9 +$AUNITS + 70 +0 + 9 +$ANGBASE + 50 +0.0 + 9 +$ANGDIR + 70 +0 + 0 +ENDSEC + 0 +SECTION + 2 +TABLES + 0 +TABLE + 2 +LTYPE + 70 +20 + 0 +LTYPE + 2 +CONTINUOUS + 70 +0 + 3 +Solid + 72 +65 + 73 +0 + 40 +0.0 + 0 +LTYPE + 2 +CENTER + 70 +0 + 3 +Center ____ _ ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +2.0 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +CENTERX2 + 70 +0 + 3 +Center (2x) ________ __ ________ __ ________ + 72 +65 + 73 +4 + 40 +3.5 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +CENTER2 + 70 +0 + 3 +Center (.5x) ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +1.0 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHED + 70 +0 + 3 +Dashed __ __ __ __ __ __ __ __ __ __ __ __ __ _ + 72 +65 + 73 +2 + 40 +0.6 + 49 +0.5 + 49 +-0.1 + 0 +LTYPE + 2 +DASHEDX2 + 70 +0 + 3 +Dashed (2x) ____ ____ ____ ____ ____ ____ + 72 +65 + 73 +2 + 40 +1.2 + 49 +1.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHED2 + 70 +0 + 3 +Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 +65 + 73 +2 + 40 +0.3 + 49 +0.25 + 49 +-0.05 + 0 +LTYPE + 2 +PHANTOM + 70 +0 + 3 +Phantom ______ __ __ ______ __ __ ______ + 72 +65 + 73 +6 + 40 +2.5 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOMX2 + 70 +0 + 3 +Phantom (2x)____________ ____ ____ ____________ + 72 +65 + 73 +6 + 40 +4.25 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOM2 + 70 +0 + 3 +Phantom (.5x) ___ _ _ ___ _ _ ___ _ _ ___ _ _ ___ + 72 +65 + 73 +6 + 40 +1.25 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHDOT + 70 +0 + 3 +Dash dot __ . __ . __ . __ . __ . __ . __ . __ + 72 +65 + 73 +4 + 40 +1.4 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOTX2 + 70 +0 + 3 +Dash dot (2x) ____ . ____ . ____ . ____ + 72 +65 + 73 +4 + 40 +2.4 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOT2 + 70 +0 + 3 +Dash dot (.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +4 + 40 +0.7 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOT + 70 +0 + 3 +Dot . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DOTX2 + 70 +0 + 3 +Dot (2x) . . . . . . . . + 72 +65 + 73 +2 + 40 +0.4 + 49 +0.0 + 49 +-0.4 + 0 +LTYPE + 2 +DOT2 + 70 +0 + 3 +Dot (.5) . . . . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DIVIDE + 70 +0 + 3 +Divide __ . . __ . . __ . . __ . . __ . . __ + 72 +65 + 73 +6 + 40 +1.6 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDEX2 + 70 +0 + 3 +Divide (2x) ____ . . ____ . . ____ . . ____ + 72 +65 + 73 +6 + 40 +2.6 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDE2 + 70 +0 + 3 +Divide(.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +6 + 40 +0.8 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOTTED + 70 +0 + 3 + + 72 +65 + 73 +2 + 40 +1.0 + 49 +0.0 + 49 +-1.0 + 0 +ENDTAB + 0 +TABLE + 2 +LAYER + 70 +5 + 0 +LAYER + 2 +DIMENSIONS + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEBACKGROUND + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLECONTENT + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEGRID + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +VIEWPORTS + 70 +0 + 62 +7 + 6 +CONTINUOUS + 0 +ENDTAB + 0 +TABLE + 2 +STYLE + 70 +12 + 0 +STYLE + 2 +STANDARD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbd.ttf + 4 + + 0 +STYLE + 2 +ARIAL_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariali.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbi.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BLACK + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariblk.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeur.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeui.ttf + 4 + + 0 +STYLE + 2 +TIMES + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +times.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbd.ttf + 4 + + 0 +STYLE + 2 +TIMES_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesi.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbi.ttf + 4 + + 0 +ENDTAB + 0 +TABLE + 2 +VIEW + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +APPID + 70 +1 + 0 +APPID + 2 +DXFWRITE + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +VPORT + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +UCS + 70 +0 + 0 +ENDTAB + 0 +ENDSEC + 0 +SECTION + 2 +BLOCKS + 0 +ENDSEC + 0 +SECTION + 2 +ENTITIES + 0 +VIEWPORT + 8 +VIEWPORTS + 67 +1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +1.0 + 41 +1.0 + 68 +1 + 69 +1 +1001 +ACAD +1000 +MVIEW +1002 +{ +1070 +16 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1040 +0.0 +1040 +1.0 +1040 +0.0 +1040 +0.0 +1040 +50.0 +1040 +0.0 +1040 +0.0 +1070 +0 +1070 +100 +1070 +1 +1070 +3 +1070 +0 +1070 +0 +1070 +0 +1070 +0 +1040 +0.0 +1040 +0.0 +1040 +0.0 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1070 +0 +1002 +{ +1002 +} +1002 +} + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +34.0 + 20 +45.0 + 30 +0.0 + 11 +34.0 + 21 +96.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +10.000000000000002 + 20 +96.00000000000001 + 30 +0.0 + 11 +10.000000000000002 + 21 +45.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +10.000000000000002 + 20 +45.0 + 30 +0.0 + 11 +22.000000000000004 + 21 +45.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +22.000000000000004 + 20 +45.0 + 30 +0.0 + 11 +34.0 + 21 +45.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +34.0 + 20 +45.0 + 30 +0.0 + 11 +34.0 + 21 +45.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +10.000000000000002 + 20 +45.0 + 30 +0.0 + 11 +10.000000000000002 + 21 +45.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +10.000000000000002 + 20 +5.000000000000001 + 30 +0.0 + 11 +10.000000000000002 + 21 +45.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +22.000000000000004 + 20 +45.0 + 30 +0.0 + 11 +22.000000000000004 + 21 +5.000000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +10.000000000000002 + 20 +0.0 + 30 +0.0 + 11 +10.000000000000002 + 21 +5.000000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +22.000000000000004 + 20 +0.0 + 30 +0.0 + 11 +10.000000000000002 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +22.000000000000004 + 20 +5.000000000000001 + 30 +0.0 + 11 +22.000000000000004 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +22.000000000000004 + 20 +5.000000000000001 + 30 +0.0 + 11 +22.000000000000004 + 21 +45.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +34.0 + 20 +45.0 + 30 +0.0 + 11 +34.0 + 21 +5.000000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +22.000000000000004 + 20 +0.0 + 30 +0.0 + 11 +22.000000000000004 + 21 +5.000000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +34.0 + 20 +0.0 + 30 +0.0 + 11 +22.000000000000004 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +34.0 + 20 +5.000000000000001 + 30 +0.0 + 11 +34.0 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +70.00000000000001 + 20 +45.0 + 30 +0.0 + 11 +34.0 + 21 +45.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +70.00000000000001 + 20 +45.0 + 30 +0.0 + 11 +70.00000000000001 + 21 +96.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +34.0 + 20 +96.00000000000001 + 30 +0.0 + 11 +70.00000000000001 + 21 +96.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +94.00000000000001 + 20 +45.0 + 30 +0.0 + 11 +70.00000000000001 + 21 +45.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +94.00000000000001 + 20 +45.0 + 30 +0.0 + 11 +94.00000000000001 + 21 +96.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +70.00000000000001 + 20 +96.00000000000001 + 30 +0.0 + 11 +94.00000000000001 + 21 +96.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +130.0 + 20 +45.0 + 30 +0.0 + 11 +94.00000000000001 + 21 +45.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +130.0 + 20 +96.00000000000001 + 30 +0.0 + 11 +130.0 + 21 +45.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +94.00000000000001 + 20 +96.00000000000001 + 30 +0.0 + 11 +130.0 + 21 +96.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +34.0 + 20 +96.00000000000001 + 30 +0.0 + 11 +22.000000000000004 + 21 +96.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +22.000000000000004 + 20 +96.00000000000001 + 30 +0.0 + 11 +10.000000000000002 + 21 +96.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +10.000000000000002 + 20 +96.00000000000001 + 30 +0.0 + 11 +10.000000000000002 + 21 +96.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +34.0 + 20 +96.00000000000001 + 30 +0.0 + 11 +34.0 + 21 +96.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +34.0 + 20 +136.0 + 30 +0.0 + 11 +34.0 + 21 +96.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +22.000000000000004 + 20 +96.00000000000001 + 30 +0.0 + 11 +22.000000000000004 + 21 +136.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +34.0 + 20 +141.0 + 30 +0.0 + 11 +34.0 + 21 +136.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +22.000000000000004 + 20 +141.0 + 30 +0.0 + 11 +34.0 + 21 +141.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +22.000000000000004 + 20 +136.0 + 30 +0.0 + 11 +22.000000000000004 + 21 +141.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +22.000000000000004 + 20 +136.0 + 30 +0.0 + 11 +22.000000000000004 + 21 +96.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +10.000000000000002 + 20 +96.00000000000001 + 30 +0.0 + 11 +10.000000000000002 + 21 +136.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +22.000000000000004 + 20 +141.0 + 30 +0.0 + 11 +22.000000000000004 + 21 +136.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +10.000000000000002 + 20 +141.0 + 30 +0.0 + 11 +22.000000000000004 + 21 +141.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +10.000000000000002 + 20 +136.0 + 30 +0.0 + 11 +10.000000000000002 + 21 +141.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +96.00000000000001 + 30 +0.0 + 11 +10.000000000000002 + 21 +96.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +45.0 + 30 +0.0 + 11 +0.0 + 21 +96.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +10.000000000000002 + 20 +45.0 + 30 +0.0 + 11 +0.0 + 21 +45.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +11.400000000000002 + 20 +50.0 + 30 +0.0 + 11 +12.6 + 21 +50.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +12.6 + 20 +50.0 + 30 +0.0 + 11 +12.6 + 21 +91.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +12.6 + 20 +91.0 + 30 +0.0 + 11 +11.400000000000002 + 21 +91.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +11.400000000000002 + 20 +91.0 + 30 +0.0 + 11 +11.400000000000002 + 21 +50.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +31.400000000000002 + 20 +50.50000000000001 + 30 +0.0 + 11 +32.60000000000001 + 21 +50.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +32.60000000000001 + 20 +50.50000000000001 + 30 +0.0 + 11 +32.60000000000001 + 21 +80.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +32.60000000000001 + 20 +80.50000000000001 + 30 +0.0 + 11 +31.400000000000002 + 21 +80.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +31.400000000000002 + 20 +80.50000000000001 + 30 +0.0 + 11 +31.400000000000002 + 21 +50.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +18.000000000000004 + 20 +1.2500000000000002 + 30 +0.0 + 11 +18.000000000000004 + 21 +3.7500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +18.000000000000004 + 20 +3.7500000000000004 + 30 +0.0 + 11 +14.000000000000002 + 21 +3.7500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +14.000000000000002 + 20 +3.7500000000000004 + 30 +0.0 + 11 +14.000000000000002 + 21 +1.2500000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +30.000000000000004 + 20 +1.2500000000000002 + 30 +0.0 + 11 +30.000000000000004 + 21 +3.7500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +30.000000000000004 + 20 +3.7500000000000004 + 30 +0.0 + 11 +26.000000000000004 + 21 +3.7500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +26.000000000000004 + 20 +3.7500000000000004 + 30 +0.0 + 11 +26.000000000000004 + 21 +1.2500000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +30.000000000000004 + 20 +91.50000000000001 + 30 +0.0 + 11 +30.000000000000004 + 21 +73.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +30.000000000000004 + 20 +73.50000000000001 + 30 +0.0 + 11 +60.00000000000001 + 21 +73.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +60.00000000000001 + 20 +73.50000000000001 + 30 +0.0 + 11 +60.00000000000001 + 21 +91.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +60.00000000000001 + 20 +91.50000000000001 + 30 +0.0 + 11 +30.000000000000004 + 21 +91.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +91.40000000000002 + 20 +50.0 + 30 +0.0 + 11 +92.60000000000001 + 21 +50.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +92.60000000000001 + 20 +50.0 + 30 +0.0 + 11 +92.60000000000001 + 21 +91.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +92.60000000000001 + 20 +91.0 + 30 +0.0 + 11 +91.40000000000002 + 21 +91.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +91.40000000000002 + 20 +91.0 + 30 +0.0 + 11 +91.40000000000002 + 21 +50.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +71.4 + 20 +50.50000000000001 + 30 +0.0 + 11 +72.60000000000001 + 21 +50.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +72.60000000000001 + 20 +50.50000000000001 + 30 +0.0 + 11 +72.60000000000001 + 21 +80.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +72.60000000000001 + 20 +80.50000000000001 + 30 +0.0 + 11 +71.4 + 21 +80.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +71.4 + 20 +80.50000000000001 + 30 +0.0 + 11 +71.4 + 21 +50.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +97.00000000000001 + 20 +54.00000000000001 + 30 +0.0 + 11 +97.00000000000001 + 21 +47.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +97.00000000000001 + 20 +47.00000000000001 + 30 +0.0 + 11 +117.00000000000001 + 21 +47.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +117.00000000000001 + 20 +47.00000000000001 + 30 +0.0 + 11 +117.00000000000001 + 21 +54.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +117.00000000000001 + 20 +54.00000000000001 + 30 +0.0 + 11 +97.00000000000001 + 21 +54.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +122.25000000000001 + 20 +79.25000000000001 + 30 +0.0 + 11 +122.25000000000001 + 21 +61.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +122.25000000000001 + 20 +61.75000000000001 + 30 +0.0 + 11 +122.75000000000001 + 21 +61.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +122.75000000000001 + 20 +61.75000000000001 + 30 +0.0 + 11 +122.75000000000001 + 21 +79.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +122.75000000000001 + 20 +79.25000000000001 + 30 +0.0 + 11 +122.25000000000001 + 21 +79.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +26.000000000000004 + 20 +139.75000000000003 + 30 +0.0 + 11 +26.000000000000004 + 21 +137.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +26.000000000000004 + 20 +137.25000000000003 + 30 +0.0 + 11 +30.000000000000004 + 21 +137.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +30.000000000000004 + 20 +137.25000000000003 + 30 +0.0 + 11 +30.000000000000004 + 21 +139.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +14.000000000000002 + 20 +139.75000000000003 + 30 +0.0 + 11 +14.000000000000002 + 21 +137.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +14.000000000000002 + 20 +137.25000000000003 + 30 +0.0 + 11 +18.000000000000004 + 21 +137.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +18.000000000000004 + 20 +137.25000000000003 + 30 +0.0 + 11 +18.000000000000004 + 21 +139.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +2.5000000000000004 + 20 +62.000000000000014 + 30 +0.0 + 11 +2.5000000000000004 + 21 +57.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +2.5000000000000004 + 20 +57.00000000000001 + 30 +0.0 + 11 +7.500000000000001 + 21 +62.000000000000014 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +7.500000000000001 + 20 +62.000000000000014 + 30 +0.0 + 11 +7.500000000000001 + 21 +79.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +7.500000000000001 + 20 +79.00000000000001 + 30 +0.0 + 11 +2.5000000000000004 + 21 +84.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +2.5000000000000004 + 20 +84.0 + 30 +0.0 + 11 +2.5000000000000004 + 21 +79.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +186.00000000000003 + 20 +70.5 + 30 +0.0 + 11 +140.00000000000003 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +198.0 + 20 +70.5 + 30 +0.0 + 11 +186.00000000000003 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +210.00000000000003 + 20 +70.5 + 30 +0.0 + 11 +198.0 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +222.00000000000003 + 20 +70.5 + 30 +0.0 + 11 +210.00000000000003 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +234.00000000000003 + 20 +70.5 + 30 +0.0 + 11 +222.00000000000003 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +246.00000000000003 + 20 +70.5 + 30 +0.0 + 11 +234.00000000000003 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +258.0 + 20 +70.5 + 30 +0.0 + 11 +246.00000000000003 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +270.00000000000006 + 20 +70.5 + 30 +0.0 + 11 +258.0 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +270.00000000000006 + 20 +70.5 + 30 +0.0 + 11 +270.00000000000006 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +140.00000000000003 + 20 +70.5 + 30 +0.0 + 11 +270.00000000000006 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +140.00000000000003 + 20 +70.5 + 30 +0.0 + 11 +140.00000000000003 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +206.25000000000003 + 20 +74.50000000000001 + 30 +0.0 + 11 +201.75000000000003 + 21 +74.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +201.75000000000003 + 20 +74.50000000000001 + 30 +0.0 + 11 +201.75000000000003 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +201.75000000000003 + 20 +74.0 + 30 +0.0 + 11 +206.25000000000003 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +206.25000000000003 + 20 +74.0 + 30 +0.0 + 11 +206.25000000000003 + 21 +74.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +218.25000000000003 + 20 +74.50000000000001 + 30 +0.0 + 11 +213.75 + 21 +74.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +213.75 + 20 +74.50000000000001 + 30 +0.0 + 11 +213.75 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +213.75 + 20 +74.0 + 30 +0.0 + 11 +218.25000000000003 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +218.25000000000003 + 20 +74.0 + 30 +0.0 + 11 +218.25000000000003 + 21 +74.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +326.00000000000006 + 20 +70.5 + 30 +0.0 + 11 +280.00000000000006 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +338.00000000000006 + 20 +70.5 + 30 +0.0 + 11 +326.00000000000006 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.0 + 20 +70.5 + 30 +0.0 + 11 +338.00000000000006 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +362.00000000000006 + 20 +70.5 + 30 +0.0 + 11 +350.0 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +374.00000000000006 + 20 +70.5 + 30 +0.0 + 11 +362.00000000000006 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +386.00000000000006 + 20 +70.5 + 30 +0.0 + 11 +374.00000000000006 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +398.00000000000006 + 20 +70.5 + 30 +0.0 + 11 +386.00000000000006 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +410.00000000000006 + 20 +70.5 + 30 +0.0 + 11 +398.00000000000006 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +410.00000000000006 + 20 +70.5 + 30 +0.0 + 11 +410.00000000000006 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +280.00000000000006 + 20 +70.5 + 30 +0.0 + 11 +410.00000000000006 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +280.00000000000006 + 20 +70.5 + 30 +0.0 + 11 +280.00000000000006 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +334.25000000000006 + 20 +74.50000000000001 + 30 +0.0 + 11 +329.75000000000006 + 21 +74.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +329.75000000000006 + 20 +74.50000000000001 + 30 +0.0 + 11 +329.75000000000006 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +329.75000000000006 + 20 +74.0 + 30 +0.0 + 11 +334.25000000000006 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +334.25000000000006 + 20 +74.0 + 30 +0.0 + 11 +334.25000000000006 + 21 +74.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +346.25 + 20 +74.50000000000001 + 30 +0.0 + 11 +341.75 + 21 +74.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +341.75 + 20 +74.50000000000001 + 30 +0.0 + 11 +341.75 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +341.75 + 20 +74.0 + 30 +0.0 + 11 +346.25 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +346.25 + 20 +74.0 + 30 +0.0 + 11 +346.25 + 21 +74.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +604.0312423743285 + 20 +45.5 + 30 +0.0 + 11 +594.0312423743285 + 21 +45.5 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +604.0312423743285 + 20 +45.5 + 30 +0.0 + 11 +604.0312423743285 + 21 +95.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +594.0312423743285 + 20 +95.5 + 30 +0.0 + 11 +604.0312423743285 + 21 +95.5 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +594.0312423743285 + 20 +95.5 + 30 +0.0 + 11 +594.0312423743285 + 21 +45.5 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +614.0312423743285 + 20 +45.5 + 30 +0.0 + 11 +614.0312423743285 + 21 +95.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +614.0312423743285 + 20 +45.5 + 30 +0.0 + 11 +614.0312423743285 + 21 +15.500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +604.0312423743285 + 20 +15.500000000000004 + 30 +0.0 + 11 +604.0312423743285 + 21 +45.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +604.0312423743285 + 20 +10.5 + 30 +0.0 + 11 +604.0312423743285 + 21 +15.500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +614.0312423743285 + 20 +10.5 + 30 +0.0 + 11 +604.0312423743285 + 21 +10.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +614.0312423743285 + 20 +15.500000000000004 + 30 +0.0 + 11 +614.0312423743285 + 21 +10.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +624.0312423743286 + 20 +45.5 + 30 +0.0 + 11 +614.0312423743285 + 21 +45.5 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +624.0312423743286 + 20 +45.5 + 30 +0.0 + 11 +624.0312423743286 + 21 +95.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +614.0312423743285 + 20 +95.5 + 30 +0.0 + 11 +624.0312423743286 + 21 +95.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +634.0312423743286 + 20 +45.5 + 30 +0.0 + 11 +624.0312423743286 + 21 +45.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +634.0312423743286 + 20 +95.5 + 30 +0.0 + 11 +634.0312423743286 + 21 +45.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +624.0312423743286 + 20 +95.5 + 30 +0.0 + 11 +634.0312423743286 + 21 +95.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +604.0312423743285 + 20 +95.5 + 30 +0.0 + 11 +604.0312423743285 + 21 +125.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +614.0312423743285 + 20 +125.50000000000001 + 30 +0.0 + 11 +614.0312423743285 + 21 +95.5 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +614.0312423743285 + 20 +125.50000000000001 + 30 +0.0 + 11 +604.0312423743285 + 21 +125.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +604.0312423743285 + 20 +125.50000000000001 + 30 +0.0 + 11 +484.03124237432854 + 21 +125.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +614.0312423743285 + 20 +125.50000000000001 + 30 +0.0 + 11 +614.0312423743285 + 21 +125.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +484.03124237432854 + 20 +125.50000000000001 + 30 +0.0 + 11 +484.03124237432854 + 21 +125.50000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +484.03124237432854 + 20 +165.50000000000003 + 30 +0.0 + 11 +614.0312423743285 + 21 +165.50000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +484.03124237432854 + 20 +125.50000000000001 + 30 +0.0 + 11 +484.03124237432854 + 21 +165.50000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +462.35246120943856 + 20 +125.50000000000001 + 30 +0.0 + 11 +484.03124237432854 + 21 +165.50000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +462.35246120943856 + 20 +125.50000000000001 + 30 +0.0 + 11 +484.03124237432854 + 21 +125.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +462.35246120943856 + 20 +125.50000000000001 + 30 +0.0 + 11 +450.51765777402795 + 21 +143.66334166502364 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +450.51765777402795 + 20 +143.66334166502364 + 30 +0.0 + 11 +484.03124237432854 + 21 +165.50000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +420.00000000000006 + 20 +190.50000000000003 + 30 +0.0 + 11 +484.03124237432854 + 21 +165.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +438.68285433861735 + 20 +161.8266833300472 + 30 +0.0 + 11 +420.00000000000006 + 21 +190.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +450.51765777402795 + 20 +143.6633416650236 + 30 +0.0 + 11 +438.68285433861735 + 21 +161.8266833300472 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +484.03124237432854 + 20 +165.50000000000003 + 30 +0.0 + 11 +484.03124237432854 + 21 +190.50000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +484.03124237432854 + 20 +190.50000000000003 + 30 +0.0 + 11 +484.03124237432854 + 21 +215.50000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +420.00000000000006 + 20 +190.50000000000003 + 30 +0.0 + 11 +484.03124237432854 + 21 +215.50000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +484.03124237432854 + 20 +215.50000000000003 + 30 +0.0 + 11 +614.0312423743285 + 21 +215.50000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +614.0312423743285 + 20 +190.50000000000003 + 30 +0.0 + 11 +614.0312423743285 + 21 +165.50000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +614.0312423743285 + 20 +215.50000000000003 + 30 +0.0 + 11 +614.0312423743285 + 21 +190.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +654.0312423743286 + 20 +205.5 + 30 +0.0 + 11 +654.0312423743286 + 21 +165.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +654.0312423743286 + 20 +190.50000000000003 + 30 +0.0 + 11 +654.0312423743286 + 21 +205.5 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +614.0312423743285 + 20 +165.50000000000003 + 30 +0.0 + 11 +654.0312423743286 + 21 +165.50000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +614.0312423743285 + 20 +165.50000000000003 + 30 +0.0 + 11 +654.0312423743286 + 21 +125.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +654.0312423743286 + 20 +165.50000000000003 + 30 +0.0 + 11 +654.0312423743286 + 21 +125.50000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +614.0312423743285 + 20 +125.50000000000003 + 30 +0.0 + 11 +654.0312423743286 + 21 +125.50000000000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +614.0312423743285 + 20 +165.50000000000003 + 30 +0.0 + 11 +614.0312423743285 + 21 +125.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +614.0312423743285 + 20 +112.1666666666667 + 30 +0.0 + 11 +614.0312423743285 + 21 +125.50000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +654.0312423743286 + 20 +112.16666666666671 + 30 +0.0 + 11 +614.0312423743285 + 21 +112.1666666666667 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +654.0312423743286 + 20 +125.50000000000004 + 30 +0.0 + 11 +654.0312423743286 + 21 +112.16666666666671 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +654.0312423743286 + 20 +215.50000000000003 + 30 +0.0 + 11 +614.0312423743285 + 21 +215.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +654.0312423743286 + 20 +175.5 + 30 +0.0 + 11 +654.0312423743286 + 21 +190.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +654.0312423743286 + 20 +215.50000000000003 + 30 +0.0 + 11 +654.0312423743286 + 21 +175.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +654.0312423743286 + 20 +255.5 + 30 +0.0 + 11 +654.0312423743286 + 21 +215.50000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +654.0312423743286 + 20 +255.5 + 30 +0.0 + 11 +614.0312423743285 + 21 +215.50000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +614.0312423743285 + 20 +255.50000000000006 + 30 +0.0 + 11 +614.0312423743285 + 21 +215.50000000000006 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +654.0312423743286 + 20 +255.50000000000003 + 30 +0.0 + 11 +614.0312423743285 + 21 +255.50000000000006 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +484.03124237432854 + 20 +215.50000000000009 + 30 +0.0 + 11 +484.03124237432854 + 21 +255.50000000000009 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +484.03124237432854 + 20 +255.50000000000006 + 30 +0.0 + 11 +462.3524612094386 + 21 +255.50000000000009 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +484.03124237432854 + 20 +215.50000000000009 + 30 +0.0 + 11 +462.3524612094386 + 21 +255.50000000000009 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +484.03124237432854 + 20 +262.7262603882967 + 30 +0.0 + 11 +484.03124237432854 + 21 +255.50000000000006 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +462.35246120943856 + 20 +262.7262603882967 + 30 +0.0 + 11 +484.03124237432854 + 21 +262.7262603882967 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +462.35246120943856 + 20 +255.50000000000006 + 30 +0.0 + 11 +462.35246120943856 + 21 +262.7262603882967 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +484.03124237432854 + 20 +215.50000000000009 + 30 +0.0 + 11 +450.517657774028 + 21 +237.33665833497648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +450.517657774028 + 20 +237.33665833497648 + 30 +0.0 + 11 +462.35246120943856 + 21 +255.50000000000006 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +438.68285433861735 + 20 +219.1733166699529 + 30 +0.0 + 11 +450.517657774028 + 21 +237.33665833497648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +420.00000000000006 + 20 +190.50000000000009 + 30 +0.0 + 11 +438.68285433861735 + 21 +219.1733166699529 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +604.0312423743285 + 20 +255.50000000000003 + 30 +0.0 + 11 +614.0312423743285 + 21 +255.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +484.03124237432854 + 20 +255.50000000000006 + 30 +0.0 + 11 +604.0312423743285 + 21 +255.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +484.03124237432854 + 20 +255.50000000000006 + 30 +0.0 + 11 +484.03124237432854 + 21 +255.50000000000006 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +614.0312423743285 + 20 +255.50000000000003 + 30 +0.0 + 11 +614.0312423743285 + 21 +255.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +654.0312423743286 + 20 +268.8333333333333 + 30 +0.0 + 11 +654.0312423743286 + 21 +255.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +614.0312423743285 + 20 +268.8333333333333 + 30 +0.0 + 11 +654.0312423743286 + 21 +268.8333333333333 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +614.0312423743285 + 20 +255.50000000000003 + 30 +0.0 + 11 +614.0312423743285 + 21 +268.8333333333333 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +462.35246120943856 + 20 +118.27373961170336 + 30 +0.0 + 11 +462.35246120943856 + 21 +125.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +484.03124237432854 + 20 +118.27373961170336 + 30 +0.0 + 11 +462.35246120943856 + 21 +118.27373961170336 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +484.03124237432854 + 20 +125.50000000000001 + 30 +0.0 + 11 +484.03124237432854 + 21 +118.27373961170336 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +584.0312423743285 + 20 +95.5 + 30 +0.0 + 11 +594.0312423743285 + 21 +95.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +584.0312423743285 + 20 +45.5 + 30 +0.0 + 11 +584.0312423743285 + 21 +95.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +594.0312423743285 + 20 +45.5 + 30 +0.0 + 11 +584.0312423743285 + 21 +45.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +594.0312423743285 + 20 +65.5 + 30 +0.0 + 11 +604.0312423743285 + 21 +65.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +604.0312423743285 + 20 +65.5 + 30 +0.0 + 11 +604.0312423743285 + 21 +75.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +604.0312423743285 + 20 +75.50000000000001 + 30 +0.0 + 11 +594.0312423743285 + 21 +75.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +594.0312423743285 + 20 +75.50000000000001 + 30 +0.0 + 11 +594.0312423743285 + 21 +65.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +610.6979090409952 + 20 +11.750000000000002 + 30 +0.0 + 11 +610.6979090409952 + 21 +14.250000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +610.6979090409952 + 20 +14.250000000000002 + 30 +0.0 + 11 +607.364575707662 + 21 +14.250000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +607.364575707662 + 20 +14.250000000000002 + 30 +0.0 + 11 +607.364575707662 + 21 +11.750000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +614.0312423743285 + 20 +65.5 + 30 +0.0 + 11 +624.0312423743286 + 21 +65.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +624.0312423743286 + 20 +65.5 + 30 +0.0 + 11 +624.0312423743286 + 21 +75.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +624.0312423743286 + 20 +75.50000000000001 + 30 +0.0 + 11 +614.0312423743285 + 21 +75.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +614.0312423743285 + 20 +75.50000000000001 + 30 +0.0 + 11 +614.0312423743285 + 21 +65.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +626.2812423743285 + 20 +79.08333333333336 + 30 +0.0 + 11 +626.2812423743285 + 21 +61.91666666666668 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +626.2812423743285 + 20 +61.91666666666668 + 30 +0.0 + 11 +626.7812423743285 + 21 +61.91666666666668 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +626.7812423743285 + 20 +61.91666666666668 + 30 +0.0 + 11 +626.7812423743285 + 21 +79.08333333333336 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +626.7812423743285 + 20 +79.08333333333336 + 30 +0.0 + 11 +626.2812423743285 + 21 +79.08333333333336 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +451.4594977301591 + 20 +152.60350895639252 + 30 +0.0 + 11 +447.2416050225017 + 21 +159.0768759855708 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +447.2416050225017 + 20 +159.0768759855708 + 30 +0.0 + 11 +446.822685214998 + 21 +158.80391775638356 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +446.822685214998 + 20 +158.80391775638356 + 30 +0.0 + 11 +451.04057792265536 + 21 +152.33055072720532 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +451.04057792265536 + 20 +152.33055072720532 + 30 +0.0 + 11 +451.4594977301591 + 21 +152.60350895639252 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +643.7812423743285 + 20 +192.41666666666669 + 30 +0.0 + 11 +643.7812423743285 + 21 +178.58333333333334 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +643.7812423743285 + 20 +178.58333333333334 + 30 +0.0 + 11 +644.2812423743285 + 21 +178.58333333333334 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +644.2812423743285 + 20 +178.58333333333334 + 30 +0.0 + 11 +644.2812423743285 + 21 +192.41666666666669 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +644.2812423743285 + 20 +192.41666666666669 + 30 +0.0 + 11 +643.7812423743285 + 21 +192.41666666666669 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +640.6979090409951 + 20 +115.50000000000004 + 30 +0.0 + 11 +640.6979090409951 + 21 +122.1666666666667 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +640.6979090409951 + 20 +122.1666666666667 + 30 +0.0 + 11 +627.3645757076619 + 21 +122.1666666666667 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +627.3645757076619 + 20 +122.1666666666667 + 30 +0.0 + 11 +627.3645757076619 + 21 +115.50000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +643.7812423743285 + 20 +202.41666666666666 + 30 +0.0 + 11 +643.7812423743285 + 21 +188.58333333333334 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +643.7812423743285 + 20 +188.58333333333334 + 30 +0.0 + 11 +644.2812423743285 + 21 +188.58333333333334 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +644.2812423743285 + 20 +188.58333333333334 + 30 +0.0 + 11 +644.2812423743285 + 21 +202.41666666666666 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +644.2812423743285 + 20 +202.41666666666666 + 30 +0.0 + 11 +643.7812423743285 + 21 +202.41666666666666 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +469.57872159773524 + 20 +260.9196952912225 + 30 +0.0 + 11 +469.57872159773524 + 21 +257.3065650970742 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +469.57872159773524 + 20 +257.3065650970742 + 30 +0.0 + 11 +476.8049819860319 + 21 +257.3065650970742 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +476.8049819860319 + 20 +257.3065650970742 + 30 +0.0 + 11 +476.8049819860319 + 21 +260.9196952912225 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +447.24160502250174 + 20 +221.9231240144293 + 30 +0.0 + 11 +451.45949773015917 + 21 +228.3964910436076 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +451.45949773015917 + 20 +228.3964910436076 + 30 +0.0 + 11 +451.0405779226554 + 21 +228.6694492727948 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +451.0405779226554 + 20 +228.6694492727948 + 30 +0.0 + 11 +446.822685214998 + 21 +222.1960822436165 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +446.822685214998 + 20 +222.1960822436165 + 30 +0.0 + 11 +447.24160502250174 + 21 +221.9231240144293 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +607.1145757076617 + 20 +251.50000000000003 + 30 +0.0 + 11 +610.9479090409952 + 21 +251.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +610.9479090409952 + 20 +251.50000000000003 + 30 +0.0 + 11 +610.9479090409952 + 21 +252.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +610.9479090409952 + 20 +252.00000000000003 + 30 +0.0 + 11 +607.1145757076617 + 21 +252.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +607.1145757076617 + 20 +252.00000000000003 + 30 +0.0 + 11 +607.1145757076617 + 21 +251.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +627.3645757076619 + 20 +265.50000000000006 + 30 +0.0 + 11 +627.3645757076619 + 21 +258.8333333333334 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +627.3645757076619 + 20 +258.8333333333334 + 30 +0.0 + 11 +640.6979090409951 + 21 +258.8333333333334 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +640.6979090409951 + 20 +258.8333333333334 + 30 +0.0 + 11 +640.6979090409951 + 21 +265.50000000000006 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +476.80498198603186 + 20 +120.08030470877752 + 30 +0.0 + 11 +476.80498198603186 + 21 +123.69343490292586 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +476.80498198603186 + 20 +123.69343490292586 + 30 +0.0 + 11 +469.5787215977352 + 21 +123.69343490292586 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +469.5787215977352 + 20 +123.69343490292586 + 30 +0.0 + 11 +469.5787215977352 + 21 +120.08030470877752 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +586.5312423743285 + 20 +62.16666666666668 + 30 +0.0 + 11 +586.5312423743285 + 21 +57.16666666666668 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +586.5312423743285 + 20 +57.16666666666668 + 30 +0.0 + 11 +591.5312423743286 + 21 +62.16666666666668 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +591.5312423743286 + 20 +62.16666666666668 + 30 +0.0 + 11 +591.5312423743286 + 21 +78.83333333333336 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +591.5312423743286 + 20 +78.83333333333336 + 30 +0.0 + 11 +586.5312423743285 + 21 +83.83333333333336 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +586.5312423743285 + 20 +83.83333333333336 + 30 +0.0 + 11 +586.5312423743285 + 21 +78.83333333333336 + 31 +0.0 + 0 +ENDSEC + 0 +EOF diff --git a/rocolib/output/ESP32StackBoat/graph-lasercutter.svg b/rocolib/output/ESP32StackBoat/graph-lasercutter.svg new file mode 100644 index 0000000000000000000000000000000000000000..cb4fb1fb56908fd03836f674d5299aa666fbac26 --- /dev/null +++ b/rocolib/output/ESP32StackBoat/graph-lasercutter.svg @@ -0,0 +1,258 @@ +<?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"> + <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"/> +</svg> diff --git a/rocolib/output/ESP32StackBoat/graph-model.png b/rocolib/output/ESP32StackBoat/graph-model.png new file mode 100644 index 0000000000000000000000000000000000000000..71333ce0194bc937985ce9778993c66d9165ee58 Binary files /dev/null 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 new file mode 100644 index 0000000000000000000000000000000000000000..cdc929250dc12483ff933eef488f1eac9f9b182c --- /dev/null +++ b/rocolib/output/ESP32StackBoat/graph-model.stl @@ -0,0 +1,800 @@ +solid python +facet normal 0 0 0 +outer loop +vertex -0.0120 -0.0255 0.0000 +vertex -0.0094 -0.0205 0.0000 +vertex -0.0106 -0.0205 0.0000 +endloop +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 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0120 -0.0255 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.0106 0.0205 0.0000 +vertex -0.0094 0.0205 0.0000 +endloop +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 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0120 0.0255 0.0000 +vertex -0.0094 0.0205 0.0000 +vertex 0.0120 0.0255 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0094 -0.0205 0.0000 +vertex 0.0094 0.0100 0.0000 +vertex -0.0094 0.0205 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0094 -0.0200 0.0000 +vertex 0.0120 -0.0255 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.0094 -0.0200 0.0000 +vertex -0.0094 -0.0205 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0106 -0.0200 0.0000 +vertex 0.0120 -0.0255 0.0000 +vertex 0.0106 0.0100 0.0000 +endloop +endfacet +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 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0120 0.0255 0.0000 +vertex 0.0106 0.0100 0.0000 +vertex 0.0120 -0.0255 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.0094 0.0205 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0094 -0.0200 0.0000 +vertex 0.0094 0.0100 0.0000 +vertex -0.0094 -0.0205 0.0000 +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 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0120 -0.0255 0.0000 +vertex 0.0120 0.0030 -0.0260 +vertex 0.0120 0.0030 0.0000 +endloop +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 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0120 -0.0255 -0.0360 +vertex 0.0120 0.0030 -0.0260 +vertex 0.0120 -0.0255 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 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0120 0.0255 -0.0360 +vertex 0.0120 0.0210 -0.0260 +vertex 0.0120 0.0030 -0.0260 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0120 0.0210 0.0040 +vertex 0.0120 0.0030 0.0000 +vertex 0.0120 0.0210 0.0000 +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.0210 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0120 -0.0255 -0.0360 +vertex 0.0094 -0.0200 -0.0360 +vertex 0.0106 -0.0200 -0.0360 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0094 -0.0200 -0.0360 +vertex 0.0120 -0.0255 -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.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.0106 0.0100 -0.0360 +vertex 0.0094 0.0100 -0.0360 +endloop +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 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0120 0.0255 -0.0360 +vertex 0.0094 0.0100 -0.0360 +vertex -0.0094 0.0205 -0.0360 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0094 -0.0200 -0.0360 +vertex -0.0094 -0.0205 -0.0360 +vertex 0.0094 0.0100 -0.0360 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0094 -0.0205 -0.0360 +vertex -0.0120 -0.0255 -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.0094 -0.0205 -0.0360 +vertex 0.0120 -0.0255 -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 +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 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0120 0.0255 -0.0360 +vertex -0.0106 0.0205 -0.0360 +vertex -0.0106 -0.0205 -0.0360 +endloop +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 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0094 -0.0205 -0.0360 +vertex -0.0094 0.0205 -0.0360 +vertex 0.0094 0.0100 -0.0360 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0120 -0.0255 -0.0360 +vertex -0.0120 -0.0235 -0.0330 +vertex -0.0120 -0.0165 -0.0330 +endloop +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.0235 -0.0130 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0120 0.0255 -0.0360 +vertex -0.0120 -0.0165 -0.0330 +vertex -0.0120 -0.0165 -0.0130 +endloop +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 +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.0165 -0.0130 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0120 -0.0255 0.0000 +vertex -0.0120 -0.0235 -0.0130 +vertex -0.0120 -0.0255 -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 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0120 0.0255 0.0000 +vertex -0.0120 -0.0165 -0.0130 +vertex -0.0120 -0.0255 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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +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 +endloop +endfacet +endsolid python diff --git a/rocolib/output/ESP32StackBoat/graph-silhouette.dxf b/rocolib/output/ESP32StackBoat/graph-silhouette.dxf new file mode 100644 index 0000000000000000000000000000000000000000..3ccc91f34d1a162064f08ca338c0edd31317f632 --- /dev/null +++ b/rocolib/output/ESP32StackBoat/graph-silhouette.dxf @@ -0,0 +1,5588 @@ + 0 +SECTION + 2 +HEADER + 9 +$ACADVER + 1 +AC1009 + 9 +$INSBASE + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMIN + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMAX + 10 +100.0 + 20 +100.0 + 30 +0.0 + 9 +$UNITMODE + 70 +0 + 9 +$AUNITS + 70 +0 + 9 +$ANGBASE + 50 +0.0 + 9 +$ANGDIR + 70 +0 + 0 +ENDSEC + 0 +SECTION + 2 +TABLES + 0 +TABLE + 2 +LTYPE + 70 +20 + 0 +LTYPE + 2 +CONTINUOUS + 70 +0 + 3 +Solid + 72 +65 + 73 +0 + 40 +0.0 + 0 +LTYPE + 2 +CENTER + 70 +0 + 3 +Center ____ _ ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +2.0 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +CENTERX2 + 70 +0 + 3 +Center (2x) ________ __ ________ __ ________ + 72 +65 + 73 +4 + 40 +3.5 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +CENTER2 + 70 +0 + 3 +Center (.5x) ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +1.0 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHED + 70 +0 + 3 +Dashed __ __ __ __ __ __ __ __ __ __ __ __ __ _ + 72 +65 + 73 +2 + 40 +0.6 + 49 +0.5 + 49 +-0.1 + 0 +LTYPE + 2 +DASHEDX2 + 70 +0 + 3 +Dashed (2x) ____ ____ ____ ____ ____ ____ + 72 +65 + 73 +2 + 40 +1.2 + 49 +1.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHED2 + 70 +0 + 3 +Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 +65 + 73 +2 + 40 +0.3 + 49 +0.25 + 49 +-0.05 + 0 +LTYPE + 2 +PHANTOM + 70 +0 + 3 +Phantom ______ __ __ ______ __ __ ______ + 72 +65 + 73 +6 + 40 +2.5 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOMX2 + 70 +0 + 3 +Phantom (2x)____________ ____ ____ ____________ + 72 +65 + 73 +6 + 40 +4.25 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOM2 + 70 +0 + 3 +Phantom (.5x) ___ _ _ ___ _ _ ___ _ _ ___ _ _ ___ + 72 +65 + 73 +6 + 40 +1.25 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHDOT + 70 +0 + 3 +Dash dot __ . __ . __ . __ . __ . __ . __ . __ + 72 +65 + 73 +4 + 40 +1.4 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOTX2 + 70 +0 + 3 +Dash dot (2x) ____ . ____ . ____ . ____ + 72 +65 + 73 +4 + 40 +2.4 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOT2 + 70 +0 + 3 +Dash dot (.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +4 + 40 +0.7 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOT + 70 +0 + 3 +Dot . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DOTX2 + 70 +0 + 3 +Dot (2x) . . . . . . . . + 72 +65 + 73 +2 + 40 +0.4 + 49 +0.0 + 49 +-0.4 + 0 +LTYPE + 2 +DOT2 + 70 +0 + 3 +Dot (.5) . . . . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DIVIDE + 70 +0 + 3 +Divide __ . . __ . . __ . . __ . . __ . . __ + 72 +65 + 73 +6 + 40 +1.6 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDEX2 + 70 +0 + 3 +Divide (2x) ____ . . ____ . . ____ . . ____ + 72 +65 + 73 +6 + 40 +2.6 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDE2 + 70 +0 + 3 +Divide(.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +6 + 40 +0.8 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOTTED + 70 +0 + 3 + + 72 +65 + 73 +2 + 40 +1.0 + 49 +0.0 + 49 +-1.0 + 0 +ENDTAB + 0 +TABLE + 2 +LAYER + 70 +5 + 0 +LAYER + 2 +DIMENSIONS + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEBACKGROUND + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLECONTENT + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEGRID + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +VIEWPORTS + 70 +0 + 62 +7 + 6 +CONTINUOUS + 0 +ENDTAB + 0 +TABLE + 2 +STYLE + 70 +12 + 0 +STYLE + 2 +STANDARD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbd.ttf + 4 + + 0 +STYLE + 2 +ARIAL_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariali.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbi.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BLACK + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariblk.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeur.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeui.ttf + 4 + + 0 +STYLE + 2 +TIMES + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +times.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbd.ttf + 4 + + 0 +STYLE + 2 +TIMES_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesi.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbi.ttf + 4 + + 0 +ENDTAB + 0 +TABLE + 2 +VIEW + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +APPID + 70 +1 + 0 +APPID + 2 +DXFWRITE + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +VPORT + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +UCS + 70 +0 + 0 +ENDTAB + 0 +ENDSEC + 0 +SECTION + 2 +BLOCKS + 0 +ENDSEC + 0 +SECTION + 2 +ENTITIES + 0 +VIEWPORT + 8 +VIEWPORTS + 67 +1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +1.0 + 41 +1.0 + 68 +1 + 69 +1 +1001 +ACAD +1000 +MVIEW +1002 +{ +1070 +16 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1040 +0.0 +1040 +1.0 +1040 +0.0 +1040 +0.0 +1040 +50.0 +1040 +0.0 +1040 +0.0 +1070 +0 +1070 +100 +1070 +1 +1070 +3 +1070 +0 +1070 +0 +1070 +0 +1070 +0 +1040 +0.0 +1040 +0.0 +1040 +0.0 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1070 +0 +1002 +{ +1002 +} +1002 +} + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +34.0 + 20 +45.0 + 30 +0.0 + 11 +34.0 + 21 +96.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +10.000000000000002 + 20 +96.00000000000001 + 30 +0.0 + 11 +10.000000000000002 + 21 +45.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +10.000000000000002 + 20 +45.0 + 30 +0.0 + 11 +22.000000000000004 + 21 +45.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +22.000000000000004 + 20 +45.0 + 30 +0.0 + 11 +34.0 + 21 +45.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +34.0 + 20 +45.0 + 30 +0.0 + 11 +34.0 + 21 +45.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +10.000000000000002 + 20 +45.0 + 30 +0.0 + 11 +10.000000000000002 + 21 +45.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +10.000000000000002 + 20 +5.000000000000001 + 30 +0.0 + 11 +10.000000000000002 + 21 +45.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +22.000000000000004 + 20 +45.0 + 30 +0.0 + 11 +22.000000000000004 + 21 +5.000000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +10.000000000000002 + 20 +0.0 + 30 +0.0 + 11 +10.000000000000002 + 21 +5.000000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +22.000000000000004 + 20 +0.0 + 30 +0.0 + 11 +10.000000000000002 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +22.000000000000004 + 20 +5.000000000000001 + 30 +0.0 + 11 +22.000000000000004 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +22.000000000000004 + 20 +5.000000000000001 + 30 +0.0 + 11 +22.000000000000004 + 21 +45.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +34.0 + 20 +45.0 + 30 +0.0 + 11 +34.0 + 21 +5.000000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +22.000000000000004 + 20 +0.0 + 30 +0.0 + 11 +22.000000000000004 + 21 +5.000000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +34.0 + 20 +0.0 + 30 +0.0 + 11 +22.000000000000004 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +34.0 + 20 +5.000000000000001 + 30 +0.0 + 11 +34.0 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +70.00000000000001 + 20 +45.0 + 30 +0.0 + 11 +34.0 + 21 +45.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +70.00000000000001 + 20 +45.0 + 30 +0.0 + 11 +70.00000000000001 + 21 +96.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +34.0 + 20 +96.00000000000001 + 30 +0.0 + 11 +70.00000000000001 + 21 +96.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +94.00000000000001 + 20 +45.0 + 30 +0.0 + 11 +70.00000000000001 + 21 +45.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +94.00000000000001 + 20 +45.0 + 30 +0.0 + 11 +94.00000000000001 + 21 +96.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +70.00000000000001 + 20 +96.00000000000001 + 30 +0.0 + 11 +94.00000000000001 + 21 +96.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +130.0 + 20 +45.0 + 30 +0.0 + 11 +94.00000000000001 + 21 +45.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +130.0 + 20 +96.00000000000001 + 30 +0.0 + 11 +130.0 + 21 +45.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +94.00000000000001 + 20 +96.00000000000001 + 30 +0.0 + 11 +130.0 + 21 +96.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +34.0 + 20 +96.00000000000001 + 30 +0.0 + 11 +22.000000000000004 + 21 +96.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +22.000000000000004 + 20 +96.00000000000001 + 30 +0.0 + 11 +10.000000000000002 + 21 +96.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +10.000000000000002 + 20 +96.00000000000001 + 30 +0.0 + 11 +10.000000000000002 + 21 +96.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +34.0 + 20 +96.00000000000001 + 30 +0.0 + 11 +34.0 + 21 +96.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +34.0 + 20 +136.0 + 30 +0.0 + 11 +34.0 + 21 +96.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +22.000000000000004 + 20 +96.00000000000001 + 30 +0.0 + 11 +22.000000000000004 + 21 +136.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +34.0 + 20 +141.0 + 30 +0.0 + 11 +34.0 + 21 +136.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +22.000000000000004 + 20 +141.0 + 30 +0.0 + 11 +34.0 + 21 +141.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +22.000000000000004 + 20 +136.0 + 30 +0.0 + 11 +22.000000000000004 + 21 +141.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +22.000000000000004 + 20 +136.0 + 30 +0.0 + 11 +22.000000000000004 + 21 +96.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +10.000000000000002 + 20 +96.00000000000001 + 30 +0.0 + 11 +10.000000000000002 + 21 +136.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +22.000000000000004 + 20 +141.0 + 30 +0.0 + 11 +22.000000000000004 + 21 +136.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +10.000000000000002 + 20 +141.0 + 30 +0.0 + 11 +22.000000000000004 + 21 +141.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +10.000000000000002 + 20 +136.0 + 30 +0.0 + 11 +10.000000000000002 + 21 +141.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +96.00000000000001 + 30 +0.0 + 11 +10.000000000000002 + 21 +96.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +45.0 + 30 +0.0 + 11 +0.0 + 21 +96.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +10.000000000000002 + 20 +45.0 + 30 +0.0 + 11 +0.0 + 21 +45.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +11.400000000000002 + 20 +50.0 + 30 +0.0 + 11 +12.6 + 21 +50.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +12.6 + 20 +50.0 + 30 +0.0 + 11 +12.6 + 21 +91.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +12.6 + 20 +91.0 + 30 +0.0 + 11 +11.400000000000002 + 21 +91.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +11.400000000000002 + 20 +91.0 + 30 +0.0 + 11 +11.400000000000002 + 21 +50.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +31.400000000000002 + 20 +50.50000000000001 + 30 +0.0 + 11 +32.60000000000001 + 21 +50.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +32.60000000000001 + 20 +50.50000000000001 + 30 +0.0 + 11 +32.60000000000001 + 21 +80.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +32.60000000000001 + 20 +80.50000000000001 + 30 +0.0 + 11 +31.400000000000002 + 21 +80.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +31.400000000000002 + 20 +80.50000000000001 + 30 +0.0 + 11 +31.400000000000002 + 21 +50.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +18.000000000000004 + 20 +1.2500000000000002 + 30 +0.0 + 11 +18.000000000000004 + 21 +3.7500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +18.000000000000004 + 20 +3.7500000000000004 + 30 +0.0 + 11 +14.000000000000002 + 21 +3.7500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +14.000000000000002 + 20 +3.7500000000000004 + 30 +0.0 + 11 +14.000000000000002 + 21 +1.2500000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +30.000000000000004 + 20 +1.2500000000000002 + 30 +0.0 + 11 +30.000000000000004 + 21 +3.7500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +30.000000000000004 + 20 +3.7500000000000004 + 30 +0.0 + 11 +26.000000000000004 + 21 +3.7500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +26.000000000000004 + 20 +3.7500000000000004 + 30 +0.0 + 11 +26.000000000000004 + 21 +1.2500000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +30.000000000000004 + 20 +91.50000000000001 + 30 +0.0 + 11 +30.000000000000004 + 21 +73.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +30.000000000000004 + 20 +73.50000000000001 + 30 +0.0 + 11 +60.00000000000001 + 21 +73.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +60.00000000000001 + 20 +73.50000000000001 + 30 +0.0 + 11 +60.00000000000001 + 21 +91.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +60.00000000000001 + 20 +91.50000000000001 + 30 +0.0 + 11 +30.000000000000004 + 21 +91.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +91.40000000000002 + 20 +50.0 + 30 +0.0 + 11 +92.60000000000001 + 21 +50.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +92.60000000000001 + 20 +50.0 + 30 +0.0 + 11 +92.60000000000001 + 21 +91.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +92.60000000000001 + 20 +91.0 + 30 +0.0 + 11 +91.40000000000002 + 21 +91.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +91.40000000000002 + 20 +91.0 + 30 +0.0 + 11 +91.40000000000002 + 21 +50.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +71.4 + 20 +50.50000000000001 + 30 +0.0 + 11 +72.60000000000001 + 21 +50.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +72.60000000000001 + 20 +50.50000000000001 + 30 +0.0 + 11 +72.60000000000001 + 21 +80.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +72.60000000000001 + 20 +80.50000000000001 + 30 +0.0 + 11 +71.4 + 21 +80.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +71.4 + 20 +80.50000000000001 + 30 +0.0 + 11 +71.4 + 21 +50.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +97.00000000000001 + 20 +54.00000000000001 + 30 +0.0 + 11 +97.00000000000001 + 21 +47.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +97.00000000000001 + 20 +47.00000000000001 + 30 +0.0 + 11 +117.00000000000001 + 21 +47.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +117.00000000000001 + 20 +47.00000000000001 + 30 +0.0 + 11 +117.00000000000001 + 21 +54.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +117.00000000000001 + 20 +54.00000000000001 + 30 +0.0 + 11 +97.00000000000001 + 21 +54.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +122.25000000000001 + 20 +79.25000000000001 + 30 +0.0 + 11 +122.25000000000001 + 21 +61.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +122.25000000000001 + 20 +61.75000000000001 + 30 +0.0 + 11 +122.75000000000001 + 21 +61.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +122.75000000000001 + 20 +61.75000000000001 + 30 +0.0 + 11 +122.75000000000001 + 21 +79.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +122.75000000000001 + 20 +79.25000000000001 + 30 +0.0 + 11 +122.25000000000001 + 21 +79.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +26.000000000000004 + 20 +139.75000000000003 + 30 +0.0 + 11 +26.000000000000004 + 21 +137.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +26.000000000000004 + 20 +137.25000000000003 + 30 +0.0 + 11 +30.000000000000004 + 21 +137.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +30.000000000000004 + 20 +137.25000000000003 + 30 +0.0 + 11 +30.000000000000004 + 21 +139.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +14.000000000000002 + 20 +139.75000000000003 + 30 +0.0 + 11 +14.000000000000002 + 21 +137.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +14.000000000000002 + 20 +137.25000000000003 + 30 +0.0 + 11 +18.000000000000004 + 21 +137.25000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +18.000000000000004 + 20 +137.25000000000003 + 30 +0.0 + 11 +18.000000000000004 + 21 +139.75000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +2.5000000000000004 + 20 +62.000000000000014 + 30 +0.0 + 11 +2.5000000000000004 + 21 +57.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +2.5000000000000004 + 20 +57.00000000000001 + 30 +0.0 + 11 +7.500000000000001 + 21 +62.000000000000014 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +7.500000000000001 + 20 +62.000000000000014 + 30 +0.0 + 11 +7.500000000000001 + 21 +79.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +7.500000000000001 + 20 +79.00000000000001 + 30 +0.0 + 11 +2.5000000000000004 + 21 +84.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +2.5000000000000004 + 20 +84.0 + 30 +0.0 + 11 +2.5000000000000004 + 21 +79.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +186.00000000000003 + 20 +70.5 + 30 +0.0 + 11 +140.00000000000003 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +198.0 + 20 +70.5 + 30 +0.0 + 11 +186.00000000000003 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +210.00000000000003 + 20 +70.5 + 30 +0.0 + 11 +198.0 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +222.00000000000003 + 20 +70.5 + 30 +0.0 + 11 +210.00000000000003 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +234.00000000000003 + 20 +70.5 + 30 +0.0 + 11 +222.00000000000003 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +246.00000000000003 + 20 +70.5 + 30 +0.0 + 11 +234.00000000000003 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +258.0 + 20 +70.5 + 30 +0.0 + 11 +246.00000000000003 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +270.00000000000006 + 20 +70.5 + 30 +0.0 + 11 +258.0 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +270.00000000000006 + 20 +70.5 + 30 +0.0 + 11 +270.00000000000006 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +140.00000000000003 + 20 +70.5 + 30 +0.0 + 11 +270.00000000000006 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +140.00000000000003 + 20 +70.5 + 30 +0.0 + 11 +140.00000000000003 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +206.25000000000003 + 20 +74.50000000000001 + 30 +0.0 + 11 +201.75000000000003 + 21 +74.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +201.75000000000003 + 20 +74.50000000000001 + 30 +0.0 + 11 +201.75000000000003 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +201.75000000000003 + 20 +74.0 + 30 +0.0 + 11 +206.25000000000003 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +206.25000000000003 + 20 +74.0 + 30 +0.0 + 11 +206.25000000000003 + 21 +74.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +218.25000000000003 + 20 +74.50000000000001 + 30 +0.0 + 11 +213.75 + 21 +74.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +213.75 + 20 +74.50000000000001 + 30 +0.0 + 11 +213.75 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +213.75 + 20 +74.0 + 30 +0.0 + 11 +218.25000000000003 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +218.25000000000003 + 20 +74.0 + 30 +0.0 + 11 +218.25000000000003 + 21 +74.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +326.00000000000006 + 20 +70.5 + 30 +0.0 + 11 +280.00000000000006 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +338.00000000000006 + 20 +70.5 + 30 +0.0 + 11 +326.00000000000006 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +350.0 + 20 +70.5 + 30 +0.0 + 11 +338.00000000000006 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +362.00000000000006 + 20 +70.5 + 30 +0.0 + 11 +350.0 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +374.00000000000006 + 20 +70.5 + 30 +0.0 + 11 +362.00000000000006 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +386.00000000000006 + 20 +70.5 + 30 +0.0 + 11 +374.00000000000006 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +398.00000000000006 + 20 +70.5 + 30 +0.0 + 11 +386.00000000000006 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +410.00000000000006 + 20 +70.5 + 30 +0.0 + 11 +398.00000000000006 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +410.00000000000006 + 20 +70.5 + 30 +0.0 + 11 +410.00000000000006 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +280.00000000000006 + 20 +70.5 + 30 +0.0 + 11 +410.00000000000006 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +280.00000000000006 + 20 +70.5 + 30 +0.0 + 11 +280.00000000000006 + 21 +70.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +334.25000000000006 + 20 +74.50000000000001 + 30 +0.0 + 11 +329.75000000000006 + 21 +74.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +329.75000000000006 + 20 +74.50000000000001 + 30 +0.0 + 11 +329.75000000000006 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +329.75000000000006 + 20 +74.0 + 30 +0.0 + 11 +334.25000000000006 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +334.25000000000006 + 20 +74.0 + 30 +0.0 + 11 +334.25000000000006 + 21 +74.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +346.25 + 20 +74.50000000000001 + 30 +0.0 + 11 +341.75 + 21 +74.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +341.75 + 20 +74.50000000000001 + 30 +0.0 + 11 +341.75 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +341.75 + 20 +74.0 + 30 +0.0 + 11 +346.25 + 21 +74.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +346.25 + 20 +74.0 + 30 +0.0 + 11 +346.25 + 21 +74.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +604.0312423743285 + 20 +45.5 + 30 +0.0 + 11 +594.0312423743285 + 21 +45.5 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +604.0312423743285 + 20 +45.5 + 30 +0.0 + 11 +604.0312423743285 + 21 +95.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +594.0312423743285 + 20 +95.5 + 30 +0.0 + 11 +604.0312423743285 + 21 +95.5 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +594.0312423743285 + 20 +95.5 + 30 +0.0 + 11 +594.0312423743285 + 21 +45.5 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +614.0312423743285 + 20 +45.5 + 30 +0.0 + 11 +614.0312423743285 + 21 +95.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +614.0312423743285 + 20 +45.5 + 30 +0.0 + 11 +614.0312423743285 + 21 +15.500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +604.0312423743285 + 20 +15.500000000000004 + 30 +0.0 + 11 +604.0312423743285 + 21 +45.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +604.0312423743285 + 20 +10.5 + 30 +0.0 + 11 +604.0312423743285 + 21 +15.500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +614.0312423743285 + 20 +10.5 + 30 +0.0 + 11 +604.0312423743285 + 21 +10.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +614.0312423743285 + 20 +15.500000000000004 + 30 +0.0 + 11 +614.0312423743285 + 21 +10.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +624.0312423743286 + 20 +45.5 + 30 +0.0 + 11 +614.0312423743285 + 21 +45.5 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +624.0312423743286 + 20 +45.5 + 30 +0.0 + 11 +624.0312423743286 + 21 +95.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +614.0312423743285 + 20 +95.5 + 30 +0.0 + 11 +624.0312423743286 + 21 +95.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +634.0312423743286 + 20 +45.5 + 30 +0.0 + 11 +624.0312423743286 + 21 +45.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +634.0312423743286 + 20 +95.5 + 30 +0.0 + 11 +634.0312423743286 + 21 +45.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +624.0312423743286 + 20 +95.5 + 30 +0.0 + 11 +634.0312423743286 + 21 +95.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +604.0312423743285 + 20 +95.5 + 30 +0.0 + 11 +604.0312423743285 + 21 +125.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +614.0312423743285 + 20 +125.50000000000001 + 30 +0.0 + 11 +614.0312423743285 + 21 +95.5 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +614.0312423743285 + 20 +125.50000000000001 + 30 +0.0 + 11 +604.0312423743285 + 21 +125.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +604.0312423743285 + 20 +125.50000000000001 + 30 +0.0 + 11 +484.03124237432854 + 21 +125.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +614.0312423743285 + 20 +125.50000000000001 + 30 +0.0 + 11 +614.0312423743285 + 21 +125.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +484.03124237432854 + 20 +125.50000000000001 + 30 +0.0 + 11 +484.03124237432854 + 21 +125.50000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +484.03124237432854 + 20 +165.50000000000003 + 30 +0.0 + 11 +614.0312423743285 + 21 +165.50000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +484.03124237432854 + 20 +125.50000000000001 + 30 +0.0 + 11 +484.03124237432854 + 21 +165.50000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +462.35246120943856 + 20 +125.50000000000001 + 30 +0.0 + 11 +484.03124237432854 + 21 +165.50000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +462.35246120943856 + 20 +125.50000000000001 + 30 +0.0 + 11 +484.03124237432854 + 21 +125.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +462.35246120943856 + 20 +125.50000000000001 + 30 +0.0 + 11 +450.51765777402795 + 21 +143.66334166502364 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +450.51765777402795 + 20 +143.66334166502364 + 30 +0.0 + 11 +484.03124237432854 + 21 +165.50000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +420.00000000000006 + 20 +190.50000000000003 + 30 +0.0 + 11 +484.03124237432854 + 21 +165.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +438.68285433861735 + 20 +161.8266833300472 + 30 +0.0 + 11 +420.00000000000006 + 21 +190.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +450.51765777402795 + 20 +143.6633416650236 + 30 +0.0 + 11 +438.68285433861735 + 21 +161.8266833300472 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +484.03124237432854 + 20 +165.50000000000003 + 30 +0.0 + 11 +484.03124237432854 + 21 +190.50000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +484.03124237432854 + 20 +190.50000000000003 + 30 +0.0 + 11 +484.03124237432854 + 21 +215.50000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +420.00000000000006 + 20 +190.50000000000003 + 30 +0.0 + 11 +484.03124237432854 + 21 +215.50000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +484.03124237432854 + 20 +215.50000000000003 + 30 +0.0 + 11 +614.0312423743285 + 21 +215.50000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +614.0312423743285 + 20 +190.50000000000003 + 30 +0.0 + 11 +614.0312423743285 + 21 +165.50000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +614.0312423743285 + 20 +215.50000000000003 + 30 +0.0 + 11 +614.0312423743285 + 21 +190.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +654.0312423743286 + 20 +205.5 + 30 +0.0 + 11 +654.0312423743286 + 21 +165.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +654.0312423743286 + 20 +190.50000000000003 + 30 +0.0 + 11 +654.0312423743286 + 21 +205.5 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +614.0312423743285 + 20 +165.50000000000003 + 30 +0.0 + 11 +654.0312423743286 + 21 +165.50000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +614.0312423743285 + 20 +165.50000000000003 + 30 +0.0 + 11 +654.0312423743286 + 21 +125.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +654.0312423743286 + 20 +165.50000000000003 + 30 +0.0 + 11 +654.0312423743286 + 21 +125.50000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +614.0312423743285 + 20 +125.50000000000003 + 30 +0.0 + 11 +654.0312423743286 + 21 +125.50000000000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +614.0312423743285 + 20 +165.50000000000003 + 30 +0.0 + 11 +614.0312423743285 + 21 +125.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +614.0312423743285 + 20 +112.1666666666667 + 30 +0.0 + 11 +614.0312423743285 + 21 +125.50000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +654.0312423743286 + 20 +112.16666666666671 + 30 +0.0 + 11 +614.0312423743285 + 21 +112.1666666666667 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +654.0312423743286 + 20 +125.50000000000004 + 30 +0.0 + 11 +654.0312423743286 + 21 +112.16666666666671 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +654.0312423743286 + 20 +215.50000000000003 + 30 +0.0 + 11 +614.0312423743285 + 21 +215.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +654.0312423743286 + 20 +175.5 + 30 +0.0 + 11 +654.0312423743286 + 21 +190.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +654.0312423743286 + 20 +215.50000000000003 + 30 +0.0 + 11 +654.0312423743286 + 21 +175.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +654.0312423743286 + 20 +255.5 + 30 +0.0 + 11 +654.0312423743286 + 21 +215.50000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +654.0312423743286 + 20 +255.5 + 30 +0.0 + 11 +614.0312423743285 + 21 +215.50000000000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +614.0312423743285 + 20 +255.50000000000006 + 30 +0.0 + 11 +614.0312423743285 + 21 +215.50000000000006 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +654.0312423743286 + 20 +255.50000000000003 + 30 +0.0 + 11 +614.0312423743285 + 21 +255.50000000000006 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +484.03124237432854 + 20 +215.50000000000009 + 30 +0.0 + 11 +484.03124237432854 + 21 +255.50000000000009 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +484.03124237432854 + 20 +255.50000000000006 + 30 +0.0 + 11 +462.3524612094386 + 21 +255.50000000000009 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +484.03124237432854 + 20 +215.50000000000009 + 30 +0.0 + 11 +462.3524612094386 + 21 +255.50000000000009 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +484.03124237432854 + 20 +262.7262603882967 + 30 +0.0 + 11 +484.03124237432854 + 21 +255.50000000000006 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +462.35246120943856 + 20 +262.7262603882967 + 30 +0.0 + 11 +484.03124237432854 + 21 +262.7262603882967 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +462.35246120943856 + 20 +255.50000000000006 + 30 +0.0 + 11 +462.35246120943856 + 21 +262.7262603882967 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +484.03124237432854 + 20 +215.50000000000009 + 30 +0.0 + 11 +450.517657774028 + 21 +237.33665833497648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +450.517657774028 + 20 +237.33665833497648 + 30 +0.0 + 11 +462.35246120943856 + 21 +255.50000000000006 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +438.68285433861735 + 20 +219.1733166699529 + 30 +0.0 + 11 +450.517657774028 + 21 +237.33665833497648 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +420.00000000000006 + 20 +190.50000000000009 + 30 +0.0 + 11 +438.68285433861735 + 21 +219.1733166699529 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +604.0312423743285 + 20 +255.50000000000003 + 30 +0.0 + 11 +614.0312423743285 + 21 +255.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +484.03124237432854 + 20 +255.50000000000006 + 30 +0.0 + 11 +604.0312423743285 + 21 +255.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +484.03124237432854 + 20 +255.50000000000006 + 30 +0.0 + 11 +484.03124237432854 + 21 +255.50000000000006 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +614.0312423743285 + 20 +255.50000000000003 + 30 +0.0 + 11 +614.0312423743285 + 21 +255.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +654.0312423743286 + 20 +268.8333333333333 + 30 +0.0 + 11 +654.0312423743286 + 21 +255.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +614.0312423743285 + 20 +268.8333333333333 + 30 +0.0 + 11 +654.0312423743286 + 21 +268.8333333333333 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +614.0312423743285 + 20 +255.50000000000003 + 30 +0.0 + 11 +614.0312423743285 + 21 +268.8333333333333 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +462.35246120943856 + 20 +118.27373961170336 + 30 +0.0 + 11 +462.35246120943856 + 21 +125.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +484.03124237432854 + 20 +118.27373961170336 + 30 +0.0 + 11 +462.35246120943856 + 21 +118.27373961170336 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +484.03124237432854 + 20 +125.50000000000001 + 30 +0.0 + 11 +484.03124237432854 + 21 +118.27373961170336 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +584.0312423743285 + 20 +95.5 + 30 +0.0 + 11 +594.0312423743285 + 21 +95.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +584.0312423743285 + 20 +45.5 + 30 +0.0 + 11 +584.0312423743285 + 21 +95.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +594.0312423743285 + 20 +45.5 + 30 +0.0 + 11 +584.0312423743285 + 21 +45.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +594.0312423743285 + 20 +65.5 + 30 +0.0 + 11 +604.0312423743285 + 21 +65.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +604.0312423743285 + 20 +65.5 + 30 +0.0 + 11 +604.0312423743285 + 21 +75.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +604.0312423743285 + 20 +75.50000000000001 + 30 +0.0 + 11 +594.0312423743285 + 21 +75.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +594.0312423743285 + 20 +75.50000000000001 + 30 +0.0 + 11 +594.0312423743285 + 21 +65.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +610.6979090409952 + 20 +11.750000000000002 + 30 +0.0 + 11 +610.6979090409952 + 21 +14.250000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +610.6979090409952 + 20 +14.250000000000002 + 30 +0.0 + 11 +607.364575707662 + 21 +14.250000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +607.364575707662 + 20 +14.250000000000002 + 30 +0.0 + 11 +607.364575707662 + 21 +11.750000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +614.0312423743285 + 20 +65.5 + 30 +0.0 + 11 +624.0312423743286 + 21 +65.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +624.0312423743286 + 20 +65.5 + 30 +0.0 + 11 +624.0312423743286 + 21 +75.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +624.0312423743286 + 20 +75.50000000000001 + 30 +0.0 + 11 +614.0312423743285 + 21 +75.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +614.0312423743285 + 20 +75.50000000000001 + 30 +0.0 + 11 +614.0312423743285 + 21 +65.5 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +626.2812423743285 + 20 +79.08333333333336 + 30 +0.0 + 11 +626.2812423743285 + 21 +61.91666666666668 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +626.2812423743285 + 20 +61.91666666666668 + 30 +0.0 + 11 +626.7812423743285 + 21 +61.91666666666668 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +626.7812423743285 + 20 +61.91666666666668 + 30 +0.0 + 11 +626.7812423743285 + 21 +79.08333333333336 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +626.7812423743285 + 20 +79.08333333333336 + 30 +0.0 + 11 +626.2812423743285 + 21 +79.08333333333336 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +451.4594977301591 + 20 +152.60350895639252 + 30 +0.0 + 11 +447.2416050225017 + 21 +159.0768759855708 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +447.2416050225017 + 20 +159.0768759855708 + 30 +0.0 + 11 +446.822685214998 + 21 +158.80391775638356 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +446.822685214998 + 20 +158.80391775638356 + 30 +0.0 + 11 +451.04057792265536 + 21 +152.33055072720532 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +451.04057792265536 + 20 +152.33055072720532 + 30 +0.0 + 11 +451.4594977301591 + 21 +152.60350895639252 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +643.7812423743285 + 20 +192.41666666666669 + 30 +0.0 + 11 +643.7812423743285 + 21 +178.58333333333334 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +643.7812423743285 + 20 +178.58333333333334 + 30 +0.0 + 11 +644.2812423743285 + 21 +178.58333333333334 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +644.2812423743285 + 20 +178.58333333333334 + 30 +0.0 + 11 +644.2812423743285 + 21 +192.41666666666669 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +644.2812423743285 + 20 +192.41666666666669 + 30 +0.0 + 11 +643.7812423743285 + 21 +192.41666666666669 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +640.6979090409951 + 20 +115.50000000000004 + 30 +0.0 + 11 +640.6979090409951 + 21 +122.1666666666667 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +640.6979090409951 + 20 +122.1666666666667 + 30 +0.0 + 11 +627.3645757076619 + 21 +122.1666666666667 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +627.3645757076619 + 20 +122.1666666666667 + 30 +0.0 + 11 +627.3645757076619 + 21 +115.50000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +643.7812423743285 + 20 +202.41666666666666 + 30 +0.0 + 11 +643.7812423743285 + 21 +188.58333333333334 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +643.7812423743285 + 20 +188.58333333333334 + 30 +0.0 + 11 +644.2812423743285 + 21 +188.58333333333334 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +644.2812423743285 + 20 +188.58333333333334 + 30 +0.0 + 11 +644.2812423743285 + 21 +202.41666666666666 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +644.2812423743285 + 20 +202.41666666666666 + 30 +0.0 + 11 +643.7812423743285 + 21 +202.41666666666666 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +469.57872159773524 + 20 +260.9196952912225 + 30 +0.0 + 11 +469.57872159773524 + 21 +257.3065650970742 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +469.57872159773524 + 20 +257.3065650970742 + 30 +0.0 + 11 +476.8049819860319 + 21 +257.3065650970742 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +476.8049819860319 + 20 +257.3065650970742 + 30 +0.0 + 11 +476.8049819860319 + 21 +260.9196952912225 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +447.24160502250174 + 20 +221.9231240144293 + 30 +0.0 + 11 +451.45949773015917 + 21 +228.3964910436076 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +451.45949773015917 + 20 +228.3964910436076 + 30 +0.0 + 11 +451.0405779226554 + 21 +228.6694492727948 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +451.0405779226554 + 20 +228.6694492727948 + 30 +0.0 + 11 +446.822685214998 + 21 +222.1960822436165 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +446.822685214998 + 20 +222.1960822436165 + 30 +0.0 + 11 +447.24160502250174 + 21 +221.9231240144293 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +607.1145757076617 + 20 +251.50000000000003 + 30 +0.0 + 11 +610.9479090409952 + 21 +251.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +610.9479090409952 + 20 +251.50000000000003 + 30 +0.0 + 11 +610.9479090409952 + 21 +252.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +610.9479090409952 + 20 +252.00000000000003 + 30 +0.0 + 11 +607.1145757076617 + 21 +252.00000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +607.1145757076617 + 20 +252.00000000000003 + 30 +0.0 + 11 +607.1145757076617 + 21 +251.50000000000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +627.3645757076619 + 20 +265.50000000000006 + 30 +0.0 + 11 +627.3645757076619 + 21 +258.8333333333334 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +627.3645757076619 + 20 +258.8333333333334 + 30 +0.0 + 11 +640.6979090409951 + 21 +258.8333333333334 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +640.6979090409951 + 20 +258.8333333333334 + 30 +0.0 + 11 +640.6979090409951 + 21 +265.50000000000006 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +476.80498198603186 + 20 +120.08030470877752 + 30 +0.0 + 11 +476.80498198603186 + 21 +123.69343490292586 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +476.80498198603186 + 20 +123.69343490292586 + 30 +0.0 + 11 +469.5787215977352 + 21 +123.69343490292586 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +469.5787215977352 + 20 +123.69343490292586 + 30 +0.0 + 11 +469.5787215977352 + 21 +120.08030470877752 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +586.5312423743285 + 20 +62.16666666666668 + 30 +0.0 + 11 +586.5312423743285 + 21 +57.16666666666668 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +586.5312423743285 + 20 +57.16666666666668 + 30 +0.0 + 11 +591.5312423743286 + 21 +62.16666666666668 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +591.5312423743286 + 20 +62.16666666666668 + 30 +0.0 + 11 +591.5312423743286 + 21 +78.83333333333336 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +591.5312423743286 + 20 +78.83333333333336 + 30 +0.0 + 11 +586.5312423743285 + 21 +83.83333333333336 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +586.5312423743285 + 20 +83.83333333333336 + 30 +0.0 + 11 +586.5312423743285 + 21 +78.83333333333336 + 31 +0.0 + 0 +ENDSEC + 0 +EOF diff --git a/rocolib/output/ESP32StackBoat/tree.png b/rocolib/output/ESP32StackBoat/tree.png new file mode 100644 index 0000000000000000000000000000000000000000..ca8256354e7281c5572a55d2d737208a6617244d Binary files /dev/null and b/rocolib/output/ESP32StackBoat/tree.png differ