diff --git a/rocolib/builders/boat/BoatWithServoMountBuilder.py b/rocolib/builders/boat/BoatWithServoMountBuilder.py index f31edcdc3aacb1f323cd199396ab9bd7b9b713c3..3eb5ef756808031df7e3d8f581582c4c027e2d4a 100644 --- a/rocolib/builders/boat/BoatWithServoMountBuilder.py +++ b/rocolib/builders/boat/BoatWithServoMountBuilder.py @@ -2,9 +2,15 @@ from rocolib.api.components.Component import Component c = Component() -c.addSubcomponent("boat", "BoatBase", inherit=True, prefix=None) -c.addSubcomponent("lServoMount", "SideServoMount", inherit="depth") -c.addSubcomponent("rServoMount", "SideServoMount", inherit="depth") +c.addParameter("width", 90, paramType="length") +c.addParameter("depth", 70, paramType="length") + +c.addSubcomponent("boat", "BoatBase", inherit=True) +c.addSubcomponent("lServoMount", "SideServoMount", inherit=("depth","length")) +c.addSubcomponent("rServoMount", "SideServoMount", inherit=("depth","length")) + +c.addConstraint(("boat", "boat.width"), "width") +c.addConstraint(("boat", "boat.depth"), "depth") #topDistance and botDistance (and servoMount length) determine the dimensions of the boat hull c.addParameter("topDistance", 50, paramType="length", minValue=0) #servo mount length above the connecting edge @@ -22,6 +28,31 @@ c.addConstraint(("rsplit", "botlength"), ("topDistance", "botDistance", "rServoM c.addConnection(("lsplit", "botedge1"), ("lServoMount", "rightInterface"), angle=180) #both face the same direction c.addConnection(("rsplit", "botedge1"), ("rServoMount", "leftInterface"), angle=180) + +#Bottom belt +c.addSubcomponent("lservodown", "Rectangle") +c.addConstraint(("lservodown", "w"), "lServoMount.depth") +c.addConstraint(("lservodown", "l"), (("depth"), "lServoMount.length"), "x[0] - x[1]") #DEPTH OF BOAT - 3 for the tab + +c.addSubcomponent("lservoacross", "Rectangle") +c.addConstraint(("lservoacross", "w"), "lServoMount.depth") +c.addConstraint(("lservoacross", "l"), ("width"), "x * 0.5") #DEPTH OF BOAT - 3 for the tab + +c.addConnection(("lservodown", "r"),("lservoacross", "r"), angle=-90) +c.addConnection(("lservodown", "l"), ("lServoMount", "leftInterface")) + +c.addSubcomponent("rservodown", "Rectangle") +c.addConstraint(("rservodown", "w"), "rServoMount.depth") +c.addConstraint(("rservodown", "l"), (("depth"), "rServoMount.length"), "x[0] - x[1]") #DEPTH OF BOAT - 3 for the tab + +c.addSubcomponent("rservoacross", "Rectangle") +c.addConstraint(("rservoacross", "w"), "rServoMount.depth") +c.addConstraint(("rservoacross", "l"), ("width"), "x * 0.5") #DEPTH OF BOAT - 3 for the tab + +c.addConnection(("rservodown", "r"),("rservoacross", "r"), angle=-90) +c.addConnection(("rservodown", "l"), ("rServoMount", "rightInterface")) + +c.addConnection(("lservoacross", "l"), ("rservoacross", "l"), tabWidth=5) # c.addConnection(("boat", "portedge"), ("lsplit", "topedge0")) c.addConnection(("boat", "staredge"), ("rsplit", "topedge0")) diff --git a/rocolib/library/BoatWithServoMount.yaml b/rocolib/library/BoatWithServoMount.yaml index 952da8a633f9837830ef7532874ead98d82a547a..c9815f5d43f6b3df0f03a00644b3299d12f7d16e 100644 --- a/rocolib/library/BoatWithServoMount.yaml +++ b/rocolib/library/BoatWithServoMount.yaml @@ -12,12 +12,42 @@ connections: - leftInterface - angle: 180 connection2: + - - lservodown + - r + - - lservoacross + - r + - angle: -90 + connection3: + - - lservodown + - l + - - lServoMount + - leftInterface + - {} + connection4: + - - rservodown + - r + - - rservoacross + - r + - angle: -90 + connection5: + - - rservodown + - l + - - rServoMount + - rightInterface + - {} + connection6: + - - lservoacross + - l + - - rservoacross + - l + - tabWidth: 5 + connection7: - - boat - portedge - - lsplit - topedge0 - {} - connection3: + connection8: - - boat - staredge - - rsplit @@ -37,19 +67,13 @@ interfaces: interface: botedge2 subcomponent: rsplit parameters: - boat.depth: - defaultValue: 20 - spec: - minValue: 0 - units: mm - valueType: (float, int) - boat.length: - defaultValue: 100 + boat.bow.point: + defaultValue: 50 spec: minValue: 0 units: mm valueType: (float, int) - boat.width: + boat.stern.point: defaultValue: 50 spec: minValue: 0 @@ -61,8 +85,8 @@ parameters: minValue: 73 units: mm valueType: (float, int) - bow.point: - defaultValue: 50 + depth: + defaultValue: 70 spec: minValue: 0 units: mm @@ -73,14 +97,20 @@ parameters: minValue: 0 units: mm valueType: (float, int) + lServoMount.length: + defaultValue: 34 + spec: + minValue: 0 + units: mm + valueType: (float, int) rServoMount.depth: defaultValue: 24 spec: minValue: 0 units: mm valueType: (float, int) - stern.point: - defaultValue: 50 + rServoMount.length: + defaultValue: 34 spec: minValue: 0 units: mm @@ -91,6 +121,12 @@ parameters: minValue: 0 units: mm valueType: (float, int) + width: + defaultValue: 90 + spec: + minValue: 0 + units: mm + valueType: (float, int) source: ../builders/boat/BoatWithServoMountBuilder.py subcomponents: boat: @@ -98,7 +134,7 @@ subcomponents: kwargs: {} parameters: boat.depth: - parameter: boat.depth + parameter: depth boat.length: function: x[0] + x[1] + x[2] parameter: &id001 @@ -106,17 +142,39 @@ subcomponents: - botDistance - lServoMount.depth boat.width: - parameter: boat.width + parameter: width bow.point: - parameter: bow.point + parameter: boat.bow.point stern.point: - parameter: stern.point + parameter: boat.stern.point lServoMount: classname: SideServoMount kwargs: {} parameters: depth: parameter: lServoMount.depth + length: + parameter: lServoMount.length + lservoacross: + classname: Rectangle + kwargs: {} + parameters: + l: + function: x * 0.5 + parameter: width + w: + parameter: lServoMount.depth + lservodown: + classname: Rectangle + kwargs: {} + parameters: + l: + function: x[0] - x[1] + parameter: + - depth + - lServoMount.length + w: + parameter: lServoMount.depth lsplit: classname: SplitEdge kwargs: {} @@ -133,6 +191,28 @@ subcomponents: parameters: depth: parameter: rServoMount.depth + length: + parameter: rServoMount.length + rservoacross: + classname: Rectangle + kwargs: {} + parameters: + l: + function: x * 0.5 + parameter: width + w: + parameter: rServoMount.depth + rservodown: + classname: Rectangle + kwargs: {} + parameters: + l: + function: x[0] - x[1] + parameter: + - depth + - rServoMount.length + w: + parameter: rServoMount.depth rsplit: classname: SplitEdge kwargs: {} diff --git a/rocolib/output/BoatWithServoMount/graph-anim.svg b/rocolib/output/BoatWithServoMount/graph-anim.svg index e2f101670d1a257a1ae6f749997bf892a3092aae..53e60e80406273c9b2f256bc312c434669937bb3 100644 --- a/rocolib/output/BoatWithServoMount/graph-anim.svg +++ b/rocolib/output/BoatWithServoMount/graph-anim.svg @@ -1,168 +1,189 @@ <?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="261.703296mm" version="1.1" viewBox="0.000000 0.000000 158.000000 261.703296" width="158.000000mm"> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="326.046506mm" version="1.1" viewBox="0.000000 0.000000 465.000000 326.046506" width="465.000000mm"> <defs/> - <line opacity="0.5" stroke="#0000ff" x1="103.99999999999999" x2="103.99999999999999" y1="53.85164800000002" y2="207.85164800000004"/> - <line opacity="0.5" stroke="#0000ff" x1="53.99999999999998" x2="53.99999999999998" y1="53.85164800000002" y2="207.85164800000004"/> - <line opacity="0.12111894159084342" stroke="#0000ff" x1="78.99999999999999" x2="53.99999999999998" y1="53.85164800000002" y2="53.85164800000002"/> - <line opacity="0.12111894159084342" stroke="#0000ff" x1="103.99999999999999" x2="78.99999999999999" y1="53.85164800000002" y2="53.85164800000002"/> - <line opacity="0.4468854644851019" stroke="#0000ff" x1="78.99999999999999" x2="53.99999999999998" y1="-7.134502766348305e-08" y2="53.85164800000002"/> - <line stroke="#000000" x1="45.51320686867432" x2="39.75660343433714" y1="33.971564700181574" y2="39.811503617791395"/> - <line stroke="#000000" x1="78.99999999999999" x2="45.51320686867432" y1="-7.134502766348305e-08" y2="33.971564700181574"/> - <line opacity="1.0" stroke="#0000ff" x1="53.99999999999998" x2="39.75660343433714" y1="53.85164800000002" y2="39.811503617791395"/> - <line opacity="1.0" stroke="#ff0000" x1="53.99999999999998" x2="33.99999999999998" y1="53.85164800000002" y2="45.65144253540121"/> - <line stroke="#000000" x1="39.756603434337144" x2="33.99999999999998" y1="39.811503617791395" y2="45.65144253540121"/> - <line opacity="0.9666666666666667" stroke="#ff0000" x1="33.999999999999986" x2="33.999999999999986" y1="53.85164800000002" y2="45.65144253540121"/> - <line opacity="0.1475836176504332" stroke="#0000ff" x1="53.99999999999998" x2="33.999999999999986" y1="53.85164800000002" y2="53.85164800000002"/> - <line stroke="#000000" x1="31.266598178467046" x2="33.999999999999986" y1="53.85164800000002" y2="53.85164800000002"/> - <line stroke="#000000" x1="31.266598178467046" x2="31.266598178467046" y1="45.65144253540121" y2="53.85164800000002"/> - <line stroke="#000000" x1="33.999999999999986" x2="31.266598178467046" y1="45.65144253540121" y2="45.65144253540121"/> - <line opacity="0.1475836176504332" stroke="#0000ff" x1="34.000000000000014" x2="54.000000000000014" y1="207.85164800000004" y2="207.85164800000004"/> - <line opacity="1.0" stroke="#ff0000" x1="34.000000000000014" x2="54.00000000000001" y1="216.05185346459882" y2="207.85164800000004"/> - <line opacity="0.9666666666666667" stroke="#ff0000" x1="34.000000000000014" x2="34.000000000000014" y1="216.05185346459882" y2="207.85164800000004"/> - <line stroke="#000000" x1="34.00000000000002" x2="39.7566034343372" y1="216.05185346459882" y2="221.89179238220865"/> - <line opacity="1.0" stroke="#0000ff" x1="39.7566034343372" x2="54.000000000000014" y1="221.89179238220865" y2="207.85164800000004"/> - <line opacity="0.4468854644851019" stroke="#0000ff" x1="79.00000000000004" x2="54.00000000000001" y1="261.70329607134505" y2="207.85164800000004"/> - <line stroke="#000000" x1="45.51320686867436" x2="79.00000000000004" y1="227.73173129981848" y2="261.70329607134505"/> - <line stroke="#000000" x1="39.756603434337194" x2="45.51320686867436" y1="221.89179238220865" y2="227.73173129981848"/> - <line opacity="0.12111894159084342" stroke="#0000ff" x1="54.00000000000001" x2="79.00000000000001" y1="207.85164800000004" y2="207.85164800000004"/> - <line opacity="0.12111894159084342" stroke="#0000ff" x1="79.00000000000001" x2="104.0" y1="207.85164800000004" y2="207.851648"/> - <line opacity="0.4468854644851019" stroke="#0000ff" x1="79.00000000000003" x2="104.0" y1="261.7032960713451" y2="207.851648"/> - <line stroke="#000000" x1="112.48679313132567" x2="118.24339656566283" y1="227.73173129981845" y2="221.89179238220865"/> - <line stroke="#000000" x1="79.00000000000003" x2="112.48679313132567" y1="261.70329607134505" y2="227.73173129981845"/> - <line opacity="1.0" stroke="#0000ff" x1="104.00000000000001" x2="118.24339656566283" y1="207.85164800000004" y2="221.89179238220865"/> - <line opacity="1.0" stroke="#ff0000" x1="104.00000000000001" x2="124.0" y1="207.851648" y2="216.0518534645988"/> - <line stroke="#000000" x1="118.24339656566283" x2="124.0" y1="221.8917923822086" y2="216.0518534645988"/> - <line opacity="0.9666666666666667" stroke="#ff0000" x1="123.99999999999999" x2="123.99999999999999" y1="207.85164799999998" y2="216.0518534645988"/> - <line opacity="0.1475836176504332" stroke="#0000ff" x1="104.0" x2="123.99999999999999" y1="207.851648" y2="207.85164799999998"/> - <line stroke="#000000" x1="126.73340182153292" x2="123.99999999999999" y1="207.85164799999998" y2="207.85164799999998"/> - <line stroke="#000000" x1="126.73340182153294" x2="126.73340182153292" y1="216.0518534645988" y2="207.85164799999998"/> - <line stroke="#000000" x1="124.0" x2="126.73340182153294" y1="216.0518534645988" y2="216.0518534645988"/> - <line opacity="0.1475836176504332" stroke="#0000ff" x1="123.9999999999999" x2="103.9999999999999" y1="53.851648000000004" y2="53.85164800000002"/> - <line opacity="1.0" stroke="#ff0000" x1="123.9999999999999" x2="103.9999999999999" y1="45.65144253540121" y2="53.85164800000002"/> - <line opacity="0.9666666666666667" stroke="#ff0000" x1="123.9999999999999" x2="123.9999999999999" y1="45.65144253540121" y2="53.85164800000002"/> - <line stroke="#000000" x1="123.9999999999999" x2="118.24339656566272" y1="45.651442535401195" y2="39.81150361779138"/> - <line opacity="1.0" stroke="#0000ff" x1="118.24339656566272" x2="103.99999999999989" y1="39.81150361779138" y2="53.85164800000002"/> - <line opacity="0.4468854644851019" stroke="#0000ff" x1="78.99999999999987" x2="103.9999999999999" y1="-7.134499924177363e-08" y2="53.85164800000002"/> - <line stroke="#000000" x1="112.48679313132554" x2="78.99999999999987" y1="33.971564700181574" y2="-7.134499924177363e-08"/> - <line stroke="#000000" x1="118.24339656566274" x2="112.48679313132554" y1="39.811503617791395" y2="33.971564700181574"/> - <line stroke="#000000" x1="126.73340182153284" x2="123.9999999999999" y1="45.651442535401195" y2="45.651442535401195"/> - <line stroke="#000000" x1="126.73340182153284" x2="126.73340182153284" y1="53.851648000000004" y2="45.651442535401195"/> - <line stroke="#000000" x1="123.9999999999999" x2="126.73340182153284" y1="53.851648000000004" y2="53.851648000000004"/> - <line stroke="#000000" x1="123.99999999999993" x2="123.9999999999999" y1="103.85164800000001" y2="53.85164800000002"/> - <line opacity="1.0" stroke="#0000ff" x1="123.99999999999993" x2="123.99999999999996" y1="103.85164800000001" y2="127.85164800000001"/> - <line stroke="#000000" x1="124.0" x2="123.99999999999996" y1="207.851648" y2="127.85164800000001"/> - <line stroke="#000000" x1="124.0" x2="124.0" y1="207.851648" y2="207.851648"/> - <line stroke="#000000" x1="123.9999999999999" x2="123.9999999999999" y1="53.85164800000002" y2="53.85164800000002"/> - <line stroke="#000000" x1="157.99999999999994" x2="123.99999999999993" y1="103.851648" y2="103.85164800000001"/> - <line stroke="#000000" x1="157.99999999999994" x2="157.99999999999994" y1="127.85164799999998" y2="103.851648"/> - <line opacity="0.5" stroke="#0000ff" x1="123.99999999999996" x2="157.99999999999994" y1="127.851648" y2="127.85164799999998"/> - <line stroke="#000000" x1="123.99999999999994" x2="123.99999999999996" y1="127.851648" y2="147.85164799999998"/> - <line stroke="#000000" x1="157.99999999999997" x2="157.99999999999994" y1="147.85164799999995" y2="127.85164799999998"/> - <line opacity="0.5" stroke="#0000ff" x1="123.99999999999996" x2="157.99999999999997" y1="147.85164799999998" y2="147.85164799999995"/> - <line stroke="#000000" x1="123.99999999999996" x2="123.99999999999997" y1="147.85164799999998" y2="171.851648"/> - <line stroke="#000000" x1="157.99999999999997" x2="157.99999999999997" y1="171.85164799999998" y2="147.85164799999995"/> - <line opacity="0.5" stroke="#0000ff" x1="123.99999999999997" x2="157.99999999999997" y1="171.851648" y2="171.85164799999998"/> - <line stroke="#000000" x1="123.99999999999997" x2="123.99999999999999" y1="171.851648" y2="191.85164799999998"/> - <line stroke="#000000" x1="157.99999999999997" x2="157.99999999999997" y1="191.85164799999998" y2="171.85164799999998"/> - <line opacity="0.5" stroke="#0000ff" x1="157.99999999999997" x2="123.99999999999999" y1="191.85164799999998" y2="191.85164799999998"/> - <line stroke="#000000" x1="158.0" x2="157.99999999999997" y1="201.85164799999998" y2="191.85164799999998"/> - <line stroke="#000000" x1="123.99999999999999" x2="158.0" y1="201.85164799999998" y2="201.85164799999998"/> - <line stroke="#000000" x1="123.99999999999999" x2="123.99999999999999" y1="191.851648" y2="201.85164799999998"/> - <line stroke="#000000" x1="31.26659817846708" x2="34.000000000000014" y1="216.05185346459882" y2="216.05185346459882"/> - <line stroke="#000000" x1="31.26659817846708" x2="31.26659817846708" y1="207.85164800000004" y2="216.05185346459882"/> - <line stroke="#000000" x1="34.000000000000014" x2="31.26659817846708" y1="207.85164800000004" y2="207.85164800000004"/> - <line stroke="#000000" x1="34.0" x2="34.000000000000014" y1="127.85164800000003" y2="207.85164800000004"/> - <line opacity="1.0" stroke="#0000ff" x1="34.0" x2="33.99999999999999" y1="127.85164800000003" y2="103.85164800000003"/> - <line stroke="#000000" x1="33.999999999999986" x2="33.99999999999999" y1="53.85164800000002" y2="103.85164800000003"/> - <line stroke="#000000" x1="33.999999999999986" x2="33.999999999999986" y1="53.85164800000002" y2="53.85164800000002"/> - <line stroke="#000000" x1="34.000000000000014" x2="34.000000000000014" y1="207.85164800000004" y2="207.85164800000004"/> - <line stroke="#000000" x1="0.0" x2="0.0" y1="103.85164800000003" y2="127.85164800000003"/> - <line stroke="#000000" x1="33.99999999999999" x2="0.0" y1="103.85164800000003" y2="103.85164800000003"/> - <line opacity="0.5" stroke="#0000ff" x1="0.0" x2="34.0" y1="127.85164800000003" y2="127.85164800000003"/> - <line stroke="#000000" x1="0.0" x2="0.0" y1="127.85164800000003" y2="147.851648"/> - <line stroke="#000000" x1="34.0" x2="34.0" y1="147.851648" y2="127.85164800000003"/> - <line opacity="0.5" stroke="#0000ff" x1="0.0" x2="34.0" y1="147.851648" y2="147.851648"/> - <line stroke="#000000" x1="0.0" x2="1.4210854715202007e-14" y1="147.851648" y2="171.85164800000004"/> - <line stroke="#000000" x1="34.00000000000001" x2="34.0" y1="171.85164800000004" y2="147.851648"/> - <line opacity="0.5" stroke="#0000ff" x1="1.4210854715202007e-14" x2="34.00000000000001" y1="171.85164800000004" y2="171.85164800000004"/> - <line stroke="#000000" x1="1.4210854715202007e-14" x2="2.8421709430404014e-14" y1="171.85164800000004" y2="191.85164800000004"/> - <line stroke="#000000" x1="34.000000000000014" x2="34.00000000000001" y1="191.85164800000004" y2="171.85164800000004"/> - <line opacity="0.5" stroke="#0000ff" x1="34.000000000000014" x2="2.8421709430404014e-14" y1="191.85164800000004" y2="191.85164800000004"/> - <line stroke="#000000" x1="34.00000000000002" x2="34.00000000000002" y1="201.851648" y2="191.85164800000004"/> - <line stroke="#000000" x1="2.8421709430404014e-14" x2="34.00000000000002" y1="201.851648" y2="201.851648"/> - <line stroke="#000000" x1="2.8421709430404014e-14" x2="2.8421709430404014e-14" y1="191.85164800000004" y2="201.851648"/> - <line stroke="#888888" x1="45.407868048479436" x2="43.1379966274785" y1="37.354821212342635" y2="39.65755243235414"/> - <line stroke="#888888" x1="43.1379966274785" x2="42.781911713336925" y1="39.65755243235414" y2="39.30654882279893"/> - <line stroke="#888888" x1="42.781911713336925" x2="45.05178313433787" y1="39.30654882279893" y2="37.00381760278743"/> - <line stroke="#888888" x1="45.05178313433787" x2="45.407868048479436" y1="37.00381760278743" y2="37.354821212342635"/> - <line stroke="#888888" x1="31.94994863385028" x2="33.31664954461675" y1="48.384844356934146" y2="48.384844356934146"/> - <line stroke="#888888" x1="33.31664954461675" x2="33.31664954461675" y1="48.384844356934146" y2="51.118246178467075"/> - <line stroke="#888888" x1="33.31664954461675" x2="31.94994863385028" y1="51.118246178467075" y2="51.118246178467075"/> - <line stroke="#888888" x1="43.137996627478536" x2="45.407868048479486" y1="222.04574356764593" y2="224.3484747876574"/> - <line stroke="#888888" x1="45.407868048479486" x2="45.05178313433792" y1="224.3484747876574" y2="224.69947839721263"/> - <line stroke="#888888" x1="45.05178313433792" x2="42.781911713336974" y1="224.69947839721263" y2="222.39674717720115"/> - <line stroke="#888888" x1="42.781911713336974" x2="43.137996627478536" y1="222.39674717720115" y2="222.04574356764593"/> - <line stroke="#888888" x1="112.59213195152056" x2="114.86200337252149" y1="224.3484747876574" y2="222.04574356764587"/> - <line stroke="#888888" x1="114.86200337252149" x2="115.21808828666306" y1="222.04574356764587" y2="222.3967471772011"/> - <line stroke="#888888" x1="115.21808828666306" x2="112.94821686566212" y1="222.3967471772011" y2="224.6994783972126"/> - <line stroke="#888888" x1="112.94821686566212" x2="112.59213195152056" y1="224.6994783972126" y2="224.3484747876574"/> - <line stroke="#888888" x1="126.0500513661497" x2="124.68335045538323" y1="213.31845164306586" y2="213.31845164306586"/> - <line stroke="#888888" x1="124.68335045538323" x2="124.68335045538323" y1="213.31845164306586" y2="210.58504982153292"/> - <line stroke="#888888" x1="124.68335045538323" x2="126.0500513661497" y1="210.58504982153292" y2="210.58504982153292"/> - <line stroke="#888888" x1="114.86200337252136" x2="112.59213195152043" y1="39.65755243235414" y2="37.354821212342635"/> - <line stroke="#888888" x1="112.59213195152043" x2="112.948216865662" y1="37.354821212342635" y2="37.003817602787414"/> - <line stroke="#888888" x1="112.948216865662" x2="115.21808828666295" y1="37.003817602787414" y2="39.306548822798916"/> - <line stroke="#888888" x1="115.21808828666295" x2="114.86200337252136" y1="39.306548822798916" y2="39.65755243235414"/> - <line stroke="#888888" x1="126.05005136614962" x2="124.68335045538315" y1="51.11824617846707" y2="51.11824617846707"/> - <line stroke="#888888" x1="124.68335045538315" x2="124.68335045538315" y1="51.11824617846707" y2="48.38484435693413"/> - <line stroke="#888888" x1="124.68335045538315" x2="126.05005136614962" y1="48.38484435693413" y2="48.38484435693413"/> - <line stroke="#888888" x1="146.9166666666666" x2="135.0833333333333" y1="111.601648" y2="111.601648"/> - <line stroke="#888888" x1="135.0833333333333" x2="135.0833333333333" y1="111.601648" y2="111.10164799999998"/> - <line stroke="#888888" x1="135.0833333333333" x2="146.9166666666666" y1="111.10164799999998" y2="111.10164799999998"/> - <line stroke="#888888" x1="146.9166666666666" x2="146.9166666666666" y1="111.10164799999998" y2="111.601648"/> - <line stroke="#888888" x1="134.99999999999997" x2="134.99999999999997" y1="146.851648" y2="142.85164799999998"/> - <line stroke="#888888" x1="134.99999999999997" x2="146.99999999999997" y1="142.85164799999998" y2="142.85164799999998"/> - <line stroke="#888888" x1="146.99999999999997" x2="146.99999999999997" y1="142.85164799999998" y2="146.851648"/> - <line stroke="#888888" x1="146.99999999999997" x2="134.99999999999997" y1="146.851648" y2="146.851648"/> - <line stroke="#888888" x1="136.49999999999994" x2="136.49999999999991" y1="134.851648" y2="130.85164799999998"/> - <line stroke="#888888" x1="136.49999999999991" x2="145.49999999999994" y1="130.85164799999998" y2="130.85164799999998"/> - <line stroke="#888888" x1="145.49999999999994" x2="145.49999999999994" y1="130.85164799999998" y2="134.851648"/> - <line stroke="#888888" x1="145.49999999999994" x2="136.49999999999994" y1="134.851648" y2="134.851648"/> - <line stroke="#888888" x1="134.99999999999997" x2="134.99999999999997" y1="171.351648" y2="148.351648"/> - <line stroke="#888888" x1="134.99999999999997" x2="146.99999999999997" y1="148.351648" y2="148.35164799999998"/> - <line stroke="#888888" x1="146.99999999999997" x2="146.99999999999997" y1="148.35164799999998" y2="171.35164799999998"/> - <line stroke="#888888" x1="146.99999999999997" x2="134.99999999999997" y1="171.35164799999998" y2="171.351648"/> - <line stroke="#888888" x1="134.99999999999997" x2="134.99999999999997" y1="176.85164799999998" y2="172.85164799999995"/> - <line stroke="#888888" x1="134.99999999999997" x2="146.99999999999997" y1="172.85164799999995" y2="172.85164799999995"/> - <line stroke="#888888" x1="146.99999999999997" x2="146.99999999999997" y1="172.85164799999995" y2="176.85164799999998"/> - <line stroke="#888888" x1="146.99999999999997" x2="134.99999999999997" y1="176.85164799999998" y2="176.85164799999998"/> - <line stroke="#888888" x1="135.33333333333334" x2="135.33333333333334" y1="199.35164799999998" y2="194.35164799999998"/> - <line stroke="#888888" x1="135.33333333333334" x2="146.66666666666666" y1="194.35164799999998" y2="194.35164799999998"/> - <line stroke="#888888" x1="146.66666666666666" x2="146.66666666666666" y1="194.35164799999998" y2="199.35164799999998"/> - <line stroke="#888888" x1="31.949948633850315" x2="33.31664954461679" y1="210.58504982153298" y2="210.58504982153298"/> - <line stroke="#888888" x1="33.31664954461679" x2="33.31664954461679" y1="210.58504982153298" y2="213.3184516430659"/> - <line stroke="#888888" x1="33.31664954461679" x2="31.949948633850315" y1="213.3184516430659" y2="213.3184516430659"/> - <line stroke="#888888" x1="22.91666666666666" x2="11.08333333333333" y1="111.60164800000003" y2="111.60164800000003"/> - <line stroke="#888888" x1="11.08333333333333" x2="11.08333333333333" y1="111.60164800000003" y2="111.10164800000003"/> - <line stroke="#888888" x1="11.08333333333333" x2="22.91666666666666" y1="111.10164800000003" y2="111.10164800000003"/> - <line stroke="#888888" x1="22.91666666666666" x2="22.91666666666666" y1="111.10164800000003" y2="111.60164800000003"/> - <line stroke="#888888" x1="11.000000000000002" x2="11.000000000000002" y1="146.85164800000004" y2="142.851648"/> - <line stroke="#888888" x1="11.000000000000002" x2="23.000000000000004" y1="142.851648" y2="142.851648"/> - <line stroke="#888888" x1="23.000000000000004" x2="23.000000000000004" y1="142.851648" y2="146.85164800000004"/> - <line stroke="#888888" x1="23.000000000000004" x2="11.000000000000002" y1="146.85164800000004" y2="146.85164800000004"/> - <line stroke="#888888" x1="12.5" x2="12.5" y1="134.85164800000004" y2="130.851648"/> - <line stroke="#888888" x1="12.5" x2="21.500000000000004" y1="130.851648" y2="130.851648"/> - <line stroke="#888888" x1="21.500000000000004" x2="21.500000000000004" y1="130.851648" y2="134.85164800000004"/> - <line stroke="#888888" x1="21.500000000000004" x2="12.5" y1="134.85164800000004" y2="134.85164800000004"/> - <line stroke="#888888" x1="11.000000000000016" x2="11.000000000000016" y1="171.35164800000004" y2="148.35164800000004"/> - <line stroke="#888888" x1="11.000000000000016" x2="23.000000000000007" y1="148.35164800000004" y2="148.35164800000004"/> - <line stroke="#888888" x1="23.000000000000007" x2="23.000000000000007" y1="148.35164800000004" y2="171.35164800000004"/> - <line stroke="#888888" x1="23.000000000000007" x2="11.000000000000016" y1="171.35164800000004" y2="171.35164800000004"/> - <line stroke="#888888" x1="11.000000000000016" x2="11.000000000000016" y1="176.851648" y2="172.85164800000004"/> - <line stroke="#888888" x1="11.000000000000016" x2="23.000000000000014" y1="172.85164800000004" y2="172.85164800000004"/> - <line stroke="#888888" x1="23.000000000000014" x2="23.000000000000014" y1="172.85164800000004" y2="176.851648"/> - <line stroke="#888888" x1="23.000000000000014" x2="11.000000000000016" y1="176.851648" y2="176.851648"/> - <line stroke="#888888" x1="11.333333333333359" x2="11.333333333333359" y1="199.35164800000004" y2="194.35164800000004"/> - <line stroke="#888888" x1="11.333333333333359" x2="22.666666666666693" y1="194.35164800000004" y2="194.35164800000004"/> - <line stroke="#888888" x1="22.666666666666693" x2="22.666666666666693" y1="194.35164800000004" y2="199.35164800000004"/> + <line stroke="#000000" x1="415.00000000000017" x2="379.00000000000017" y1="166.023253" y2="166.023253"/> + <line opacity="0.5" stroke="#ff0000" x1="415.00000000000017" x2="415.00000000000017" y1="166.023253" y2="190.02325300000004"/> + <line stroke="#000000" x1="379.00000000000017" x2="415.00000000000017" y1="190.02325300000004" y2="190.02325300000004"/> + <line stroke="#000000" x1="415.00000000000017" x2="460.00000000000017" y1="190.02325300000004" y2="190.02325300000004"/> + <line stroke="#000000" x1="460.00000000000017" x2="415.00000000000017" y1="166.023253" y2="166.023253"/> + <line stroke="#000000" x1="465.00000000000017" x2="460.00000000000017" y1="166.023253" y2="166.023253"/> + <line stroke="#000000" x1="465.00000000000017" x2="465.00000000000017" y1="190.02325300000004" y2="166.023253"/> + <line stroke="#000000" x1="460.00000000000017" x2="465.00000000000017" y1="190.02325300000004" y2="190.02325300000004"/> + <line stroke="#000000" x1="345.0000000000001" x2="379.00000000000017" y1="190.02325300000004" y2="190.02325300000004"/> + <line opacity="1.0" stroke="#0000ff" x1="345.0000000000001" x2="345.0000000000001" y1="166.023253" y2="190.02325300000004"/> + <line opacity="0.5" stroke="#0000ff" x1="379.00000000000017" x2="345.0000000000001" y1="166.023253" y2="166.023253"/> + <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="166.023253" y2="86.02325300000003"/> + <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="240.02325300000004" y2="190.02325300000004"/> + <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="240.02325300000004" y2="240.02325300000004"/> + <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="86.02325300000003" y2="86.02325300000003"/> + <line opacity="0.5" stroke="#0000ff" x1="275.00000000000017" x2="275.00000000000017" y1="240.02325300000004" y2="86.02325300000003"/> + <line opacity="0.2332622916434259" stroke="#0000ff" x1="275.00000000000017" x2="345.0000000000001" y1="240.02325300000004" y2="240.02325300000004"/> + <line opacity="0.9666666666666667" stroke="#ff0000" x1="345.0000000000001" x2="345.0000000000001" y1="240.02325300000004" y2="292.53762381816165"/> + <line opacity="1.0" stroke="#ff0000" x1="275.00000000000017" x2="345.0000000000001" y1="240.02325300000004" y2="292.53762381816165"/> + <line stroke="#000000" x1="362.5047902727207" x2="345.0000000000001" y1="240.02325300000004" y2="240.02325300000004"/> + <line stroke="#000000" x1="362.5047902727207" x2="362.5047902727207" y1="292.53762381816165" y2="240.02325300000004"/> + <line stroke="#000000" x1="345.0000000000001" x2="362.5047902727207" y1="292.53762381816165" y2="292.53762381816165"/> + <line opacity="1.0" stroke="#0000ff" x1="275.00000000000017" x2="294.58234220233663" y1="240.02325300000004" y2="307.22840067389916"/> + <line stroke="#000000" x1="294.58234220233663" x2="345.0000000000001" y1="307.22840067389916" y2="292.53762381816165"/> + <line stroke="#000000" x1="244.16468440467298" x2="294.58234220233663" y1="321.9191775296368" y2="307.22840067389916"/> + <line stroke="#000000" x1="230.00000000000014" x2="244.16468440467298" y1="326.0465056704263" y2="321.9191775296368"/> + <line opacity="0.31677294251280175" stroke="#0000ff" x1="230.00000000000014" x2="275.00000000000017" y1="326.0465056704263" y2="240.02325300000004"/> + <line opacity="0.3025684567112535" stroke="#0000ff" x1="230.0000000000001" x2="275.00000000000017" y1="240.02325300000007" y2="240.02325300000004"/> + <line opacity="0.3025684567112535" stroke="#0000ff" x1="185.0000000000001" x2="230.0000000000001" y1="240.0232530000001" y2="240.02325300000007"/> + <line opacity="0.31677294251280175" stroke="#0000ff" x1="230.00000000000014" x2="185.00000000000009" y1="326.0465056704263" y2="240.0232530000001"/> + <line opacity="1.0" stroke="#0000ff" x1="165.4176577976637" x2="185.00000000000009" y1="307.22840067389933" y2="240.02325300000007"/> + <line stroke="#000000" x1="215.83531559532727" x2="230.00000000000014" y1="321.91917752963684" y2="326.0465056704263"/> + <line stroke="#000000" x1="165.4176577976637" x2="215.83531559532727" y1="307.22840067389933" y2="321.91917752963684"/> + <line stroke="#000000" x1="115.00000000000013" x2="165.41765779766374" y1="292.53762381816176" y2="307.22840067389933"/> + <line opacity="1.0" stroke="#ff0000" x1="115.00000000000013" x2="185.00000000000009" y1="292.53762381816176" y2="240.0232530000001"/> + <line opacity="0.2332622916434259" stroke="#0000ff" x1="115.00000000000007" x2="185.0000000000001" y1="240.02325300000015" y2="240.02325300000007"/> + <line opacity="0.9666666666666667" stroke="#ff0000" x1="115.00000000000013" x2="115.00000000000007" y1="292.53762381816176" y2="240.02325300000015"/> + <line opacity="0.5" stroke="#0000ff" x1="185.00000000000009" x2="184.99999999999997" y1="240.0232530000001" y2="86.023253"/> + <line stroke="#000000" x1="115.00000000000001" x2="115.00000000000007" y1="190.02325300000012" y2="240.02325300000015"/> + <line opacity="1.0" stroke="#0000ff" x1="115.00000000000001" x2="115.00000000000001" y1="190.02325300000012" y2="166.0232530000001"/> + <line stroke="#000000" x1="114.99999999999996" x2="115.00000000000001" y1="86.02325300000008" y2="166.0232530000001"/> + <line stroke="#000000" x1="114.99999999999996" x2="114.99999999999996" y1="86.02325300000008" y2="86.02325300000008"/> + <line stroke="#000000" x1="115.00000000000007" x2="115.00000000000007" y1="240.02325300000015" y2="240.02325300000015"/> + <line stroke="#000000" x1="81.00000000000001" x2="115.00000000000001" y1="190.02325300000015" y2="190.02325300000012"/> + <line opacity="0.5" stroke="#0000ff" x1="115.00000000000001" x2="81.00000000000001" y1="166.0232530000001" y2="166.02325300000015"/> + <line stroke="#000000" x1="45.0" x2="81.00000000000001" y1="190.0232530000002" y2="190.02325300000015"/> + <line opacity="0.5" stroke="#ff0000" x1="45.0" x2="45.0" y1="190.0232530000002" y2="166.02325300000018"/> + <line stroke="#000000" x1="81.00000000000001" x2="45.0" y1="166.02325300000015" y2="166.02325300000018"/> + <line stroke="#000000" x1="45.0" x2="0.0" y1="166.02325300000018" y2="166.02325300000024"/> + <line stroke="#000000" x1="0.0" x2="45.0" y1="190.0232530000002" y2="190.0232530000002"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="166.02325300000024" y2="190.0232530000002"/> + <line stroke="#000000" x1="115.00000000000001" x2="115.00000000000001" y1="166.0232530000001" y2="146.0232530000001"/> + <line stroke="#000000" x1="81.00000000000001" x2="81.00000000000001" y1="146.02325300000015" y2="166.02325300000015"/> + <line opacity="0.5" stroke="#0000ff" x1="115.00000000000001" x2="81.00000000000001" y1="146.0232530000001" y2="146.02325300000015"/> + <line stroke="#000000" x1="115.00000000000001" x2="115.00000000000001" y1="146.02325300000012" y2="122.02325300000008"/> + <line stroke="#000000" x1="81.00000000000001" x2="81.00000000000001" y1="122.02325300000012" y2="146.02325300000015"/> + <line opacity="0.5" stroke="#0000ff" x1="115.00000000000001" x2="81.00000000000001" y1="122.02325300000008" y2="122.02325300000012"/> + <line stroke="#000000" x1="115.00000000000001" x2="115.00000000000001" y1="122.0232530000001" y2="102.02325300000008"/> + <line stroke="#000000" x1="81.00000000000001" x2="81.00000000000001" y1="102.02325300000011" y2="122.02325300000014"/> + <line opacity="0.5" stroke="#0000ff" x1="81.00000000000001" x2="115.00000000000001" y1="102.02325300000011" y2="102.02325300000008"/> + <line stroke="#000000" x1="81.00000000000001" x2="81.00000000000001" y1="92.02325300000011" y2="102.0232530000001"/> + <line stroke="#000000" x1="115.00000000000001" x2="81.00000000000001" y1="92.02325300000007" y2="92.02325300000011"/> + <line stroke="#000000" x1="115.00000000000001" x2="115.00000000000001" y1="102.02325300000008" y2="92.02325300000007"/> + <line opacity="0.2332622916434259" stroke="#0000ff" x1="184.99999999999997" x2="114.99999999999996" y1="86.02325300000001" y2="86.02325300000008"/> + <line opacity="0.9666666666666667" stroke="#ff0000" x1="114.99999999999996" x2="114.9999999999999" y1="86.02325300000008" y2="33.508882181838494"/> + <line opacity="1.0" stroke="#ff0000" x1="184.99999999999997" x2="114.9999999999999" y1="86.02325300000001" y2="33.508882181838494"/> + <line stroke="#000000" x1="97.49520972727943" x2="114.99999999999996" y1="86.0232530000001" y2="86.02325300000008"/> + <line stroke="#000000" x1="97.49520972727937" x2="97.49520972727943" y1="33.50888218183852" y2="86.0232530000001"/> + <line stroke="#000000" x1="114.9999999999999" x2="97.49520972727937" y1="33.508882181838494" y2="33.50888218183852"/> + <line opacity="1.0" stroke="#0000ff" x1="185.00000000000003" x2="165.4176577976635" y1="86.02325300000004" y2="18.818105326100866"/> + <line stroke="#000000" x1="165.4176577976635" x2="114.9999999999999" y1="18.818105326100866" y2="33.508882181838494"/> + <line stroke="#000000" x1="215.83531559532705" x2="165.41765779766348" y1="4.127328470363211" y2="18.818105326100834"/> + <line stroke="#000000" x1="229.99999999999991" x2="215.83531559532705" y1="3.295736235031655e-07" y2="4.127328470363211"/> + <line opacity="0.31677294251280175" stroke="#0000ff" x1="229.99999999999991" x2="185.0" y1="3.295736235031655e-07" y2="86.02325300000003"/> + <line opacity="0.3025684567112535" stroke="#0000ff" x1="230.00000000000003" x2="185.0" y1="86.02325299999997" y2="86.02325300000003"/> + <line opacity="0.3025684567112535" stroke="#0000ff" x1="275.00000000000006" x2="229.99999999999997" y1="86.02325299999988" y2="86.02325299999995"/> + <line opacity="0.31677294251280175" stroke="#0000ff" x1="229.9999999999999" x2="275.00000000000006" y1="3.295736235031655e-07" y2="86.02325299999988"/> + <line opacity="1.0" stroke="#0000ff" x1="294.5823422023364" x2="275.00000000000006" y1="18.81810532610061" y2="86.02325299999985"/> + <line stroke="#000000" x1="244.16468440467273" x2="229.9999999999999" y1="4.127328470363125" y2="3.2957359508145606e-07"/> + <line stroke="#000000" x1="294.5823422023364" x2="244.16468440467273" y1="18.81810532610061" y2="4.127328470363125"/> + <line stroke="#000000" x1="344.99999999999994" x2="294.58234220233635" y1="33.50888218183812" y2="18.818105326100635"/> + <line opacity="1.0" stroke="#ff0000" x1="344.99999999999994" x2="275.00000000000006" y1="33.50888218183812" y2="86.02325299999987"/> + <line opacity="0.2332622916434259" stroke="#0000ff" x1="345.00000000000006" x2="275.00000000000006" y1="86.02325299999974" y2="86.02325299999988"/> + <line opacity="0.9666666666666667" stroke="#ff0000" x1="344.99999999999994" x2="345.00000000000006" y1="33.50888218183812" y2="86.02325299999974"/> + <line stroke="#000000" x1="362.50479027272047" x2="344.99999999999994" y1="33.508882181838096" y2="33.50888218183812"/> + <line stroke="#000000" x1="362.5047902727206" x2="362.50479027272047" y1="86.02325299999971" y2="33.508882181838096"/> + <line stroke="#000000" x1="345.00000000000006" x2="362.5047902727206" y1="86.02325299999974" y2="86.02325299999971"/> + <line stroke="#000000" x1="97.4952097272796" x2="115.00000000000013" y1="292.53762381816176" y2="292.53762381816176"/> + <line stroke="#000000" x1="97.49520972727954" x2="97.4952097272796" y1="240.02325300000018" y2="292.53762381816176"/> + <line stroke="#000000" x1="115.00000000000007" x2="97.49520972727954" y1="240.02325300000015" y2="240.02325300000018"/> + <line stroke="#000000" x1="379.00000000000017" x2="379.00000000000017" y1="166.023253" y2="146.023253"/> + <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="146.023253" y2="166.023253"/> + <line opacity="0.5" stroke="#0000ff" x1="379.00000000000017" x2="345.0000000000001" y1="146.023253" y2="146.023253"/> + <line stroke="#000000" x1="379.00000000000017" x2="379.00000000000017" y1="146.023253" y2="122.02325300000003"/> + <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="122.02325300000003" y2="146.023253"/> + <line opacity="0.5" stroke="#0000ff" x1="379.00000000000017" x2="345.0000000000001" y1="122.02325300000003" y2="122.02325300000003"/> + <line stroke="#000000" x1="379.00000000000017" x2="379.00000000000017" y1="122.02325300000003" y2="102.02325300000003"/> + <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="102.02325300000003" y2="122.02325300000003"/> + <line opacity="0.5" stroke="#0000ff" x1="345.0000000000001" x2="379.00000000000017" y1="102.02325300000003" y2="102.02325300000003"/> + <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="92.02325300000001" y2="102.02325300000003"/> + <line stroke="#000000" x1="379.00000000000017" x2="345.0000000000001" y1="92.02325300000001" y2="92.02325300000001"/> + <line stroke="#000000" x1="379.00000000000017" x2="379.00000000000017" y1="102.02325300000003" y2="92.02325300000001"/> + <line stroke="#888888" x1="463.7500000000001" x2="463.7500000000001" y1="182.023253" y2="184.523253"/> + <line stroke="#888888" x1="463.7500000000001" x2="461.25000000000017" y1="184.523253" y2="182.023253"/> + <line stroke="#888888" x1="461.25000000000017" x2="461.25000000000017" y1="182.023253" y2="174.02325300000004"/> + <line stroke="#888888" x1="461.25000000000017" x2="463.7500000000001" y1="174.02325300000004" y2="171.52325300000004"/> + <line stroke="#888888" x1="463.7500000000001" x2="463.7500000000001" y1="171.52325300000004" y2="174.02325300000004"/> + <line stroke="#888888" x1="356.0833333333335" x2="367.9166666666668" y1="182.273253" y2="182.273253"/> + <line stroke="#888888" x1="367.9166666666668" x2="367.9166666666668" y1="182.273253" y2="182.77325300000004"/> + <line stroke="#888888" x1="367.9166666666668" x2="356.0833333333335" y1="182.77325300000004" y2="182.77325300000004"/> + <line stroke="#888888" x1="356.0833333333335" x2="356.0833333333335" y1="182.77325300000004" y2="182.273253"/> + <line stroke="#888888" x1="358.1285927045405" x2="349.3761975681803" y1="275.03283354544106" y2="275.03283354544106"/> + <line stroke="#888888" x1="349.3761975681803" x2="349.3761975681803" y1="275.03283354544106" y2="257.52804327272054"/> + <line stroke="#888888" x1="349.3761975681803" x2="358.1285927045405" y1="257.52804327272054" y2="257.52804327272054"/> + <line stroke="#888888" x1="256.9879208023066" x2="274.2738435039604" y1="304.247756013529" y2="299.210956522076"/> + <line stroke="#888888" x1="274.2738435039604" x2="274.41371737683426" y1="299.210956522076" y2="299.69099329117523"/> + <line stroke="#888888" x1="274.41371737683426" x2="257.1277946751804" y1="299.69099329117523" y2="304.7277927826283"/> + <line stroke="#888888" x1="257.1277946751804" x2="256.9879208023066" y1="304.7277927826283" y2="304.247756013529"/> + <line stroke="#888888" x1="185.72615649603986" x2="203.0120791976937" y1="299.210956522076" y2="304.247756013529"/> + <line stroke="#888888" x1="203.0120791976937" x2="202.87220532481987" y1="304.247756013529" y2="304.72779278262834"/> + <line stroke="#888888" x1="202.87220532481987" x2="185.58628262316603" y1="304.72779278262834" y2="299.69099329117523"/> + <line stroke="#888888" x1="185.58628262316603" x2="185.72615649603986" y1="299.69099329117523" y2="299.210956522076"/> + <line stroke="#888888" x1="92.08333333333333" x2="103.9166666666667" y1="182.27325300000015" y2="182.27325300000015"/> + <line stroke="#888888" x1="103.9166666666667" x2="103.9166666666667" y1="182.27325300000015" y2="182.77325300000015"/> + <line stroke="#888888" x1="103.9166666666667" x2="92.08333333333333" y1="182.77325300000015" y2="182.77325300000015"/> + <line stroke="#888888" x1="92.08333333333333" x2="92.08333333333333" y1="182.77325300000015" y2="182.27325300000015"/> + <line stroke="#888888" x1="4.000000000000001" x2="4.000000000000001" y1="173.77325300000024" y2="182.27325300000024"/> + <line stroke="#888888" x1="4.000000000000001" x2="3.5000000000000004" y1="182.27325300000024" y2="182.27325300000024"/> + <line stroke="#888888" x1="3.5000000000000004" x2="3.5000000000000004" y1="182.27325300000024" y2="173.77325300000024"/> + <line stroke="#888888" x1="3.5000000000000004" x2="4.000000000000001" y1="173.77325300000024" y2="173.77325300000024"/> + <line stroke="#888888" x1="104.00000000000001" x2="104.00000000000001" y1="147.02325300000012" y2="151.02325300000012"/> + <line stroke="#888888" x1="104.00000000000001" x2="92.00000000000001" y1="151.02325300000012" y2="151.02325300000015"/> + <line stroke="#888888" x1="92.00000000000001" x2="92.00000000000001" y1="151.02325300000015" y2="147.02325300000012"/> + <line stroke="#888888" x1="92.00000000000001" x2="104.00000000000001" y1="147.02325300000012" y2="147.02325300000012"/> + <line stroke="#888888" x1="102.50000000000001" x2="102.50000000000001" y1="159.0232530000001" y2="163.02325300000012"/> + <line stroke="#888888" x1="102.50000000000001" x2="93.50000000000001" y1="163.02325300000012" y2="163.02325300000012"/> + <line stroke="#888888" x1="93.50000000000001" x2="93.50000000000001" y1="163.02325300000012" y2="159.0232530000001"/> + <line stroke="#888888" x1="93.50000000000001" x2="102.50000000000001" y1="159.0232530000001" y2="159.0232530000001"/> + <line stroke="#888888" x1="104.00000000000001" x2="104.00000000000001" y1="122.52325300000011" y2="145.5232530000001"/> + <line stroke="#888888" x1="104.00000000000001" x2="92.00000000000001" y1="145.5232530000001" y2="145.52325300000012"/> + <line stroke="#888888" x1="92.00000000000001" x2="92.00000000000001" y1="145.52325300000012" y2="122.52325300000011"/> + <line stroke="#888888" x1="92.00000000000001" x2="104.00000000000001" y1="122.52325300000011" y2="122.52325300000011"/> + <line stroke="#888888" x1="104.00000000000001" x2="104.00000000000001" y1="117.02325300000011" y2="121.02325300000011"/> + <line stroke="#888888" x1="104.00000000000001" x2="92.00000000000001" y1="121.02325300000011" y2="121.02325300000011"/> + <line stroke="#888888" x1="92.00000000000001" x2="92.00000000000001" y1="121.02325300000011" y2="117.02325300000011"/> + <line stroke="#888888" x1="92.00000000000001" x2="104.00000000000001" y1="117.02325300000011" y2="117.02325300000011"/> + <line stroke="#888888" x1="103.6666666666667" x2="103.6666666666667" y1="94.5232530000001" y2="99.5232530000001"/> + <line stroke="#888888" x1="103.6666666666667" x2="92.33333333333331" y1="99.5232530000001" y2="99.52325300000011"/> + <line stroke="#888888" x1="92.33333333333331" x2="92.33333333333331" y1="99.52325300000011" y2="94.52325300000011"/> + <line stroke="#888888" x1="101.87140729545952" x2="110.62380243181975" y1="51.01367245455902" y2="51.01367245455902"/> + <line stroke="#888888" x1="110.62380243181975" x2="110.6238024318198" y1="51.01367245455902" y2="68.51846272727956"/> + <line stroke="#888888" x1="110.6238024318198" x2="101.87140729545958" y1="68.51846272727956" y2="68.51846272727956"/> + <line stroke="#888888" x1="203.01207919769348" x2="185.7261564960397" y1="21.798749986471023" y2="26.83554947792408"/> + <line stroke="#888888" x1="185.7261564960397" x2="185.58628262316586" y1="26.83554947792408" y2="26.355512708824794"/> + <line stroke="#888888" x1="185.58628262316586" x2="202.87220532481965" y1="26.355512708824794" y2="21.318713217371737"/> + <line stroke="#888888" x1="202.87220532481965" x2="203.01207919769348" y1="21.318713217371737" y2="21.798749986471023"/> + <line stroke="#888888" x1="274.27384350396017" x2="256.9879208023064" y1="26.83554947792391" y2="21.79874998647091"/> + <line stroke="#888888" x1="256.9879208023064" x2="257.1277946751802" y1="21.79874998647091" y2="21.318713217371627"/> + <line stroke="#888888" x1="257.1277946751802" x2="274.413717376834" y1="21.318713217371627" y2="26.355512708824623"/> + <line stroke="#888888" x1="274.413717376834" x2="274.27384350396017" y1="26.355512708824623" y2="26.83554947792391"/> + <line stroke="#888888" x1="358.1285927045404" x2="349.37619756818015" y1="68.51846272727916" y2="68.51846272727917"/> + <line stroke="#888888" x1="349.37619756818015" x2="349.37619756818015" y1="68.51846272727917" y2="51.013672454558645"/> + <line stroke="#888888" x1="349.37619756818015" x2="358.1285927045404" y1="51.013672454558645" y2="51.01367245455863"/> + <line stroke="#888888" x1="101.87140729545968" x2="110.62380243181993" y1="257.52804327272065" y2="257.52804327272065"/> + <line stroke="#888888" x1="110.62380243181993" x2="110.62380243181998" y1="257.52804327272065" y2="275.0328335454412"/> + <line stroke="#888888" x1="110.62380243181998" x2="101.87140729545975" y1="275.0328335454412" y2="275.03283354544124"/> + <line stroke="#888888" x1="368.0000000000001" x2="368.0000000000001" y1="147.02325300000004" y2="151.02325300000004"/> + <line stroke="#888888" x1="368.0000000000001" x2="356.00000000000017" y1="151.02325300000004" y2="151.02325300000004"/> + <line stroke="#888888" x1="356.00000000000017" x2="356.00000000000017" y1="151.02325300000004" y2="147.02325300000004"/> + <line stroke="#888888" x1="356.00000000000017" x2="368.0000000000001" y1="147.02325300000004" y2="147.02325300000004"/> + <line stroke="#888888" x1="366.50000000000017" x2="366.50000000000017" y1="159.023253" y2="163.02325300000004"/> + <line stroke="#888888" x1="366.50000000000017" x2="357.50000000000017" y1="163.02325300000004" y2="163.02325300000004"/> + <line stroke="#888888" x1="357.50000000000017" x2="357.50000000000017" y1="163.02325300000004" y2="159.023253"/> + <line stroke="#888888" x1="357.50000000000017" x2="366.50000000000017" y1="159.023253" y2="159.023253"/> + <line stroke="#888888" x1="368.0000000000001" x2="368.0000000000001" y1="122.52325300000003" y2="145.523253"/> + <line stroke="#888888" x1="368.0000000000001" x2="356.00000000000017" y1="145.523253" y2="145.523253"/> + <line stroke="#888888" x1="356.00000000000017" x2="356.00000000000017" y1="145.523253" y2="122.52325300000003"/> + <line stroke="#888888" x1="356.00000000000017" x2="368.0000000000001" y1="122.52325300000003" y2="122.52325300000003"/> + <line stroke="#888888" x1="368.0000000000001" x2="368.0000000000001" y1="117.02325300000003" y2="121.02325300000003"/> + <line stroke="#888888" x1="368.0000000000001" x2="356.00000000000017" y1="121.02325300000003" y2="121.02325300000003"/> + <line stroke="#888888" x1="356.00000000000017" x2="356.00000000000017" y1="121.02325300000003" y2="117.02325300000003"/> + <line stroke="#888888" x1="356.00000000000017" x2="368.0000000000001" y1="117.02325300000003" y2="117.02325300000003"/> + <line stroke="#888888" x1="367.6666666666668" x2="367.6666666666668" y1="94.52325300000001" y2="99.52325300000003"/> + <line stroke="#888888" x1="367.6666666666668" x2="356.3333333333335" y1="99.52325300000003" y2="99.52325300000003"/> + <line stroke="#888888" x1="356.3333333333335" x2="356.3333333333335" y1="99.52325300000003" y2="94.52325300000001"/> </svg> diff --git a/rocolib/output/BoatWithServoMount/graph-autofold-default.dxf b/rocolib/output/BoatWithServoMount/graph-autofold-default.dxf index 2e185b87a8eac5bdef8d28bc2c04336837e7a281..3cc215ca5f87f7d8a5501a0dd0abde90a1eb50d7 100644 --- a/rocolib/output/BoatWithServoMount/graph-autofold-default.dxf +++ b/rocolib/output/BoatWithServoMount/graph-autofold-default.dxf @@ -493,7 +493,7 @@ TABLE 2 LAYER 70 -13 +14 0 LAYER 2 @@ -547,7 +547,7 @@ CONTINUOUS 0 LAYER 2 -90 +0 70 0 62 @@ -557,7 +557,7 @@ CONTINUOUS 0 LAYER 2 -21.801409486351815 +-90 70 0 62 @@ -567,7 +567,7 @@ CONTINUOUS 0 LAYER 2 -80.43938360731835 +180 70 0 62 @@ -577,7 +577,17 @@ CONTINUOUS 0 LAYER 2 +90 + 70 0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +41.987212495816664 70 0 62 @@ -587,7 +597,7 @@ CONTINUOUS 0 LAYER 2 -180 +-174 70 0 62 @@ -607,7 +617,7 @@ CONTINUOUS 0 LAYER 2 --174 +57.019129652304315 70 0 62 @@ -617,7 +627,7 @@ CONTINUOUS 0 LAYER 2 -26.565051177077976 +54.462322208025626 70 0 62 @@ -1018,22 +1028,20 @@ MVIEW } 0 LINE - 6 -DOTTED 62 -1 +5 8 -90 +cut 10 -103.99999999999999 +415.00000000000017 20 -53.85164800000002 +166.023253 30 0.0 11 -103.99999999999999 +379.00000000000017 21 -207.85164800000004 +166.023253 31 0.0 0 @@ -1043,77 +1051,71 @@ DOTTED 62 1 8 -90 +-90 10 -53.99999999999998 +415.00000000000017 20 -53.85164800000002 +166.023253 30 0.0 11 -53.99999999999998 +415.00000000000017 21 -207.85164800000004 +190.02325300000004 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 -21.801409486351815 +cut 10 -78.99999999999999 +379.00000000000017 20 -53.85164800000002 +190.02325300000004 30 0.0 11 -53.99999999999998 +415.00000000000017 21 -53.85164800000002 +190.02325300000004 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 -21.801409486351815 +cut 10 -103.99999999999999 +415.00000000000017 20 -53.85164800000002 +190.02325300000004 30 0.0 11 -78.99999999999999 +460.00000000000017 21 -53.85164800000002 +190.02325300000004 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 -80.43938360731835 +cut 10 -78.99999999999999 +460.00000000000017 20 --7.134502766348305e-08 +166.023253 30 0.0 11 -53.99999999999998 +415.00000000000017 21 -53.85164800000002 +166.023253 31 0.0 0 @@ -1123,15 +1125,15 @@ LINE 8 cut 10 -45.51320686867432 +465.00000000000017 20 -33.971564700181574 +166.023253 30 0.0 11 -39.75660343433714 +460.00000000000017 21 -39.811503617791395 +166.023253 31 0.0 0 @@ -1141,73 +1143,71 @@ LINE 8 cut 10 -78.99999999999999 +465.00000000000017 20 --7.134502766348305e-08 +190.02325300000004 30 0.0 11 -45.51320686867432 +465.00000000000017 21 -33.971564700181574 +166.023253 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 -180 +cut 10 -53.99999999999998 +460.00000000000017 20 -53.85164800000002 +190.02325300000004 30 0.0 11 -39.75660343433714 +465.00000000000017 21 -39.811503617791395 +190.02325300000004 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 --180 +cut 10 -53.99999999999998 +345.0000000000001 20 -53.85164800000002 +190.02325300000004 30 0.0 11 -33.99999999999998 +379.00000000000017 21 -45.65144253540121 +190.02325300000004 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 -cut +180 10 -39.756603434337144 +345.0000000000001 20 -39.811503617791395 +166.023253 30 0.0 11 -33.99999999999998 +345.0000000000001 21 -45.65144253540121 +190.02325300000004 31 0.0 0 @@ -1217,37 +1217,35 @@ DOTTED 62 1 8 --174 +90 10 -33.999999999999986 +379.00000000000017 20 -53.85164800000002 +166.023253 30 0.0 11 -33.999999999999986 +345.0000000000001 21 -45.65144253540121 +166.023253 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 -26.565051177077976 +cut 10 -53.99999999999998 +345.0000000000001 20 -53.85164800000002 +166.023253 30 0.0 11 -33.999999999999986 +345.0000000000001 21 -53.85164800000002 +86.02325300000003 31 0.0 0 @@ -1257,15 +1255,15 @@ LINE 8 cut 10 -31.266598178467046 +345.0000000000001 20 -53.85164800000002 +240.02325300000004 30 0.0 11 -33.999999999999986 +345.0000000000001 21 -53.85164800000002 +190.02325300000004 31 0.0 0 @@ -1275,15 +1273,15 @@ LINE 8 cut 10 -31.266598178467046 +345.0000000000001 20 -45.65144253540121 +240.02325300000004 30 0.0 11 -31.266598178467046 +345.0000000000001 21 -53.85164800000002 +240.02325300000004 31 0.0 0 @@ -1293,15 +1291,15 @@ LINE 8 cut 10 -33.999999999999986 +345.0000000000001 20 -45.65144253540121 +86.02325300000003 30 0.0 11 -31.266598178467046 +345.0000000000001 21 -45.65144253540121 +86.02325300000003 31 0.0 0 @@ -1311,17 +1309,17 @@ DOTTED 62 1 8 -26.565051177077976 +90 10 -34.000000000000014 +275.00000000000017 20 -207.85164800000004 +240.02325300000004 30 0.0 11 -54.000000000000014 +275.00000000000017 21 -207.85164800000004 +86.02325300000003 31 0.0 0 @@ -1331,17 +1329,17 @@ DOTTED 62 1 8 --180 +41.987212495816664 10 -34.000000000000014 +275.00000000000017 20 -216.05185346459882 +240.02325300000004 30 0.0 11 -54.00000000000001 +345.0000000000001 21 -207.85164800000004 +240.02325300000004 31 0.0 0 @@ -1353,15 +1351,35 @@ DOTTED 8 -174 10 -34.000000000000014 +345.0000000000001 + 20 +240.02325300000004 + 30 +0.0 + 11 +345.0000000000001 + 21 +292.53762381816165 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-180 + 10 +275.00000000000017 20 -216.05185346459882 +240.02325300000004 30 0.0 11 -34.000000000000014 +345.0000000000001 21 -207.85164800000004 +292.53762381816165 31 0.0 0 @@ -1371,15 +1389,51 @@ LINE 8 cut 10 -34.00000000000002 +362.5047902727207 20 -216.05185346459882 +240.02325300000004 30 0.0 11 -39.7566034343372 +345.0000000000001 21 -221.89179238220865 +240.02325300000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +362.5047902727207 + 20 +292.53762381816165 + 30 +0.0 + 11 +362.5047902727207 + 21 +240.02325300000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +345.0000000000001 + 20 +292.53762381816165 + 30 +0.0 + 11 +362.5047902727207 + 21 +292.53762381816165 31 0.0 0 @@ -1391,35 +1445,33 @@ DOTTED 8 180 10 -39.7566034343372 +275.00000000000017 20 -221.89179238220865 +240.02325300000004 30 0.0 11 -54.000000000000014 +294.58234220233663 21 -207.85164800000004 +307.22840067389916 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 -80.43938360731835 +cut 10 -79.00000000000004 +294.58234220233663 20 -261.70329607134505 +307.22840067389916 30 0.0 11 -54.00000000000001 +345.0000000000001 21 -207.85164800000004 +292.53762381816165 31 0.0 0 @@ -1429,15 +1481,15 @@ LINE 8 cut 10 -45.51320686867436 +244.16468440467298 20 -227.73173129981848 +321.9191775296368 30 0.0 11 -79.00000000000004 +294.58234220233663 21 -261.70329607134505 +307.22840067389916 31 0.0 0 @@ -1447,15 +1499,55 @@ LINE 8 cut 10 -39.756603434337194 +230.00000000000014 + 20 +326.0465056704263 + 30 +0.0 + 11 +244.16468440467298 + 21 +321.9191775296368 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +57.019129652304315 + 10 +230.00000000000014 + 20 +326.0465056704263 + 30 +0.0 + 11 +275.00000000000017 + 21 +240.02325300000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +54.462322208025626 + 10 +230.0000000000001 20 -221.89179238220865 +240.02325300000007 30 0.0 11 -45.51320686867436 +275.00000000000017 21 -227.73173129981848 +240.02325300000004 31 0.0 0 @@ -1465,17 +1557,17 @@ DOTTED 62 1 8 -21.801409486351815 +54.462322208025626 10 -54.00000000000001 +185.0000000000001 20 -207.85164800000004 +240.0232530000001 30 0.0 11 -79.00000000000001 +230.0000000000001 21 -207.85164800000004 +240.02325300000007 31 0.0 0 @@ -1485,17 +1577,17 @@ DOTTED 62 1 8 -21.801409486351815 +57.019129652304315 10 -79.00000000000001 +230.00000000000014 20 -207.85164800000004 +326.0465056704263 30 0.0 11 -104.0 +185.00000000000009 21 -207.851648 +240.0232530000001 31 0.0 0 @@ -1505,17 +1597,17 @@ DOTTED 62 1 8 -80.43938360731835 +180 10 -79.00000000000003 +165.4176577976637 20 -261.7032960713451 +307.22840067389933 30 0.0 11 -104.0 +185.00000000000009 21 -207.851648 +240.02325300000007 31 0.0 0 @@ -1525,15 +1617,15 @@ LINE 8 cut 10 -112.48679313132567 +215.83531559532727 20 -227.73173129981845 +321.91917752963684 30 0.0 11 -118.24339656566283 +230.00000000000014 21 -221.89179238220865 +326.0465056704263 31 0.0 0 @@ -1543,35 +1635,33 @@ LINE 8 cut 10 -79.00000000000003 +165.4176577976637 20 -261.70329607134505 +307.22840067389933 30 0.0 11 -112.48679313132567 +215.83531559532727 21 -227.73173129981845 +321.91917752963684 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 -180 +cut 10 -104.00000000000001 +115.00000000000013 20 -207.85164800000004 +292.53762381816176 30 0.0 11 -118.24339656566283 +165.41765779766374 21 -221.89179238220865 +307.22840067389933 31 0.0 0 @@ -1583,33 +1673,35 @@ DOTTED 8 -180 10 -104.00000000000001 +115.00000000000013 20 -207.851648 +292.53762381816176 30 0.0 11 -124.0 +185.00000000000009 21 -216.0518534645988 +240.0232530000001 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 -cut +41.987212495816664 10 -118.24339656566283 +115.00000000000007 20 -221.8917923822086 +240.02325300000015 30 0.0 11 -124.0 +185.0000000000001 21 -216.0518534645988 +240.02325300000007 31 0.0 0 @@ -1621,15 +1713,15 @@ DOTTED 8 -174 10 -123.99999999999999 +115.00000000000013 20 -207.85164799999998 +292.53762381816176 30 0.0 11 -123.99999999999999 +115.00000000000007 21 -216.0518534645988 +240.02325300000015 31 0.0 0 @@ -1639,17 +1731,17 @@ DOTTED 62 1 8 -26.565051177077976 +90 10 -104.0 +185.00000000000009 20 -207.851648 +240.0232530000001 30 0.0 11 -123.99999999999999 +184.99999999999997 21 -207.85164799999998 +86.023253 31 0.0 0 @@ -1659,15 +1751,35 @@ LINE 8 cut 10 -126.73340182153292 +115.00000000000001 + 20 +190.02325300000012 + 30 +0.0 + 11 +115.00000000000007 + 21 +240.02325300000015 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +180 + 10 +115.00000000000001 20 -207.85164799999998 +190.02325300000012 30 0.0 11 -123.99999999999999 +115.00000000000001 21 -207.85164799999998 +166.0232530000001 31 0.0 0 @@ -1677,15 +1789,15 @@ LINE 8 cut 10 -126.73340182153294 +114.99999999999996 20 -216.0518534645988 +86.02325300000008 30 0.0 11 -126.73340182153292 +115.00000000000001 21 -207.85164799999998 +166.0232530000001 31 0.0 0 @@ -1695,55 +1807,51 @@ LINE 8 cut 10 -124.0 +114.99999999999996 20 -216.0518534645988 +86.02325300000008 30 0.0 11 -126.73340182153294 +114.99999999999996 21 -216.0518534645988 +86.02325300000008 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 -26.565051177077976 +cut 10 -123.9999999999999 +115.00000000000007 20 -53.851648000000004 +240.02325300000015 30 0.0 11 -103.9999999999999 +115.00000000000007 21 -53.85164800000002 +240.02325300000015 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 --180 +cut 10 -123.9999999999999 +81.00000000000001 20 -45.65144253540121 +190.02325300000015 30 0.0 11 -103.9999999999999 +115.00000000000001 21 -53.85164800000002 +190.02325300000012 31 0.0 0 @@ -1753,17 +1861,17 @@ DOTTED 62 1 8 --174 +90 10 -123.9999999999999 +115.00000000000001 20 -45.65144253540121 +166.0232530000001 30 0.0 11 -123.9999999999999 +81.00000000000001 21 -53.85164800000002 +166.02325300000015 31 0.0 0 @@ -1773,15 +1881,15 @@ LINE 8 cut 10 -123.9999999999999 +45.0 20 -45.651442535401195 +190.0232530000002 30 0.0 11 -118.24339656566272 +81.00000000000001 21 -39.81150361779138 +190.02325300000015 31 0.0 0 @@ -1791,37 +1899,35 @@ DOTTED 62 1 8 -180 +-90 10 -118.24339656566272 +45.0 20 -39.81150361779138 +190.0232530000002 30 0.0 11 -103.99999999999989 +45.0 21 -53.85164800000002 +166.02325300000018 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 -80.43938360731835 +cut 10 -78.99999999999987 +81.00000000000001 20 --7.134499924177363e-08 +166.02325300000015 30 0.0 11 -103.9999999999999 +45.0 21 -53.85164800000002 +166.02325300000018 31 0.0 0 @@ -1831,15 +1937,15 @@ LINE 8 cut 10 -112.48679313132554 +45.0 20 -33.971564700181574 +166.02325300000018 30 0.0 11 -78.99999999999987 +0.0 21 --7.134499924177363e-08 +166.02325300000024 31 0.0 0 @@ -1849,15 +1955,15 @@ LINE 8 cut 10 -118.24339656566274 +0.0 20 -39.811503617791395 +190.0232530000002 30 0.0 11 -112.48679313132554 +45.0 21 -33.971564700181574 +190.0232530000002 31 0.0 0 @@ -1867,15 +1973,15 @@ LINE 8 cut 10 -126.73340182153284 +0.0 20 -45.651442535401195 +166.02325300000024 30 0.0 11 -123.9999999999999 +0.0 21 -45.651442535401195 +190.0232530000002 31 0.0 0 @@ -1885,15 +1991,15 @@ LINE 8 cut 10 -126.73340182153284 +115.00000000000001 20 -53.851648000000004 +166.0232530000001 30 0.0 11 -126.73340182153284 +115.00000000000001 21 -45.651442535401195 +146.0232530000001 31 0.0 0 @@ -1903,15 +2009,35 @@ LINE 8 cut 10 -123.9999999999999 +81.00000000000001 20 -53.851648000000004 +146.02325300000015 30 0.0 11 -126.73340182153284 +81.00000000000001 21 -53.851648000000004 +166.02325300000015 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +115.00000000000001 + 20 +146.0232530000001 + 30 +0.0 + 11 +81.00000000000001 + 21 +146.02325300000015 31 0.0 0 @@ -1921,15 +2047,33 @@ LINE 8 cut 10 -123.99999999999993 +115.00000000000001 20 -103.85164800000001 +146.02325300000012 30 0.0 11 -123.9999999999999 +115.00000000000001 21 -53.85164800000002 +122.02325300000008 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +81.00000000000001 + 20 +122.02325300000012 + 30 +0.0 + 11 +81.00000000000001 + 21 +146.02325300000015 31 0.0 0 @@ -1939,17 +2083,17 @@ DOTTED 62 1 8 -180 +90 10 -123.99999999999993 +115.00000000000001 20 -103.85164800000001 +122.02325300000008 30 0.0 11 -123.99999999999996 +81.00000000000001 21 -127.85164800000001 +122.02325300000012 31 0.0 0 @@ -1959,15 +2103,15 @@ LINE 8 cut 10 -124.0 +115.00000000000001 20 -207.851648 +122.0232530000001 30 0.0 11 -123.99999999999996 +115.00000000000001 21 -127.85164800000001 +102.02325300000008 31 0.0 0 @@ -1977,15 +2121,35 @@ LINE 8 cut 10 -124.0 +81.00000000000001 20 -207.851648 +102.02325300000011 30 0.0 11 -124.0 +81.00000000000001 21 -207.851648 +122.02325300000014 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +81.00000000000001 + 20 +102.02325300000011 + 30 +0.0 + 11 +115.00000000000001 + 21 +102.02325300000008 31 0.0 0 @@ -1995,15 +2159,15 @@ LINE 8 cut 10 -123.9999999999999 +81.00000000000001 20 -53.85164800000002 +92.02325300000011 30 0.0 11 -123.9999999999999 +81.00000000000001 21 -53.85164800000002 +102.0232530000001 31 0.0 0 @@ -2013,15 +2177,15 @@ LINE 8 cut 10 -157.99999999999994 +115.00000000000001 20 -103.851648 +92.02325300000007 30 0.0 11 -123.99999999999993 +81.00000000000001 21 -103.85164800000001 +92.02325300000011 31 0.0 0 @@ -2031,15 +2195,15 @@ LINE 8 cut 10 -157.99999999999994 +115.00000000000001 20 -127.85164799999998 +102.02325300000008 30 0.0 11 -157.99999999999994 +115.00000000000001 21 -103.851648 +92.02325300000007 31 0.0 0 @@ -2049,17 +2213,75 @@ DOTTED 62 1 8 -90 +41.987212495816664 + 10 +184.99999999999997 + 20 +86.02325300000001 + 30 +0.0 + 11 +114.99999999999996 + 21 +86.02325300000008 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-174 + 10 +114.99999999999996 + 20 +86.02325300000008 + 30 +0.0 + 11 +114.9999999999999 + 21 +33.508882181838494 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-180 + 10 +184.99999999999997 + 20 +86.02325300000001 + 30 +0.0 + 11 +114.9999999999999 + 21 +33.508882181838494 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut 10 -123.99999999999996 +97.49520972727943 20 -127.851648 +86.0232530000001 30 0.0 11 -157.99999999999994 +114.99999999999996 21 -127.85164799999998 +86.02325300000008 31 0.0 0 @@ -2069,15 +2291,15 @@ LINE 8 cut 10 -123.99999999999994 +97.49520972727937 20 -127.851648 +33.50888218183852 30 0.0 11 -123.99999999999996 +97.49520972727943 21 -147.85164799999998 +86.0232530000001 31 0.0 0 @@ -2087,15 +2309,15 @@ LINE 8 cut 10 -157.99999999999997 +114.9999999999999 20 -147.85164799999995 +33.508882181838494 30 0.0 11 -157.99999999999994 +97.49520972727937 21 -127.85164799999998 +33.50888218183852 31 0.0 0 @@ -2105,17 +2327,17 @@ DOTTED 62 1 8 -90 +180 10 -123.99999999999996 +185.00000000000003 20 -147.85164799999998 +86.02325300000004 30 0.0 11 -157.99999999999997 +165.4176577976635 21 -147.85164799999995 +18.818105326100866 31 0.0 0 @@ -2125,15 +2347,15 @@ LINE 8 cut 10 -123.99999999999996 +165.4176577976635 20 -147.85164799999998 +18.818105326100866 30 0.0 11 -123.99999999999997 +114.9999999999999 21 -171.851648 +33.508882181838494 31 0.0 0 @@ -2143,15 +2365,33 @@ LINE 8 cut 10 -157.99999999999997 +215.83531559532705 20 -171.85164799999998 +4.127328470363211 30 0.0 11 -157.99999999999997 +165.41765779766348 21 -147.85164799999995 +18.818105326100834 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +229.99999999999991 + 20 +3.295736235031655e-07 + 30 +0.0 + 11 +215.83531559532705 + 21 +4.127328470363211 31 0.0 0 @@ -2161,53 +2401,57 @@ DOTTED 62 1 8 -90 +57.019129652304315 10 -123.99999999999997 +229.99999999999991 20 -171.851648 +3.295736235031655e-07 30 0.0 11 -157.99999999999997 +185.0 21 -171.85164799999998 +86.02325300000003 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 -cut +54.462322208025626 10 -123.99999999999997 +230.00000000000003 20 -171.851648 +86.02325299999997 30 0.0 11 -123.99999999999999 +185.0 21 -191.85164799999998 +86.02325300000003 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 -cut +54.462322208025626 10 -157.99999999999997 +275.00000000000006 20 -191.85164799999998 +86.02325299999988 30 0.0 11 -157.99999999999997 +229.99999999999997 21 -171.85164799999998 +86.02325299999995 31 0.0 0 @@ -2217,35 +2461,37 @@ DOTTED 62 1 8 -90 +57.019129652304315 10 -157.99999999999997 +229.9999999999999 20 -191.85164799999998 +3.295736235031655e-07 30 0.0 11 -123.99999999999999 +275.00000000000006 21 -191.85164799999998 +86.02325299999988 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 -cut +180 10 -158.0 +294.5823422023364 20 -201.85164799999998 +18.81810532610061 30 0.0 11 -157.99999999999997 +275.00000000000006 21 -191.85164799999998 +86.02325299999985 31 0.0 0 @@ -2255,15 +2501,15 @@ LINE 8 cut 10 -123.99999999999999 +244.16468440467273 20 -201.85164799999998 +4.127328470363125 30 0.0 11 -158.0 +229.9999999999999 21 -201.85164799999998 +3.2957359508145606e-07 31 0.0 0 @@ -2273,15 +2519,15 @@ LINE 8 cut 10 -123.99999999999999 +294.5823422023364 20 -191.851648 +18.81810532610061 30 0.0 11 -123.99999999999999 +244.16468440467273 21 -201.85164799999998 +4.127328470363125 31 0.0 0 @@ -2291,15 +2537,75 @@ LINE 8 cut 10 -31.26659817846708 +344.99999999999994 20 -216.05185346459882 +33.50888218183812 30 0.0 11 -34.000000000000014 +294.58234220233635 21 -216.05185346459882 +18.818105326100635 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-180 + 10 +344.99999999999994 + 20 +33.50888218183812 + 30 +0.0 + 11 +275.00000000000006 + 21 +86.02325299999987 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +41.987212495816664 + 10 +345.00000000000006 + 20 +86.02325299999974 + 30 +0.0 + 11 +275.00000000000006 + 21 +86.02325299999988 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-174 + 10 +344.99999999999994 + 20 +33.50888218183812 + 30 +0.0 + 11 +345.00000000000006 + 21 +86.02325299999974 31 0.0 0 @@ -2309,15 +2615,15 @@ LINE 8 cut 10 -31.26659817846708 +362.50479027272047 20 -207.85164800000004 +33.508882181838096 30 0.0 11 -31.26659817846708 +344.99999999999994 21 -216.05185346459882 +33.50888218183812 31 0.0 0 @@ -2327,15 +2633,15 @@ LINE 8 cut 10 -34.000000000000014 +362.5047902727206 20 -207.85164800000004 +86.02325299999971 30 0.0 11 -31.26659817846708 +362.50479027272047 21 -207.85164800000004 +33.508882181838096 31 0.0 0 @@ -2345,35 +2651,33 @@ LINE 8 cut 10 -34.0 +345.00000000000006 20 -127.85164800000003 +86.02325299999974 30 0.0 11 -34.000000000000014 +362.5047902727206 21 -207.85164800000004 +86.02325299999971 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 -180 +cut 10 -34.0 +97.4952097272796 20 -127.85164800000003 +292.53762381816176 30 0.0 11 -33.99999999999999 +115.00000000000013 21 -103.85164800000003 +292.53762381816176 31 0.0 0 @@ -2383,15 +2687,15 @@ LINE 8 cut 10 -33.999999999999986 +97.49520972727954 20 -53.85164800000002 +240.02325300000018 30 0.0 11 -33.99999999999999 +97.4952097272796 21 -103.85164800000003 +292.53762381816176 31 0.0 0 @@ -2401,15 +2705,15 @@ LINE 8 cut 10 -33.999999999999986 +115.00000000000007 20 -53.85164800000002 +240.02325300000015 30 0.0 11 -33.999999999999986 +97.49520972727954 21 -53.85164800000002 +240.02325300000018 31 0.0 0 @@ -2419,15 +2723,15 @@ LINE 8 cut 10 -34.000000000000014 +379.00000000000017 20 -207.85164800000004 +166.023253 30 0.0 11 -34.000000000000014 +379.00000000000017 21 -207.85164800000004 +146.023253 31 0.0 0 @@ -2437,15 +2741,35 @@ LINE 8 cut 10 -0.0 +345.0000000000001 20 -103.85164800000003 +146.023253 30 0.0 11 +345.0000000000001 + 21 +166.023253 + 31 0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +379.00000000000017 + 20 +146.023253 + 30 +0.0 + 11 +345.0000000000001 21 -127.85164800000003 +146.023253 31 0.0 0 @@ -2455,15 +2779,33 @@ LINE 8 cut 10 -33.99999999999999 +379.00000000000017 20 -103.85164800000003 +146.023253 30 0.0 11 +379.00000000000017 + 21 +122.02325300000003 + 31 0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +345.0000000000001 + 20 +122.02325300000003 + 30 +0.0 + 11 +345.0000000000001 21 -103.85164800000003 +146.023253 31 0.0 0 @@ -2475,15 +2817,15 @@ DOTTED 8 90 10 -0.0 +379.00000000000017 20 -127.85164800000003 +122.02325300000003 30 0.0 11 -34.0 +345.0000000000001 21 -127.85164800000003 +122.02325300000003 31 0.0 0 @@ -2493,15 +2835,15 @@ LINE 8 cut 10 -0.0 +379.00000000000017 20 -127.85164800000003 +122.02325300000003 30 0.0 11 -0.0 +379.00000000000017 21 -147.851648 +102.02325300000003 31 0.0 0 @@ -2511,15 +2853,15 @@ LINE 8 cut 10 -34.0 +345.0000000000001 20 -147.851648 +102.02325300000003 30 0.0 11 -34.0 +345.0000000000001 21 -127.85164800000003 +122.02325300000003 31 0.0 0 @@ -2531,15 +2873,51 @@ DOTTED 8 90 10 +345.0000000000001 + 20 +102.02325300000003 + 30 +0.0 + 11 +379.00000000000017 + 21 +102.02325300000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +345.0000000000001 + 20 +92.02325300000001 + 30 +0.0 + 11 +345.0000000000001 + 21 +102.02325300000003 + 31 0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +379.00000000000017 20 -147.851648 +92.02325300000001 30 0.0 11 -34.0 +345.0000000000001 21 -147.851648 +92.02325300000001 31 0.0 0 @@ -2549,15 +2927,33 @@ LINE 8 cut 10 +379.00000000000017 + 20 +102.02325300000003 + 30 0.0 + 11 +379.00000000000017 + 21 +92.02325300000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +463.7500000000001 20 -147.851648 +182.023253 30 0.0 11 -1.4210854715202007e-14 +463.7500000000001 21 -171.85164800000004 +184.523253 31 0.0 0 @@ -2567,35 +2963,33 @@ LINE 8 cut 10 -34.00000000000001 +463.7500000000001 20 -171.85164800000004 +184.523253 30 0.0 11 -34.0 +461.25000000000017 21 -147.851648 +182.023253 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 -90 +cut 10 -1.4210854715202007e-14 +461.25000000000017 20 -171.85164800000004 +182.023253 30 0.0 11 -34.00000000000001 +461.25000000000017 21 -171.85164800000004 +174.02325300000004 31 0.0 0 @@ -2605,15 +2999,15 @@ LINE 8 cut 10 -1.4210854715202007e-14 +461.25000000000017 20 -171.85164800000004 +174.02325300000004 30 0.0 11 -2.8421709430404014e-14 +463.7500000000001 21 -191.85164800000004 +171.52325300000004 31 0.0 0 @@ -2623,35 +3017,33 @@ LINE 8 cut 10 -34.000000000000014 +463.7500000000001 20 -191.85164800000004 +171.52325300000004 30 0.0 11 -34.00000000000001 +463.7500000000001 21 -171.85164800000004 +174.02325300000004 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 -90 +cut 10 -34.000000000000014 +356.0833333333335 20 -191.85164800000004 +182.273253 30 0.0 11 -2.8421709430404014e-14 +367.9166666666668 21 -191.85164800000004 +182.273253 31 0.0 0 @@ -2661,15 +3053,15 @@ LINE 8 cut 10 -34.00000000000002 +367.9166666666668 20 -201.851648 +182.273253 30 0.0 11 -34.00000000000002 +367.9166666666668 21 -191.85164800000004 +182.77325300000004 31 0.0 0 @@ -2679,15 +3071,15 @@ LINE 8 cut 10 -2.8421709430404014e-14 +367.9166666666668 20 -201.851648 +182.77325300000004 30 0.0 11 -34.00000000000002 +356.0833333333335 21 -201.851648 +182.77325300000004 31 0.0 0 @@ -2697,15 +3089,15 @@ LINE 8 cut 10 -2.8421709430404014e-14 +356.0833333333335 20 -191.85164800000004 +182.77325300000004 30 0.0 11 -2.8421709430404014e-14 +356.0833333333335 21 -201.851648 +182.273253 31 0.0 0 @@ -2715,15 +3107,15 @@ LINE 8 cut 10 -45.407868048479436 +358.1285927045405 20 -37.354821212342635 +275.03283354544106 30 0.0 11 -43.1379966274785 +349.3761975681803 21 -39.65755243235414 +275.03283354544106 31 0.0 0 @@ -2733,15 +3125,15 @@ LINE 8 cut 10 -43.1379966274785 +349.3761975681803 20 -39.65755243235414 +275.03283354544106 30 0.0 11 -42.781911713336925 +349.3761975681803 21 -39.30654882279893 +257.52804327272054 31 0.0 0 @@ -2751,15 +3143,15 @@ LINE 8 cut 10 -42.781911713336925 +349.3761975681803 20 -39.30654882279893 +257.52804327272054 30 0.0 11 -45.05178313433787 +358.1285927045405 21 -37.00381760278743 +257.52804327272054 31 0.0 0 @@ -2769,15 +3161,15 @@ LINE 8 cut 10 -45.05178313433787 +256.9879208023066 20 -37.00381760278743 +304.247756013529 30 0.0 11 -45.407868048479436 +274.2738435039604 21 -37.354821212342635 +299.210956522076 31 0.0 0 @@ -2787,15 +3179,15 @@ LINE 8 cut 10 -31.94994863385028 +274.2738435039604 20 -48.384844356934146 +299.210956522076 30 0.0 11 -33.31664954461675 +274.41371737683426 21 -48.384844356934146 +299.69099329117523 31 0.0 0 @@ -2805,15 +3197,15 @@ LINE 8 cut 10 -33.31664954461675 +274.41371737683426 20 -48.384844356934146 +299.69099329117523 30 0.0 11 -33.31664954461675 +257.1277946751804 21 -51.118246178467075 +304.7277927826283 31 0.0 0 @@ -2823,15 +3215,15 @@ LINE 8 cut 10 -33.31664954461675 +257.1277946751804 20 -51.118246178467075 +304.7277927826283 30 0.0 11 -31.94994863385028 +256.9879208023066 21 -51.118246178467075 +304.247756013529 31 0.0 0 @@ -2841,15 +3233,15 @@ LINE 8 cut 10 -43.137996627478536 +185.72615649603986 20 -222.04574356764593 +299.210956522076 30 0.0 11 -45.407868048479486 +203.0120791976937 21 -224.3484747876574 +304.247756013529 31 0.0 0 @@ -2859,15 +3251,15 @@ LINE 8 cut 10 -45.407868048479486 +203.0120791976937 20 -224.3484747876574 +304.247756013529 30 0.0 11 -45.05178313433792 +202.87220532481987 21 -224.69947839721263 +304.72779278262834 31 0.0 0 @@ -2877,15 +3269,15 @@ LINE 8 cut 10 -45.05178313433792 +202.87220532481987 20 -224.69947839721263 +304.72779278262834 30 0.0 11 -42.781911713336974 +185.58628262316603 21 -222.39674717720115 +299.69099329117523 31 0.0 0 @@ -2895,15 +3287,15 @@ LINE 8 cut 10 -42.781911713336974 +185.58628262316603 20 -222.39674717720115 +299.69099329117523 30 0.0 11 -43.137996627478536 +185.72615649603986 21 -222.04574356764593 +299.210956522076 31 0.0 0 @@ -2913,15 +3305,15 @@ LINE 8 cut 10 -112.59213195152056 +92.08333333333333 20 -224.3484747876574 +182.27325300000015 30 0.0 11 -114.86200337252149 +103.9166666666667 21 -222.04574356764587 +182.27325300000015 31 0.0 0 @@ -2931,15 +3323,15 @@ LINE 8 cut 10 -114.86200337252149 +103.9166666666667 20 -222.04574356764587 +182.27325300000015 30 0.0 11 -115.21808828666306 +103.9166666666667 21 -222.3967471772011 +182.77325300000015 31 0.0 0 @@ -2949,15 +3341,15 @@ LINE 8 cut 10 -115.21808828666306 +103.9166666666667 20 -222.3967471772011 +182.77325300000015 30 0.0 11 -112.94821686566212 +92.08333333333333 21 -224.6994783972126 +182.77325300000015 31 0.0 0 @@ -2967,15 +3359,15 @@ LINE 8 cut 10 -112.94821686566212 +92.08333333333333 20 -224.6994783972126 +182.77325300000015 30 0.0 11 -112.59213195152056 +92.08333333333333 21 -224.3484747876574 +182.27325300000015 31 0.0 0 @@ -2985,15 +3377,15 @@ LINE 8 cut 10 -126.0500513661497 +4.000000000000001 20 -213.31845164306586 +173.77325300000024 30 0.0 11 -124.68335045538323 +4.000000000000001 21 -213.31845164306586 +182.27325300000024 31 0.0 0 @@ -3003,15 +3395,15 @@ LINE 8 cut 10 -124.68335045538323 +4.000000000000001 20 -213.31845164306586 +182.27325300000024 30 0.0 11 -124.68335045538323 +3.5000000000000004 21 -210.58504982153292 +182.27325300000024 31 0.0 0 @@ -3021,15 +3413,15 @@ LINE 8 cut 10 -124.68335045538323 +3.5000000000000004 20 -210.58504982153292 +182.27325300000024 30 0.0 11 -126.0500513661497 +3.5000000000000004 21 -210.58504982153292 +173.77325300000024 31 0.0 0 @@ -3039,15 +3431,15 @@ LINE 8 cut 10 -114.86200337252136 +3.5000000000000004 20 -39.65755243235414 +173.77325300000024 30 0.0 11 -112.59213195152043 +4.000000000000001 21 -37.354821212342635 +173.77325300000024 31 0.0 0 @@ -3057,15 +3449,15 @@ LINE 8 cut 10 -112.59213195152043 +104.00000000000001 20 -37.354821212342635 +147.02325300000012 30 0.0 11 -112.948216865662 +104.00000000000001 21 -37.003817602787414 +151.02325300000012 31 0.0 0 @@ -3075,15 +3467,15 @@ LINE 8 cut 10 -112.948216865662 +104.00000000000001 20 -37.003817602787414 +151.02325300000012 30 0.0 11 -115.21808828666295 +92.00000000000001 21 -39.306548822798916 +151.02325300000015 31 0.0 0 @@ -3093,15 +3485,15 @@ LINE 8 cut 10 -115.21808828666295 +92.00000000000001 20 -39.306548822798916 +151.02325300000015 30 0.0 11 -114.86200337252136 +92.00000000000001 21 -39.65755243235414 +147.02325300000012 31 0.0 0 @@ -3111,15 +3503,15 @@ LINE 8 cut 10 -126.05005136614962 +92.00000000000001 20 -51.11824617846707 +147.02325300000012 30 0.0 11 -124.68335045538315 +104.00000000000001 21 -51.11824617846707 +147.02325300000012 31 0.0 0 @@ -3129,15 +3521,15 @@ LINE 8 cut 10 -124.68335045538315 +102.50000000000001 20 -51.11824617846707 +159.0232530000001 30 0.0 11 -124.68335045538315 +102.50000000000001 21 -48.38484435693413 +163.02325300000012 31 0.0 0 @@ -3147,15 +3539,15 @@ LINE 8 cut 10 -124.68335045538315 +102.50000000000001 20 -48.38484435693413 +163.02325300000012 30 0.0 11 -126.05005136614962 +93.50000000000001 21 -48.38484435693413 +163.02325300000012 31 0.0 0 @@ -3165,15 +3557,15 @@ LINE 8 cut 10 -146.9166666666666 +93.50000000000001 20 -111.601648 +163.02325300000012 30 0.0 11 -135.0833333333333 +93.50000000000001 21 -111.601648 +159.0232530000001 31 0.0 0 @@ -3183,15 +3575,15 @@ LINE 8 cut 10 -135.0833333333333 +93.50000000000001 20 -111.601648 +159.0232530000001 30 0.0 11 -135.0833333333333 +102.50000000000001 21 -111.10164799999998 +159.0232530000001 31 0.0 0 @@ -3201,15 +3593,15 @@ LINE 8 cut 10 -135.0833333333333 +104.00000000000001 20 -111.10164799999998 +122.52325300000011 30 0.0 11 -146.9166666666666 +104.00000000000001 21 -111.10164799999998 +145.5232530000001 31 0.0 0 @@ -3219,15 +3611,15 @@ LINE 8 cut 10 -146.9166666666666 +104.00000000000001 20 -111.10164799999998 +145.5232530000001 30 0.0 11 -146.9166666666666 +92.00000000000001 21 -111.601648 +145.52325300000012 31 0.0 0 @@ -3237,15 +3629,15 @@ LINE 8 cut 10 -134.99999999999997 +92.00000000000001 20 -146.851648 +145.52325300000012 30 0.0 11 -134.99999999999997 +92.00000000000001 21 -142.85164799999998 +122.52325300000011 31 0.0 0 @@ -3255,15 +3647,15 @@ LINE 8 cut 10 -134.99999999999997 +92.00000000000001 20 -142.85164799999998 +122.52325300000011 30 0.0 11 -146.99999999999997 +104.00000000000001 21 -142.85164799999998 +122.52325300000011 31 0.0 0 @@ -3273,15 +3665,15 @@ LINE 8 cut 10 -146.99999999999997 +104.00000000000001 20 -142.85164799999998 +117.02325300000011 30 0.0 11 -146.99999999999997 +104.00000000000001 21 -146.851648 +121.02325300000011 31 0.0 0 @@ -3291,15 +3683,15 @@ LINE 8 cut 10 -146.99999999999997 +104.00000000000001 20 -146.851648 +121.02325300000011 30 0.0 11 -134.99999999999997 +92.00000000000001 21 -146.851648 +121.02325300000011 31 0.0 0 @@ -3309,15 +3701,15 @@ LINE 8 cut 10 -136.49999999999994 +92.00000000000001 20 -134.851648 +121.02325300000011 30 0.0 11 -136.49999999999991 +92.00000000000001 21 -130.85164799999998 +117.02325300000011 31 0.0 0 @@ -3327,15 +3719,15 @@ LINE 8 cut 10 -136.49999999999991 +92.00000000000001 20 -130.85164799999998 +117.02325300000011 30 0.0 11 -145.49999999999994 +104.00000000000001 21 -130.85164799999998 +117.02325300000011 31 0.0 0 @@ -3345,15 +3737,15 @@ LINE 8 cut 10 -145.49999999999994 +103.6666666666667 20 -130.85164799999998 +94.5232530000001 30 0.0 11 -145.49999999999994 +103.6666666666667 21 -134.851648 +99.5232530000001 31 0.0 0 @@ -3363,15 +3755,15 @@ LINE 8 cut 10 -145.49999999999994 +103.6666666666667 20 -134.851648 +99.5232530000001 30 0.0 11 -136.49999999999994 +92.33333333333331 21 -134.851648 +99.52325300000011 31 0.0 0 @@ -3381,15 +3773,15 @@ LINE 8 cut 10 -134.99999999999997 +92.33333333333331 20 -171.351648 +99.52325300000011 30 0.0 11 -134.99999999999997 +92.33333333333331 21 -148.351648 +94.52325300000011 31 0.0 0 @@ -3399,15 +3791,15 @@ LINE 8 cut 10 -134.99999999999997 +101.87140729545952 20 -148.351648 +51.01367245455902 30 0.0 11 -146.99999999999997 +110.62380243181975 21 -148.35164799999998 +51.01367245455902 31 0.0 0 @@ -3417,15 +3809,15 @@ LINE 8 cut 10 -146.99999999999997 +110.62380243181975 20 -148.35164799999998 +51.01367245455902 30 0.0 11 -146.99999999999997 +110.6238024318198 21 -171.35164799999998 +68.51846272727956 31 0.0 0 @@ -3435,15 +3827,15 @@ LINE 8 cut 10 -146.99999999999997 +110.6238024318198 20 -171.35164799999998 +68.51846272727956 30 0.0 11 -134.99999999999997 +101.87140729545958 21 -171.351648 +68.51846272727956 31 0.0 0 @@ -3453,15 +3845,15 @@ LINE 8 cut 10 -134.99999999999997 +203.01207919769348 20 -176.85164799999998 +21.798749986471023 30 0.0 11 -134.99999999999997 +185.7261564960397 21 -172.85164799999995 +26.83554947792408 31 0.0 0 @@ -3471,15 +3863,15 @@ LINE 8 cut 10 -134.99999999999997 +185.7261564960397 20 -172.85164799999995 +26.83554947792408 30 0.0 11 -146.99999999999997 +185.58628262316586 21 -172.85164799999995 +26.355512708824794 31 0.0 0 @@ -3489,15 +3881,15 @@ LINE 8 cut 10 -146.99999999999997 +185.58628262316586 20 -172.85164799999995 +26.355512708824794 30 0.0 11 -146.99999999999997 +202.87220532481965 21 -176.85164799999998 +21.318713217371737 31 0.0 0 @@ -3507,15 +3899,15 @@ LINE 8 cut 10 -146.99999999999997 +202.87220532481965 20 -176.85164799999998 +21.318713217371737 30 0.0 11 -134.99999999999997 +203.01207919769348 21 -176.85164799999998 +21.798749986471023 31 0.0 0 @@ -3525,15 +3917,15 @@ LINE 8 cut 10 -135.33333333333334 +274.27384350396017 20 -199.35164799999998 +26.83554947792391 30 0.0 11 -135.33333333333334 +256.9879208023064 21 -194.35164799999998 +21.79874998647091 31 0.0 0 @@ -3543,15 +3935,15 @@ LINE 8 cut 10 -135.33333333333334 +256.9879208023064 20 -194.35164799999998 +21.79874998647091 30 0.0 11 -146.66666666666666 +257.1277946751802 21 -194.35164799999998 +21.318713217371627 31 0.0 0 @@ -3561,15 +3953,15 @@ LINE 8 cut 10 -146.66666666666666 +257.1277946751802 20 -194.35164799999998 +21.318713217371627 30 0.0 11 -146.66666666666666 +274.413717376834 21 -199.35164799999998 +26.355512708824623 31 0.0 0 @@ -3579,15 +3971,15 @@ LINE 8 cut 10 -31.949948633850315 +274.413717376834 20 -210.58504982153298 +26.355512708824623 30 0.0 11 -33.31664954461679 +274.27384350396017 21 -210.58504982153298 +26.83554947792391 31 0.0 0 @@ -3597,15 +3989,15 @@ LINE 8 cut 10 -33.31664954461679 +358.1285927045404 20 -210.58504982153298 +68.51846272727916 30 0.0 11 -33.31664954461679 +349.37619756818015 21 -213.3184516430659 +68.51846272727917 31 0.0 0 @@ -3615,15 +4007,15 @@ LINE 8 cut 10 -33.31664954461679 +349.37619756818015 20 -213.3184516430659 +68.51846272727917 30 0.0 11 -31.949948633850315 +349.37619756818015 21 -213.3184516430659 +51.013672454558645 31 0.0 0 @@ -3633,15 +4025,15 @@ LINE 8 cut 10 -22.91666666666666 +349.37619756818015 20 -111.60164800000003 +51.013672454558645 30 0.0 11 -11.08333333333333 +358.1285927045404 21 -111.60164800000003 +51.01367245455863 31 0.0 0 @@ -3651,15 +4043,15 @@ LINE 8 cut 10 -11.08333333333333 +101.87140729545968 20 -111.60164800000003 +257.52804327272065 30 0.0 11 -11.08333333333333 +110.62380243181993 21 -111.10164800000003 +257.52804327272065 31 0.0 0 @@ -3669,15 +4061,15 @@ LINE 8 cut 10 -11.08333333333333 +110.62380243181993 20 -111.10164800000003 +257.52804327272065 30 0.0 11 -22.91666666666666 +110.62380243181998 21 -111.10164800000003 +275.0328335454412 31 0.0 0 @@ -3687,15 +4079,15 @@ LINE 8 cut 10 -22.91666666666666 +110.62380243181998 20 -111.10164800000003 +275.0328335454412 30 0.0 11 -22.91666666666666 +101.87140729545975 21 -111.60164800000003 +275.03283354544124 31 0.0 0 @@ -3705,15 +4097,15 @@ LINE 8 cut 10 -11.000000000000002 +368.0000000000001 20 -146.85164800000004 +147.02325300000004 30 0.0 11 -11.000000000000002 +368.0000000000001 21 -142.851648 +151.02325300000004 31 0.0 0 @@ -3723,15 +4115,15 @@ LINE 8 cut 10 -11.000000000000002 +368.0000000000001 20 -142.851648 +151.02325300000004 30 0.0 11 -23.000000000000004 +356.00000000000017 21 -142.851648 +151.02325300000004 31 0.0 0 @@ -3741,15 +4133,15 @@ LINE 8 cut 10 -23.000000000000004 +356.00000000000017 20 -142.851648 +151.02325300000004 30 0.0 11 -23.000000000000004 +356.00000000000017 21 -146.85164800000004 +147.02325300000004 31 0.0 0 @@ -3759,15 +4151,15 @@ LINE 8 cut 10 -23.000000000000004 +356.00000000000017 20 -146.85164800000004 +147.02325300000004 30 0.0 11 -11.000000000000002 +368.0000000000001 21 -146.85164800000004 +147.02325300000004 31 0.0 0 @@ -3777,15 +4169,15 @@ LINE 8 cut 10 -12.5 +366.50000000000017 20 -134.85164800000004 +159.023253 30 0.0 11 -12.5 +366.50000000000017 21 -130.851648 +163.02325300000004 31 0.0 0 @@ -3795,15 +4187,15 @@ LINE 8 cut 10 -12.5 +366.50000000000017 20 -130.851648 +163.02325300000004 30 0.0 11 -21.500000000000004 +357.50000000000017 21 -130.851648 +163.02325300000004 31 0.0 0 @@ -3813,15 +4205,15 @@ LINE 8 cut 10 -21.500000000000004 +357.50000000000017 20 -130.851648 +163.02325300000004 30 0.0 11 -21.500000000000004 +357.50000000000017 21 -134.85164800000004 +159.023253 31 0.0 0 @@ -3831,15 +4223,15 @@ LINE 8 cut 10 -21.500000000000004 +357.50000000000017 20 -134.85164800000004 +159.023253 30 0.0 11 -12.5 +366.50000000000017 21 -134.85164800000004 +159.023253 31 0.0 0 @@ -3849,15 +4241,15 @@ LINE 8 cut 10 -11.000000000000016 +368.0000000000001 20 -171.35164800000004 +122.52325300000003 30 0.0 11 -11.000000000000016 +368.0000000000001 21 -148.35164800000004 +145.523253 31 0.0 0 @@ -3867,15 +4259,15 @@ LINE 8 cut 10 -11.000000000000016 +368.0000000000001 20 -148.35164800000004 +145.523253 30 0.0 11 -23.000000000000007 +356.00000000000017 21 -148.35164800000004 +145.523253 31 0.0 0 @@ -3885,15 +4277,15 @@ LINE 8 cut 10 -23.000000000000007 +356.00000000000017 20 -148.35164800000004 +145.523253 30 0.0 11 -23.000000000000007 +356.00000000000017 21 -171.35164800000004 +122.52325300000003 31 0.0 0 @@ -3903,15 +4295,15 @@ LINE 8 cut 10 -23.000000000000007 +356.00000000000017 20 -171.35164800000004 +122.52325300000003 30 0.0 11 -11.000000000000016 +368.0000000000001 21 -171.35164800000004 +122.52325300000003 31 0.0 0 @@ -3921,15 +4313,15 @@ LINE 8 cut 10 -11.000000000000016 +368.0000000000001 20 -176.851648 +117.02325300000003 30 0.0 11 -11.000000000000016 +368.0000000000001 21 -172.85164800000004 +121.02325300000003 31 0.0 0 @@ -3939,15 +4331,15 @@ LINE 8 cut 10 -11.000000000000016 +368.0000000000001 20 -172.85164800000004 +121.02325300000003 30 0.0 11 -23.000000000000014 +356.00000000000017 21 -172.85164800000004 +121.02325300000003 31 0.0 0 @@ -3957,15 +4349,15 @@ LINE 8 cut 10 -23.000000000000014 +356.00000000000017 20 -172.85164800000004 +121.02325300000003 30 0.0 11 -23.000000000000014 +356.00000000000017 21 -176.851648 +117.02325300000003 31 0.0 0 @@ -3975,15 +4367,15 @@ LINE 8 cut 10 -23.000000000000014 +356.00000000000017 20 -176.851648 +117.02325300000003 30 0.0 11 -11.000000000000016 +368.0000000000001 21 -176.851648 +117.02325300000003 31 0.0 0 @@ -3993,15 +4385,15 @@ LINE 8 cut 10 -11.333333333333359 +367.6666666666668 20 -199.35164800000004 +94.52325300000001 30 0.0 11 -11.333333333333359 +367.6666666666668 21 -194.35164800000004 +99.52325300000003 31 0.0 0 @@ -4011,15 +4403,15 @@ LINE 8 cut 10 -11.333333333333359 +367.6666666666668 20 -194.35164800000004 +99.52325300000003 30 0.0 11 -22.666666666666693 +356.3333333333335 21 -194.35164800000004 +99.52325300000003 31 0.0 0 @@ -4029,15 +4421,15 @@ LINE 8 cut 10 -22.666666666666693 +356.3333333333335 20 -194.35164800000004 +99.52325300000003 30 0.0 11 -22.666666666666693 +356.3333333333335 21 -199.35164800000004 +94.52325300000001 31 0.0 0 diff --git a/rocolib/output/BoatWithServoMount/graph-autofold-graph.dxf b/rocolib/output/BoatWithServoMount/graph-autofold-graph.dxf index d4b9fba13c5b56087145c92b0d00eead9a3adc7a..4b903287b5d6b2118993c04ee4f76fba5520dfe6 100644 --- a/rocolib/output/BoatWithServoMount/graph-autofold-graph.dxf +++ b/rocolib/output/BoatWithServoMount/graph-autofold-graph.dxf @@ -938,22 +938,20 @@ MVIEW } 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -103.99999999999999 +415.00000000000017 20 -53.85164800000002 +166.023253 30 0.0 11 -103.99999999999999 +379.00000000000017 21 -207.85164800000004 +166.023253 31 0.0 0 @@ -965,35 +963,141 @@ DOTTED 8 0 10 -53.99999999999998 +415.00000000000017 20 -53.85164800000002 +166.023253 30 0.0 11 -53.99999999999998 +415.00000000000017 21 -207.85164800000004 +190.02325300000004 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 + 8 +0 + 10 +379.00000000000017 + 20 +190.02325300000004 + 30 +0.0 + 11 +415.00000000000017 + 21 +190.02325300000004 + 31 +0.0 + 0 +LINE + 62 +5 8 0 10 -78.99999999999999 +415.00000000000017 20 -53.85164800000002 +190.02325300000004 30 0.0 11 -53.99999999999998 +460.00000000000017 21 -53.85164800000002 +190.02325300000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +460.00000000000017 + 20 +166.023253 + 30 +0.0 + 11 +415.00000000000017 + 21 +166.023253 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +465.00000000000017 + 20 +166.023253 + 30 +0.0 + 11 +460.00000000000017 + 21 +166.023253 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +465.00000000000017 + 20 +190.02325300000004 + 30 +0.0 + 11 +465.00000000000017 + 21 +166.023253 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +460.00000000000017 + 20 +190.02325300000004 + 30 +0.0 + 11 +465.00000000000017 + 21 +190.02325300000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +345.0000000000001 + 20 +190.02325300000004 + 30 +0.0 + 11 +379.00000000000017 + 21 +190.02325300000004 31 0.0 0 @@ -1005,15 +1109,15 @@ DOTTED 8 0 10 -103.99999999999999 +345.0000000000001 20 -53.85164800000002 +166.023253 30 0.0 11 -78.99999999999999 +345.0000000000001 21 -53.85164800000002 +190.02325300000004 31 0.0 0 @@ -1025,15 +1129,15 @@ DOTTED 8 0 10 -78.99999999999999 +379.00000000000017 20 --7.134502766348305e-08 +166.023253 30 0.0 11 -53.99999999999998 +345.0000000000001 21 -53.85164800000002 +166.023253 31 0.0 0 @@ -1043,15 +1147,15 @@ LINE 8 0 10 -45.51320686867432 +345.0000000000001 20 -33.971564700181574 +166.023253 30 0.0 11 -39.75660343433714 +345.0000000000001 21 -39.811503617791395 +86.02325300000003 31 0.0 0 @@ -1061,35 +1165,51 @@ LINE 8 0 10 -78.99999999999999 +345.0000000000001 20 --7.134502766348305e-08 +240.02325300000004 30 0.0 11 -45.51320686867432 +345.0000000000001 21 -33.971564700181574 +190.02325300000004 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -53.99999999999998 +345.0000000000001 20 -53.85164800000002 +240.02325300000004 30 0.0 11 -39.75660343433714 +345.0000000000001 21 -39.811503617791395 +240.02325300000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +345.0000000000001 + 20 +86.02325300000003 + 30 +0.0 + 11 +345.0000000000001 + 21 +86.02325300000003 31 0.0 0 @@ -1101,33 +1221,35 @@ DOTTED 8 0 10 -53.99999999999998 +275.00000000000017 20 -53.85164800000002 +240.02325300000004 30 0.0 11 -33.99999999999998 +275.00000000000017 21 -45.65144253540121 +86.02325300000003 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -39.756603434337144 +275.00000000000017 20 -39.811503617791395 +240.02325300000004 30 0.0 11 -33.99999999999998 +345.0000000000001 21 -45.65144253540121 +240.02325300000004 31 0.0 0 @@ -1139,15 +1261,15 @@ DOTTED 8 0 10 -33.999999999999986 +345.0000000000001 20 -53.85164800000002 +240.02325300000004 30 0.0 11 -33.999999999999986 +345.0000000000001 21 -45.65144253540121 +292.53762381816165 31 0.0 0 @@ -1159,15 +1281,15 @@ DOTTED 8 0 10 -53.99999999999998 +275.00000000000017 20 -53.85164800000002 +240.02325300000004 30 0.0 11 -33.999999999999986 +345.0000000000001 21 -53.85164800000002 +292.53762381816165 31 0.0 0 @@ -1177,15 +1299,15 @@ LINE 8 0 10 -31.266598178467046 +362.5047902727207 20 -53.85164800000002 +240.02325300000004 30 0.0 11 -33.999999999999986 +345.0000000000001 21 -53.85164800000002 +240.02325300000004 31 0.0 0 @@ -1195,15 +1317,15 @@ LINE 8 0 10 -31.266598178467046 +362.5047902727207 20 -45.65144253540121 +292.53762381816165 30 0.0 11 -31.266598178467046 +362.5047902727207 21 -53.85164800000002 +240.02325300000004 31 0.0 0 @@ -1213,15 +1335,15 @@ LINE 8 0 10 -33.999999999999986 +345.0000000000001 20 -45.65144253540121 +292.53762381816165 30 0.0 11 -31.266598178467046 +362.5047902727207 21 -45.65144253540121 +292.53762381816165 31 0.0 0 @@ -1233,15 +1355,69 @@ DOTTED 8 0 10 -34.000000000000014 +275.00000000000017 + 20 +240.02325300000004 + 30 +0.0 + 11 +294.58234220233663 + 21 +307.22840067389916 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +294.58234220233663 + 20 +307.22840067389916 + 30 +0.0 + 11 +345.0000000000001 + 21 +292.53762381816165 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +244.16468440467298 + 20 +321.9191775296368 + 30 +0.0 + 11 +294.58234220233663 + 21 +307.22840067389916 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +230.00000000000014 20 -207.85164800000004 +326.0465056704263 30 0.0 11 -54.000000000000014 +244.16468440467298 21 -207.85164800000004 +321.9191775296368 31 0.0 0 @@ -1253,15 +1429,15 @@ DOTTED 8 0 10 -34.000000000000014 +230.00000000000014 20 -216.05185346459882 +326.0465056704263 30 0.0 11 -54.00000000000001 +275.00000000000017 21 -207.85164800000004 +240.02325300000004 31 0.0 0 @@ -1273,33 +1449,35 @@ DOTTED 8 0 10 -34.000000000000014 +230.0000000000001 20 -216.05185346459882 +240.02325300000007 30 0.0 11 -34.000000000000014 +275.00000000000017 21 -207.85164800000004 +240.02325300000004 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -34.00000000000002 +185.0000000000001 20 -216.05185346459882 +240.0232530000001 30 0.0 11 -39.7566034343372 +230.0000000000001 21 -221.89179238220865 +240.02325300000007 31 0.0 0 @@ -1311,15 +1489,15 @@ DOTTED 8 0 10 -39.7566034343372 +230.00000000000014 20 -221.89179238220865 +326.0465056704263 30 0.0 11 -54.000000000000014 +185.00000000000009 21 -207.85164800000004 +240.0232530000001 31 0.0 0 @@ -1331,15 +1509,15 @@ DOTTED 8 0 10 -79.00000000000004 +165.4176577976637 20 -261.70329607134505 +307.22840067389933 30 0.0 11 -54.00000000000001 +185.00000000000009 21 -207.85164800000004 +240.02325300000007 31 0.0 0 @@ -1349,15 +1527,15 @@ LINE 8 0 10 -45.51320686867436 +215.83531559532727 20 -227.73173129981848 +321.91917752963684 30 0.0 11 -79.00000000000004 +230.00000000000014 21 -261.70329607134505 +326.0465056704263 31 0.0 0 @@ -1367,15 +1545,33 @@ LINE 8 0 10 -39.756603434337194 +165.4176577976637 20 -221.89179238220865 +307.22840067389933 30 0.0 11 -45.51320686867436 +215.83531559532727 21 -227.73173129981848 +321.91917752963684 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +115.00000000000013 + 20 +292.53762381816176 + 30 +0.0 + 11 +165.41765779766374 + 21 +307.22840067389933 31 0.0 0 @@ -1387,15 +1583,15 @@ DOTTED 8 0 10 -54.00000000000001 +115.00000000000013 20 -207.85164800000004 +292.53762381816176 30 0.0 11 -79.00000000000001 +185.00000000000009 21 -207.85164800000004 +240.0232530000001 31 0.0 0 @@ -1407,15 +1603,15 @@ DOTTED 8 0 10 -79.00000000000001 +115.00000000000007 20 -207.85164800000004 +240.02325300000015 30 0.0 11 -104.0 +185.0000000000001 21 -207.851648 +240.02325300000007 31 0.0 0 @@ -1427,33 +1623,35 @@ DOTTED 8 0 10 -79.00000000000003 +115.00000000000013 20 -261.7032960713451 +292.53762381816176 30 0.0 11 -104.0 +115.00000000000007 21 -207.851648 +240.02325300000015 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -112.48679313132567 +185.00000000000009 20 -227.73173129981845 +240.0232530000001 30 0.0 11 -118.24339656566283 +184.99999999999997 21 -221.89179238220865 +86.023253 31 0.0 0 @@ -1463,15 +1661,15 @@ LINE 8 0 10 -79.00000000000003 +115.00000000000001 20 -261.70329607134505 +190.02325300000012 30 0.0 11 -112.48679313132567 +115.00000000000007 21 -227.73173129981845 +240.02325300000015 31 0.0 0 @@ -1483,35 +1681,69 @@ DOTTED 8 0 10 -104.00000000000001 +115.00000000000001 20 -207.85164800000004 +190.02325300000012 30 0.0 11 -118.24339656566283 +115.00000000000001 21 -221.89179238220865 +166.0232530000001 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -104.00000000000001 +114.99999999999996 + 20 +86.02325300000008 + 30 +0.0 + 11 +115.00000000000001 + 21 +166.0232530000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +114.99999999999996 + 20 +86.02325300000008 + 30 +0.0 + 11 +114.99999999999996 + 21 +86.02325300000008 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +115.00000000000007 20 -207.851648 +240.02325300000015 30 0.0 11 -124.0 +115.00000000000007 21 -216.0518534645988 +240.02325300000015 31 0.0 0 @@ -1521,15 +1753,15 @@ LINE 8 0 10 -118.24339656566283 +81.00000000000001 20 -221.8917923822086 +190.02325300000015 30 0.0 11 -124.0 +115.00000000000001 21 -216.0518534645988 +190.02325300000012 31 0.0 0 @@ -1541,15 +1773,33 @@ DOTTED 8 0 10 -123.99999999999999 +115.00000000000001 + 20 +166.0232530000001 + 30 +0.0 + 11 +81.00000000000001 + 21 +166.02325300000015 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +45.0 20 -207.85164799999998 +190.0232530000002 30 0.0 11 -123.99999999999999 +81.00000000000001 21 -216.0518534645988 +190.02325300000015 31 0.0 0 @@ -1561,15 +1811,15 @@ DOTTED 8 0 10 -104.0 +45.0 20 -207.851648 +190.0232530000002 30 0.0 11 -123.99999999999999 +45.0 21 -207.85164799999998 +166.02325300000018 31 0.0 0 @@ -1579,15 +1829,15 @@ LINE 8 0 10 -126.73340182153292 +81.00000000000001 20 -207.85164799999998 +166.02325300000015 30 0.0 11 -123.99999999999999 +45.0 21 -207.85164799999998 +166.02325300000018 31 0.0 0 @@ -1597,15 +1847,15 @@ LINE 8 0 10 -126.73340182153294 +45.0 20 -216.0518534645988 +166.02325300000018 30 0.0 11 -126.73340182153292 +0.0 21 -207.85164799999998 +166.02325300000024 31 0.0 0 @@ -1615,55 +1865,69 @@ LINE 8 0 10 -124.0 +0.0 20 -216.0518534645988 +190.0232530000002 30 0.0 11 -126.73340182153294 +45.0 21 -216.0518534645988 +190.0232530000002 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -123.9999999999999 +0.0 20 -53.851648000000004 +166.02325300000024 30 0.0 11 -103.9999999999999 +0.0 21 -53.85164800000002 +190.0232530000002 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 + 8 +0 + 10 +115.00000000000001 + 20 +166.0232530000001 + 30 +0.0 + 11 +115.00000000000001 + 21 +146.0232530000001 + 31 +0.0 + 0 +LINE + 62 +5 8 0 10 -123.9999999999999 +81.00000000000001 20 -45.65144253540121 +146.02325300000015 30 0.0 11 -103.9999999999999 +81.00000000000001 21 -53.85164800000002 +166.02325300000015 31 0.0 0 @@ -1675,15 +1939,15 @@ DOTTED 8 0 10 -123.9999999999999 +115.00000000000001 20 -45.65144253540121 +146.0232530000001 30 0.0 11 -123.9999999999999 +81.00000000000001 21 -53.85164800000002 +146.02325300000015 31 0.0 0 @@ -1693,35 +1957,33 @@ LINE 8 0 10 -123.9999999999999 +115.00000000000001 20 -45.651442535401195 +146.02325300000012 30 0.0 11 -118.24339656566272 +115.00000000000001 21 -39.81150361779138 +122.02325300000008 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -118.24339656566272 +81.00000000000001 20 -39.81150361779138 +122.02325300000012 30 0.0 11 -103.99999999999989 +81.00000000000001 21 -53.85164800000002 +146.02325300000015 31 0.0 0 @@ -1733,15 +1995,15 @@ DOTTED 8 0 10 -78.99999999999987 +115.00000000000001 20 --7.134499924177363e-08 +122.02325300000008 30 0.0 11 -103.9999999999999 +81.00000000000001 21 -53.85164800000002 +122.02325300000012 31 0.0 0 @@ -1751,15 +2013,15 @@ LINE 8 0 10 -112.48679313132554 +115.00000000000001 20 -33.971564700181574 +122.0232530000001 30 0.0 11 -78.99999999999987 +115.00000000000001 21 --7.134499924177363e-08 +102.02325300000008 31 0.0 0 @@ -1769,33 +2031,35 @@ LINE 8 0 10 -118.24339656566274 +81.00000000000001 20 -39.811503617791395 +102.02325300000011 30 0.0 11 -112.48679313132554 +81.00000000000001 21 -33.971564700181574 +122.02325300000014 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -126.73340182153284 +81.00000000000001 20 -45.651442535401195 +102.02325300000011 30 0.0 11 -123.9999999999999 +115.00000000000001 21 -45.651442535401195 +102.02325300000008 31 0.0 0 @@ -1805,15 +2069,15 @@ LINE 8 0 10 -126.73340182153284 +81.00000000000001 20 -53.851648000000004 +92.02325300000011 30 0.0 11 -126.73340182153284 +81.00000000000001 21 -45.651442535401195 +102.0232530000001 31 0.0 0 @@ -1823,15 +2087,15 @@ LINE 8 0 10 -123.9999999999999 +115.00000000000001 20 -53.851648000000004 +92.02325300000007 30 0.0 11 -126.73340182153284 +81.00000000000001 21 -53.851648000000004 +92.02325300000011 31 0.0 0 @@ -1841,15 +2105,15 @@ LINE 8 0 10 -123.99999999999993 +115.00000000000001 20 -103.85164800000001 +102.02325300000008 30 0.0 11 -123.9999999999999 +115.00000000000001 21 -53.85164800000002 +92.02325300000007 31 0.0 0 @@ -1861,51 +2125,55 @@ DOTTED 8 0 10 -123.99999999999993 +184.99999999999997 20 -103.85164800000001 +86.02325300000001 30 0.0 11 -123.99999999999996 +114.99999999999996 21 -127.85164800000001 +86.02325300000008 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -124.0 +114.99999999999996 20 -207.851648 +86.02325300000008 30 0.0 11 -123.99999999999996 +114.9999999999999 21 -127.85164800000001 +33.508882181838494 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -124.0 +184.99999999999997 20 -207.851648 +86.02325300000001 30 0.0 11 -124.0 +114.9999999999999 21 -207.851648 +33.508882181838494 31 0.0 0 @@ -1915,15 +2183,15 @@ LINE 8 0 10 -123.9999999999999 +97.49520972727943 20 -53.85164800000002 +86.0232530000001 30 0.0 11 -123.9999999999999 +114.99999999999996 21 -53.85164800000002 +86.02325300000008 31 0.0 0 @@ -1933,15 +2201,15 @@ LINE 8 0 10 -157.99999999999994 +97.49520972727937 20 -103.851648 +33.50888218183852 30 0.0 11 -123.99999999999993 +97.49520972727943 21 -103.85164800000001 +86.0232530000001 31 0.0 0 @@ -1951,15 +2219,15 @@ LINE 8 0 10 -157.99999999999994 +114.9999999999999 20 -127.85164799999998 +33.508882181838494 30 0.0 11 -157.99999999999994 +97.49520972727937 21 -103.851648 +33.50888218183852 31 0.0 0 @@ -1971,15 +2239,33 @@ DOTTED 8 0 10 -123.99999999999996 +185.00000000000003 + 20 +86.02325300000004 + 30 +0.0 + 11 +165.4176577976635 + 21 +18.818105326100866 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +165.4176577976635 20 -127.851648 +18.818105326100866 30 0.0 11 -157.99999999999994 +114.9999999999999 21 -127.85164799999998 +33.508882181838494 31 0.0 0 @@ -1989,15 +2275,15 @@ LINE 8 0 10 -123.99999999999994 +215.83531559532705 20 -127.851648 +4.127328470363211 30 0.0 11 -123.99999999999996 +165.41765779766348 21 -147.85164799999998 +18.818105326100834 31 0.0 0 @@ -2007,15 +2293,15 @@ LINE 8 0 10 -157.99999999999997 +229.99999999999991 20 -147.85164799999995 +3.295736235031655e-07 30 0.0 11 -157.99999999999994 +215.83531559532705 21 -127.85164799999998 +4.127328470363211 31 0.0 0 @@ -2027,51 +2313,55 @@ DOTTED 8 0 10 -123.99999999999996 +229.99999999999991 20 -147.85164799999998 +3.295736235031655e-07 30 0.0 11 -157.99999999999997 +185.0 21 -147.85164799999995 +86.02325300000003 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -123.99999999999996 +230.00000000000003 20 -147.85164799999998 +86.02325299999997 30 0.0 11 -123.99999999999997 +185.0 21 -171.851648 +86.02325300000003 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -157.99999999999997 +275.00000000000006 20 -171.85164799999998 +86.02325299999988 30 0.0 11 -157.99999999999997 +229.99999999999997 21 -147.85164799999995 +86.02325299999995 31 0.0 0 @@ -2083,15 +2373,35 @@ DOTTED 8 0 10 -123.99999999999997 +229.9999999999999 20 -171.851648 +3.295736235031655e-07 30 0.0 11 -157.99999999999997 +275.00000000000006 21 -171.85164799999998 +86.02325299999988 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +294.5823422023364 + 20 +18.81810532610061 + 30 +0.0 + 11 +275.00000000000006 + 21 +86.02325299999985 31 0.0 0 @@ -2101,15 +2411,15 @@ LINE 8 0 10 -123.99999999999997 +244.16468440467273 20 -171.851648 +4.127328470363125 30 0.0 11 -123.99999999999999 +229.9999999999999 21 -191.85164799999998 +3.2957359508145606e-07 31 0.0 0 @@ -2119,15 +2429,33 @@ LINE 8 0 10 -157.99999999999997 +294.5823422023364 20 -191.85164799999998 +18.81810532610061 30 0.0 11 -157.99999999999997 +244.16468440467273 21 -171.85164799999998 +4.127328470363125 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +344.99999999999994 + 20 +33.50888218183812 + 30 +0.0 + 11 +294.58234220233635 + 21 +18.818105326100635 31 0.0 0 @@ -2139,51 +2467,55 @@ DOTTED 8 0 10 -157.99999999999997 +344.99999999999994 20 -191.85164799999998 +33.50888218183812 30 0.0 11 -123.99999999999999 +275.00000000000006 21 -191.85164799999998 +86.02325299999987 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -158.0 +345.00000000000006 20 -201.85164799999998 +86.02325299999974 30 0.0 11 -157.99999999999997 +275.00000000000006 21 -191.85164799999998 +86.02325299999988 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -123.99999999999999 +344.99999999999994 20 -201.85164799999998 +33.50888218183812 30 0.0 11 -158.0 +345.00000000000006 21 -201.85164799999998 +86.02325299999974 31 0.0 0 @@ -2193,15 +2525,15 @@ LINE 8 0 10 -123.99999999999999 +362.50479027272047 20 -191.851648 +33.508882181838096 30 0.0 11 -123.99999999999999 +344.99999999999994 21 -201.85164799999998 +33.50888218183812 31 0.0 0 @@ -2211,15 +2543,15 @@ LINE 8 0 10 -31.26659817846708 +362.5047902727206 20 -216.05185346459882 +86.02325299999971 30 0.0 11 -34.000000000000014 +362.50479027272047 21 -216.05185346459882 +33.508882181838096 31 0.0 0 @@ -2229,15 +2561,15 @@ LINE 8 0 10 -31.26659817846708 +345.00000000000006 20 -207.85164800000004 +86.02325299999974 30 0.0 11 -31.26659817846708 +362.5047902727206 21 -216.05185346459882 +86.02325299999971 31 0.0 0 @@ -2247,15 +2579,15 @@ LINE 8 0 10 -34.000000000000014 +97.4952097272796 20 -207.85164800000004 +292.53762381816176 30 0.0 11 -31.26659817846708 +115.00000000000013 21 -207.85164800000004 +292.53762381816176 31 0.0 0 @@ -2265,35 +2597,33 @@ LINE 8 0 10 -34.0 +97.49520972727954 20 -127.85164800000003 +240.02325300000018 30 0.0 11 -34.000000000000014 +97.4952097272796 21 -207.85164800000004 +292.53762381816176 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -34.0 +115.00000000000007 20 -127.85164800000003 +240.02325300000015 30 0.0 11 -33.99999999999999 +97.49520972727954 21 -103.85164800000003 +240.02325300000018 31 0.0 0 @@ -2303,15 +2633,15 @@ LINE 8 0 10 -33.999999999999986 +379.00000000000017 20 -53.85164800000002 +166.023253 30 0.0 11 -33.99999999999999 +379.00000000000017 21 -103.85164800000003 +146.023253 31 0.0 0 @@ -2321,33 +2651,35 @@ LINE 8 0 10 -33.999999999999986 +345.0000000000001 20 -53.85164800000002 +146.023253 30 0.0 11 -33.999999999999986 +345.0000000000001 21 -53.85164800000002 +166.023253 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -34.000000000000014 +379.00000000000017 20 -207.85164800000004 +146.023253 30 0.0 11 -34.000000000000014 +345.0000000000001 21 -207.85164800000004 +146.023253 31 0.0 0 @@ -2357,15 +2689,15 @@ LINE 8 0 10 -0.0 +379.00000000000017 20 -103.85164800000003 +146.023253 30 0.0 11 -0.0 +379.00000000000017 21 -127.85164800000003 +122.02325300000003 31 0.0 0 @@ -2375,15 +2707,15 @@ LINE 8 0 10 -33.99999999999999 +345.0000000000001 20 -103.85164800000003 +122.02325300000003 30 0.0 11 -0.0 +345.0000000000001 21 -103.85164800000003 +146.023253 31 0.0 0 @@ -2395,15 +2727,15 @@ DOTTED 8 0 10 -0.0 +379.00000000000017 20 -127.85164800000003 +122.02325300000003 30 0.0 11 -34.0 +345.0000000000001 21 -127.85164800000003 +122.02325300000003 31 0.0 0 @@ -2413,15 +2745,15 @@ LINE 8 0 10 -0.0 +379.00000000000017 20 -127.85164800000003 +122.02325300000003 30 0.0 11 -0.0 +379.00000000000017 21 -147.851648 +102.02325300000003 31 0.0 0 @@ -2431,15 +2763,15 @@ LINE 8 0 10 -34.0 +345.0000000000001 20 -147.851648 +102.02325300000003 30 0.0 11 -34.0 +345.0000000000001 21 -127.85164800000003 +122.02325300000003 31 0.0 0 @@ -2451,15 +2783,51 @@ DOTTED 8 0 10 +345.0000000000001 + 20 +102.02325300000003 + 30 +0.0 + 11 +379.00000000000017 + 21 +102.02325300000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +345.0000000000001 + 20 +92.02325300000001 + 30 0.0 + 11 +345.0000000000001 + 21 +102.02325300000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +379.00000000000017 20 -147.851648 +92.02325300000001 30 0.0 11 -34.0 +345.0000000000001 21 -147.851648 +92.02325300000001 31 0.0 0 @@ -2469,15 +2837,33 @@ LINE 8 0 10 +379.00000000000017 + 20 +102.02325300000003 + 30 0.0 + 11 +379.00000000000017 + 21 +92.02325300000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +463.7500000000001 20 -147.851648 +182.023253 30 0.0 11 -1.4210854715202007e-14 +463.7500000000001 21 -171.85164800000004 +184.523253 31 0.0 0 @@ -2487,35 +2873,33 @@ LINE 8 0 10 -34.00000000000001 +463.7500000000001 20 -171.85164800000004 +184.523253 30 0.0 11 -34.0 +461.25000000000017 21 -147.851648 +182.023253 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -1.4210854715202007e-14 +461.25000000000017 20 -171.85164800000004 +182.023253 30 0.0 11 -34.00000000000001 +461.25000000000017 21 -171.85164800000004 +174.02325300000004 31 0.0 0 @@ -2525,15 +2909,15 @@ LINE 8 0 10 -1.4210854715202007e-14 +461.25000000000017 20 -171.85164800000004 +174.02325300000004 30 0.0 11 -2.8421709430404014e-14 +463.7500000000001 21 -191.85164800000004 +171.52325300000004 31 0.0 0 @@ -2543,35 +2927,33 @@ LINE 8 0 10 -34.000000000000014 +463.7500000000001 20 -191.85164800000004 +171.52325300000004 30 0.0 11 -34.00000000000001 +463.7500000000001 21 -171.85164800000004 +174.02325300000004 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -34.000000000000014 +356.0833333333335 20 -191.85164800000004 +182.273253 30 0.0 11 -2.8421709430404014e-14 +367.9166666666668 21 -191.85164800000004 +182.273253 31 0.0 0 @@ -2581,15 +2963,15 @@ LINE 8 0 10 -34.00000000000002 +367.9166666666668 20 -201.851648 +182.273253 30 0.0 11 -34.00000000000002 +367.9166666666668 21 -191.85164800000004 +182.77325300000004 31 0.0 0 @@ -2599,15 +2981,15 @@ LINE 8 0 10 -2.8421709430404014e-14 +367.9166666666668 20 -201.851648 +182.77325300000004 30 0.0 11 -34.00000000000002 +356.0833333333335 21 -201.851648 +182.77325300000004 31 0.0 0 @@ -2617,15 +2999,15 @@ LINE 8 0 10 -2.8421709430404014e-14 +356.0833333333335 20 -191.85164800000004 +182.77325300000004 30 0.0 11 -2.8421709430404014e-14 +356.0833333333335 21 -201.851648 +182.273253 31 0.0 0 @@ -2635,15 +3017,15 @@ LINE 8 0 10 -45.407868048479436 +358.1285927045405 20 -37.354821212342635 +275.03283354544106 30 0.0 11 -43.1379966274785 +349.3761975681803 21 -39.65755243235414 +275.03283354544106 31 0.0 0 @@ -2653,15 +3035,15 @@ LINE 8 0 10 -43.1379966274785 +349.3761975681803 20 -39.65755243235414 +275.03283354544106 30 0.0 11 -42.781911713336925 +349.3761975681803 21 -39.30654882279893 +257.52804327272054 31 0.0 0 @@ -2671,15 +3053,15 @@ LINE 8 0 10 -42.781911713336925 +349.3761975681803 20 -39.30654882279893 +257.52804327272054 30 0.0 11 -45.05178313433787 +358.1285927045405 21 -37.00381760278743 +257.52804327272054 31 0.0 0 @@ -2689,15 +3071,15 @@ LINE 8 0 10 -45.05178313433787 +256.9879208023066 20 -37.00381760278743 +304.247756013529 30 0.0 11 -45.407868048479436 +274.2738435039604 21 -37.354821212342635 +299.210956522076 31 0.0 0 @@ -2707,15 +3089,15 @@ LINE 8 0 10 -31.94994863385028 +274.2738435039604 20 -48.384844356934146 +299.210956522076 30 0.0 11 -33.31664954461675 +274.41371737683426 21 -48.384844356934146 +299.69099329117523 31 0.0 0 @@ -2725,15 +3107,15 @@ LINE 8 0 10 -33.31664954461675 +274.41371737683426 20 -48.384844356934146 +299.69099329117523 30 0.0 11 -33.31664954461675 +257.1277946751804 21 -51.118246178467075 +304.7277927826283 31 0.0 0 @@ -2743,15 +3125,15 @@ LINE 8 0 10 -33.31664954461675 +257.1277946751804 20 -51.118246178467075 +304.7277927826283 30 0.0 11 -31.94994863385028 +256.9879208023066 21 -51.118246178467075 +304.247756013529 31 0.0 0 @@ -2761,15 +3143,15 @@ LINE 8 0 10 -43.137996627478536 +185.72615649603986 20 -222.04574356764593 +299.210956522076 30 0.0 11 -45.407868048479486 +203.0120791976937 21 -224.3484747876574 +304.247756013529 31 0.0 0 @@ -2779,15 +3161,15 @@ LINE 8 0 10 -45.407868048479486 +203.0120791976937 20 -224.3484747876574 +304.247756013529 30 0.0 11 -45.05178313433792 +202.87220532481987 21 -224.69947839721263 +304.72779278262834 31 0.0 0 @@ -2797,15 +3179,15 @@ LINE 8 0 10 -45.05178313433792 +202.87220532481987 20 -224.69947839721263 +304.72779278262834 30 0.0 11 -42.781911713336974 +185.58628262316603 21 -222.39674717720115 +299.69099329117523 31 0.0 0 @@ -2815,15 +3197,15 @@ LINE 8 0 10 -42.781911713336974 +185.58628262316603 20 -222.39674717720115 +299.69099329117523 30 0.0 11 -43.137996627478536 +185.72615649603986 21 -222.04574356764593 +299.210956522076 31 0.0 0 @@ -2833,15 +3215,15 @@ LINE 8 0 10 -112.59213195152056 +92.08333333333333 20 -224.3484747876574 +182.27325300000015 30 0.0 11 -114.86200337252149 +103.9166666666667 21 -222.04574356764587 +182.27325300000015 31 0.0 0 @@ -2851,15 +3233,15 @@ LINE 8 0 10 -114.86200337252149 +103.9166666666667 20 -222.04574356764587 +182.27325300000015 30 0.0 11 -115.21808828666306 +103.9166666666667 21 -222.3967471772011 +182.77325300000015 31 0.0 0 @@ -2869,15 +3251,15 @@ LINE 8 0 10 -115.21808828666306 +103.9166666666667 20 -222.3967471772011 +182.77325300000015 30 0.0 11 -112.94821686566212 +92.08333333333333 21 -224.6994783972126 +182.77325300000015 31 0.0 0 @@ -2887,15 +3269,15 @@ LINE 8 0 10 -112.94821686566212 +92.08333333333333 20 -224.6994783972126 +182.77325300000015 30 0.0 11 -112.59213195152056 +92.08333333333333 21 -224.3484747876574 +182.27325300000015 31 0.0 0 @@ -2905,15 +3287,15 @@ LINE 8 0 10 -126.0500513661497 +4.000000000000001 20 -213.31845164306586 +173.77325300000024 30 0.0 11 -124.68335045538323 +4.000000000000001 21 -213.31845164306586 +182.27325300000024 31 0.0 0 @@ -2923,15 +3305,15 @@ LINE 8 0 10 -124.68335045538323 +4.000000000000001 20 -213.31845164306586 +182.27325300000024 30 0.0 11 -124.68335045538323 +3.5000000000000004 21 -210.58504982153292 +182.27325300000024 31 0.0 0 @@ -2941,15 +3323,15 @@ LINE 8 0 10 -124.68335045538323 +3.5000000000000004 20 -210.58504982153292 +182.27325300000024 30 0.0 11 -126.0500513661497 +3.5000000000000004 21 -210.58504982153292 +173.77325300000024 31 0.0 0 @@ -2959,15 +3341,15 @@ LINE 8 0 10 -114.86200337252136 +3.5000000000000004 20 -39.65755243235414 +173.77325300000024 30 0.0 11 -112.59213195152043 +4.000000000000001 21 -37.354821212342635 +173.77325300000024 31 0.0 0 @@ -2977,15 +3359,15 @@ LINE 8 0 10 -112.59213195152043 +104.00000000000001 20 -37.354821212342635 +147.02325300000012 30 0.0 11 -112.948216865662 +104.00000000000001 21 -37.003817602787414 +151.02325300000012 31 0.0 0 @@ -2995,15 +3377,15 @@ LINE 8 0 10 -112.948216865662 +104.00000000000001 20 -37.003817602787414 +151.02325300000012 30 0.0 11 -115.21808828666295 +92.00000000000001 21 -39.306548822798916 +151.02325300000015 31 0.0 0 @@ -3013,15 +3395,15 @@ LINE 8 0 10 -115.21808828666295 +92.00000000000001 20 -39.306548822798916 +151.02325300000015 30 0.0 11 -114.86200337252136 +92.00000000000001 21 -39.65755243235414 +147.02325300000012 31 0.0 0 @@ -3031,15 +3413,15 @@ LINE 8 0 10 -126.05005136614962 +92.00000000000001 20 -51.11824617846707 +147.02325300000012 30 0.0 11 -124.68335045538315 +104.00000000000001 21 -51.11824617846707 +147.02325300000012 31 0.0 0 @@ -3049,15 +3431,15 @@ LINE 8 0 10 -124.68335045538315 +102.50000000000001 20 -51.11824617846707 +159.0232530000001 30 0.0 11 -124.68335045538315 +102.50000000000001 21 -48.38484435693413 +163.02325300000012 31 0.0 0 @@ -3067,15 +3449,15 @@ LINE 8 0 10 -124.68335045538315 +102.50000000000001 20 -48.38484435693413 +163.02325300000012 30 0.0 11 -126.05005136614962 +93.50000000000001 21 -48.38484435693413 +163.02325300000012 31 0.0 0 @@ -3085,15 +3467,15 @@ LINE 8 0 10 -146.9166666666666 +93.50000000000001 20 -111.601648 +163.02325300000012 30 0.0 11 -135.0833333333333 +93.50000000000001 21 -111.601648 +159.0232530000001 31 0.0 0 @@ -3103,15 +3485,15 @@ LINE 8 0 10 -135.0833333333333 +93.50000000000001 20 -111.601648 +159.0232530000001 30 0.0 11 -135.0833333333333 +102.50000000000001 21 -111.10164799999998 +159.0232530000001 31 0.0 0 @@ -3121,15 +3503,15 @@ LINE 8 0 10 -135.0833333333333 +104.00000000000001 20 -111.10164799999998 +122.52325300000011 30 0.0 11 -146.9166666666666 +104.00000000000001 21 -111.10164799999998 +145.5232530000001 31 0.0 0 @@ -3139,15 +3521,15 @@ LINE 8 0 10 -146.9166666666666 +104.00000000000001 20 -111.10164799999998 +145.5232530000001 30 0.0 11 -146.9166666666666 +92.00000000000001 21 -111.601648 +145.52325300000012 31 0.0 0 @@ -3157,15 +3539,15 @@ LINE 8 0 10 -134.99999999999997 +92.00000000000001 20 -146.851648 +145.52325300000012 30 0.0 11 -134.99999999999997 +92.00000000000001 21 -142.85164799999998 +122.52325300000011 31 0.0 0 @@ -3175,15 +3557,15 @@ LINE 8 0 10 -134.99999999999997 +92.00000000000001 20 -142.85164799999998 +122.52325300000011 30 0.0 11 -146.99999999999997 +104.00000000000001 21 -142.85164799999998 +122.52325300000011 31 0.0 0 @@ -3193,15 +3575,15 @@ LINE 8 0 10 -146.99999999999997 +104.00000000000001 20 -142.85164799999998 +117.02325300000011 30 0.0 11 -146.99999999999997 +104.00000000000001 21 -146.851648 +121.02325300000011 31 0.0 0 @@ -3211,15 +3593,15 @@ LINE 8 0 10 -146.99999999999997 +104.00000000000001 20 -146.851648 +121.02325300000011 30 0.0 11 -134.99999999999997 +92.00000000000001 21 -146.851648 +121.02325300000011 31 0.0 0 @@ -3229,15 +3611,15 @@ LINE 8 0 10 -136.49999999999994 +92.00000000000001 20 -134.851648 +121.02325300000011 30 0.0 11 -136.49999999999991 +92.00000000000001 21 -130.85164799999998 +117.02325300000011 31 0.0 0 @@ -3247,15 +3629,15 @@ LINE 8 0 10 -136.49999999999991 +92.00000000000001 20 -130.85164799999998 +117.02325300000011 30 0.0 11 -145.49999999999994 +104.00000000000001 21 -130.85164799999998 +117.02325300000011 31 0.0 0 @@ -3265,15 +3647,15 @@ LINE 8 0 10 -145.49999999999994 +103.6666666666667 20 -130.85164799999998 +94.5232530000001 30 0.0 11 -145.49999999999994 +103.6666666666667 21 -134.851648 +99.5232530000001 31 0.0 0 @@ -3283,15 +3665,15 @@ LINE 8 0 10 -145.49999999999994 +103.6666666666667 20 -134.851648 +99.5232530000001 30 0.0 11 -136.49999999999994 +92.33333333333331 21 -134.851648 +99.52325300000011 31 0.0 0 @@ -3301,15 +3683,15 @@ LINE 8 0 10 -134.99999999999997 +92.33333333333331 20 -171.351648 +99.52325300000011 30 0.0 11 -134.99999999999997 +92.33333333333331 21 -148.351648 +94.52325300000011 31 0.0 0 @@ -3319,15 +3701,15 @@ LINE 8 0 10 -134.99999999999997 +101.87140729545952 20 -148.351648 +51.01367245455902 30 0.0 11 -146.99999999999997 +110.62380243181975 21 -148.35164799999998 +51.01367245455902 31 0.0 0 @@ -3337,15 +3719,15 @@ LINE 8 0 10 -146.99999999999997 +110.62380243181975 20 -148.35164799999998 +51.01367245455902 30 0.0 11 -146.99999999999997 +110.6238024318198 21 -171.35164799999998 +68.51846272727956 31 0.0 0 @@ -3355,15 +3737,15 @@ LINE 8 0 10 -146.99999999999997 +110.6238024318198 20 -171.35164799999998 +68.51846272727956 30 0.0 11 -134.99999999999997 +101.87140729545958 21 -171.351648 +68.51846272727956 31 0.0 0 @@ -3373,15 +3755,15 @@ LINE 8 0 10 -134.99999999999997 +203.01207919769348 20 -176.85164799999998 +21.798749986471023 30 0.0 11 -134.99999999999997 +185.7261564960397 21 -172.85164799999995 +26.83554947792408 31 0.0 0 @@ -3391,15 +3773,15 @@ LINE 8 0 10 -134.99999999999997 +185.7261564960397 20 -172.85164799999995 +26.83554947792408 30 0.0 11 -146.99999999999997 +185.58628262316586 21 -172.85164799999995 +26.355512708824794 31 0.0 0 @@ -3409,15 +3791,15 @@ LINE 8 0 10 -146.99999999999997 +185.58628262316586 20 -172.85164799999995 +26.355512708824794 30 0.0 11 -146.99999999999997 +202.87220532481965 21 -176.85164799999998 +21.318713217371737 31 0.0 0 @@ -3427,15 +3809,15 @@ LINE 8 0 10 -146.99999999999997 +202.87220532481965 20 -176.85164799999998 +21.318713217371737 30 0.0 11 -134.99999999999997 +203.01207919769348 21 -176.85164799999998 +21.798749986471023 31 0.0 0 @@ -3445,15 +3827,15 @@ LINE 8 0 10 -135.33333333333334 +274.27384350396017 20 -199.35164799999998 +26.83554947792391 30 0.0 11 -135.33333333333334 +256.9879208023064 21 -194.35164799999998 +21.79874998647091 31 0.0 0 @@ -3463,15 +3845,15 @@ LINE 8 0 10 -135.33333333333334 +256.9879208023064 20 -194.35164799999998 +21.79874998647091 30 0.0 11 -146.66666666666666 +257.1277946751802 21 -194.35164799999998 +21.318713217371627 31 0.0 0 @@ -3481,15 +3863,15 @@ LINE 8 0 10 -146.66666666666666 +257.1277946751802 20 -194.35164799999998 +21.318713217371627 30 0.0 11 -146.66666666666666 +274.413717376834 21 -199.35164799999998 +26.355512708824623 31 0.0 0 @@ -3499,15 +3881,15 @@ LINE 8 0 10 -31.949948633850315 +274.413717376834 20 -210.58504982153298 +26.355512708824623 30 0.0 11 -33.31664954461679 +274.27384350396017 21 -210.58504982153298 +26.83554947792391 31 0.0 0 @@ -3517,15 +3899,15 @@ LINE 8 0 10 -33.31664954461679 +358.1285927045404 20 -210.58504982153298 +68.51846272727916 30 0.0 11 -33.31664954461679 +349.37619756818015 21 -213.3184516430659 +68.51846272727917 31 0.0 0 @@ -3535,15 +3917,15 @@ LINE 8 0 10 -33.31664954461679 +349.37619756818015 20 -213.3184516430659 +68.51846272727917 30 0.0 11 -31.949948633850315 +349.37619756818015 21 -213.3184516430659 +51.013672454558645 31 0.0 0 @@ -3553,15 +3935,15 @@ LINE 8 0 10 -22.91666666666666 +349.37619756818015 20 -111.60164800000003 +51.013672454558645 30 0.0 11 -11.08333333333333 +358.1285927045404 21 -111.60164800000003 +51.01367245455863 31 0.0 0 @@ -3571,15 +3953,15 @@ LINE 8 0 10 -11.08333333333333 +101.87140729545968 20 -111.60164800000003 +257.52804327272065 30 0.0 11 -11.08333333333333 +110.62380243181993 21 -111.10164800000003 +257.52804327272065 31 0.0 0 @@ -3589,15 +3971,15 @@ LINE 8 0 10 -11.08333333333333 +110.62380243181993 20 -111.10164800000003 +257.52804327272065 30 0.0 11 -22.91666666666666 +110.62380243181998 21 -111.10164800000003 +275.0328335454412 31 0.0 0 @@ -3607,15 +3989,15 @@ LINE 8 0 10 -22.91666666666666 +110.62380243181998 20 -111.10164800000003 +275.0328335454412 30 0.0 11 -22.91666666666666 +101.87140729545975 21 -111.60164800000003 +275.03283354544124 31 0.0 0 @@ -3625,15 +4007,15 @@ LINE 8 0 10 -11.000000000000002 +368.0000000000001 20 -146.85164800000004 +147.02325300000004 30 0.0 11 -11.000000000000002 +368.0000000000001 21 -142.851648 +151.02325300000004 31 0.0 0 @@ -3643,15 +4025,15 @@ LINE 8 0 10 -11.000000000000002 +368.0000000000001 20 -142.851648 +151.02325300000004 30 0.0 11 -23.000000000000004 +356.00000000000017 21 -142.851648 +151.02325300000004 31 0.0 0 @@ -3661,15 +4043,15 @@ LINE 8 0 10 -23.000000000000004 +356.00000000000017 20 -142.851648 +151.02325300000004 30 0.0 11 -23.000000000000004 +356.00000000000017 21 -146.85164800000004 +147.02325300000004 31 0.0 0 @@ -3679,15 +4061,15 @@ LINE 8 0 10 -23.000000000000004 +356.00000000000017 20 -146.85164800000004 +147.02325300000004 30 0.0 11 -11.000000000000002 +368.0000000000001 21 -146.85164800000004 +147.02325300000004 31 0.0 0 @@ -3697,15 +4079,15 @@ LINE 8 0 10 -12.5 +366.50000000000017 20 -134.85164800000004 +159.023253 30 0.0 11 -12.5 +366.50000000000017 21 -130.851648 +163.02325300000004 31 0.0 0 @@ -3715,15 +4097,15 @@ LINE 8 0 10 -12.5 +366.50000000000017 20 -130.851648 +163.02325300000004 30 0.0 11 -21.500000000000004 +357.50000000000017 21 -130.851648 +163.02325300000004 31 0.0 0 @@ -3733,15 +4115,15 @@ LINE 8 0 10 -21.500000000000004 +357.50000000000017 20 -130.851648 +163.02325300000004 30 0.0 11 -21.500000000000004 +357.50000000000017 21 -134.85164800000004 +159.023253 31 0.0 0 @@ -3751,15 +4133,15 @@ LINE 8 0 10 -21.500000000000004 +357.50000000000017 20 -134.85164800000004 +159.023253 30 0.0 11 -12.5 +366.50000000000017 21 -134.85164800000004 +159.023253 31 0.0 0 @@ -3769,15 +4151,15 @@ LINE 8 0 10 -11.000000000000016 +368.0000000000001 20 -171.35164800000004 +122.52325300000003 30 0.0 11 -11.000000000000016 +368.0000000000001 21 -148.35164800000004 +145.523253 31 0.0 0 @@ -3787,15 +4169,15 @@ LINE 8 0 10 -11.000000000000016 +368.0000000000001 20 -148.35164800000004 +145.523253 30 0.0 11 -23.000000000000007 +356.00000000000017 21 -148.35164800000004 +145.523253 31 0.0 0 @@ -3805,15 +4187,15 @@ LINE 8 0 10 -23.000000000000007 +356.00000000000017 20 -148.35164800000004 +145.523253 30 0.0 11 -23.000000000000007 +356.00000000000017 21 -171.35164800000004 +122.52325300000003 31 0.0 0 @@ -3823,15 +4205,15 @@ LINE 8 0 10 -23.000000000000007 +356.00000000000017 20 -171.35164800000004 +122.52325300000003 30 0.0 11 -11.000000000000016 +368.0000000000001 21 -171.35164800000004 +122.52325300000003 31 0.0 0 @@ -3841,15 +4223,15 @@ LINE 8 0 10 -11.000000000000016 +368.0000000000001 20 -176.851648 +117.02325300000003 30 0.0 11 -11.000000000000016 +368.0000000000001 21 -172.85164800000004 +121.02325300000003 31 0.0 0 @@ -3859,15 +4241,15 @@ LINE 8 0 10 -11.000000000000016 +368.0000000000001 20 -172.85164800000004 +121.02325300000003 30 0.0 11 -23.000000000000014 +356.00000000000017 21 -172.85164800000004 +121.02325300000003 31 0.0 0 @@ -3877,15 +4259,15 @@ LINE 8 0 10 -23.000000000000014 +356.00000000000017 20 -172.85164800000004 +121.02325300000003 30 0.0 11 -23.000000000000014 +356.00000000000017 21 -176.851648 +117.02325300000003 31 0.0 0 @@ -3895,15 +4277,15 @@ LINE 8 0 10 -23.000000000000014 +356.00000000000017 20 -176.851648 +117.02325300000003 30 0.0 11 -11.000000000000016 +368.0000000000001 21 -176.851648 +117.02325300000003 31 0.0 0 @@ -3913,15 +4295,15 @@ LINE 8 0 10 -11.333333333333359 +367.6666666666668 20 -199.35164800000004 +94.52325300000001 30 0.0 11 -11.333333333333359 +367.6666666666668 21 -194.35164800000004 +99.52325300000003 31 0.0 0 @@ -3931,15 +4313,15 @@ LINE 8 0 10 -11.333333333333359 +367.6666666666668 20 -194.35164800000004 +99.52325300000003 30 0.0 11 -22.666666666666693 +356.3333333333335 21 -194.35164800000004 +99.52325300000003 31 0.0 0 @@ -3949,15 +4331,15 @@ LINE 8 0 10 -22.666666666666693 +356.3333333333335 20 -194.35164800000004 +99.52325300000003 30 0.0 11 -22.666666666666693 +356.3333333333335 21 -199.35164800000004 +94.52325300000001 31 0.0 0 diff --git a/rocolib/output/BoatWithServoMount/graph-lasercutter.svg b/rocolib/output/BoatWithServoMount/graph-lasercutter.svg index f1ca77ebdc35704fd1c91cd055b87f8a55967a77..b3371be3b1573ced3914ff2069aee01c9c6480d9 100644 --- a/rocolib/output/BoatWithServoMount/graph-lasercutter.svg +++ b/rocolib/output/BoatWithServoMount/graph-lasercutter.svg @@ -1,168 +1,189 @@ <?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="261.703296mm" version="1.1" viewBox="0.000000 0.000000 158.000000 261.703296" width="158.000000mm"> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:ev="http://www.w3.org/2001/xml-events" xmlns:xlink="http://www.w3.org/1999/xlink" baseProfile="full" height="326.046506mm" version="1.1" viewBox="0.000000 0.000000 465.000000 326.046506" width="465.000000mm"> <defs/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="103.99999999999999" x2="103.99999999999999" y1="53.85164800000002" y2="207.85164800000004"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="53.99999999999998" x2="53.99999999999998" y1="53.85164800000002" y2="207.85164800000004"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="78.99999999999999" x2="53.99999999999998" y1="53.85164800000002" y2="53.85164800000002"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="103.99999999999999" x2="78.99999999999999" y1="53.85164800000002" y2="53.85164800000002"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="78.99999999999999" x2="53.99999999999998" y1="-7.134502766348305e-08" y2="53.85164800000002"/> - <line stroke="#000000" x1="45.51320686867432" x2="39.75660343433714" y1="33.971564700181574" y2="39.811503617791395"/> - <line stroke="#000000" x1="78.99999999999999" x2="45.51320686867432" y1="-7.134502766348305e-08" y2="33.971564700181574"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="53.99999999999998" x2="39.75660343433714" y1="53.85164800000002" y2="39.811503617791395"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="53.99999999999998" x2="33.99999999999998" y1="53.85164800000002" y2="45.65144253540121"/> - <line stroke="#000000" x1="39.756603434337144" x2="33.99999999999998" y1="39.811503617791395" y2="45.65144253540121"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="33.999999999999986" x2="33.999999999999986" y1="53.85164800000002" y2="45.65144253540121"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="53.99999999999998" x2="33.999999999999986" y1="53.85164800000002" y2="53.85164800000002"/> - <line stroke="#000000" x1="31.266598178467046" x2="33.999999999999986" y1="53.85164800000002" y2="53.85164800000002"/> - <line stroke="#000000" x1="31.266598178467046" x2="31.266598178467046" y1="45.65144253540121" y2="53.85164800000002"/> - <line stroke="#000000" x1="33.999999999999986" x2="31.266598178467046" y1="45.65144253540121" y2="45.65144253540121"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="34.000000000000014" x2="54.000000000000014" y1="207.85164800000004" y2="207.85164800000004"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="34.000000000000014" x2="54.00000000000001" y1="216.05185346459882" y2="207.85164800000004"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="34.000000000000014" x2="34.000000000000014" y1="216.05185346459882" y2="207.85164800000004"/> - <line stroke="#000000" x1="34.00000000000002" x2="39.7566034343372" y1="216.05185346459882" y2="221.89179238220865"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="39.7566034343372" x2="54.000000000000014" y1="221.89179238220865" y2="207.85164800000004"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="79.00000000000004" x2="54.00000000000001" y1="261.70329607134505" y2="207.85164800000004"/> - <line stroke="#000000" x1="45.51320686867436" x2="79.00000000000004" y1="227.73173129981848" y2="261.70329607134505"/> - <line stroke="#000000" x1="39.756603434337194" x2="45.51320686867436" y1="221.89179238220865" y2="227.73173129981848"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="54.00000000000001" x2="79.00000000000001" y1="207.85164800000004" y2="207.85164800000004"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="79.00000000000001" x2="104.0" y1="207.85164800000004" y2="207.851648"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="79.00000000000003" x2="104.0" y1="261.7032960713451" y2="207.851648"/> - <line stroke="#000000" x1="112.48679313132567" x2="118.24339656566283" y1="227.73173129981845" y2="221.89179238220865"/> - <line stroke="#000000" x1="79.00000000000003" x2="112.48679313132567" y1="261.70329607134505" y2="227.73173129981845"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="104.00000000000001" x2="118.24339656566283" y1="207.85164800000004" y2="221.89179238220865"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="104.00000000000001" x2="124.0" y1="207.851648" y2="216.0518534645988"/> - <line stroke="#000000" x1="118.24339656566283" x2="124.0" y1="221.8917923822086" y2="216.0518534645988"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="123.99999999999999" x2="123.99999999999999" y1="207.85164799999998" y2="216.0518534645988"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="104.0" x2="123.99999999999999" y1="207.851648" y2="207.85164799999998"/> - <line stroke="#000000" x1="126.73340182153292" x2="123.99999999999999" y1="207.85164799999998" y2="207.85164799999998"/> - <line stroke="#000000" x1="126.73340182153294" x2="126.73340182153292" y1="216.0518534645988" y2="207.85164799999998"/> - <line stroke="#000000" x1="124.0" x2="126.73340182153294" y1="216.0518534645988" y2="216.0518534645988"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="123.9999999999999" x2="103.9999999999999" y1="53.851648000000004" y2="53.85164800000002"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="123.9999999999999" x2="103.9999999999999" y1="45.65144253540121" y2="53.85164800000002"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="123.9999999999999" x2="123.9999999999999" y1="45.65144253540121" y2="53.85164800000002"/> - <line stroke="#000000" x1="123.9999999999999" x2="118.24339656566272" y1="45.651442535401195" y2="39.81150361779138"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="118.24339656566272" x2="103.99999999999989" y1="39.81150361779138" y2="53.85164800000002"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="78.99999999999987" x2="103.9999999999999" y1="-7.134499924177363e-08" y2="53.85164800000002"/> - <line stroke="#000000" x1="112.48679313132554" x2="78.99999999999987" y1="33.971564700181574" y2="-7.134499924177363e-08"/> - <line stroke="#000000" x1="118.24339656566274" x2="112.48679313132554" y1="39.811503617791395" y2="33.971564700181574"/> - <line stroke="#000000" x1="126.73340182153284" x2="123.9999999999999" y1="45.651442535401195" y2="45.651442535401195"/> - <line stroke="#000000" x1="126.73340182153284" x2="126.73340182153284" y1="53.851648000000004" y2="45.651442535401195"/> - <line stroke="#000000" x1="123.9999999999999" x2="126.73340182153284" y1="53.851648000000004" y2="53.851648000000004"/> - <line stroke="#000000" x1="123.99999999999993" x2="123.9999999999999" y1="103.85164800000001" y2="53.85164800000002"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="123.99999999999993" x2="123.99999999999996" y1="103.85164800000001" y2="127.85164800000001"/> - <line stroke="#000000" x1="124.0" x2="123.99999999999996" y1="207.851648" y2="127.85164800000001"/> - <line stroke="#000000" x1="124.0" x2="124.0" y1="207.851648" y2="207.851648"/> - <line stroke="#000000" x1="123.9999999999999" x2="123.9999999999999" y1="53.85164800000002" y2="53.85164800000002"/> - <line stroke="#000000" x1="157.99999999999994" x2="123.99999999999993" y1="103.851648" y2="103.85164800000001"/> - <line stroke="#000000" x1="157.99999999999994" x2="157.99999999999994" y1="127.85164799999998" y2="103.851648"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="123.99999999999996" x2="157.99999999999994" y1="127.851648" y2="127.85164799999998"/> - <line stroke="#000000" x1="123.99999999999994" x2="123.99999999999996" y1="127.851648" y2="147.85164799999998"/> - <line stroke="#000000" x1="157.99999999999997" x2="157.99999999999994" y1="147.85164799999995" y2="127.85164799999998"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="123.99999999999996" x2="157.99999999999997" y1="147.85164799999998" y2="147.85164799999995"/> - <line stroke="#000000" x1="123.99999999999996" x2="123.99999999999997" y1="147.85164799999998" y2="171.851648"/> - <line stroke="#000000" x1="157.99999999999997" x2="157.99999999999997" y1="171.85164799999998" y2="147.85164799999995"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="123.99999999999997" x2="157.99999999999997" y1="171.851648" y2="171.85164799999998"/> - <line stroke="#000000" x1="123.99999999999997" x2="123.99999999999999" y1="171.851648" y2="191.85164799999998"/> - <line stroke="#000000" x1="157.99999999999997" x2="157.99999999999997" y1="191.85164799999998" y2="171.85164799999998"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="157.99999999999997" x2="123.99999999999999" y1="191.85164799999998" y2="191.85164799999998"/> - <line stroke="#000000" x1="158.0" x2="157.99999999999997" y1="201.85164799999998" y2="191.85164799999998"/> - <line stroke="#000000" x1="123.99999999999999" x2="158.0" y1="201.85164799999998" y2="201.85164799999998"/> - <line stroke="#000000" x1="123.99999999999999" x2="123.99999999999999" y1="191.851648" y2="201.85164799999998"/> - <line stroke="#000000" x1="31.26659817846708" x2="34.000000000000014" y1="216.05185346459882" y2="216.05185346459882"/> - <line stroke="#000000" x1="31.26659817846708" x2="31.26659817846708" y1="207.85164800000004" y2="216.05185346459882"/> - <line stroke="#000000" x1="34.000000000000014" x2="31.26659817846708" y1="207.85164800000004" y2="207.85164800000004"/> - <line stroke="#000000" x1="34.0" x2="34.000000000000014" y1="127.85164800000003" y2="207.85164800000004"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="34.0" x2="33.99999999999999" y1="127.85164800000003" y2="103.85164800000003"/> - <line stroke="#000000" x1="33.999999999999986" x2="33.99999999999999" y1="53.85164800000002" y2="103.85164800000003"/> - <line stroke="#000000" x1="33.999999999999986" x2="33.999999999999986" y1="53.85164800000002" y2="53.85164800000002"/> - <line stroke="#000000" x1="34.000000000000014" x2="34.000000000000014" y1="207.85164800000004" y2="207.85164800000004"/> - <line stroke="#000000" x1="0.0" x2="0.0" y1="103.85164800000003" y2="127.85164800000003"/> - <line stroke="#000000" x1="33.99999999999999" x2="0.0" y1="103.85164800000003" y2="103.85164800000003"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="0.0" x2="34.0" y1="127.85164800000003" y2="127.85164800000003"/> - <line stroke="#000000" x1="0.0" x2="0.0" y1="127.85164800000003" y2="147.851648"/> - <line stroke="#000000" x1="34.0" x2="34.0" y1="147.851648" y2="127.85164800000003"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="0.0" x2="34.0" y1="147.851648" y2="147.851648"/> - <line stroke="#000000" x1="0.0" x2="1.4210854715202007e-14" y1="147.851648" y2="171.85164800000004"/> - <line stroke="#000000" x1="34.00000000000001" x2="34.0" y1="171.85164800000004" y2="147.851648"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="1.4210854715202007e-14" x2="34.00000000000001" y1="171.85164800000004" y2="171.85164800000004"/> - <line stroke="#000000" x1="1.4210854715202007e-14" x2="2.8421709430404014e-14" y1="171.85164800000004" y2="191.85164800000004"/> - <line stroke="#000000" x1="34.000000000000014" x2="34.00000000000001" y1="191.85164800000004" y2="171.85164800000004"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="34.000000000000014" x2="2.8421709430404014e-14" y1="191.85164800000004" y2="191.85164800000004"/> - <line stroke="#000000" x1="34.00000000000002" x2="34.00000000000002" y1="201.851648" y2="191.85164800000004"/> - <line stroke="#000000" x1="2.8421709430404014e-14" x2="34.00000000000002" y1="201.851648" y2="201.851648"/> - <line stroke="#000000" x1="2.8421709430404014e-14" x2="2.8421709430404014e-14" y1="191.85164800000004" y2="201.851648"/> - <line stroke="#888888" x1="45.407868048479436" x2="43.1379966274785" y1="37.354821212342635" y2="39.65755243235414"/> - <line stroke="#888888" x1="43.1379966274785" x2="42.781911713336925" y1="39.65755243235414" y2="39.30654882279893"/> - <line stroke="#888888" x1="42.781911713336925" x2="45.05178313433787" y1="39.30654882279893" y2="37.00381760278743"/> - <line stroke="#888888" x1="45.05178313433787" x2="45.407868048479436" y1="37.00381760278743" y2="37.354821212342635"/> - <line stroke="#888888" x1="31.94994863385028" x2="33.31664954461675" y1="48.384844356934146" y2="48.384844356934146"/> - <line stroke="#888888" x1="33.31664954461675" x2="33.31664954461675" y1="48.384844356934146" y2="51.118246178467075"/> - <line stroke="#888888" x1="33.31664954461675" x2="31.94994863385028" y1="51.118246178467075" y2="51.118246178467075"/> - <line stroke="#888888" x1="43.137996627478536" x2="45.407868048479486" y1="222.04574356764593" y2="224.3484747876574"/> - <line stroke="#888888" x1="45.407868048479486" x2="45.05178313433792" y1="224.3484747876574" y2="224.69947839721263"/> - <line stroke="#888888" x1="45.05178313433792" x2="42.781911713336974" y1="224.69947839721263" y2="222.39674717720115"/> - <line stroke="#888888" x1="42.781911713336974" x2="43.137996627478536" y1="222.39674717720115" y2="222.04574356764593"/> - <line stroke="#888888" x1="112.59213195152056" x2="114.86200337252149" y1="224.3484747876574" y2="222.04574356764587"/> - <line stroke="#888888" x1="114.86200337252149" x2="115.21808828666306" y1="222.04574356764587" y2="222.3967471772011"/> - <line stroke="#888888" x1="115.21808828666306" x2="112.94821686566212" y1="222.3967471772011" y2="224.6994783972126"/> - <line stroke="#888888" x1="112.94821686566212" x2="112.59213195152056" y1="224.6994783972126" y2="224.3484747876574"/> - <line stroke="#888888" x1="126.0500513661497" x2="124.68335045538323" y1="213.31845164306586" y2="213.31845164306586"/> - <line stroke="#888888" x1="124.68335045538323" x2="124.68335045538323" y1="213.31845164306586" y2="210.58504982153292"/> - <line stroke="#888888" x1="124.68335045538323" x2="126.0500513661497" y1="210.58504982153292" y2="210.58504982153292"/> - <line stroke="#888888" x1="114.86200337252136" x2="112.59213195152043" y1="39.65755243235414" y2="37.354821212342635"/> - <line stroke="#888888" x1="112.59213195152043" x2="112.948216865662" y1="37.354821212342635" y2="37.003817602787414"/> - <line stroke="#888888" x1="112.948216865662" x2="115.21808828666295" y1="37.003817602787414" y2="39.306548822798916"/> - <line stroke="#888888" x1="115.21808828666295" x2="114.86200337252136" y1="39.306548822798916" y2="39.65755243235414"/> - <line stroke="#888888" x1="126.05005136614962" x2="124.68335045538315" y1="51.11824617846707" y2="51.11824617846707"/> - <line stroke="#888888" x1="124.68335045538315" x2="124.68335045538315" y1="51.11824617846707" y2="48.38484435693413"/> - <line stroke="#888888" x1="124.68335045538315" x2="126.05005136614962" y1="48.38484435693413" y2="48.38484435693413"/> - <line stroke="#888888" x1="146.9166666666666" x2="135.0833333333333" y1="111.601648" y2="111.601648"/> - <line stroke="#888888" x1="135.0833333333333" x2="135.0833333333333" y1="111.601648" y2="111.10164799999998"/> - <line stroke="#888888" x1="135.0833333333333" x2="146.9166666666666" y1="111.10164799999998" y2="111.10164799999998"/> - <line stroke="#888888" x1="146.9166666666666" x2="146.9166666666666" y1="111.10164799999998" y2="111.601648"/> - <line stroke="#888888" x1="134.99999999999997" x2="134.99999999999997" y1="146.851648" y2="142.85164799999998"/> - <line stroke="#888888" x1="134.99999999999997" x2="146.99999999999997" y1="142.85164799999998" y2="142.85164799999998"/> - <line stroke="#888888" x1="146.99999999999997" x2="146.99999999999997" y1="142.85164799999998" y2="146.851648"/> - <line stroke="#888888" x1="146.99999999999997" x2="134.99999999999997" y1="146.851648" y2="146.851648"/> - <line stroke="#888888" x1="136.49999999999994" x2="136.49999999999991" y1="134.851648" y2="130.85164799999998"/> - <line stroke="#888888" x1="136.49999999999991" x2="145.49999999999994" y1="130.85164799999998" y2="130.85164799999998"/> - <line stroke="#888888" x1="145.49999999999994" x2="145.49999999999994" y1="130.85164799999998" y2="134.851648"/> - <line stroke="#888888" x1="145.49999999999994" x2="136.49999999999994" y1="134.851648" y2="134.851648"/> - <line stroke="#888888" x1="134.99999999999997" x2="134.99999999999997" y1="171.351648" y2="148.351648"/> - <line stroke="#888888" x1="134.99999999999997" x2="146.99999999999997" y1="148.351648" y2="148.35164799999998"/> - <line stroke="#888888" x1="146.99999999999997" x2="146.99999999999997" y1="148.35164799999998" y2="171.35164799999998"/> - <line stroke="#888888" x1="146.99999999999997" x2="134.99999999999997" y1="171.35164799999998" y2="171.351648"/> - <line stroke="#888888" x1="134.99999999999997" x2="134.99999999999997" y1="176.85164799999998" y2="172.85164799999995"/> - <line stroke="#888888" x1="134.99999999999997" x2="146.99999999999997" y1="172.85164799999995" y2="172.85164799999995"/> - <line stroke="#888888" x1="146.99999999999997" x2="146.99999999999997" y1="172.85164799999995" y2="176.85164799999998"/> - <line stroke="#888888" x1="146.99999999999997" x2="134.99999999999997" y1="176.85164799999998" y2="176.85164799999998"/> - <line stroke="#888888" x1="135.33333333333334" x2="135.33333333333334" y1="199.35164799999998" y2="194.35164799999998"/> - <line stroke="#888888" x1="135.33333333333334" x2="146.66666666666666" y1="194.35164799999998" y2="194.35164799999998"/> - <line stroke="#888888" x1="146.66666666666666" x2="146.66666666666666" y1="194.35164799999998" y2="199.35164799999998"/> - <line stroke="#888888" x1="31.949948633850315" x2="33.31664954461679" y1="210.58504982153298" y2="210.58504982153298"/> - <line stroke="#888888" x1="33.31664954461679" x2="33.31664954461679" y1="210.58504982153298" y2="213.3184516430659"/> - <line stroke="#888888" x1="33.31664954461679" x2="31.949948633850315" y1="213.3184516430659" y2="213.3184516430659"/> - <line stroke="#888888" x1="22.91666666666666" x2="11.08333333333333" y1="111.60164800000003" y2="111.60164800000003"/> - <line stroke="#888888" x1="11.08333333333333" x2="11.08333333333333" y1="111.60164800000003" y2="111.10164800000003"/> - <line stroke="#888888" x1="11.08333333333333" x2="22.91666666666666" y1="111.10164800000003" y2="111.10164800000003"/> - <line stroke="#888888" x1="22.91666666666666" x2="22.91666666666666" y1="111.10164800000003" y2="111.60164800000003"/> - <line stroke="#888888" x1="11.000000000000002" x2="11.000000000000002" y1="146.85164800000004" y2="142.851648"/> - <line stroke="#888888" x1="11.000000000000002" x2="23.000000000000004" y1="142.851648" y2="142.851648"/> - <line stroke="#888888" x1="23.000000000000004" x2="23.000000000000004" y1="142.851648" y2="146.85164800000004"/> - <line stroke="#888888" x1="23.000000000000004" x2="11.000000000000002" y1="146.85164800000004" y2="146.85164800000004"/> - <line stroke="#888888" x1="12.5" x2="12.5" y1="134.85164800000004" y2="130.851648"/> - <line stroke="#888888" x1="12.5" x2="21.500000000000004" y1="130.851648" y2="130.851648"/> - <line stroke="#888888" x1="21.500000000000004" x2="21.500000000000004" y1="130.851648" y2="134.85164800000004"/> - <line stroke="#888888" x1="21.500000000000004" x2="12.5" y1="134.85164800000004" y2="134.85164800000004"/> - <line stroke="#888888" x1="11.000000000000016" x2="11.000000000000016" y1="171.35164800000004" y2="148.35164800000004"/> - <line stroke="#888888" x1="11.000000000000016" x2="23.000000000000007" y1="148.35164800000004" y2="148.35164800000004"/> - <line stroke="#888888" x1="23.000000000000007" x2="23.000000000000007" y1="148.35164800000004" y2="171.35164800000004"/> - <line stroke="#888888" x1="23.000000000000007" x2="11.000000000000016" y1="171.35164800000004" y2="171.35164800000004"/> - <line stroke="#888888" x1="11.000000000000016" x2="11.000000000000016" y1="176.851648" y2="172.85164800000004"/> - <line stroke="#888888" x1="11.000000000000016" x2="23.000000000000014" y1="172.85164800000004" y2="172.85164800000004"/> - <line stroke="#888888" x1="23.000000000000014" x2="23.000000000000014" y1="172.85164800000004" y2="176.851648"/> - <line stroke="#888888" x1="23.000000000000014" x2="11.000000000000016" y1="176.851648" y2="176.851648"/> - <line stroke="#888888" x1="11.333333333333359" x2="11.333333333333359" y1="199.35164800000004" y2="194.35164800000004"/> - <line stroke="#888888" x1="11.333333333333359" x2="22.666666666666693" y1="194.35164800000004" y2="194.35164800000004"/> - <line stroke="#888888" x1="22.666666666666693" x2="22.666666666666693" y1="194.35164800000004" y2="199.35164800000004"/> + <line stroke="#000000" x1="415.00000000000017" x2="379.00000000000017" y1="166.023253" y2="166.023253"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="415.00000000000017" x2="415.00000000000017" y1="166.023253" y2="190.02325300000004"/> + <line stroke="#000000" x1="379.00000000000017" x2="415.00000000000017" y1="190.02325300000004" y2="190.02325300000004"/> + <line stroke="#000000" x1="415.00000000000017" x2="460.00000000000017" y1="190.02325300000004" y2="190.02325300000004"/> + <line stroke="#000000" x1="460.00000000000017" x2="415.00000000000017" y1="166.023253" y2="166.023253"/> + <line stroke="#000000" x1="465.00000000000017" x2="460.00000000000017" y1="166.023253" y2="166.023253"/> + <line stroke="#000000" x1="465.00000000000017" x2="465.00000000000017" y1="190.02325300000004" y2="166.023253"/> + <line stroke="#000000" x1="460.00000000000017" x2="465.00000000000017" y1="190.02325300000004" y2="190.02325300000004"/> + <line stroke="#000000" x1="345.0000000000001" x2="379.00000000000017" y1="190.02325300000004" y2="190.02325300000004"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="345.0000000000001" x2="345.0000000000001" y1="166.023253" y2="190.02325300000004"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="379.00000000000017" x2="345.0000000000001" y1="166.023253" y2="166.023253"/> + <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="166.023253" y2="86.02325300000003"/> + <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="240.02325300000004" y2="190.02325300000004"/> + <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="240.02325300000004" y2="240.02325300000004"/> + <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="86.02325300000003" y2="86.02325300000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="275.00000000000017" x2="275.00000000000017" y1="240.02325300000004" y2="86.02325300000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="275.00000000000017" x2="345.0000000000001" y1="240.02325300000004" y2="240.02325300000004"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="345.0000000000001" x2="345.0000000000001" y1="240.02325300000004" y2="292.53762381816165"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="275.00000000000017" x2="345.0000000000001" y1="240.02325300000004" y2="292.53762381816165"/> + <line stroke="#000000" x1="362.5047902727207" x2="345.0000000000001" y1="240.02325300000004" y2="240.02325300000004"/> + <line stroke="#000000" x1="362.5047902727207" x2="362.5047902727207" y1="292.53762381816165" y2="240.02325300000004"/> + <line stroke="#000000" x1="345.0000000000001" x2="362.5047902727207" y1="292.53762381816165" y2="292.53762381816165"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="275.00000000000017" x2="294.58234220233663" y1="240.02325300000004" y2="307.22840067389916"/> + <line stroke="#000000" x1="294.58234220233663" x2="345.0000000000001" y1="307.22840067389916" y2="292.53762381816165"/> + <line stroke="#000000" x1="244.16468440467298" x2="294.58234220233663" y1="321.9191775296368" y2="307.22840067389916"/> + <line stroke="#000000" x1="230.00000000000014" x2="244.16468440467298" y1="326.0465056704263" y2="321.9191775296368"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="230.00000000000014" x2="275.00000000000017" y1="326.0465056704263" y2="240.02325300000004"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="230.0000000000001" x2="275.00000000000017" y1="240.02325300000007" y2="240.02325300000004"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="185.0000000000001" x2="230.0000000000001" y1="240.0232530000001" y2="240.02325300000007"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="230.00000000000014" x2="185.00000000000009" y1="326.0465056704263" y2="240.0232530000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="165.4176577976637" x2="185.00000000000009" y1="307.22840067389933" y2="240.02325300000007"/> + <line stroke="#000000" x1="215.83531559532727" x2="230.00000000000014" y1="321.91917752963684" y2="326.0465056704263"/> + <line stroke="#000000" x1="165.4176577976637" x2="215.83531559532727" y1="307.22840067389933" y2="321.91917752963684"/> + <line stroke="#000000" x1="115.00000000000013" x2="165.41765779766374" y1="292.53762381816176" y2="307.22840067389933"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="115.00000000000013" x2="185.00000000000009" y1="292.53762381816176" y2="240.0232530000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="115.00000000000007" x2="185.0000000000001" y1="240.02325300000015" y2="240.02325300000007"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="115.00000000000013" x2="115.00000000000007" y1="292.53762381816176" y2="240.02325300000015"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="185.00000000000009" x2="184.99999999999997" y1="240.0232530000001" y2="86.023253"/> + <line stroke="#000000" x1="115.00000000000001" x2="115.00000000000007" y1="190.02325300000012" y2="240.02325300000015"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="115.00000000000001" x2="115.00000000000001" y1="190.02325300000012" y2="166.0232530000001"/> + <line stroke="#000000" x1="114.99999999999996" x2="115.00000000000001" y1="86.02325300000008" y2="166.0232530000001"/> + <line stroke="#000000" x1="114.99999999999996" x2="114.99999999999996" y1="86.02325300000008" y2="86.02325300000008"/> + <line stroke="#000000" x1="115.00000000000007" x2="115.00000000000007" y1="240.02325300000015" y2="240.02325300000015"/> + <line stroke="#000000" x1="81.00000000000001" x2="115.00000000000001" y1="190.02325300000015" y2="190.02325300000012"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="115.00000000000001" x2="81.00000000000001" y1="166.0232530000001" y2="166.02325300000015"/> + <line stroke="#000000" x1="45.0" x2="81.00000000000001" y1="190.0232530000002" y2="190.02325300000015"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="45.0" x2="45.0" y1="190.0232530000002" y2="166.02325300000018"/> + <line stroke="#000000" x1="81.00000000000001" x2="45.0" y1="166.02325300000015" y2="166.02325300000018"/> + <line stroke="#000000" x1="45.0" x2="0.0" y1="166.02325300000018" y2="166.02325300000024"/> + <line stroke="#000000" x1="0.0" x2="45.0" y1="190.0232530000002" y2="190.0232530000002"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="166.02325300000024" y2="190.0232530000002"/> + <line stroke="#000000" x1="115.00000000000001" x2="115.00000000000001" y1="166.0232530000001" y2="146.0232530000001"/> + <line stroke="#000000" x1="81.00000000000001" x2="81.00000000000001" y1="146.02325300000015" y2="166.02325300000015"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="115.00000000000001" x2="81.00000000000001" y1="146.0232530000001" y2="146.02325300000015"/> + <line stroke="#000000" x1="115.00000000000001" x2="115.00000000000001" y1="146.02325300000012" y2="122.02325300000008"/> + <line stroke="#000000" x1="81.00000000000001" x2="81.00000000000001" y1="122.02325300000012" y2="146.02325300000015"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="115.00000000000001" x2="81.00000000000001" y1="122.02325300000008" y2="122.02325300000012"/> + <line stroke="#000000" x1="115.00000000000001" x2="115.00000000000001" y1="122.0232530000001" y2="102.02325300000008"/> + <line stroke="#000000" x1="81.00000000000001" x2="81.00000000000001" y1="102.02325300000011" y2="122.02325300000014"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="81.00000000000001" x2="115.00000000000001" y1="102.02325300000011" y2="102.02325300000008"/> + <line stroke="#000000" x1="81.00000000000001" x2="81.00000000000001" y1="92.02325300000011" y2="102.0232530000001"/> + <line stroke="#000000" x1="115.00000000000001" x2="81.00000000000001" y1="92.02325300000007" y2="92.02325300000011"/> + <line stroke="#000000" x1="115.00000000000001" x2="115.00000000000001" y1="102.02325300000008" y2="92.02325300000007"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="184.99999999999997" x2="114.99999999999996" y1="86.02325300000001" y2="86.02325300000008"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="114.99999999999996" x2="114.9999999999999" y1="86.02325300000008" y2="33.508882181838494"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="184.99999999999997" x2="114.9999999999999" y1="86.02325300000001" y2="33.508882181838494"/> + <line stroke="#000000" x1="97.49520972727943" x2="114.99999999999996" y1="86.0232530000001" y2="86.02325300000008"/> + <line stroke="#000000" x1="97.49520972727937" x2="97.49520972727943" y1="33.50888218183852" y2="86.0232530000001"/> + <line stroke="#000000" x1="114.9999999999999" x2="97.49520972727937" y1="33.508882181838494" y2="33.50888218183852"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="185.00000000000003" x2="165.4176577976635" y1="86.02325300000004" y2="18.818105326100866"/> + <line stroke="#000000" x1="165.4176577976635" x2="114.9999999999999" y1="18.818105326100866" y2="33.508882181838494"/> + <line stroke="#000000" x1="215.83531559532705" x2="165.41765779766348" y1="4.127328470363211" y2="18.818105326100834"/> + <line stroke="#000000" x1="229.99999999999991" x2="215.83531559532705" y1="3.295736235031655e-07" y2="4.127328470363211"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="229.99999999999991" x2="185.0" y1="3.295736235031655e-07" y2="86.02325300000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="230.00000000000003" x2="185.0" y1="86.02325299999997" y2="86.02325300000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="275.00000000000006" x2="229.99999999999997" y1="86.02325299999988" y2="86.02325299999995"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="229.9999999999999" x2="275.00000000000006" y1="3.295736235031655e-07" y2="86.02325299999988"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="294.5823422023364" x2="275.00000000000006" y1="18.81810532610061" y2="86.02325299999985"/> + <line stroke="#000000" x1="244.16468440467273" x2="229.9999999999999" y1="4.127328470363125" y2="3.2957359508145606e-07"/> + <line stroke="#000000" x1="294.5823422023364" x2="244.16468440467273" y1="18.81810532610061" y2="4.127328470363125"/> + <line stroke="#000000" x1="344.99999999999994" x2="294.58234220233635" y1="33.50888218183812" y2="18.818105326100635"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="344.99999999999994" x2="275.00000000000006" y1="33.50888218183812" y2="86.02325299999987"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="345.00000000000006" x2="275.00000000000006" y1="86.02325299999974" y2="86.02325299999988"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="344.99999999999994" x2="345.00000000000006" y1="33.50888218183812" y2="86.02325299999974"/> + <line stroke="#000000" x1="362.50479027272047" x2="344.99999999999994" y1="33.508882181838096" y2="33.50888218183812"/> + <line stroke="#000000" x1="362.5047902727206" x2="362.50479027272047" y1="86.02325299999971" y2="33.508882181838096"/> + <line stroke="#000000" x1="345.00000000000006" x2="362.5047902727206" y1="86.02325299999974" y2="86.02325299999971"/> + <line stroke="#000000" x1="97.4952097272796" x2="115.00000000000013" y1="292.53762381816176" y2="292.53762381816176"/> + <line stroke="#000000" x1="97.49520972727954" x2="97.4952097272796" y1="240.02325300000018" y2="292.53762381816176"/> + <line stroke="#000000" x1="115.00000000000007" x2="97.49520972727954" y1="240.02325300000015" y2="240.02325300000018"/> + <line stroke="#000000" x1="379.00000000000017" x2="379.00000000000017" y1="166.023253" y2="146.023253"/> + <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="146.023253" y2="166.023253"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="379.00000000000017" x2="345.0000000000001" y1="146.023253" y2="146.023253"/> + <line stroke="#000000" x1="379.00000000000017" x2="379.00000000000017" y1="146.023253" y2="122.02325300000003"/> + <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="122.02325300000003" y2="146.023253"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="379.00000000000017" x2="345.0000000000001" y1="122.02325300000003" y2="122.02325300000003"/> + <line stroke="#000000" x1="379.00000000000017" x2="379.00000000000017" y1="122.02325300000003" y2="102.02325300000003"/> + <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="102.02325300000003" y2="122.02325300000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="345.0000000000001" x2="379.00000000000017" y1="102.02325300000003" y2="102.02325300000003"/> + <line stroke="#000000" x1="345.0000000000001" x2="345.0000000000001" y1="92.02325300000001" y2="102.02325300000003"/> + <line stroke="#000000" x1="379.00000000000017" x2="345.0000000000001" y1="92.02325300000001" y2="92.02325300000001"/> + <line stroke="#000000" x1="379.00000000000017" x2="379.00000000000017" y1="102.02325300000003" y2="92.02325300000001"/> + <line stroke="#888888" x1="463.7500000000001" x2="463.7500000000001" y1="182.023253" y2="184.523253"/> + <line stroke="#888888" x1="463.7500000000001" x2="461.25000000000017" y1="184.523253" y2="182.023253"/> + <line stroke="#888888" x1="461.25000000000017" x2="461.25000000000017" y1="182.023253" y2="174.02325300000004"/> + <line stroke="#888888" x1="461.25000000000017" x2="463.7500000000001" y1="174.02325300000004" y2="171.52325300000004"/> + <line stroke="#888888" x1="463.7500000000001" x2="463.7500000000001" y1="171.52325300000004" y2="174.02325300000004"/> + <line stroke="#888888" x1="356.0833333333335" x2="367.9166666666668" y1="182.273253" y2="182.273253"/> + <line stroke="#888888" x1="367.9166666666668" x2="367.9166666666668" y1="182.273253" y2="182.77325300000004"/> + <line stroke="#888888" x1="367.9166666666668" x2="356.0833333333335" y1="182.77325300000004" y2="182.77325300000004"/> + <line stroke="#888888" x1="356.0833333333335" x2="356.0833333333335" y1="182.77325300000004" y2="182.273253"/> + <line stroke="#888888" x1="358.1285927045405" x2="349.3761975681803" y1="275.03283354544106" y2="275.03283354544106"/> + <line stroke="#888888" x1="349.3761975681803" x2="349.3761975681803" y1="275.03283354544106" y2="257.52804327272054"/> + <line stroke="#888888" x1="349.3761975681803" x2="358.1285927045405" y1="257.52804327272054" y2="257.52804327272054"/> + <line stroke="#888888" x1="256.9879208023066" x2="274.2738435039604" y1="304.247756013529" y2="299.210956522076"/> + <line stroke="#888888" x1="274.2738435039604" x2="274.41371737683426" y1="299.210956522076" y2="299.69099329117523"/> + <line stroke="#888888" x1="274.41371737683426" x2="257.1277946751804" y1="299.69099329117523" y2="304.7277927826283"/> + <line stroke="#888888" x1="257.1277946751804" x2="256.9879208023066" y1="304.7277927826283" y2="304.247756013529"/> + <line stroke="#888888" x1="185.72615649603986" x2="203.0120791976937" y1="299.210956522076" y2="304.247756013529"/> + <line stroke="#888888" x1="203.0120791976937" x2="202.87220532481987" y1="304.247756013529" y2="304.72779278262834"/> + <line stroke="#888888" x1="202.87220532481987" x2="185.58628262316603" y1="304.72779278262834" y2="299.69099329117523"/> + <line stroke="#888888" x1="185.58628262316603" x2="185.72615649603986" y1="299.69099329117523" y2="299.210956522076"/> + <line stroke="#888888" x1="92.08333333333333" x2="103.9166666666667" y1="182.27325300000015" y2="182.27325300000015"/> + <line stroke="#888888" x1="103.9166666666667" x2="103.9166666666667" y1="182.27325300000015" y2="182.77325300000015"/> + <line stroke="#888888" x1="103.9166666666667" x2="92.08333333333333" y1="182.77325300000015" y2="182.77325300000015"/> + <line stroke="#888888" x1="92.08333333333333" x2="92.08333333333333" y1="182.77325300000015" y2="182.27325300000015"/> + <line stroke="#888888" x1="4.000000000000001" x2="4.000000000000001" y1="173.77325300000024" y2="182.27325300000024"/> + <line stroke="#888888" x1="4.000000000000001" x2="3.5000000000000004" y1="182.27325300000024" y2="182.27325300000024"/> + <line stroke="#888888" x1="3.5000000000000004" x2="3.5000000000000004" y1="182.27325300000024" y2="173.77325300000024"/> + <line stroke="#888888" x1="3.5000000000000004" x2="4.000000000000001" y1="173.77325300000024" y2="173.77325300000024"/> + <line stroke="#888888" x1="104.00000000000001" x2="104.00000000000001" y1="147.02325300000012" y2="151.02325300000012"/> + <line stroke="#888888" x1="104.00000000000001" x2="92.00000000000001" y1="151.02325300000012" y2="151.02325300000015"/> + <line stroke="#888888" x1="92.00000000000001" x2="92.00000000000001" y1="151.02325300000015" y2="147.02325300000012"/> + <line stroke="#888888" x1="92.00000000000001" x2="104.00000000000001" y1="147.02325300000012" y2="147.02325300000012"/> + <line stroke="#888888" x1="102.50000000000001" x2="102.50000000000001" y1="159.0232530000001" y2="163.02325300000012"/> + <line stroke="#888888" x1="102.50000000000001" x2="93.50000000000001" y1="163.02325300000012" y2="163.02325300000012"/> + <line stroke="#888888" x1="93.50000000000001" x2="93.50000000000001" y1="163.02325300000012" y2="159.0232530000001"/> + <line stroke="#888888" x1="93.50000000000001" x2="102.50000000000001" y1="159.0232530000001" y2="159.0232530000001"/> + <line stroke="#888888" x1="104.00000000000001" x2="104.00000000000001" y1="122.52325300000011" y2="145.5232530000001"/> + <line stroke="#888888" x1="104.00000000000001" x2="92.00000000000001" y1="145.5232530000001" y2="145.52325300000012"/> + <line stroke="#888888" x1="92.00000000000001" x2="92.00000000000001" y1="145.52325300000012" y2="122.52325300000011"/> + <line stroke="#888888" x1="92.00000000000001" x2="104.00000000000001" y1="122.52325300000011" y2="122.52325300000011"/> + <line stroke="#888888" x1="104.00000000000001" x2="104.00000000000001" y1="117.02325300000011" y2="121.02325300000011"/> + <line stroke="#888888" x1="104.00000000000001" x2="92.00000000000001" y1="121.02325300000011" y2="121.02325300000011"/> + <line stroke="#888888" x1="92.00000000000001" x2="92.00000000000001" y1="121.02325300000011" y2="117.02325300000011"/> + <line stroke="#888888" x1="92.00000000000001" x2="104.00000000000001" y1="117.02325300000011" y2="117.02325300000011"/> + <line stroke="#888888" x1="103.6666666666667" x2="103.6666666666667" y1="94.5232530000001" y2="99.5232530000001"/> + <line stroke="#888888" x1="103.6666666666667" x2="92.33333333333331" y1="99.5232530000001" y2="99.52325300000011"/> + <line stroke="#888888" x1="92.33333333333331" x2="92.33333333333331" y1="99.52325300000011" y2="94.52325300000011"/> + <line stroke="#888888" x1="101.87140729545952" x2="110.62380243181975" y1="51.01367245455902" y2="51.01367245455902"/> + <line stroke="#888888" x1="110.62380243181975" x2="110.6238024318198" y1="51.01367245455902" y2="68.51846272727956"/> + <line stroke="#888888" x1="110.6238024318198" x2="101.87140729545958" y1="68.51846272727956" y2="68.51846272727956"/> + <line stroke="#888888" x1="203.01207919769348" x2="185.7261564960397" y1="21.798749986471023" y2="26.83554947792408"/> + <line stroke="#888888" x1="185.7261564960397" x2="185.58628262316586" y1="26.83554947792408" y2="26.355512708824794"/> + <line stroke="#888888" x1="185.58628262316586" x2="202.87220532481965" y1="26.355512708824794" y2="21.318713217371737"/> + <line stroke="#888888" x1="202.87220532481965" x2="203.01207919769348" y1="21.318713217371737" y2="21.798749986471023"/> + <line stroke="#888888" x1="274.27384350396017" x2="256.9879208023064" y1="26.83554947792391" y2="21.79874998647091"/> + <line stroke="#888888" x1="256.9879208023064" x2="257.1277946751802" y1="21.79874998647091" y2="21.318713217371627"/> + <line stroke="#888888" x1="257.1277946751802" x2="274.413717376834" y1="21.318713217371627" y2="26.355512708824623"/> + <line stroke="#888888" x1="274.413717376834" x2="274.27384350396017" y1="26.355512708824623" y2="26.83554947792391"/> + <line stroke="#888888" x1="358.1285927045404" x2="349.37619756818015" y1="68.51846272727916" y2="68.51846272727917"/> + <line stroke="#888888" x1="349.37619756818015" x2="349.37619756818015" y1="68.51846272727917" y2="51.013672454558645"/> + <line stroke="#888888" x1="349.37619756818015" x2="358.1285927045404" y1="51.013672454558645" y2="51.01367245455863"/> + <line stroke="#888888" x1="101.87140729545968" x2="110.62380243181993" y1="257.52804327272065" y2="257.52804327272065"/> + <line stroke="#888888" x1="110.62380243181993" x2="110.62380243181998" y1="257.52804327272065" y2="275.0328335454412"/> + <line stroke="#888888" x1="110.62380243181998" x2="101.87140729545975" y1="275.0328335454412" y2="275.03283354544124"/> + <line stroke="#888888" x1="368.0000000000001" x2="368.0000000000001" y1="147.02325300000004" y2="151.02325300000004"/> + <line stroke="#888888" x1="368.0000000000001" x2="356.00000000000017" y1="151.02325300000004" y2="151.02325300000004"/> + <line stroke="#888888" x1="356.00000000000017" x2="356.00000000000017" y1="151.02325300000004" y2="147.02325300000004"/> + <line stroke="#888888" x1="356.00000000000017" x2="368.0000000000001" y1="147.02325300000004" y2="147.02325300000004"/> + <line stroke="#888888" x1="366.50000000000017" x2="366.50000000000017" y1="159.023253" y2="163.02325300000004"/> + <line stroke="#888888" x1="366.50000000000017" x2="357.50000000000017" y1="163.02325300000004" y2="163.02325300000004"/> + <line stroke="#888888" x1="357.50000000000017" x2="357.50000000000017" y1="163.02325300000004" y2="159.023253"/> + <line stroke="#888888" x1="357.50000000000017" x2="366.50000000000017" y1="159.023253" y2="159.023253"/> + <line stroke="#888888" x1="368.0000000000001" x2="368.0000000000001" y1="122.52325300000003" y2="145.523253"/> + <line stroke="#888888" x1="368.0000000000001" x2="356.00000000000017" y1="145.523253" y2="145.523253"/> + <line stroke="#888888" x1="356.00000000000017" x2="356.00000000000017" y1="145.523253" y2="122.52325300000003"/> + <line stroke="#888888" x1="356.00000000000017" x2="368.0000000000001" y1="122.52325300000003" y2="122.52325300000003"/> + <line stroke="#888888" x1="368.0000000000001" x2="368.0000000000001" y1="117.02325300000003" y2="121.02325300000003"/> + <line stroke="#888888" x1="368.0000000000001" x2="356.00000000000017" y1="121.02325300000003" y2="121.02325300000003"/> + <line stroke="#888888" x1="356.00000000000017" x2="356.00000000000017" y1="121.02325300000003" y2="117.02325300000003"/> + <line stroke="#888888" x1="356.00000000000017" x2="368.0000000000001" y1="117.02325300000003" y2="117.02325300000003"/> + <line stroke="#888888" x1="367.6666666666668" x2="367.6666666666668" y1="94.52325300000001" y2="99.52325300000003"/> + <line stroke="#888888" x1="367.6666666666668" x2="356.3333333333335" y1="99.52325300000003" y2="99.52325300000003"/> + <line stroke="#888888" x1="356.3333333333335" x2="356.3333333333335" y1="99.52325300000003" y2="94.52325300000001"/> </svg> diff --git a/rocolib/output/BoatWithServoMount/graph-model.png b/rocolib/output/BoatWithServoMount/graph-model.png index 9a217325b73948f0b93a90158d77a2945b7299b2..508527523e31627a5652282620491d098f82cded 100644 Binary files a/rocolib/output/BoatWithServoMount/graph-model.png and b/rocolib/output/BoatWithServoMount/graph-model.png differ diff --git a/rocolib/output/BoatWithServoMount/graph-model.stl b/rocolib/output/BoatWithServoMount/graph-model.stl index 9144d37f5d5c3eb958037af38150afb88609868e..074ff5f00ca46afb46d619082b3f8e7a2e2d299b 100644 --- a/rocolib/output/BoatWithServoMount/graph-model.stl +++ b/rocolib/output/BoatWithServoMount/graph-model.stl @@ -1,716 +1,786 @@ solid python facet normal 0 0 0 outer loop -vertex -0.0250 0.0770 0.0000 -vertex -0.0250 -0.0770 0.0000 -vertex 0.0250 -0.0770 0.0000 +vertex -0.0180 0.0120 0.0000 +vertex -0.0180 -0.0120 0.0000 +vertex 0.0180 -0.0120 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0250 -0.0770 0.0000 -vertex 0.0250 0.0770 0.0000 -vertex -0.0250 0.0770 0.0000 +vertex 0.0180 -0.0120 0.0000 +vertex 0.0180 0.0120 0.0000 +vertex -0.0180 0.0120 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0250 0.0770 -0.0200 -vertex -0.0250 -0.0770 -0.0200 -vertex -0.0250 -0.0770 0.0000 +vertex -0.0180 -0.0120 0.0900 +vertex -0.0180 0.0120 0.0900 +vertex 0.0180 0.0120 0.0900 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0250 -0.0770 0.0000 -vertex -0.0250 0.0770 0.0000 -vertex -0.0250 0.0770 -0.0200 +vertex 0.0180 0.0120 0.0900 +vertex 0.0180 -0.0120 0.0900 +vertex -0.0180 -0.0120 0.0900 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0250 0.0770 0.0000 -vertex 0.0250 -0.0770 0.0000 -vertex 0.0250 -0.0770 -0.0200 +vertex 0.0180 -0.0920 -0.0000 +vertex 0.0180 0.0620 0.0000 +vertex 0.0180 0.0620 0.0900 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0250 -0.0770 -0.0200 -vertex 0.0250 0.0770 -0.0200 -vertex 0.0250 0.0770 0.0000 +vertex 0.0180 0.0620 0.0900 +vertex 0.0180 -0.0920 0.0900 +vertex 0.0180 -0.0920 -0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0250 -0.0770 0.0000 -vertex -0.0250 -0.0770 -0.0200 -vertex -0.0213 -0.0843 -0.0200 +vertex -0.0520 -0.0920 0.0000 +vertex -0.0520 0.0620 0.0000 +vertex 0.0180 0.0620 -0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0213 -0.0843 -0.0200 -vertex 0.0000 -0.1270 -0.0200 -vertex -0.0250 -0.0770 0.0000 +vertex 0.0180 0.0620 -0.0000 +vertex 0.0180 -0.0920 -0.0000 +vertex -0.0520 -0.0920 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0000 -0.0770 0.0000 -vertex -0.0250 -0.0770 0.0000 -vertex -0.0000 -0.1270 -0.0200 +vertex 0.0180 -0.0920 0.0900 +vertex 0.0180 0.0620 0.0900 +vertex -0.0520 0.0620 0.0900 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0000 -0.0770 0.0000 -vertex 0.0000 -0.1270 -0.0200 -vertex 0.0250 -0.0770 0.0000 +vertex -0.0520 0.0620 0.0900 +vertex -0.0520 -0.0920 0.0900 +vertex 0.0180 -0.0920 0.0900 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0213 -0.0843 -0.0200 -vertex 0.0250 -0.0770 -0.0200 -vertex 0.0250 -0.0770 0.0000 +vertex 0.0180 0.0620 -0.0000 +vertex -0.0520 0.0620 -0.0000 +vertex -0.0520 0.1010 0.0351 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0250 -0.0770 0.0000 -vertex 0.0000 -0.1270 -0.0200 -vertex 0.0213 -0.0843 -0.0200 +vertex -0.0520 0.1010 0.0351 +vertex -0.0520 0.1120 0.0450 +vertex 0.0180 0.0620 -0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0250 -0.0770 -0.0200 -vertex -0.0250 -0.0770 0.0000 -vertex -0.0213 -0.0843 -0.0200 +vertex 0.0180 0.0620 0.0450 +vertex 0.0180 0.0620 -0.0000 +vertex -0.0520 0.1120 0.0450 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0250 -0.0770 -0.0200 -vertex -0.0213 -0.0843 -0.0200 -vertex -0.0250 -0.0770 0.0000 +vertex 0.0180 0.0620 0.0450 +vertex -0.0520 0.1120 0.0450 +vertex 0.0180 0.0620 0.0900 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0250 -0.0770 -0.0200 -vertex 0.0213 -0.0843 -0.0200 -vertex 0.0250 -0.0770 0.0000 +vertex -0.0520 0.1010 0.0549 +vertex -0.0520 0.0620 0.0900 +vertex 0.0180 0.0620 0.0900 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0250 -0.0770 -0.0200 -vertex 0.0250 -0.0770 0.0000 -vertex 0.0213 -0.0843 -0.0200 +vertex 0.0180 0.0620 0.0900 +vertex -0.0520 0.1120 0.0450 +vertex -0.0520 0.1010 0.0549 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0250 0.0770 0.0000 -vertex 0.0250 0.0770 -0.0200 -vertex 0.0213 0.0843 -0.0200 +vertex -0.0520 0.0620 -0.0000 +vertex 0.0180 0.0620 -0.0000 +vertex -0.0520 0.1010 0.0351 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0213 0.0843 -0.0200 -vertex -0.0000 0.1270 -0.0200 -vertex 0.0250 0.0770 0.0000 +vertex -0.0520 0.0620 0.0000 +vertex -0.0520 0.1010 0.0351 +vertex 0.0180 0.0620 -0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0000 0.0770 0.0000 -vertex 0.0250 0.0770 0.0000 -vertex -0.0000 0.1270 -0.0200 +vertex -0.0520 0.0620 0.0900 +vertex -0.0520 0.1010 0.0549 +vertex 0.0180 0.0620 0.0900 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0000 0.0770 0.0000 -vertex -0.0000 0.1270 -0.0200 -vertex -0.0250 0.0770 0.0000 +vertex -0.0520 0.0620 0.0900 +vertex 0.0180 0.0620 0.0900 +vertex -0.0520 0.1010 0.0549 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0213 0.0843 -0.0200 -vertex -0.0250 0.0770 -0.0200 -vertex -0.0250 0.0770 0.0000 +vertex 0.0180 -0.0920 0.0900 +vertex -0.0520 -0.0920 0.0900 +vertex -0.0520 -0.1310 0.0549 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0250 0.0770 0.0000 -vertex -0.0000 0.1270 -0.0200 -vertex -0.0213 0.0843 -0.0200 +vertex -0.0520 -0.1310 0.0549 +vertex -0.0520 -0.1420 0.0450 +vertex 0.0180 -0.0920 0.0900 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0250 0.0770 -0.0200 -vertex 0.0250 0.0770 0.0000 -vertex 0.0213 0.0843 -0.0200 +vertex 0.0180 -0.0920 0.0450 +vertex 0.0180 -0.0920 0.0900 +vertex -0.0520 -0.1420 0.0450 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0250 0.0770 -0.0200 -vertex 0.0213 0.0843 -0.0200 -vertex 0.0250 0.0770 0.0000 +vertex 0.0180 -0.0920 0.0450 +vertex -0.0520 -0.1420 0.0450 +vertex 0.0180 -0.0920 -0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0250 0.0770 -0.0200 -vertex -0.0213 0.0843 -0.0200 -vertex -0.0250 0.0770 0.0000 +vertex -0.0520 -0.1310 0.0351 +vertex -0.0520 -0.0920 -0.0000 +vertex 0.0180 -0.0920 -0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0250 0.0770 -0.0200 -vertex -0.0250 0.0770 0.0000 -vertex -0.0213 0.0843 -0.0200 +vertex 0.0180 -0.0920 -0.0000 +vertex -0.0520 -0.1420 0.0450 +vertex -0.0520 -0.1310 0.0351 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0250 -0.0270 0.0140 -vertex -0.0400 -0.0270 0.0030 -vertex -0.0400 -0.0270 -0.0090 +vertex -0.0520 -0.0920 0.0900 +vertex 0.0180 -0.0920 0.0900 +vertex -0.0520 -0.1310 0.0549 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0400 -0.0270 0.0030 -vertex -0.0250 -0.0270 0.0140 -vertex -0.0450 -0.0270 0.0140 +vertex -0.0520 -0.0920 0.0900 +vertex -0.0520 -0.1310 0.0549 +vertex 0.0180 -0.0920 0.0900 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0250 -0.0270 -0.0200 -vertex -0.0400 -0.0270 -0.0090 -vertex -0.0450 -0.0270 -0.0200 +vertex -0.0520 -0.0920 -0.0000 +vertex -0.0520 -0.1310 0.0351 +vertex 0.0180 -0.0920 -0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0400 -0.0270 -0.0090 -vertex -0.0250 -0.0270 -0.0200 -vertex -0.0250 -0.0270 0.0140 +vertex -0.0520 -0.0920 -0.0000 +vertex 0.0180 -0.0920 -0.0000 +vertex -0.0520 -0.1310 0.0351 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0440 -0.0270 0.0030 -vertex -0.0450 -0.0270 0.0140 -vertex -0.0450 -0.0270 -0.0200 +vertex 0.0180 -0.0120 0.0450 +vertex 0.0180 0.0120 0.0450 +vertex 0.0180 0.0120 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0450 -0.0270 0.0140 -vertex -0.0440 -0.0270 0.0030 -vertex -0.0400 -0.0270 0.0030 +vertex 0.0180 0.0120 0.0000 +vertex 0.0180 -0.0120 0.0000 +vertex 0.0180 -0.0120 0.0450 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0440 -0.0270 -0.0090 -vertex -0.0450 -0.0270 -0.0200 -vertex -0.0400 -0.0270 -0.0090 +vertex 0.0180 0.0120 0.0450 +vertex 0.0180 -0.0120 0.0450 +vertex 0.0180 -0.0120 0.0900 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0450 -0.0270 -0.0200 -vertex -0.0440 -0.0270 -0.0090 -vertex -0.0440 -0.0270 0.0030 +vertex 0.0180 -0.0120 0.0900 +vertex 0.0180 0.0120 0.0900 +vertex 0.0180 0.0120 0.0450 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0450 -0.0270 0.0140 -vertex -0.0450 -0.0265 0.0030 -vertex -0.0450 -0.0265 -0.0090 +vertex -0.0180 0.0120 -0.0000 +vertex -0.0290 0.0120 -0.0150 +vertex -0.0410 0.0120 -0.0150 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0450 -0.0265 0.0030 -vertex -0.0450 -0.0270 0.0140 -vertex -0.0450 -0.0030 0.0140 +vertex -0.0290 0.0120 -0.0150 +vertex -0.0180 0.0120 -0.0000 +vertex -0.0180 0.0120 -0.0200 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0450 -0.0270 -0.0200 -vertex -0.0450 -0.0265 -0.0090 -vertex -0.0450 -0.0035 -0.0090 +vertex -0.0520 0.0120 -0.0000 +vertex -0.0410 0.0120 -0.0150 +vertex -0.0520 0.0120 -0.0200 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0450 -0.0265 -0.0090 -vertex -0.0450 -0.0270 -0.0200 -vertex -0.0450 -0.0270 0.0140 +vertex -0.0410 0.0120 -0.0150 +vertex -0.0520 0.0120 -0.0000 +vertex -0.0180 0.0120 -0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0450 -0.0035 0.0030 -vertex -0.0450 -0.0030 0.0140 -vertex -0.0450 -0.0030 -0.0200 +vertex -0.0290 0.0120 -0.0190 +vertex -0.0180 0.0120 -0.0200 +vertex -0.0520 0.0120 -0.0200 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0450 -0.0030 0.0140 -vertex -0.0450 -0.0035 0.0030 -vertex -0.0450 -0.0265 0.0030 +vertex -0.0180 0.0120 -0.0200 +vertex -0.0290 0.0120 -0.0190 +vertex -0.0290 0.0120 -0.0150 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0450 -0.0035 -0.0090 -vertex -0.0450 -0.0030 -0.0200 -vertex -0.0450 -0.0270 -0.0200 +vertex -0.0410 0.0120 -0.0190 +vertex -0.0520 0.0120 -0.0200 +vertex -0.0410 0.0120 -0.0150 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0450 -0.0030 -0.0200 -vertex -0.0450 -0.0035 -0.0090 -vertex -0.0450 -0.0035 0.0030 +vertex -0.0520 0.0120 -0.0200 +vertex -0.0410 0.0120 -0.0190 +vertex -0.0290 0.0120 -0.0190 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0450 -0.0030 0.0140 -vertex -0.0400 -0.0030 0.0030 -vertex -0.0440 -0.0030 0.0030 +vertex -0.0180 0.0120 -0.0200 +vertex -0.0290 0.0115 -0.0200 +vertex -0.0410 0.0115 -0.0200 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0400 -0.0030 0.0030 -vertex -0.0450 -0.0030 0.0140 -vertex -0.0250 -0.0030 0.0140 +vertex -0.0290 0.0115 -0.0200 +vertex -0.0180 0.0120 -0.0200 +vertex -0.0180 -0.0120 -0.0200 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0450 -0.0030 0.0140 -vertex -0.0440 -0.0030 0.0030 -vertex -0.0440 -0.0030 -0.0090 +vertex -0.0520 0.0120 -0.0200 +vertex -0.0410 0.0115 -0.0200 +vertex -0.0410 -0.0115 -0.0200 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0450 -0.0030 -0.0200 -vertex -0.0440 -0.0030 -0.0090 -vertex -0.0400 -0.0030 -0.0090 +vertex -0.0410 0.0115 -0.0200 +vertex -0.0520 0.0120 -0.0200 +vertex -0.0180 0.0120 -0.0200 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0440 -0.0030 -0.0090 -vertex -0.0450 -0.0030 -0.0200 -vertex -0.0450 -0.0030 0.0140 +vertex -0.0290 -0.0115 -0.0200 +vertex -0.0180 -0.0120 -0.0200 +vertex -0.0520 -0.0120 -0.0200 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0450 -0.0030 -0.0200 -vertex -0.0400 -0.0030 -0.0090 -vertex -0.0250 -0.0030 -0.0200 +vertex -0.0180 -0.0120 -0.0200 +vertex -0.0290 -0.0115 -0.0200 +vertex -0.0290 0.0115 -0.0200 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0400 -0.0030 0.0030 -vertex -0.0320 -0.0030 0.0015 -vertex -0.0400 -0.0030 -0.0090 +vertex -0.0410 -0.0115 -0.0200 +vertex -0.0520 -0.0120 -0.0200 +vertex -0.0520 0.0120 -0.0200 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0320 -0.0030 0.0015 -vertex -0.0250 -0.0030 0.0140 -vertex -0.0280 -0.0030 0.0015 +vertex -0.0520 -0.0120 -0.0200 +vertex -0.0410 -0.0115 -0.0200 +vertex -0.0290 -0.0115 -0.0200 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0250 -0.0030 0.0140 -vertex -0.0320 -0.0030 0.0015 -vertex -0.0400 -0.0030 0.0030 +vertex -0.0180 -0.0120 -0.0200 +vertex -0.0290 -0.0120 -0.0150 +vertex -0.0290 -0.0120 -0.0190 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0280 -0.0030 0.0015 -vertex -0.0250 -0.0030 0.0140 -vertex -0.0250 -0.0030 -0.0200 +vertex -0.0290 -0.0120 -0.0150 +vertex -0.0180 -0.0120 -0.0200 +vertex -0.0180 -0.0120 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0320 -0.0030 -0.0075 -vertex -0.0280 -0.0030 -0.0075 -vertex -0.0250 -0.0030 -0.0200 +vertex -0.0180 -0.0120 -0.0200 +vertex -0.0290 -0.0120 -0.0190 +vertex -0.0410 -0.0120 -0.0190 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0250 -0.0030 -0.0200 -vertex -0.0280 -0.0030 -0.0075 -vertex -0.0280 -0.0030 0.0015 +vertex -0.0520 -0.0120 -0.0200 +vertex -0.0410 -0.0120 -0.0190 +vertex -0.0410 -0.0120 -0.0150 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0320 -0.0030 -0.0075 -vertex -0.0250 -0.0030 -0.0200 -vertex -0.0400 -0.0030 -0.0090 +vertex -0.0410 -0.0120 -0.0190 +vertex -0.0520 -0.0120 -0.0200 +vertex -0.0180 -0.0120 -0.0200 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0320 -0.0030 0.0015 -vertex -0.0320 -0.0030 -0.0075 -vertex -0.0400 -0.0030 -0.0090 +vertex -0.0520 -0.0120 -0.0200 +vertex -0.0410 -0.0120 -0.0150 +vertex -0.0520 -0.0120 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0250 -0.0030 -0.0200 -vertex -0.0250 -0.0030 0.0140 -vertex -0.0250 -0.0270 0.0140 +vertex -0.0290 -0.0120 -0.0150 +vertex -0.0305 -0.0120 -0.0070 +vertex -0.0410 -0.0120 -0.0150 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0250 -0.0270 0.0140 -vertex -0.0250 -0.0270 -0.0200 -vertex -0.0250 -0.0030 -0.0200 +vertex -0.0305 -0.0120 -0.0070 +vertex -0.0180 -0.0120 0.0000 +vertex -0.0305 -0.0120 -0.0030 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0250 -0.0270 -0.0200 -vertex 0.0400 -0.0270 -0.0090 -vertex 0.0400 -0.0270 0.0030 +vertex -0.0180 -0.0120 0.0000 +vertex -0.0305 -0.0120 -0.0070 +vertex -0.0290 -0.0120 -0.0150 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0400 -0.0270 -0.0090 -vertex 0.0250 -0.0270 -0.0200 -vertex 0.0450 -0.0270 -0.0200 +vertex -0.0305 -0.0120 -0.0030 +vertex -0.0180 -0.0120 0.0000 +vertex -0.0520 -0.0120 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0250 -0.0270 0.0140 -vertex 0.0400 -0.0270 0.0030 -vertex 0.0450 -0.0270 0.0140 +vertex -0.0395 -0.0120 -0.0070 +vertex -0.0395 -0.0120 -0.0030 +vertex -0.0520 -0.0120 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0400 -0.0270 0.0030 -vertex 0.0250 -0.0270 0.0140 -vertex 0.0250 -0.0270 -0.0200 +vertex -0.0520 -0.0120 0.0000 +vertex -0.0395 -0.0120 -0.0030 +vertex -0.0305 -0.0120 -0.0030 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0440 -0.0270 -0.0090 -vertex 0.0450 -0.0270 -0.0200 -vertex 0.0450 -0.0270 0.0140 +vertex -0.0395 -0.0120 -0.0070 +vertex -0.0520 -0.0120 0.0000 +vertex -0.0410 -0.0120 -0.0150 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0450 -0.0270 -0.0200 -vertex 0.0440 -0.0270 -0.0090 -vertex 0.0400 -0.0270 -0.0090 +vertex -0.0305 -0.0120 -0.0070 +vertex -0.0395 -0.0120 -0.0070 +vertex -0.0410 -0.0120 -0.0150 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0440 -0.0270 0.0030 -vertex 0.0450 -0.0270 0.0140 -vertex 0.0400 -0.0270 0.0030 +vertex -0.0520 -0.0120 0.0000 +vertex -0.0180 -0.0120 0.0000 +vertex -0.0180 0.0120 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0450 -0.0270 0.0140 -vertex 0.0440 -0.0270 0.0030 -vertex 0.0440 -0.0270 -0.0090 +vertex -0.0180 0.0120 0.0000 +vertex -0.0520 0.0120 0.0000 +vertex -0.0520 -0.0120 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0450 -0.0270 -0.0200 -vertex 0.0450 -0.0265 -0.0090 -vertex 0.0450 -0.0265 0.0030 +vertex -0.0520 0.0120 0.0900 +vertex -0.0410 0.0120 0.1050 +vertex -0.0290 0.0120 0.1050 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0450 -0.0265 -0.0090 -vertex 0.0450 -0.0270 -0.0200 -vertex 0.0450 -0.0030 -0.0200 +vertex -0.0410 0.0120 0.1050 +vertex -0.0520 0.0120 0.0900 +vertex -0.0520 0.0120 0.1100 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0450 -0.0270 0.0140 -vertex 0.0450 -0.0265 0.0030 -vertex 0.0450 -0.0035 0.0030 +vertex -0.0180 0.0120 0.0900 +vertex -0.0290 0.0120 0.1050 +vertex -0.0180 0.0120 0.1100 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0450 -0.0265 0.0030 -vertex 0.0450 -0.0270 0.0140 -vertex 0.0450 -0.0270 -0.0200 +vertex -0.0290 0.0120 0.1050 +vertex -0.0180 0.0120 0.0900 +vertex -0.0520 0.0120 0.0900 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0450 -0.0035 -0.0090 -vertex 0.0450 -0.0030 -0.0200 -vertex 0.0450 -0.0030 0.0140 +vertex -0.0410 0.0120 0.1090 +vertex -0.0520 0.0120 0.1100 +vertex -0.0180 0.0120 0.1100 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0450 -0.0030 -0.0200 -vertex 0.0450 -0.0035 -0.0090 -vertex 0.0450 -0.0265 -0.0090 +vertex -0.0520 0.0120 0.1100 +vertex -0.0410 0.0120 0.1090 +vertex -0.0410 0.0120 0.1050 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0450 -0.0035 0.0030 -vertex 0.0450 -0.0030 0.0140 -vertex 0.0450 -0.0270 0.0140 +vertex -0.0290 0.0120 0.1090 +vertex -0.0180 0.0120 0.1100 +vertex -0.0290 0.0120 0.1050 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0450 -0.0030 0.0140 -vertex 0.0450 -0.0035 0.0030 -vertex 0.0450 -0.0035 -0.0090 +vertex -0.0180 0.0120 0.1100 +vertex -0.0290 0.0120 0.1090 +vertex -0.0410 0.0120 0.1090 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0450 -0.0030 -0.0200 -vertex 0.0400 -0.0030 -0.0090 -vertex 0.0440 -0.0030 -0.0090 +vertex -0.0520 0.0120 0.1100 +vertex -0.0410 0.0115 0.1100 +vertex -0.0290 0.0115 0.1100 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0400 -0.0030 -0.0090 -vertex 0.0450 -0.0030 -0.0200 -vertex 0.0250 -0.0030 -0.0200 +vertex -0.0410 0.0115 0.1100 +vertex -0.0520 0.0120 0.1100 +vertex -0.0520 -0.0120 0.1100 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0450 -0.0030 -0.0200 -vertex 0.0440 -0.0030 -0.0090 -vertex 0.0440 -0.0030 0.0030 +vertex -0.0180 0.0120 0.1100 +vertex -0.0290 0.0115 0.1100 +vertex -0.0290 -0.0115 0.1100 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0450 -0.0030 0.0140 -vertex 0.0440 -0.0030 0.0030 -vertex 0.0400 -0.0030 0.0030 +vertex -0.0290 0.0115 0.1100 +vertex -0.0180 0.0120 0.1100 +vertex -0.0520 0.0120 0.1100 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0440 -0.0030 0.0030 -vertex 0.0450 -0.0030 0.0140 -vertex 0.0450 -0.0030 -0.0200 +vertex -0.0410 -0.0115 0.1100 +vertex -0.0520 -0.0120 0.1100 +vertex -0.0180 -0.0120 0.1100 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0450 -0.0030 0.0140 -vertex 0.0400 -0.0030 0.0030 -vertex 0.0250 -0.0030 0.0140 +vertex -0.0520 -0.0120 0.1100 +vertex -0.0410 -0.0115 0.1100 +vertex -0.0410 0.0115 0.1100 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0400 -0.0030 -0.0090 -vertex 0.0320 -0.0030 -0.0075 -vertex 0.0400 -0.0030 0.0030 +vertex -0.0290 -0.0115 0.1100 +vertex -0.0180 -0.0120 0.1100 +vertex -0.0180 0.0120 0.1100 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0320 -0.0030 -0.0075 -vertex 0.0250 -0.0030 -0.0200 -vertex 0.0280 -0.0030 -0.0075 +vertex -0.0180 -0.0120 0.1100 +vertex -0.0290 -0.0115 0.1100 +vertex -0.0410 -0.0115 0.1100 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0250 -0.0030 -0.0200 -vertex 0.0320 -0.0030 -0.0075 -vertex 0.0400 -0.0030 -0.0090 +vertex -0.0520 -0.0120 0.1100 +vertex -0.0410 -0.0120 0.1050 +vertex -0.0410 -0.0120 0.1090 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0280 -0.0030 -0.0075 -vertex 0.0250 -0.0030 -0.0200 -vertex 0.0250 -0.0030 0.0140 +vertex -0.0410 -0.0120 0.1050 +vertex -0.0520 -0.0120 0.1100 +vertex -0.0520 -0.0120 0.0900 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0320 -0.0030 0.0015 -vertex 0.0280 -0.0030 0.0015 -vertex 0.0250 -0.0030 0.0140 +vertex -0.0520 -0.0120 0.1100 +vertex -0.0410 -0.0120 0.1090 +vertex -0.0290 -0.0120 0.1090 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0250 -0.0030 0.0140 -vertex 0.0280 -0.0030 0.0015 -vertex 0.0280 -0.0030 -0.0075 +vertex -0.0180 -0.0120 0.1100 +vertex -0.0290 -0.0120 0.1090 +vertex -0.0290 -0.0120 0.1050 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0320 -0.0030 0.0015 -vertex 0.0250 -0.0030 0.0140 -vertex 0.0400 -0.0030 0.0030 +vertex -0.0290 -0.0120 0.1090 +vertex -0.0180 -0.0120 0.1100 +vertex -0.0520 -0.0120 0.1100 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0320 -0.0030 -0.0075 -vertex 0.0320 -0.0030 0.0015 -vertex 0.0400 -0.0030 0.0030 +vertex -0.0180 -0.0120 0.1100 +vertex -0.0290 -0.0120 0.1050 +vertex -0.0180 -0.0120 0.0900 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0250 -0.0030 0.0140 -vertex 0.0250 -0.0030 -0.0200 -vertex 0.0250 -0.0270 -0.0200 +vertex -0.0410 -0.0120 0.1050 +vertex -0.0395 -0.0120 0.0970 +vertex -0.0290 -0.0120 0.1050 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0250 -0.0270 -0.0200 -vertex 0.0250 -0.0270 0.0140 -vertex 0.0250 -0.0030 0.0140 +vertex -0.0395 -0.0120 0.0970 +vertex -0.0520 -0.0120 0.0900 +vertex -0.0395 -0.0120 0.0930 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0216 -0.0845 -0.0173 -vertex -0.0213 -0.0843 -0.0200 -vertex -0.0250 -0.0770 -0.0200 +vertex -0.0520 -0.0120 0.0900 +vertex -0.0395 -0.0120 0.0970 +vertex -0.0410 -0.0120 0.1050 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0250 -0.0770 -0.0200 -vertex -0.0253 -0.0771 -0.0173 -vertex -0.0216 -0.0845 -0.0173 +vertex -0.0395 -0.0120 0.0930 +vertex -0.0520 -0.0120 0.0900 +vertex -0.0180 -0.0120 0.0900 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0253 -0.0771 -0.0173 -vertex 0.0250 -0.0770 -0.0200 -vertex 0.0213 -0.0843 -0.0200 +vertex -0.0305 -0.0120 0.0970 +vertex -0.0305 -0.0120 0.0930 +vertex -0.0180 -0.0120 0.0900 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0213 -0.0843 -0.0200 -vertex 0.0216 -0.0845 -0.0173 -vertex 0.0253 -0.0771 -0.0173 +vertex -0.0180 -0.0120 0.0900 +vertex -0.0305 -0.0120 0.0930 +vertex -0.0395 -0.0120 0.0930 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0216 0.0845 -0.0173 -vertex 0.0213 0.0843 -0.0200 -vertex 0.0250 0.0770 -0.0200 +vertex -0.0305 -0.0120 0.0970 +vertex -0.0180 -0.0120 0.0900 +vertex -0.0290 -0.0120 0.1050 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0250 0.0770 -0.0200 -vertex 0.0253 0.0771 -0.0173 -vertex 0.0216 0.0845 -0.0173 +vertex -0.0395 -0.0120 0.0970 +vertex -0.0305 -0.0120 0.0970 +vertex -0.0290 -0.0120 0.1050 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0253 0.0771 -0.0173 -vertex -0.0250 0.0770 -0.0200 -vertex -0.0213 0.0843 -0.0200 +vertex -0.0180 -0.0120 0.0900 +vertex -0.0520 -0.0120 0.0900 +vertex -0.0520 0.0120 0.0900 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0213 0.0843 -0.0200 -vertex -0.0216 0.0845 -0.0173 -vertex -0.0253 0.0771 -0.0173 +vertex -0.0520 0.0120 0.0900 +vertex -0.0180 0.0120 0.0900 +vertex -0.0180 -0.0120 0.0900 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0250 -0.0170 0.0140 -vertex -0.0250 -0.0270 0.0140 -vertex -0.0250 -0.0270 -0.0200 +vertex -0.0346 0.1023 0.0338 +vertex -0.0520 0.1010 0.0351 +vertex -0.0520 0.0620 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0250 -0.0270 -0.0200 -vertex -0.0250 -0.0170 -0.0200 -vertex -0.0250 -0.0170 0.0140 +vertex -0.0520 0.0620 0.0000 +vertex -0.0346 0.0632 -0.0014 +vertex -0.0346 0.1023 0.0338 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0250 -0.0170 -0.0200 -vertex 0.0250 -0.0270 -0.0200 -vertex 0.0250 -0.0270 0.0140 +vertex -0.0346 0.0632 0.0914 +vertex -0.0520 0.0620 0.0900 +vertex -0.0520 0.1010 0.0549 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0250 -0.0270 0.0140 -vertex 0.0250 -0.0170 0.0140 -vertex 0.0250 -0.0170 -0.0200 +vertex -0.0520 0.1010 0.0549 +vertex -0.0346 0.1023 0.0562 +vertex -0.0346 0.0632 0.0914 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0346 -0.1323 0.0562 +vertex -0.0520 -0.1310 0.0549 +vertex -0.0520 -0.0920 0.0900 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0520 -0.0920 0.0900 +vertex -0.0346 -0.0932 0.0914 +vertex -0.0346 -0.1323 0.0562 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0346 -0.0932 -0.0014 +vertex -0.0520 -0.0920 -0.0000 +vertex -0.0520 -0.1310 0.0351 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0520 -0.1310 0.0351 +vertex -0.0346 -0.1323 0.0338 +vertex -0.0346 -0.0932 -0.0014 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0180 0.0120 0.0500 +vertex 0.0180 0.0120 0.0450 +vertex 0.0180 -0.0120 0.0450 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0180 -0.0120 0.0450 +vertex 0.0180 -0.0120 0.0500 +vertex 0.0180 0.0120 0.0500 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0180 0.0020 -0.0000 +vertex -0.0180 0.0120 -0.0000 +vertex -0.0520 0.0120 -0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0520 0.0120 -0.0000 +vertex -0.0520 0.0020 -0.0000 +vertex -0.0180 0.0020 -0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0520 0.0020 0.0900 +vertex -0.0520 0.0120 0.0900 +vertex -0.0180 0.0120 0.0900 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0180 0.0120 0.0900 +vertex -0.0180 0.0020 0.0900 +vertex -0.0520 0.0020 0.0900 endloop endfacet endsolid python diff --git a/rocolib/output/BoatWithServoMount/graph-silhouette.dxf b/rocolib/output/BoatWithServoMount/graph-silhouette.dxf index 1aae92821d25bc5970603199316e1bcdab0fe359..fadcf490b4a7b8fdbefcea82309b58dfa38bae0c 100644 --- a/rocolib/output/BoatWithServoMount/graph-silhouette.dxf +++ b/rocolib/output/BoatWithServoMount/graph-silhouette.dxf @@ -938,22 +938,20 @@ MVIEW } 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -103.99999999999999 +415.00000000000017 20 -53.85164800000002 +166.023253 30 0.0 11 -103.99999999999999 +379.00000000000017 21 -207.85164800000004 +166.023253 31 0.0 0 @@ -961,79 +959,73 @@ LINE 6 DOTTED 62 -1 +3 8 0 10 -53.99999999999998 +415.00000000000017 20 -53.85164800000002 +166.023253 30 0.0 11 -53.99999999999998 +415.00000000000017 21 -207.85164800000004 +190.02325300000004 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -78.99999999999999 +379.00000000000017 20 -53.85164800000002 +190.02325300000004 30 0.0 11 -53.99999999999998 +415.00000000000017 21 -53.85164800000002 +190.02325300000004 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -103.99999999999999 +415.00000000000017 20 -53.85164800000002 +190.02325300000004 30 0.0 11 -78.99999999999999 +460.00000000000017 21 -53.85164800000002 +190.02325300000004 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -78.99999999999999 +460.00000000000017 20 --7.134502766348305e-08 +166.023253 30 0.0 11 -53.99999999999998 +415.00000000000017 21 -53.85164800000002 +166.023253 31 0.0 0 @@ -1043,15 +1035,15 @@ LINE 8 0 10 -45.51320686867432 +465.00000000000017 20 -33.971564700181574 +166.023253 30 0.0 11 -39.75660343433714 +460.00000000000017 21 -39.811503617791395 +166.023253 31 0.0 0 @@ -1061,73 +1053,71 @@ LINE 8 0 10 -78.99999999999999 +465.00000000000017 20 --7.134502766348305e-08 +190.02325300000004 30 0.0 11 -45.51320686867432 +465.00000000000017 21 -33.971564700181574 +166.023253 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -53.99999999999998 +460.00000000000017 20 -53.85164800000002 +190.02325300000004 30 0.0 11 -39.75660343433714 +465.00000000000017 21 -39.811503617791395 +190.02325300000004 31 0.0 0 LINE - 6 -DOTTED 62 -3 +5 8 0 10 -53.99999999999998 +345.0000000000001 20 -53.85164800000002 +190.02325300000004 30 0.0 11 -33.99999999999998 +379.00000000000017 21 -45.65144253540121 +190.02325300000004 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -39.756603434337144 +345.0000000000001 20 -39.811503617791395 +166.023253 30 0.0 11 -33.99999999999998 +345.0000000000001 21 -45.65144253540121 +190.02325300000004 31 0.0 0 @@ -1135,39 +1125,37 @@ LINE 6 DOTTED 62 -3 +1 8 0 10 -33.999999999999986 +379.00000000000017 20 -53.85164800000002 +166.023253 30 0.0 11 -33.999999999999986 +345.0000000000001 21 -45.65144253540121 +166.023253 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -53.99999999999998 +345.0000000000001 20 -53.85164800000002 +166.023253 30 0.0 11 -33.999999999999986 +345.0000000000001 21 -53.85164800000002 +86.02325300000003 31 0.0 0 @@ -1177,15 +1165,15 @@ LINE 8 0 10 -31.266598178467046 +345.0000000000001 20 -53.85164800000002 +240.02325300000004 30 0.0 11 -33.999999999999986 +345.0000000000001 21 -53.85164800000002 +190.02325300000004 31 0.0 0 @@ -1195,15 +1183,15 @@ LINE 8 0 10 -31.266598178467046 +345.0000000000001 20 -45.65144253540121 +240.02325300000004 30 0.0 11 -31.266598178467046 +345.0000000000001 21 -53.85164800000002 +240.02325300000004 31 0.0 0 @@ -1213,15 +1201,35 @@ LINE 8 0 10 -33.999999999999986 +345.0000000000001 + 20 +86.02325300000003 + 30 +0.0 + 11 +345.0000000000001 + 21 +86.02325300000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +275.00000000000017 20 -45.65144253540121 +240.02325300000004 30 0.0 11 -31.266598178467046 +275.00000000000017 21 -45.65144253540121 +86.02325300000003 31 0.0 0 @@ -1233,15 +1241,15 @@ DOTTED 8 0 10 -34.000000000000014 +275.00000000000017 20 -207.85164800000004 +240.02325300000004 30 0.0 11 -54.000000000000014 +345.0000000000001 21 -207.85164800000004 +240.02325300000004 31 0.0 0 @@ -1253,15 +1261,15 @@ DOTTED 8 0 10 -34.000000000000014 +345.0000000000001 20 -216.05185346459882 +240.02325300000004 30 0.0 11 -54.00000000000001 +345.0000000000001 21 -207.85164800000004 +292.53762381816165 31 0.0 0 @@ -1273,15 +1281,15 @@ DOTTED 8 0 10 -34.000000000000014 +275.00000000000017 20 -216.05185346459882 +240.02325300000004 30 0.0 11 -34.000000000000014 +345.0000000000001 21 -207.85164800000004 +292.53762381816165 31 0.0 0 @@ -1291,35 +1299,51 @@ LINE 8 0 10 -34.00000000000002 +362.5047902727207 20 -216.05185346459882 +240.02325300000004 30 0.0 11 -39.7566034343372 +345.0000000000001 21 -221.89179238220865 +240.02325300000004 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 + 8 +0 + 10 +362.5047902727207 + 20 +292.53762381816165 + 30 +0.0 + 11 +362.5047902727207 + 21 +240.02325300000004 + 31 +0.0 + 0 +LINE + 62 +5 8 0 10 -39.7566034343372 +345.0000000000001 20 -221.89179238220865 +292.53762381816165 30 0.0 11 -54.000000000000014 +362.5047902727207 21 -207.85164800000004 +292.53762381816165 31 0.0 0 @@ -1331,15 +1355,15 @@ DOTTED 8 0 10 -79.00000000000004 +275.00000000000017 20 -261.70329607134505 +240.02325300000004 30 0.0 11 -54.00000000000001 +294.58234220233663 21 -207.85164800000004 +307.22840067389916 31 0.0 0 @@ -1349,15 +1373,15 @@ LINE 8 0 10 -45.51320686867436 +294.58234220233663 20 -227.73173129981848 +307.22840067389916 30 0.0 11 -79.00000000000004 +345.0000000000001 21 -261.70329607134505 +292.53762381816165 31 0.0 0 @@ -1367,35 +1391,33 @@ LINE 8 0 10 -39.756603434337194 +244.16468440467298 20 -221.89179238220865 +321.9191775296368 30 0.0 11 -45.51320686867436 +294.58234220233663 21 -227.73173129981848 +307.22840067389916 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -54.00000000000001 +230.00000000000014 20 -207.85164800000004 +326.0465056704263 30 0.0 11 -79.00000000000001 +244.16468440467298 21 -207.85164800000004 +321.9191775296368 31 0.0 0 @@ -1407,15 +1429,15 @@ DOTTED 8 0 10 -79.00000000000001 +230.00000000000014 20 -207.85164800000004 +326.0465056704263 30 0.0 11 -104.0 +275.00000000000017 21 -207.851648 +240.02325300000004 31 0.0 0 @@ -1427,51 +1449,55 @@ DOTTED 8 0 10 -79.00000000000003 +230.0000000000001 20 -261.7032960713451 +240.02325300000007 30 0.0 11 -104.0 +275.00000000000017 21 -207.851648 +240.02325300000004 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -112.48679313132567 +185.0000000000001 20 -227.73173129981845 +240.0232530000001 30 0.0 11 -118.24339656566283 +230.0000000000001 21 -221.89179238220865 +240.02325300000007 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -79.00000000000003 +230.00000000000014 20 -261.70329607134505 +326.0465056704263 30 0.0 11 -112.48679313132567 +185.00000000000009 21 -227.73173129981845 +240.0232530000001 31 0.0 0 @@ -1483,35 +1509,51 @@ DOTTED 8 0 10 -104.00000000000001 +165.4176577976637 20 -207.85164800000004 +307.22840067389933 30 0.0 11 -118.24339656566283 +185.00000000000009 21 -221.89179238220865 +240.02325300000007 31 0.0 0 LINE - 6 -DOTTED 62 -3 +5 8 0 10 -104.00000000000001 +215.83531559532727 + 20 +321.91917752963684 + 30 +0.0 + 11 +230.00000000000014 + 21 +326.0465056704263 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +165.4176577976637 20 -207.851648 +307.22840067389933 30 0.0 11 -124.0 +215.83531559532727 21 -216.0518534645988 +321.91917752963684 31 0.0 0 @@ -1521,15 +1563,15 @@ LINE 8 0 10 -118.24339656566283 +115.00000000000013 20 -221.8917923822086 +292.53762381816176 30 0.0 11 -124.0 +165.41765779766374 21 -216.0518534645988 +307.22840067389933 31 0.0 0 @@ -1541,15 +1583,15 @@ DOTTED 8 0 10 -123.99999999999999 +115.00000000000013 20 -207.85164799999998 +292.53762381816176 30 0.0 11 -123.99999999999999 +185.00000000000009 21 -216.0518534645988 +240.0232530000001 31 0.0 0 @@ -1561,51 +1603,55 @@ DOTTED 8 0 10 -104.0 +115.00000000000007 20 -207.851648 +240.02325300000015 30 0.0 11 -123.99999999999999 +185.0000000000001 21 -207.85164799999998 +240.02325300000007 31 0.0 0 LINE + 6 +DOTTED 62 -5 +3 8 0 10 -126.73340182153292 +115.00000000000013 20 -207.85164799999998 +292.53762381816176 30 0.0 11 -123.99999999999999 +115.00000000000007 21 -207.85164799999998 +240.02325300000015 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -126.73340182153294 +185.00000000000009 20 -216.0518534645988 +240.0232530000001 30 0.0 11 -126.73340182153292 +184.99999999999997 21 -207.85164799999998 +86.023253 31 0.0 0 @@ -1615,15 +1661,15 @@ LINE 8 0 10 -124.0 +115.00000000000001 20 -216.0518534645988 +190.02325300000012 30 0.0 11 -126.73340182153294 +115.00000000000007 21 -216.0518534645988 +240.02325300000015 31 0.0 0 @@ -1635,55 +1681,69 @@ DOTTED 8 0 10 -123.9999999999999 +115.00000000000001 20 -53.851648000000004 +190.02325300000012 30 0.0 11 -103.9999999999999 +115.00000000000001 21 -53.85164800000002 +166.0232530000001 31 0.0 0 LINE - 6 -DOTTED 62 -3 +5 8 0 10 -123.9999999999999 +114.99999999999996 20 -45.65144253540121 +86.02325300000008 30 0.0 11 -103.9999999999999 +115.00000000000001 21 -53.85164800000002 +166.0232530000001 31 0.0 0 LINE - 6 -DOTTED 62 -3 +5 + 8 +0 + 10 +114.99999999999996 + 20 +86.02325300000008 + 30 +0.0 + 11 +114.99999999999996 + 21 +86.02325300000008 + 31 +0.0 + 0 +LINE + 62 +5 8 0 10 -123.9999999999999 +115.00000000000007 20 -45.65144253540121 +240.02325300000015 30 0.0 11 -123.9999999999999 +115.00000000000007 21 -53.85164800000002 +240.02325300000015 31 0.0 0 @@ -1693,15 +1753,15 @@ LINE 8 0 10 -123.9999999999999 +81.00000000000001 20 -45.651442535401195 +190.02325300000015 30 0.0 11 -118.24339656566272 +115.00000000000001 21 -39.81150361779138 +190.02325300000012 31 0.0 0 @@ -1713,15 +1773,33 @@ DOTTED 8 0 10 -118.24339656566272 +115.00000000000001 + 20 +166.0232530000001 + 30 +0.0 + 11 +81.00000000000001 + 21 +166.02325300000015 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +45.0 20 -39.81150361779138 +190.0232530000002 30 0.0 11 -103.99999999999989 +81.00000000000001 21 -53.85164800000002 +190.02325300000015 31 0.0 0 @@ -1729,19 +1807,19 @@ LINE 6 DOTTED 62 -1 +3 8 0 10 -78.99999999999987 +45.0 20 --7.134499924177363e-08 +190.0232530000002 30 0.0 11 -103.9999999999999 +45.0 21 -53.85164800000002 +166.02325300000018 31 0.0 0 @@ -1751,15 +1829,15 @@ LINE 8 0 10 -112.48679313132554 +81.00000000000001 20 -33.971564700181574 +166.02325300000015 30 0.0 11 -78.99999999999987 +45.0 21 --7.134499924177363e-08 +166.02325300000018 31 0.0 0 @@ -1769,15 +1847,15 @@ LINE 8 0 10 -118.24339656566274 +45.0 20 -39.811503617791395 +166.02325300000018 30 0.0 11 -112.48679313132554 +0.0 21 -33.971564700181574 +166.02325300000024 31 0.0 0 @@ -1787,15 +1865,15 @@ LINE 8 0 10 -126.73340182153284 +0.0 20 -45.651442535401195 +190.0232530000002 30 0.0 11 -123.9999999999999 +45.0 21 -45.651442535401195 +190.0232530000002 31 0.0 0 @@ -1805,15 +1883,15 @@ LINE 8 0 10 -126.73340182153284 +0.0 20 -53.851648000000004 +166.02325300000024 30 0.0 11 -126.73340182153284 +0.0 21 -45.651442535401195 +190.0232530000002 31 0.0 0 @@ -1823,15 +1901,15 @@ LINE 8 0 10 -123.9999999999999 +115.00000000000001 20 -53.851648000000004 +166.0232530000001 30 0.0 11 -126.73340182153284 +115.00000000000001 21 -53.851648000000004 +146.0232530000001 31 0.0 0 @@ -1841,15 +1919,15 @@ LINE 8 0 10 -123.99999999999993 +81.00000000000001 20 -103.85164800000001 +146.02325300000015 30 0.0 11 -123.9999999999999 +81.00000000000001 21 -53.85164800000002 +166.02325300000015 31 0.0 0 @@ -1861,15 +1939,15 @@ DOTTED 8 0 10 -123.99999999999993 +115.00000000000001 20 -103.85164800000001 +146.0232530000001 30 0.0 11 -123.99999999999996 +81.00000000000001 21 -127.85164800000001 +146.02325300000015 31 0.0 0 @@ -1879,15 +1957,15 @@ LINE 8 0 10 -124.0 +115.00000000000001 20 -207.851648 +146.02325300000012 30 0.0 11 -123.99999999999996 +115.00000000000001 21 -127.85164800000001 +122.02325300000008 31 0.0 0 @@ -1897,33 +1975,35 @@ LINE 8 0 10 -124.0 +81.00000000000001 20 -207.851648 +122.02325300000012 30 0.0 11 -124.0 +81.00000000000001 21 -207.851648 +146.02325300000015 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -123.9999999999999 +115.00000000000001 20 -53.85164800000002 +122.02325300000008 30 0.0 11 -123.9999999999999 +81.00000000000001 21 -53.85164800000002 +122.02325300000012 31 0.0 0 @@ -1933,15 +2013,15 @@ LINE 8 0 10 -157.99999999999994 +115.00000000000001 20 -103.851648 +122.0232530000001 30 0.0 11 -123.99999999999993 +115.00000000000001 21 -103.85164800000001 +102.02325300000008 31 0.0 0 @@ -1951,15 +2031,15 @@ LINE 8 0 10 -157.99999999999994 +81.00000000000001 20 -127.85164799999998 +102.02325300000011 30 0.0 11 -157.99999999999994 +81.00000000000001 21 -103.851648 +122.02325300000014 31 0.0 0 @@ -1971,15 +2051,33 @@ DOTTED 8 0 10 -123.99999999999996 +81.00000000000001 + 20 +102.02325300000011 + 30 +0.0 + 11 +115.00000000000001 + 21 +102.02325300000008 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +81.00000000000001 20 -127.851648 +92.02325300000011 30 0.0 11 -157.99999999999994 +81.00000000000001 21 -127.85164799999998 +102.0232530000001 31 0.0 0 @@ -1989,15 +2087,15 @@ LINE 8 0 10 -123.99999999999994 +115.00000000000001 20 -127.851648 +92.02325300000007 30 0.0 11 -123.99999999999996 +81.00000000000001 21 -147.85164799999998 +92.02325300000011 31 0.0 0 @@ -2007,15 +2105,15 @@ LINE 8 0 10 -157.99999999999997 +115.00000000000001 20 -147.85164799999995 +102.02325300000008 30 0.0 11 -157.99999999999994 +115.00000000000001 21 -127.85164799999998 +92.02325300000007 31 0.0 0 @@ -2027,15 +2125,73 @@ DOTTED 8 0 10 -123.99999999999996 +184.99999999999997 + 20 +86.02325300000001 + 30 +0.0 + 11 +114.99999999999996 + 21 +86.02325300000008 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +114.99999999999996 + 20 +86.02325300000008 + 30 +0.0 + 11 +114.9999999999999 + 21 +33.508882181838494 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +184.99999999999997 + 20 +86.02325300000001 + 30 +0.0 + 11 +114.9999999999999 + 21 +33.508882181838494 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +97.49520972727943 20 -147.85164799999998 +86.0232530000001 30 0.0 11 -157.99999999999997 +114.99999999999996 21 -147.85164799999995 +86.02325300000008 31 0.0 0 @@ -2045,15 +2201,15 @@ LINE 8 0 10 -123.99999999999996 +97.49520972727937 20 -147.85164799999998 +33.50888218183852 30 0.0 11 -123.99999999999997 +97.49520972727943 21 -171.851648 +86.0232530000001 31 0.0 0 @@ -2063,15 +2219,15 @@ LINE 8 0 10 -157.99999999999997 +114.9999999999999 20 -171.85164799999998 +33.508882181838494 30 0.0 11 -157.99999999999997 +97.49520972727937 21 -147.85164799999995 +33.50888218183852 31 0.0 0 @@ -2083,15 +2239,15 @@ DOTTED 8 0 10 -123.99999999999997 +185.00000000000003 20 -171.851648 +86.02325300000004 30 0.0 11 -157.99999999999997 +165.4176577976635 21 -171.85164799999998 +18.818105326100866 31 0.0 0 @@ -2101,15 +2257,15 @@ LINE 8 0 10 -123.99999999999997 +165.4176577976635 20 -171.851648 +18.818105326100866 30 0.0 11 -123.99999999999999 +114.9999999999999 21 -191.85164799999998 +33.508882181838494 31 0.0 0 @@ -2119,15 +2275,33 @@ LINE 8 0 10 -157.99999999999997 +215.83531559532705 20 -191.85164799999998 +4.127328470363211 30 0.0 11 -157.99999999999997 +165.41765779766348 21 -171.85164799999998 +18.818105326100834 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +229.99999999999991 + 20 +3.295736235031655e-07 + 30 +0.0 + 11 +215.83531559532705 + 21 +4.127328470363211 31 0.0 0 @@ -2139,87 +2313,95 @@ DOTTED 8 0 10 -157.99999999999997 +229.99999999999991 20 -191.85164799999998 +3.295736235031655e-07 30 0.0 11 -123.99999999999999 +185.0 21 -191.85164799999998 +86.02325300000003 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -158.0 +230.00000000000003 20 -201.85164799999998 +86.02325299999997 30 0.0 11 -157.99999999999997 +185.0 21 -191.85164799999998 +86.02325300000003 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -123.99999999999999 +275.00000000000006 20 -201.85164799999998 +86.02325299999988 30 0.0 11 -158.0 +229.99999999999997 21 -201.85164799999998 +86.02325299999995 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -123.99999999999999 +229.9999999999999 20 -191.851648 +3.295736235031655e-07 30 0.0 11 -123.99999999999999 +275.00000000000006 21 -201.85164799999998 +86.02325299999988 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -31.26659817846708 +294.5823422023364 20 -216.05185346459882 +18.81810532610061 30 0.0 11 -34.000000000000014 +275.00000000000006 21 -216.05185346459882 +86.02325299999985 31 0.0 0 @@ -2229,15 +2411,15 @@ LINE 8 0 10 -31.26659817846708 +244.16468440467273 20 -207.85164800000004 +4.127328470363125 30 0.0 11 -31.26659817846708 +229.9999999999999 21 -216.05185346459882 +3.2957359508145606e-07 31 0.0 0 @@ -2247,15 +2429,15 @@ LINE 8 0 10 -34.000000000000014 +294.5823422023364 20 -207.85164800000004 +18.81810532610061 30 0.0 11 -31.26659817846708 +244.16468440467273 21 -207.85164800000004 +4.127328470363125 31 0.0 0 @@ -2265,15 +2447,35 @@ LINE 8 0 10 -34.0 +344.99999999999994 + 20 +33.50888218183812 + 30 +0.0 + 11 +294.58234220233635 + 21 +18.818105326100635 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +344.99999999999994 20 -127.85164800000003 +33.50888218183812 30 0.0 11 -34.000000000000014 +275.00000000000006 21 -207.85164800000004 +86.02325299999987 31 0.0 0 @@ -2285,15 +2487,35 @@ DOTTED 8 0 10 -34.0 +345.00000000000006 20 -127.85164800000003 +86.02325299999974 30 0.0 11 -33.99999999999999 +275.00000000000006 21 -103.85164800000003 +86.02325299999988 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +344.99999999999994 + 20 +33.50888218183812 + 30 +0.0 + 11 +345.00000000000006 + 21 +86.02325299999974 31 0.0 0 @@ -2303,15 +2525,15 @@ LINE 8 0 10 -33.999999999999986 +362.50479027272047 20 -53.85164800000002 +33.508882181838096 30 0.0 11 -33.99999999999999 +344.99999999999994 21 -103.85164800000003 +33.50888218183812 31 0.0 0 @@ -2321,15 +2543,15 @@ LINE 8 0 10 -33.999999999999986 +362.5047902727206 20 -53.85164800000002 +86.02325299999971 30 0.0 11 -33.999999999999986 +362.50479027272047 21 -53.85164800000002 +33.508882181838096 31 0.0 0 @@ -2339,15 +2561,15 @@ LINE 8 0 10 -34.000000000000014 +345.00000000000006 20 -207.85164800000004 +86.02325299999974 30 0.0 11 -34.000000000000014 +362.5047902727206 21 -207.85164800000004 +86.02325299999971 31 0.0 0 @@ -2357,15 +2579,51 @@ LINE 8 0 10 +97.4952097272796 + 20 +292.53762381816176 + 30 0.0 + 11 +115.00000000000013 + 21 +292.53762381816176 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +97.49520972727954 20 -103.85164800000003 +240.02325300000018 30 0.0 11 +97.4952097272796 + 21 +292.53762381816176 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +115.00000000000007 + 20 +240.02325300000015 + 30 0.0 + 11 +97.49520972727954 21 -127.85164800000003 +240.02325300000018 31 0.0 0 @@ -2375,15 +2633,33 @@ LINE 8 0 10 -33.99999999999999 +379.00000000000017 20 -103.85164800000003 +166.023253 30 0.0 11 +379.00000000000017 + 21 +146.023253 + 31 0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +345.0000000000001 + 20 +146.023253 + 30 +0.0 + 11 +345.0000000000001 21 -103.85164800000003 +166.023253 31 0.0 0 @@ -2395,15 +2671,33 @@ DOTTED 8 0 10 +379.00000000000017 + 20 +146.023253 + 30 0.0 + 11 +345.0000000000001 + 21 +146.023253 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +379.00000000000017 20 -127.85164800000003 +146.023253 30 0.0 11 -34.0 +379.00000000000017 21 -127.85164800000003 +122.02325300000003 31 0.0 0 @@ -2413,15 +2707,53 @@ LINE 8 0 10 +345.0000000000001 + 20 +122.02325300000003 + 30 0.0 + 11 +345.0000000000001 + 21 +146.023253 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +379.00000000000017 20 -127.85164800000003 +122.02325300000003 30 0.0 11 +345.0000000000001 + 21 +122.02325300000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +379.00000000000017 + 20 +122.02325300000003 + 30 0.0 + 11 +379.00000000000017 21 -147.851648 +102.02325300000003 31 0.0 0 @@ -2431,15 +2763,15 @@ LINE 8 0 10 -34.0 +345.0000000000001 20 -147.851648 +102.02325300000003 30 0.0 11 -34.0 +345.0000000000001 21 -127.85164800000003 +122.02325300000003 31 0.0 0 @@ -2451,15 +2783,51 @@ DOTTED 8 0 10 +345.0000000000001 + 20 +102.02325300000003 + 30 +0.0 + 11 +379.00000000000017 + 21 +102.02325300000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +345.0000000000001 + 20 +92.02325300000001 + 30 +0.0 + 11 +345.0000000000001 + 21 +102.02325300000003 + 31 0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +379.00000000000017 20 -147.851648 +92.02325300000001 30 0.0 11 -34.0 +345.0000000000001 21 -147.851648 +92.02325300000001 31 0.0 0 @@ -2469,15 +2837,33 @@ LINE 8 0 10 +379.00000000000017 + 20 +102.02325300000003 + 30 +0.0 + 11 +379.00000000000017 + 21 +92.02325300000001 + 31 0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +463.7500000000001 20 -147.851648 +182.023253 30 0.0 11 -1.4210854715202007e-14 +463.7500000000001 21 -171.85164800000004 +184.523253 31 0.0 0 @@ -2487,35 +2873,33 @@ LINE 8 0 10 -34.00000000000001 +463.7500000000001 20 -171.85164800000004 +184.523253 30 0.0 11 -34.0 +461.25000000000017 21 -147.851648 +182.023253 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -1.4210854715202007e-14 +461.25000000000017 20 -171.85164800000004 +182.023253 30 0.0 11 -34.00000000000001 +461.25000000000017 21 -171.85164800000004 +174.02325300000004 31 0.0 0 @@ -2525,15 +2909,15 @@ LINE 8 0 10 -1.4210854715202007e-14 +461.25000000000017 20 -171.85164800000004 +174.02325300000004 30 0.0 11 -2.8421709430404014e-14 +463.7500000000001 21 -191.85164800000004 +171.52325300000004 31 0.0 0 @@ -2543,35 +2927,33 @@ LINE 8 0 10 -34.000000000000014 +463.7500000000001 20 -191.85164800000004 +171.52325300000004 30 0.0 11 -34.00000000000001 +463.7500000000001 21 -171.85164800000004 +174.02325300000004 31 0.0 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -34.000000000000014 +356.0833333333335 20 -191.85164800000004 +182.273253 30 0.0 11 -2.8421709430404014e-14 +367.9166666666668 21 -191.85164800000004 +182.273253 31 0.0 0 @@ -2581,15 +2963,15 @@ LINE 8 0 10 -34.00000000000002 +367.9166666666668 20 -201.851648 +182.273253 30 0.0 11 -34.00000000000002 +367.9166666666668 21 -191.85164800000004 +182.77325300000004 31 0.0 0 @@ -2599,15 +2981,15 @@ LINE 8 0 10 -2.8421709430404014e-14 +367.9166666666668 20 -201.851648 +182.77325300000004 30 0.0 11 -34.00000000000002 +356.0833333333335 21 -201.851648 +182.77325300000004 31 0.0 0 @@ -2617,15 +2999,15 @@ LINE 8 0 10 -2.8421709430404014e-14 +356.0833333333335 20 -191.85164800000004 +182.77325300000004 30 0.0 11 -2.8421709430404014e-14 +356.0833333333335 21 -201.851648 +182.273253 31 0.0 0 @@ -2635,15 +3017,15 @@ LINE 8 0 10 -45.407868048479436 +358.1285927045405 20 -37.354821212342635 +275.03283354544106 30 0.0 11 -43.1379966274785 +349.3761975681803 21 -39.65755243235414 +275.03283354544106 31 0.0 0 @@ -2653,15 +3035,15 @@ LINE 8 0 10 -43.1379966274785 +349.3761975681803 20 -39.65755243235414 +275.03283354544106 30 0.0 11 -42.781911713336925 +349.3761975681803 21 -39.30654882279893 +257.52804327272054 31 0.0 0 @@ -2671,15 +3053,15 @@ LINE 8 0 10 -42.781911713336925 +349.3761975681803 20 -39.30654882279893 +257.52804327272054 30 0.0 11 -45.05178313433787 +358.1285927045405 21 -37.00381760278743 +257.52804327272054 31 0.0 0 @@ -2689,15 +3071,15 @@ LINE 8 0 10 -45.05178313433787 +256.9879208023066 20 -37.00381760278743 +304.247756013529 30 0.0 11 -45.407868048479436 +274.2738435039604 21 -37.354821212342635 +299.210956522076 31 0.0 0 @@ -2707,15 +3089,15 @@ LINE 8 0 10 -31.94994863385028 +274.2738435039604 20 -48.384844356934146 +299.210956522076 30 0.0 11 -33.31664954461675 +274.41371737683426 21 -48.384844356934146 +299.69099329117523 31 0.0 0 @@ -2725,15 +3107,15 @@ LINE 8 0 10 -33.31664954461675 +274.41371737683426 20 -48.384844356934146 +299.69099329117523 30 0.0 11 -33.31664954461675 +257.1277946751804 21 -51.118246178467075 +304.7277927826283 31 0.0 0 @@ -2743,15 +3125,15 @@ LINE 8 0 10 -33.31664954461675 +257.1277946751804 20 -51.118246178467075 +304.7277927826283 30 0.0 11 -31.94994863385028 +256.9879208023066 21 -51.118246178467075 +304.247756013529 31 0.0 0 @@ -2761,15 +3143,15 @@ LINE 8 0 10 -43.137996627478536 +185.72615649603986 20 -222.04574356764593 +299.210956522076 30 0.0 11 -45.407868048479486 +203.0120791976937 21 -224.3484747876574 +304.247756013529 31 0.0 0 @@ -2779,15 +3161,15 @@ LINE 8 0 10 -45.407868048479486 +203.0120791976937 20 -224.3484747876574 +304.247756013529 30 0.0 11 -45.05178313433792 +202.87220532481987 21 -224.69947839721263 +304.72779278262834 31 0.0 0 @@ -2797,15 +3179,15 @@ LINE 8 0 10 -45.05178313433792 +202.87220532481987 20 -224.69947839721263 +304.72779278262834 30 0.0 11 -42.781911713336974 +185.58628262316603 21 -222.39674717720115 +299.69099329117523 31 0.0 0 @@ -2815,15 +3197,15 @@ LINE 8 0 10 -42.781911713336974 +185.58628262316603 20 -222.39674717720115 +299.69099329117523 30 0.0 11 -43.137996627478536 +185.72615649603986 21 -222.04574356764593 +299.210956522076 31 0.0 0 @@ -2833,15 +3215,15 @@ LINE 8 0 10 -112.59213195152056 +92.08333333333333 20 -224.3484747876574 +182.27325300000015 30 0.0 11 -114.86200337252149 +103.9166666666667 21 -222.04574356764587 +182.27325300000015 31 0.0 0 @@ -2851,15 +3233,15 @@ LINE 8 0 10 -114.86200337252149 +103.9166666666667 20 -222.04574356764587 +182.27325300000015 30 0.0 11 -115.21808828666306 +103.9166666666667 21 -222.3967471772011 +182.77325300000015 31 0.0 0 @@ -2869,15 +3251,15 @@ LINE 8 0 10 -115.21808828666306 +103.9166666666667 20 -222.3967471772011 +182.77325300000015 30 0.0 11 -112.94821686566212 +92.08333333333333 21 -224.6994783972126 +182.77325300000015 31 0.0 0 @@ -2887,15 +3269,15 @@ LINE 8 0 10 -112.94821686566212 +92.08333333333333 20 -224.6994783972126 +182.77325300000015 30 0.0 11 -112.59213195152056 +92.08333333333333 21 -224.3484747876574 +182.27325300000015 31 0.0 0 @@ -2905,15 +3287,15 @@ LINE 8 0 10 -126.0500513661497 +4.000000000000001 20 -213.31845164306586 +173.77325300000024 30 0.0 11 -124.68335045538323 +4.000000000000001 21 -213.31845164306586 +182.27325300000024 31 0.0 0 @@ -2923,15 +3305,15 @@ LINE 8 0 10 -124.68335045538323 +4.000000000000001 20 -213.31845164306586 +182.27325300000024 30 0.0 11 -124.68335045538323 +3.5000000000000004 21 -210.58504982153292 +182.27325300000024 31 0.0 0 @@ -2941,15 +3323,15 @@ LINE 8 0 10 -124.68335045538323 +3.5000000000000004 20 -210.58504982153292 +182.27325300000024 30 0.0 11 -126.0500513661497 +3.5000000000000004 21 -210.58504982153292 +173.77325300000024 31 0.0 0 @@ -2959,15 +3341,15 @@ LINE 8 0 10 -114.86200337252136 +3.5000000000000004 20 -39.65755243235414 +173.77325300000024 30 0.0 11 -112.59213195152043 +4.000000000000001 21 -37.354821212342635 +173.77325300000024 31 0.0 0 @@ -2977,15 +3359,15 @@ LINE 8 0 10 -112.59213195152043 +104.00000000000001 20 -37.354821212342635 +147.02325300000012 30 0.0 11 -112.948216865662 +104.00000000000001 21 -37.003817602787414 +151.02325300000012 31 0.0 0 @@ -2995,15 +3377,15 @@ LINE 8 0 10 -112.948216865662 +104.00000000000001 20 -37.003817602787414 +151.02325300000012 30 0.0 11 -115.21808828666295 +92.00000000000001 21 -39.306548822798916 +151.02325300000015 31 0.0 0 @@ -3013,15 +3395,15 @@ LINE 8 0 10 -115.21808828666295 +92.00000000000001 20 -39.306548822798916 +151.02325300000015 30 0.0 11 -114.86200337252136 +92.00000000000001 21 -39.65755243235414 +147.02325300000012 31 0.0 0 @@ -3031,15 +3413,15 @@ LINE 8 0 10 -126.05005136614962 +92.00000000000001 20 -51.11824617846707 +147.02325300000012 30 0.0 11 -124.68335045538315 +104.00000000000001 21 -51.11824617846707 +147.02325300000012 31 0.0 0 @@ -3049,15 +3431,15 @@ LINE 8 0 10 -124.68335045538315 +102.50000000000001 20 -51.11824617846707 +159.0232530000001 30 0.0 11 -124.68335045538315 +102.50000000000001 21 -48.38484435693413 +163.02325300000012 31 0.0 0 @@ -3067,15 +3449,15 @@ LINE 8 0 10 -124.68335045538315 +102.50000000000001 20 -48.38484435693413 +163.02325300000012 30 0.0 11 -126.05005136614962 +93.50000000000001 21 -48.38484435693413 +163.02325300000012 31 0.0 0 @@ -3085,15 +3467,15 @@ LINE 8 0 10 -146.9166666666666 +93.50000000000001 20 -111.601648 +163.02325300000012 30 0.0 11 -135.0833333333333 +93.50000000000001 21 -111.601648 +159.0232530000001 31 0.0 0 @@ -3103,15 +3485,15 @@ LINE 8 0 10 -135.0833333333333 +93.50000000000001 20 -111.601648 +159.0232530000001 30 0.0 11 -135.0833333333333 +102.50000000000001 21 -111.10164799999998 +159.0232530000001 31 0.0 0 @@ -3121,15 +3503,15 @@ LINE 8 0 10 -135.0833333333333 +104.00000000000001 20 -111.10164799999998 +122.52325300000011 30 0.0 11 -146.9166666666666 +104.00000000000001 21 -111.10164799999998 +145.5232530000001 31 0.0 0 @@ -3139,15 +3521,15 @@ LINE 8 0 10 -146.9166666666666 +104.00000000000001 20 -111.10164799999998 +145.5232530000001 30 0.0 11 -146.9166666666666 +92.00000000000001 21 -111.601648 +145.52325300000012 31 0.0 0 @@ -3157,15 +3539,15 @@ LINE 8 0 10 -134.99999999999997 +92.00000000000001 20 -146.851648 +145.52325300000012 30 0.0 11 -134.99999999999997 +92.00000000000001 21 -142.85164799999998 +122.52325300000011 31 0.0 0 @@ -3175,15 +3557,15 @@ LINE 8 0 10 -134.99999999999997 +92.00000000000001 20 -142.85164799999998 +122.52325300000011 30 0.0 11 -146.99999999999997 +104.00000000000001 21 -142.85164799999998 +122.52325300000011 31 0.0 0 @@ -3193,15 +3575,15 @@ LINE 8 0 10 -146.99999999999997 +104.00000000000001 20 -142.85164799999998 +117.02325300000011 30 0.0 11 -146.99999999999997 +104.00000000000001 21 -146.851648 +121.02325300000011 31 0.0 0 @@ -3211,15 +3593,15 @@ LINE 8 0 10 -146.99999999999997 +104.00000000000001 20 -146.851648 +121.02325300000011 30 0.0 11 -134.99999999999997 +92.00000000000001 21 -146.851648 +121.02325300000011 31 0.0 0 @@ -3229,15 +3611,15 @@ LINE 8 0 10 -136.49999999999994 +92.00000000000001 20 -134.851648 +121.02325300000011 30 0.0 11 -136.49999999999991 +92.00000000000001 21 -130.85164799999998 +117.02325300000011 31 0.0 0 @@ -3247,15 +3629,15 @@ LINE 8 0 10 -136.49999999999991 +92.00000000000001 20 -130.85164799999998 +117.02325300000011 30 0.0 11 -145.49999999999994 +104.00000000000001 21 -130.85164799999998 +117.02325300000011 31 0.0 0 @@ -3265,15 +3647,15 @@ LINE 8 0 10 -145.49999999999994 +103.6666666666667 20 -130.85164799999998 +94.5232530000001 30 0.0 11 -145.49999999999994 +103.6666666666667 21 -134.851648 +99.5232530000001 31 0.0 0 @@ -3283,15 +3665,15 @@ LINE 8 0 10 -145.49999999999994 +103.6666666666667 20 -134.851648 +99.5232530000001 30 0.0 11 -136.49999999999994 +92.33333333333331 21 -134.851648 +99.52325300000011 31 0.0 0 @@ -3301,15 +3683,15 @@ LINE 8 0 10 -134.99999999999997 +92.33333333333331 20 -171.351648 +99.52325300000011 30 0.0 11 -134.99999999999997 +92.33333333333331 21 -148.351648 +94.52325300000011 31 0.0 0 @@ -3319,15 +3701,15 @@ LINE 8 0 10 -134.99999999999997 +101.87140729545952 20 -148.351648 +51.01367245455902 30 0.0 11 -146.99999999999997 +110.62380243181975 21 -148.35164799999998 +51.01367245455902 31 0.0 0 @@ -3337,15 +3719,15 @@ LINE 8 0 10 -146.99999999999997 +110.62380243181975 20 -148.35164799999998 +51.01367245455902 30 0.0 11 -146.99999999999997 +110.6238024318198 21 -171.35164799999998 +68.51846272727956 31 0.0 0 @@ -3355,15 +3737,15 @@ LINE 8 0 10 -146.99999999999997 +110.6238024318198 20 -171.35164799999998 +68.51846272727956 30 0.0 11 -134.99999999999997 +101.87140729545958 21 -171.351648 +68.51846272727956 31 0.0 0 @@ -3373,15 +3755,15 @@ LINE 8 0 10 -134.99999999999997 +203.01207919769348 20 -176.85164799999998 +21.798749986471023 30 0.0 11 -134.99999999999997 +185.7261564960397 21 -172.85164799999995 +26.83554947792408 31 0.0 0 @@ -3391,15 +3773,15 @@ LINE 8 0 10 -134.99999999999997 +185.7261564960397 20 -172.85164799999995 +26.83554947792408 30 0.0 11 -146.99999999999997 +185.58628262316586 21 -172.85164799999995 +26.355512708824794 31 0.0 0 @@ -3409,15 +3791,15 @@ LINE 8 0 10 -146.99999999999997 +185.58628262316586 20 -172.85164799999995 +26.355512708824794 30 0.0 11 -146.99999999999997 +202.87220532481965 21 -176.85164799999998 +21.318713217371737 31 0.0 0 @@ -3427,15 +3809,15 @@ LINE 8 0 10 -146.99999999999997 +202.87220532481965 20 -176.85164799999998 +21.318713217371737 30 0.0 11 -134.99999999999997 +203.01207919769348 21 -176.85164799999998 +21.798749986471023 31 0.0 0 @@ -3445,15 +3827,15 @@ LINE 8 0 10 -135.33333333333334 +274.27384350396017 20 -199.35164799999998 +26.83554947792391 30 0.0 11 -135.33333333333334 +256.9879208023064 21 -194.35164799999998 +21.79874998647091 31 0.0 0 @@ -3463,15 +3845,15 @@ LINE 8 0 10 -135.33333333333334 +256.9879208023064 20 -194.35164799999998 +21.79874998647091 30 0.0 11 -146.66666666666666 +257.1277946751802 21 -194.35164799999998 +21.318713217371627 31 0.0 0 @@ -3481,15 +3863,15 @@ LINE 8 0 10 -146.66666666666666 +257.1277946751802 20 -194.35164799999998 +21.318713217371627 30 0.0 11 -146.66666666666666 +274.413717376834 21 -199.35164799999998 +26.355512708824623 31 0.0 0 @@ -3499,15 +3881,15 @@ LINE 8 0 10 -31.949948633850315 +274.413717376834 20 -210.58504982153298 +26.355512708824623 30 0.0 11 -33.31664954461679 +274.27384350396017 21 -210.58504982153298 +26.83554947792391 31 0.0 0 @@ -3517,15 +3899,15 @@ LINE 8 0 10 -33.31664954461679 +358.1285927045404 20 -210.58504982153298 +68.51846272727916 30 0.0 11 -33.31664954461679 +349.37619756818015 21 -213.3184516430659 +68.51846272727917 31 0.0 0 @@ -3535,15 +3917,15 @@ LINE 8 0 10 -33.31664954461679 +349.37619756818015 20 -213.3184516430659 +68.51846272727917 30 0.0 11 -31.949948633850315 +349.37619756818015 21 -213.3184516430659 +51.013672454558645 31 0.0 0 @@ -3553,15 +3935,15 @@ LINE 8 0 10 -22.91666666666666 +349.37619756818015 20 -111.60164800000003 +51.013672454558645 30 0.0 11 -11.08333333333333 +358.1285927045404 21 -111.60164800000003 +51.01367245455863 31 0.0 0 @@ -3571,15 +3953,15 @@ LINE 8 0 10 -11.08333333333333 +101.87140729545968 20 -111.60164800000003 +257.52804327272065 30 0.0 11 -11.08333333333333 +110.62380243181993 21 -111.10164800000003 +257.52804327272065 31 0.0 0 @@ -3589,15 +3971,15 @@ LINE 8 0 10 -11.08333333333333 +110.62380243181993 20 -111.10164800000003 +257.52804327272065 30 0.0 11 -22.91666666666666 +110.62380243181998 21 -111.10164800000003 +275.0328335454412 31 0.0 0 @@ -3607,15 +3989,15 @@ LINE 8 0 10 -22.91666666666666 +110.62380243181998 20 -111.10164800000003 +275.0328335454412 30 0.0 11 -22.91666666666666 +101.87140729545975 21 -111.60164800000003 +275.03283354544124 31 0.0 0 @@ -3625,15 +4007,15 @@ LINE 8 0 10 -11.000000000000002 +368.0000000000001 20 -146.85164800000004 +147.02325300000004 30 0.0 11 -11.000000000000002 +368.0000000000001 21 -142.851648 +151.02325300000004 31 0.0 0 @@ -3643,15 +4025,15 @@ LINE 8 0 10 -11.000000000000002 +368.0000000000001 20 -142.851648 +151.02325300000004 30 0.0 11 -23.000000000000004 +356.00000000000017 21 -142.851648 +151.02325300000004 31 0.0 0 @@ -3661,15 +4043,15 @@ LINE 8 0 10 -23.000000000000004 +356.00000000000017 20 -142.851648 +151.02325300000004 30 0.0 11 -23.000000000000004 +356.00000000000017 21 -146.85164800000004 +147.02325300000004 31 0.0 0 @@ -3679,15 +4061,15 @@ LINE 8 0 10 -23.000000000000004 +356.00000000000017 20 -146.85164800000004 +147.02325300000004 30 0.0 11 -11.000000000000002 +368.0000000000001 21 -146.85164800000004 +147.02325300000004 31 0.0 0 @@ -3697,15 +4079,15 @@ LINE 8 0 10 -12.5 +366.50000000000017 20 -134.85164800000004 +159.023253 30 0.0 11 -12.5 +366.50000000000017 21 -130.851648 +163.02325300000004 31 0.0 0 @@ -3715,15 +4097,15 @@ LINE 8 0 10 -12.5 +366.50000000000017 20 -130.851648 +163.02325300000004 30 0.0 11 -21.500000000000004 +357.50000000000017 21 -130.851648 +163.02325300000004 31 0.0 0 @@ -3733,15 +4115,15 @@ LINE 8 0 10 -21.500000000000004 +357.50000000000017 20 -130.851648 +163.02325300000004 30 0.0 11 -21.500000000000004 +357.50000000000017 21 -134.85164800000004 +159.023253 31 0.0 0 @@ -3751,15 +4133,15 @@ LINE 8 0 10 -21.500000000000004 +357.50000000000017 20 -134.85164800000004 +159.023253 30 0.0 11 -12.5 +366.50000000000017 21 -134.85164800000004 +159.023253 31 0.0 0 @@ -3769,15 +4151,15 @@ LINE 8 0 10 -11.000000000000016 +368.0000000000001 20 -171.35164800000004 +122.52325300000003 30 0.0 11 -11.000000000000016 +368.0000000000001 21 -148.35164800000004 +145.523253 31 0.0 0 @@ -3787,15 +4169,15 @@ LINE 8 0 10 -11.000000000000016 +368.0000000000001 20 -148.35164800000004 +145.523253 30 0.0 11 -23.000000000000007 +356.00000000000017 21 -148.35164800000004 +145.523253 31 0.0 0 @@ -3805,15 +4187,15 @@ LINE 8 0 10 -23.000000000000007 +356.00000000000017 20 -148.35164800000004 +145.523253 30 0.0 11 -23.000000000000007 +356.00000000000017 21 -171.35164800000004 +122.52325300000003 31 0.0 0 @@ -3823,15 +4205,15 @@ LINE 8 0 10 -23.000000000000007 +356.00000000000017 20 -171.35164800000004 +122.52325300000003 30 0.0 11 -11.000000000000016 +368.0000000000001 21 -171.35164800000004 +122.52325300000003 31 0.0 0 @@ -3841,15 +4223,15 @@ LINE 8 0 10 -11.000000000000016 +368.0000000000001 20 -176.851648 +117.02325300000003 30 0.0 11 -11.000000000000016 +368.0000000000001 21 -172.85164800000004 +121.02325300000003 31 0.0 0 @@ -3859,15 +4241,15 @@ LINE 8 0 10 -11.000000000000016 +368.0000000000001 20 -172.85164800000004 +121.02325300000003 30 0.0 11 -23.000000000000014 +356.00000000000017 21 -172.85164800000004 +121.02325300000003 31 0.0 0 @@ -3877,15 +4259,15 @@ LINE 8 0 10 -23.000000000000014 +356.00000000000017 20 -172.85164800000004 +121.02325300000003 30 0.0 11 -23.000000000000014 +356.00000000000017 21 -176.851648 +117.02325300000003 31 0.0 0 @@ -3895,15 +4277,15 @@ LINE 8 0 10 -23.000000000000014 +356.00000000000017 20 -176.851648 +117.02325300000003 30 0.0 11 -11.000000000000016 +368.0000000000001 21 -176.851648 +117.02325300000003 31 0.0 0 @@ -3913,15 +4295,15 @@ LINE 8 0 10 -11.333333333333359 +367.6666666666668 20 -199.35164800000004 +94.52325300000001 30 0.0 11 -11.333333333333359 +367.6666666666668 21 -194.35164800000004 +99.52325300000003 31 0.0 0 @@ -3931,15 +4313,15 @@ LINE 8 0 10 -11.333333333333359 +367.6666666666668 20 -194.35164800000004 +99.52325300000003 30 0.0 11 -22.666666666666693 +356.3333333333335 21 -194.35164800000004 +99.52325300000003 31 0.0 0 @@ -3949,15 +4331,15 @@ LINE 8 0 10 -22.666666666666693 +356.3333333333335 20 -194.35164800000004 +99.52325300000003 30 0.0 11 -22.666666666666693 +356.3333333333335 21 -199.35164800000004 +94.52325300000001 31 0.0 0 diff --git a/rocolib/output/BoatWithServoMount/tree.png b/rocolib/output/BoatWithServoMount/tree.png index 168c6888d342f2fc120d54aa25b778a62509d792..b927d9b00a6b946c0fc6a6ec523464af0a0c55b8 100644 Binary files a/rocolib/output/BoatWithServoMount/tree.png and b/rocolib/output/BoatWithServoMount/tree.png differ