diff --git a/rocolib/builders/boat/BatteryStackMountBuilder.py b/rocolib/builders/boat/BatteryStackMountBuilder.py index 6a77c3d3d546dc1ab6a0dd9a2e4534d4266be831..eba6eadc9aac86d0351505a36e36fc19f3f36aff 100644 --- a/rocolib/builders/boat/BatteryStackMountBuilder.py +++ b/rocolib/builders/boat/BatteryStackMountBuilder.py @@ -24,12 +24,19 @@ c.addConstConstraint(("rarm", "w"), 60) c.addConnection(("larm", "l"), ("holder", "topedge3"), angle=-45) c.addConnection(("rarm", "l"), ("holder", "botedge3"), angle=-45) -c.addSubcomponent("terminals", "Cutout") -c.addConstConstraint(("terminals", "dx"), 6) -c.addConstraint(("terminals", "dy"), "numBatteries", "x * 6") +c.addSubcomponent("terminals1", "Cutout") +c.addConstConstraint(("terminals1", "dx"), 3) +c.addConstraint(("terminals1", "dy"), "numBatteries", "x * 6") c.addConnection(("holder", "face3"), - ("terminals", "decoration"), - mode="hole", offset=Function(params=("numBatteries"), fnstring="(-22, 0)")) #,offset=Function(params=("dxServoArm"), fnstring="(7, 0)" + ("terminals1", "decoration"), + mode="hole", offset=Function(params=("numBatteries"), fnstring="(-28, 0)")) + +c.addSubcomponent("terminals2", "Cutout") +c.addConstConstraint(("terminals2", "dx"), 3) +c.addConstraint(("terminals2", "dy"), "numBatteries", "x * 6") +c.addConnection(("holder", "face2"), + ("terminals2", "decoration"), + mode="hole", offset=Function(params=("numBatteries"), fnstring="(7, 0)")) c.inheritInterface("leftArmInterface", ("larm", "r")) c.inheritInterface("rightArmInterface", ("rarm", "r")) diff --git a/rocolib/builders/boat/BoatWithServoMountAndStack.py b/rocolib/builders/boat/BoatWithServoMountAndStack.py index 00592f0466bfc664736e40ac663cb7ddf8b53677..1d3416317e52abba1aa5738ae366c05ee5459914 100644 --- a/rocolib/builders/boat/BoatWithServoMountAndStack.py +++ b/rocolib/builders/boat/BoatWithServoMountAndStack.py @@ -10,14 +10,14 @@ c.inheritAllInterfaces("espStack") c.addSubcomponent("topPortSplit", "SplitEdge") c.addConstraint(("topPortSplit", "toplength"), ("topDistance"), "(x,)") -c.addConstraint(("topPortSplit", "botlength"), ("topDistance", "espStack.stack.length"), "(x[0] - x[1], x[1])") #but the value of the new component's boat.length parameter is completely disconnected from the value of the boat component's boat.length parameter +c.addConstraint(("topPortSplit", "botlength"), ("topDistance", "espStack.stack.length"), "(x[1], x[0] - x[1])") #but the value of the new component's boat.length parameter is completely disconnected from the value of the boat component's boat.length parameter c.addConnection(("topPortSplit", "topedge0"), ("boatwithservo", "topPort")) #both face the same direction -c.addConnection(("topPortSplit", "botedge1"), ("espStack", "leftArmInterface"), angle=45) +c.addConnection(("topPortSplit", "botedge0"), ("espStack", "leftArmInterface"), angle=45) c.addSubcomponent("topStarSplit", "SplitEdge") c.addConstraint(("topStarSplit", "toplength"), ("topDistance"), "(x,)") -c.addConstraint(("topStarSplit", "botlength"), ("topDistance", "espStack.stack.length"), "(x[1], x[0]-x[1])") #but the value of the new component's boat.length parameter is completely disconnected from the value of the boat component's boat.length parameter +c.addConstraint(("topStarSplit", "botlength"), ("topDistance", "espStack.stack.length"), "(x[0]-x[1], x[1])") #but the value of the new component's boat.length parameter is completely disconnected from the value of the boat component's boat.length parameter c.addConnection(("topStarSplit", "topedge0"), ("boatwithservo", "topStar")) #both face the same direction -c.addConnection(("topStarSplit", "botedge0"), ("espStack", "rightArmInterface"), tabWidth=10) +c.addConnection(("topStarSplit", "botedge1"), ("espStack", "rightArmInterface"), tabWidth=10) c.toLibrary("BoatWithServoMountAndStack") diff --git a/rocolib/builders/boat/BoatWithServoMountBuilder.py b/rocolib/builders/boat/BoatWithServoMountBuilder.py index 3eb5ef756808031df7e3d8f581582c4c027e2d4a..18e0bc26bb361079368ebcb56da4d86648e27775 100644 --- a/rocolib/builders/boat/BoatWithServoMountBuilder.py +++ b/rocolib/builders/boat/BoatWithServoMountBuilder.py @@ -13,7 +13,7 @@ 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 +c.addParameter("topDistance", 80, paramType="length", minValue=0) #servo mount length above the connecting edge c.addParameter("botDistance", 80, paramType="length", minValue=73) #servo mount length below the connecting edge c.addConstraint(("boat","boat.length"), ("topDistance", "botDistance", "lServoMount.depth"), "x[0] + x[1] + x[2]") diff --git a/rocolib/builders/boat/BoatWithServoStackBattery.py b/rocolib/builders/boat/BoatWithServoStackBattery.py index be6b79d8ce0c804ea8f95eb4740e32f4d261640a..40f5b76d8d57913dcec8c9301a330a46ddfaf866 100644 --- a/rocolib/builders/boat/BoatWithServoStackBattery.py +++ b/rocolib/builders/boat/BoatWithServoStackBattery.py @@ -6,7 +6,7 @@ c = Component() c.addSubcomponent("boatwithservostack", "BoatWithServoMountAndStack", inherit=True, prefix=None) c.inheritAllInterfaces("boatwithservostack") -c.addSubcomponent("BatteryStackMount") -c.inheritAllInterfaces("boatwithservostack") +c.addSubcomponent("batterystackmount", "BatteryStackMount") +c.inheritAllInterfaces("batterystackmount") c.toLibrary("BoatWithServoStackBattery") diff --git a/rocolib/builders/boat/ServoMountWithArmsBuilder.py b/rocolib/builders/boat/ServoMountWithArmsBuilder.py index 5fdc51dcbba9cb2412f41e8d596f7875ef842053..52435286d7d81b7b18b7177679eb5e4a8160a9d7 100644 --- a/rocolib/builders/boat/ServoMountWithArmsBuilder.py +++ b/rocolib/builders/boat/ServoMountWithArmsBuilder.py @@ -3,33 +3,35 @@ from rocolib.api.Function import Function c = Component() -c.addSubcomponent("servoMount", "MountedServo") - -c.addSubcomponent("leftArm", "Rectangle") -c.addSubcomponent("rightArm", "Rectangle") - -c.addParameter("supportLength", 60, parameterType="length") # = boat depth - -c.addConstConstraint(("leftArm", "w"), 10) -c.addConstraint(("leftArm", "l"), "supportLength") #DEPTH OF BOAT - 3 for the tab - -c.addConstConstraint(("rightArm", "w"), 10) -c.addConstraint(("rightArm", "l"), "supportLength") #DEPTH OF BOAT - -c.join(("servoMount", "topedge1"), ("leftArm", "r")) #l/r, not t/b -c.join(("servoMount", "botedge1"), ("rightArm", "r")) -# -# c.inheritInterface("leftArmInterface", ("leftArm", "l")) -# c.inheritInterface("rightArmInterface", ("rightArm", "l")) -# -# c.addParameter("driveservo", "fs90r", paramType="dimension") -# -# c.inheritAllInterfaces("beam", prefix=None) -# c.inheritAllInterfaces("mount") -# c.addConnection(("beam", "face0"), -# ("mount", "decoration"), -# mode="hole", offset=Function(params="offset")) -# -# c.inheritAllInterfaces("beam") +c.addParameter("depth", 60, parameterType="length") # = boat depth +c.addParameter("width", 90, parameterType="length") # = boat depth + +c.addSubcomponent("servoMount", "SideServoMount", inherit="depth") + +c.addSubcomponent("leftArmDown", "Rectangle") +c.addConstConstraint(("leftArmDown", "w"), 24) +c.addConstraint(("leftArmDown", "l"), "depth", "x-3") #DEPTH OF BOAT - 3 for the tab + +c.addSubcomponent("leftArmAcross", "Rectangle") +c.addConstConstraint(("leftArmAcross", "w"), 24) +c.addConstraint(("leftArmAcross", "l"), ("width", "servoMount.depth"), "x[0]/2 - x[1]/2") #DEPTH OF BOAT - 3 for the tab + +c.addConnection(("leftArmDown", "r"), ("leftArmAcross", "r"), angle=-90) + +c.addSubcomponent("rightArmDown", "Rectangle") +c.addConstConstraint(("rightArmDown", "w"), 24) +c.addConstraint(("rightArmDown", "l"), "depth", "x-3") #DEPTH OF BOAT + +c.addSubcomponent("rightArmAcross", "Rectangle") +c.addConstConstraint(("rightArmAcross", "w"), 24) +c.addConstraint(("rightArmAcross", "l"), ("width", "servoMount.depth"), "x[0]/2 - x[1]/2") #DEPTH OF BOAT - 3 for the tab + +c.addConnection(("rightArmDown", "r"), ("rightArmAcross", "r"), angle=-90) + +c.addConnection(("servoMount", "leftInterface"), ("leftArmAcross", "l")) #l/r, not t/b +c.addConnection(("servoMount", "rightInterface"), ("rightArmAcross", "l")) + +c.inheritInterface("leftArmInterface", ("leftArmDown", "l")) +c.inheritInterface("rightArmInterface", ("rightArmDown", "l")) c.toLibrary("ServoMountWithArms") diff --git a/rocolib/library/BatteryStackMount.yaml b/rocolib/library/BatteryStackMount.yaml index fe3f08a6fa9b5678ec934ce03ace34295662740d..db336c70c975c0fd5229e3d78a3cdccb3b7008c4 100644 --- a/rocolib/library/BatteryStackMount.yaml +++ b/rocolib/library/BatteryStackMount.yaml @@ -14,11 +14,20 @@ connections: connection2: - - holder - face3 - - - terminals + - - terminals1 - decoration - mode: hole offset: - function: (-22, 0) + function: (-28, 0) + parameter: numBatteries + connection3: + - - holder + - face2 + - - terminals2 + - decoration + - mode: hole + offset: + function: (7, 0) parameter: numBatteries interfaces: leftArmInterface: @@ -268,11 +277,19 @@ subcomponents: function: ((0.5 * x[1] - 0.5 * ( 9 * x[0])) ** 2 + (x[2] - 17) ** 2) ** 0.5 parameter: *id001 w: 60 - terminals: + terminals1: + classname: Cutout + kwargs: {} + parameters: + dx: 3 + dy: + function: x * 6 + parameter: numBatteries + terminals2: classname: Cutout kwargs: {} parameters: - dx: 6 + dx: 3 dy: function: x * 6 parameter: numBatteries diff --git a/rocolib/library/BoatWithServoMount.yaml b/rocolib/library/BoatWithServoMount.yaml index c9815f5d43f6b3df0f03a00644b3299d12f7d16e..e9539d1306e2188b6837464f06135ba0b5fb03f3 100644 --- a/rocolib/library/BoatWithServoMount.yaml +++ b/rocolib/library/BoatWithServoMount.yaml @@ -116,7 +116,7 @@ parameters: units: mm valueType: (float, int) topDistance: - defaultValue: 50 + defaultValue: 80 spec: minValue: 0 units: mm diff --git a/rocolib/library/BoatWithServoMountAndStack.yaml b/rocolib/library/BoatWithServoMountAndStack.yaml index e5ef2eeb3e58ddab4086f04975cc4efe68c35018..a8d8755c7e37cd0d8dbc1abe3d095385ba0926f8 100644 --- a/rocolib/library/BoatWithServoMountAndStack.yaml +++ b/rocolib/library/BoatWithServoMountAndStack.yaml @@ -7,7 +7,7 @@ connections: - {} connection1: - - topPortSplit - - botedge1 + - botedge0 - - espStack - leftArmInterface - angle: 45 @@ -19,7 +19,7 @@ connections: - {} connection3: - - topStarSplit - - botedge0 + - botedge1 - - espStack - rightArmInterface - tabWidth: 10 @@ -43,32 +43,26 @@ interfaces: interface: rightArmInterface subcomponent: espStack 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 units: mm valueType: (float, int) botDistance: - defaultValue: 100 + defaultValue: 80 spec: minValue: 73 units: mm valueType: (float, int) - bow.point: - defaultValue: 50 + depth: + defaultValue: 70 spec: minValue: 0 units: mm @@ -189,20 +183,32 @@ 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 valueType: (float, int) topDistance: - defaultValue: 150 + defaultValue: 80 + spec: + minValue: 0 + units: mm + valueType: (float, int) + width: + defaultValue: 90 spec: minValue: 0 units: mm @@ -213,24 +219,26 @@ subcomponents: classname: BoatWithServoMount kwargs: {} parameters: - boat.depth: - parameter: boat.depth - boat.length: - parameter: boat.length - boat.width: - parameter: boat.width + boat.bow.point: + parameter: boat.bow.point + boat.stern.point: + parameter: boat.stern.point botDistance: parameter: botDistance - bow.point: - parameter: bow.point + depth: + parameter: depth lServoMount.depth: parameter: lServoMount.depth + lServoMount.length: + parameter: lServoMount.length rServoMount.depth: parameter: rServoMount.depth - stern.point: - parameter: stern.point + rServoMount.length: + parameter: rServoMount.length topDistance: parameter: topDistance + width: + parameter: width espStack: classname: StackMount kwargs: {} @@ -278,7 +286,7 @@ subcomponents: kwargs: {} parameters: botlength: - function: (x[0] - x[1], x[1]) + function: (x[1], x[0] - x[1]) parameter: &id001 - topDistance - espStack.stack.length @@ -290,7 +298,7 @@ subcomponents: kwargs: {} parameters: botlength: - function: (x[1], x[0]-x[1]) + function: (x[0]-x[1], x[1]) parameter: *id001 toplength: function: (x,) diff --git a/rocolib/library/ServoMountWithArms.yaml b/rocolib/library/ServoMountWithArms.yaml new file mode 100644 index 0000000000000000000000000000000000000000..002b20ea82da0159fbe773c95b97d07877596507 --- /dev/null +++ b/rocolib/library/ServoMountWithArms.yaml @@ -0,0 +1,89 @@ +connections: + connection0: + - - leftArmDown + - r + - - leftArmAcross + - r + - angle: -90 + connection1: + - - rightArmDown + - r + - - rightArmAcross + - r + - angle: -90 + connection2: + - - servoMount + - leftInterface + - - leftArmAcross + - l + - {} + connection3: + - - servoMount + - rightInterface + - - rightArmAcross + - l + - {} +interfaces: + leftArmInterface: + interface: l + subcomponent: leftArmDown + rightArmInterface: + interface: l + subcomponent: rightArmDown +parameters: + depth: + defaultValue: 60 + spec: + parameterType: length + servoMount.depth: + defaultValue: 24 + spec: + minValue: 0 + units: mm + valueType: (float, int) + width: + defaultValue: 90 + spec: + parameterType: length +source: ../builders/boat/ServoMountWithArmsBuilder.py +subcomponents: + leftArmAcross: + classname: Rectangle + kwargs: {} + parameters: + l: + function: x[0]/2 - x[1]/2 + parameter: &id001 + - width + - servoMount.depth + w: 24 + leftArmDown: + classname: Rectangle + kwargs: {} + parameters: + l: + function: x-3 + parameter: depth + w: 24 + rightArmAcross: + classname: Rectangle + kwargs: {} + parameters: + l: + function: x[0]/2 - x[1]/2 + parameter: *id001 + w: 24 + rightArmDown: + classname: Rectangle + kwargs: {} + parameters: + l: + function: x-3 + parameter: depth + w: 24 + servoMount: + classname: SideServoMount + kwargs: {} + parameters: + depth: + parameter: servoMount.depth diff --git a/rocolib/output/.DS_Store b/rocolib/output/.DS_Store index 10880832d6173374d62b9ec42431aec6baa82c86..b0bc45b8e57b02ade4ea4fa469d257cedd32afee 100644 Binary files a/rocolib/output/.DS_Store and b/rocolib/output/.DS_Store differ diff --git a/rocolib/output/BatteryStackMount/graph-anim.svg b/rocolib/output/BatteryStackMount/graph-anim.svg index c9b49e0e7619b1e5fd9780a2fa203eb9cd803391..ec0f8c28dea49ce47fc8b3ee7d7f4cdf80d74668 100644 --- a/rocolib/output/BatteryStackMount/graph-anim.svg +++ b/rocolib/output/BatteryStackMount/graph-anim.svg @@ -23,14 +23,18 @@ <line stroke="#000000" x1="61.65427803486147" x2="61.65427803486147" y1="0.0" y2="10.000000000000002"/> <line stroke="#000000" x1="88.65427803486148" x2="61.65427803486147" y1="0.0" y2="0.0"/> <line stroke="#000000" x1="88.65427803486148" x2="88.65427803486148" y1="10.000000000000002" y2="0.0"/> - <line stroke="#888888" x1="84.15427803486146" x2="84.15427803486146" y1="109.00000000000001" y2="115.00000000000001"/> - <line stroke="#888888" x1="84.15427803486146" x2="66.15427803486146" y1="115.00000000000001" y2="115.00000000000001"/> - <line stroke="#888888" x1="66.15427803486146" x2="66.15427803486146" y1="115.00000000000001" y2="109.00000000000001"/> - <line stroke="#888888" x1="66.15427803486146" x2="84.15427803486146" y1="109.00000000000001" y2="109.00000000000001"/> + <line stroke="#888888" x1="84.15427803486146" x2="84.15427803486146" y1="104.50000000000001" y2="107.50000000000001"/> + <line stroke="#888888" x1="84.15427803486146" x2="66.15427803486146" y1="107.50000000000001" y2="107.50000000000001"/> + <line stroke="#888888" x1="66.15427803486146" x2="66.15427803486146" y1="107.50000000000001" y2="104.50000000000001"/> + <line stroke="#888888" x1="66.15427803486146" x2="84.15427803486146" y1="104.50000000000001" y2="104.50000000000001"/> <line stroke="#888888" x1="70.40427803486146" x2="79.90427803486146" y1="156.25000000000003" y2="156.25000000000003"/> <line stroke="#888888" x1="79.90427803486146" x2="79.90427803486146" y1="156.25000000000003" y2="156.75"/> <line stroke="#888888" x1="79.90427803486146" x2="70.40427803486146" y1="156.75" y2="156.75"/> <line stroke="#888888" x1="70.40427803486146" x2="70.40427803486146" y1="156.75" y2="156.25000000000003"/> + <line stroke="#888888" x1="84.15427803486146" x2="84.15427803486146" y1="101.00000000000001" y2="104.00000000000001"/> + <line stroke="#888888" x1="84.15427803486146" x2="66.15427803486146" y1="104.00000000000001" y2="104.00000000000001"/> + <line stroke="#888888" x1="66.15427803486146" x2="66.15427803486146" y1="104.00000000000001" y2="101.00000000000001"/> + <line stroke="#888888" x1="66.15427803486146" x2="84.15427803486146" y1="101.00000000000001" y2="101.00000000000001"/> <line stroke="#888888" x1="79.65427803486146" x2="79.65427803486146" y1="2.5000000000000004" y2="7.500000000000001"/> <line stroke="#888888" x1="79.65427803486146" x2="70.65427803486146" y1="7.500000000000001" y2="7.500000000000001"/> <line stroke="#888888" x1="70.65427803486146" x2="70.65427803486146" y1="7.500000000000001" y2="2.5000000000000004"/> diff --git a/rocolib/output/BatteryStackMount/graph-autofold-default.dxf b/rocolib/output/BatteryStackMount/graph-autofold-default.dxf index 23fb3127b6a1e5018a3cb805670418068220bb89..9dcad2d111378140c62d75809428abdfe3cfe4ce 100644 --- a/rocolib/output/BatteryStackMount/graph-autofold-default.dxf +++ b/rocolib/output/BatteryStackMount/graph-autofold-default.dxf @@ -1383,13 +1383,13 @@ cut 10 84.15427803486146 20 -109.00000000000001 +104.50000000000001 30 0.0 11 84.15427803486146 21 -115.00000000000001 +107.50000000000001 31 0.0 0 @@ -1401,13 +1401,13 @@ cut 10 84.15427803486146 20 -115.00000000000001 +107.50000000000001 30 0.0 11 66.15427803486146 21 -115.00000000000001 +107.50000000000001 31 0.0 0 @@ -1419,13 +1419,13 @@ cut 10 66.15427803486146 20 -115.00000000000001 +107.50000000000001 30 0.0 11 66.15427803486146 21 -109.00000000000001 +104.50000000000001 31 0.0 0 @@ -1437,13 +1437,13 @@ cut 10 66.15427803486146 20 -109.00000000000001 +104.50000000000001 30 0.0 11 84.15427803486146 21 -109.00000000000001 +104.50000000000001 31 0.0 0 @@ -1525,6 +1525,78 @@ LINE 8 cut 10 +84.15427803486146 + 20 +101.00000000000001 + 30 +0.0 + 11 +84.15427803486146 + 21 +104.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +84.15427803486146 + 20 +104.00000000000001 + 30 +0.0 + 11 +66.15427803486146 + 21 +104.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +66.15427803486146 + 20 +104.00000000000001 + 30 +0.0 + 11 +66.15427803486146 + 21 +101.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +66.15427803486146 + 20 +101.00000000000001 + 30 +0.0 + 11 +84.15427803486146 + 21 +101.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 79.65427803486146 20 2.5000000000000004 diff --git a/rocolib/output/BatteryStackMount/graph-autofold-graph.dxf b/rocolib/output/BatteryStackMount/graph-autofold-graph.dxf index 4516004874f20a6d4f7159ac3d7107fc19719e90..2eaed7e0de2e51d8cb324216bb058579a4b95c3a 100644 --- a/rocolib/output/BatteryStackMount/graph-autofold-graph.dxf +++ b/rocolib/output/BatteryStackMount/graph-autofold-graph.dxf @@ -1353,13 +1353,13 @@ LINE 10 84.15427803486146 20 -109.00000000000001 +104.50000000000001 30 0.0 11 84.15427803486146 21 -115.00000000000001 +107.50000000000001 31 0.0 0 @@ -1371,13 +1371,13 @@ LINE 10 84.15427803486146 20 -115.00000000000001 +107.50000000000001 30 0.0 11 66.15427803486146 21 -115.00000000000001 +107.50000000000001 31 0.0 0 @@ -1389,13 +1389,13 @@ LINE 10 66.15427803486146 20 -115.00000000000001 +107.50000000000001 30 0.0 11 66.15427803486146 21 -109.00000000000001 +104.50000000000001 31 0.0 0 @@ -1407,13 +1407,13 @@ LINE 10 66.15427803486146 20 -109.00000000000001 +104.50000000000001 30 0.0 11 84.15427803486146 21 -109.00000000000001 +104.50000000000001 31 0.0 0 @@ -1495,6 +1495,78 @@ LINE 8 0 10 +84.15427803486146 + 20 +101.00000000000001 + 30 +0.0 + 11 +84.15427803486146 + 21 +104.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +84.15427803486146 + 20 +104.00000000000001 + 30 +0.0 + 11 +66.15427803486146 + 21 +104.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +66.15427803486146 + 20 +104.00000000000001 + 30 +0.0 + 11 +66.15427803486146 + 21 +101.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +66.15427803486146 + 20 +101.00000000000001 + 30 +0.0 + 11 +84.15427803486146 + 21 +101.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 79.65427803486146 20 2.5000000000000004 diff --git a/rocolib/output/BatteryStackMount/graph-lasercutter.svg b/rocolib/output/BatteryStackMount/graph-lasercutter.svg index 29e877aa50384264f0345c6290b94c9b9ef2844a..a31b96e7d4f984305f236990100bb8b3cb05ec1e 100644 --- a/rocolib/output/BatteryStackMount/graph-lasercutter.svg +++ b/rocolib/output/BatteryStackMount/graph-lasercutter.svg @@ -23,14 +23,18 @@ <line stroke="#000000" x1="61.65427803486147" x2="61.65427803486147" y1="0.0" y2="10.000000000000002"/> <line stroke="#000000" x1="88.65427803486148" x2="61.65427803486147" y1="0.0" y2="0.0"/> <line stroke="#000000" x1="88.65427803486148" x2="88.65427803486148" y1="10.000000000000002" y2="0.0"/> - <line stroke="#888888" x1="84.15427803486146" x2="84.15427803486146" y1="109.00000000000001" y2="115.00000000000001"/> - <line stroke="#888888" x1="84.15427803486146" x2="66.15427803486146" y1="115.00000000000001" y2="115.00000000000001"/> - <line stroke="#888888" x1="66.15427803486146" x2="66.15427803486146" y1="115.00000000000001" y2="109.00000000000001"/> - <line stroke="#888888" x1="66.15427803486146" x2="84.15427803486146" y1="109.00000000000001" y2="109.00000000000001"/> + <line stroke="#888888" x1="84.15427803486146" x2="84.15427803486146" y1="104.50000000000001" y2="107.50000000000001"/> + <line stroke="#888888" x1="84.15427803486146" x2="66.15427803486146" y1="107.50000000000001" y2="107.50000000000001"/> + <line stroke="#888888" x1="66.15427803486146" x2="66.15427803486146" y1="107.50000000000001" y2="104.50000000000001"/> + <line stroke="#888888" x1="66.15427803486146" x2="84.15427803486146" y1="104.50000000000001" y2="104.50000000000001"/> <line stroke="#888888" x1="70.40427803486146" x2="79.90427803486146" y1="156.25000000000003" y2="156.25000000000003"/> <line stroke="#888888" x1="79.90427803486146" x2="79.90427803486146" y1="156.25000000000003" y2="156.75"/> <line stroke="#888888" x1="79.90427803486146" x2="70.40427803486146" y1="156.75" y2="156.75"/> <line stroke="#888888" x1="70.40427803486146" x2="70.40427803486146" y1="156.75" y2="156.25000000000003"/> + <line stroke="#888888" x1="84.15427803486146" x2="84.15427803486146" y1="101.00000000000001" y2="104.00000000000001"/> + <line stroke="#888888" x1="84.15427803486146" x2="66.15427803486146" y1="104.00000000000001" y2="104.00000000000001"/> + <line stroke="#888888" x1="66.15427803486146" x2="66.15427803486146" y1="104.00000000000001" y2="101.00000000000001"/> + <line stroke="#888888" x1="66.15427803486146" x2="84.15427803486146" y1="101.00000000000001" y2="101.00000000000001"/> <line stroke="#888888" x1="79.65427803486146" x2="79.65427803486146" y1="2.5000000000000004" y2="7.500000000000001"/> <line stroke="#888888" x1="79.65427803486146" x2="70.65427803486146" y1="7.500000000000001" y2="7.500000000000001"/> <line stroke="#888888" x1="70.65427803486146" x2="70.65427803486146" y1="7.500000000000001" y2="2.5000000000000004"/> diff --git a/rocolib/output/BatteryStackMount/graph-model.png b/rocolib/output/BatteryStackMount/graph-model.png index 564ba0dd32929f3aa03863e063990d27a6b5059d..17468a3d0cf0059759732c0aa378c99227993aa8 100644 Binary files a/rocolib/output/BatteryStackMount/graph-model.png and b/rocolib/output/BatteryStackMount/graph-model.png differ diff --git a/rocolib/output/BatteryStackMount/graph-model.stl b/rocolib/output/BatteryStackMount/graph-model.stl index 1b2f49cc22684b5a272ffe325f30e0f57c63beef..f5373cfc0e9e28a7e5290aef4f5a3dc783150310 100644 --- a/rocolib/output/BatteryStackMount/graph-model.stl +++ b/rocolib/output/BatteryStackMount/graph-model.stl @@ -57,49 +57,77 @@ endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0619 -0.0300 0.0071 vertex -0.0428 -0.0300 -0.0120 -vertex -0.0308 -0.0300 0.0000 +vertex -0.0361 -0.0300 0.0011 +vertex -0.0489 -0.0300 0.0138 endloop endfacet facet normal 0 0 0 outer loop +vertex -0.0361 -0.0300 0.0011 +vertex -0.0428 -0.0300 -0.0120 vertex -0.0308 -0.0300 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0619 -0.0300 0.0071 +vertex -0.0489 -0.0300 0.0138 vertex -0.0499 -0.0300 0.0191 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0489 -0.0300 0.0138 vertex -0.0619 -0.0300 0.0071 +vertex -0.0428 -0.0300 -0.0120 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0308 -0.0300 0.0000 +vertex -0.0340 -0.0300 0.0032 +vertex -0.0361 -0.0300 0.0011 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0467 -0.0300 0.0159 +vertex -0.0499 -0.0300 0.0191 +vertex -0.0489 -0.0300 0.0138 endloop endfacet facet normal 0 0 0 outer loop vertex -0.0308 -0.0300 0.0000 -vertex -0.0340 -0.0250 0.0032 -vertex -0.0467 -0.0250 0.0159 +vertex -0.0340 -0.0295 0.0032 +vertex -0.0467 -0.0295 0.0159 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0340 -0.0250 0.0032 +vertex -0.0340 -0.0295 0.0032 vertex -0.0308 -0.0300 0.0000 -vertex -0.0340 -0.0190 0.0032 +vertex -0.0340 -0.0265 0.0032 endloop endfacet facet normal 0 0 0 outer loop vertex -0.0499 -0.0300 0.0191 -vertex -0.0467 -0.0250 0.0159 -vertex -0.0467 -0.0190 0.0159 +vertex -0.0467 -0.0295 0.0159 +vertex -0.0467 -0.0265 0.0159 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0467 -0.0250 0.0159 +vertex -0.0467 -0.0295 0.0159 vertex -0.0499 -0.0300 0.0191 vertex -0.0308 -0.0300 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0340 -0.0190 0.0032 +vertex -0.0340 -0.0265 0.0032 vertex -0.0308 0.0300 0.0000 vertex -0.0499 0.0300 0.0191 endloop @@ -107,13 +135,13 @@ endfacet facet normal 0 0 0 outer loop vertex -0.0308 0.0300 0.0000 -vertex -0.0340 -0.0190 0.0032 +vertex -0.0340 -0.0265 0.0032 vertex -0.0308 -0.0300 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0467 -0.0190 0.0159 +vertex -0.0467 -0.0265 0.0159 vertex -0.0499 0.0300 0.0191 vertex -0.0499 -0.0300 0.0191 endloop @@ -121,8 +149,8 @@ endfacet facet normal 0 0 0 outer loop vertex -0.0499 0.0300 0.0191 -vertex -0.0467 -0.0190 0.0159 -vertex -0.0340 -0.0190 0.0032 +vertex -0.0467 -0.0265 0.0159 +vertex -0.0340 -0.0265 0.0032 endloop endfacet facet normal 0 0 0 diff --git a/rocolib/output/BatteryStackMount/graph-silhouette.dxf b/rocolib/output/BatteryStackMount/graph-silhouette.dxf index ff766518e117139ecb9083126d4ecb44214c7270..08016191eeab6e9910ebc3117edf9ec8f25b12ed 100644 --- a/rocolib/output/BatteryStackMount/graph-silhouette.dxf +++ b/rocolib/output/BatteryStackMount/graph-silhouette.dxf @@ -1353,13 +1353,13 @@ LINE 10 84.15427803486146 20 -109.00000000000001 +104.50000000000001 30 0.0 11 84.15427803486146 21 -115.00000000000001 +107.50000000000001 31 0.0 0 @@ -1371,13 +1371,13 @@ LINE 10 84.15427803486146 20 -115.00000000000001 +107.50000000000001 30 0.0 11 66.15427803486146 21 -115.00000000000001 +107.50000000000001 31 0.0 0 @@ -1389,13 +1389,13 @@ LINE 10 66.15427803486146 20 -115.00000000000001 +107.50000000000001 30 0.0 11 66.15427803486146 21 -109.00000000000001 +104.50000000000001 31 0.0 0 @@ -1407,13 +1407,13 @@ LINE 10 66.15427803486146 20 -109.00000000000001 +104.50000000000001 30 0.0 11 84.15427803486146 21 -109.00000000000001 +104.50000000000001 31 0.0 0 @@ -1495,6 +1495,78 @@ LINE 8 0 10 +84.15427803486146 + 20 +101.00000000000001 + 30 +0.0 + 11 +84.15427803486146 + 21 +104.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +84.15427803486146 + 20 +104.00000000000001 + 30 +0.0 + 11 +66.15427803486146 + 21 +104.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +66.15427803486146 + 20 +104.00000000000001 + 30 +0.0 + 11 +66.15427803486146 + 21 +101.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +66.15427803486146 + 20 +101.00000000000001 + 30 +0.0 + 11 +84.15427803486146 + 21 +101.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 79.65427803486146 20 2.5000000000000004 diff --git a/rocolib/output/BatteryStackMount/tree.png b/rocolib/output/BatteryStackMount/tree.png index 7d43e2bb388d1281155ba767a4b1cfc2862eaa3b..88ef7ac20d1a01cbcad82f631f290f4b8696c29e 100644 Binary files a/rocolib/output/BatteryStackMount/tree.png and b/rocolib/output/BatteryStackMount/tree.png differ diff --git a/rocolib/output/BoatWithServoMountAndStack/graph-anim.svg b/rocolib/output/BoatWithServoMountAndStack/graph-anim.svg index bb27f17285c700fb49fc05aad5a39ea015532361..3779e88afeeb700faaa0e5b559137f6fb424d34d 100644 --- a/rocolib/output/BoatWithServoMountAndStack/graph-anim.svg +++ b/rocolib/output/BoatWithServoMountAndStack/graph-anim.svg @@ -1,562 +1,583 @@ <?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="330.277244mm" version="1.1" viewBox="0.000000 0.000000 508.023253 330.277244" width="508.023253mm"> +<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="485.000000mm" version="1.1" viewBox="0.000000 0.000000 648.023253 485.000000" width="648.023253mm"> <defs/> - <line opacity="0.25" stroke="#0000ff" x1="190.0232526704263" x2="251.0232526704263" y1="96.27724400000001" y2="96.27724400000001"/> - <line stroke="#000000" x1="250.0232526704263" x2="251.0232526704263" y1="96.27724400000001" y2="96.27724400000001"/> - <line stroke="#000000" x1="250.0232526704263" x2="250.0232526704263" y1="96.27724400000001" y2="96.27724400000001"/> - <line stroke="#000000" x1="190.0232526704263" x2="190.0232526704263" y1="96.27724400000001" y2="96.27724400000001"/> - <line opacity="0.25" stroke="#0000ff" x1="190.0232526704263" x2="251.0232526704263" y1="60.1386220008147" y2="60.1386220008147"/> - <line stroke="#000000" x1="251.0232526704263" x2="251.0232526704263" y1="96.27724400000001" y2="60.1386220008147"/> - <line stroke="#000000" x1="190.0232526704263" x2="190.0232526704263" y1="60.1386220008147" y2="96.27724400000001"/> - <line opacity="0.25" stroke="#0000ff" x1="251.0232526704263" x2="190.0232526704263" y1="36.1386220008147" y2="36.1386220008147"/> - <line opacity="0.5" stroke="#0000ff" x1="251.0232526704263" x2="251.0232526704263" y1="36.1386220008147" y2="60.1386220008147"/> - <line stroke="#000000" x1="190.0232526704263" x2="190.0232526704263" y1="1.6293881799356315e-09" y2="36.138622000814706"/> - <line stroke="#000000" x1="251.0232526704263" x2="190.0232526704263" y1="1.6293881799356315e-09" y2="1.6293881799356315e-09"/> - <line stroke="#000000" x1="251.0232526704263" x2="251.0232526704263" y1="36.138622000814706" y2="1.6293881799356315e-09"/> - <line stroke="#000000" x1="261.0232526704263" x2="251.0232526704263" y1="36.1386220008147" y2="36.1386220008147"/> - <line stroke="#000000" x1="261.0232526704263" x2="261.0232526704263" y1="60.1386220008147" y2="36.1386220008147"/> - <line stroke="#000000" x1="251.0232526704263" x2="261.0232526704263" y1="60.1386220008147" y2="60.1386220008147"/> - <line stroke="#000000" x1="180.02325267042627" x2="190.0232526704263" y1="60.1386220008147" y2="60.1386220008147"/> - <line stroke="#000000" x1="180.02325267042627" x2="180.02325267042627" y1="36.1386220008147" y2="60.1386220008147"/> - <line stroke="#000000" x1="190.0232526704263" x2="180.02325267042627" y1="36.1386220008147" y2="36.1386220008147"/> - <line stroke="#000000" x1="166.02325267042627" x2="86.02325267042629" y1="96.27724400000001" y2="96.27724400000001"/> - <line opacity="1.0" stroke="#0000ff" x1="166.02325267042627" x2="190.0232526704263" y1="96.27724400000001" y2="96.27724400000001"/> - <line stroke="#000000" x1="250.0232526704263" x2="250.0232526704263" y1="96.27724400000001" y2="96.27724400000001"/> - <line stroke="#000000" x1="86.02325267042629" x2="86.02325267042629" y1="96.27724400000001" y2="96.27724400000001"/> - <line stroke="#000000" x1="190.0232526704263" x2="166.02325267042627" y1="62.277244" y2="62.277244"/> - <line stroke="#000000" x1="190.0232526704263" x2="190.0232526704263" y1="96.27724400000001" y2="62.277244"/> - <line opacity="0.5" stroke="#0000ff" x1="166.02325267042627" x2="166.02325267042627" y1="62.277244" y2="96.27724400000001"/> - <line stroke="#000000" x1="166.02325267042627" x2="146.02325267042627" y1="62.277244" y2="62.277244"/> - <line stroke="#000000" x1="146.02325267042627" x2="166.02325267042627" y1="96.27724400000001" y2="96.27724400000001"/> - <line opacity="0.5" stroke="#0000ff" x1="146.02325267042627" x2="146.02325267042627" y1="62.277244" y2="96.27724400000001"/> - <line stroke="#000000" x1="146.02325267042627" x2="122.02325267042629" y1="62.277244" y2="62.277244"/> - <line stroke="#000000" x1="122.02325267042629" x2="146.02325267042627" y1="96.27724400000001" y2="96.27724400000001"/> - <line opacity="0.5" stroke="#0000ff" x1="122.02325267042629" x2="122.02325267042629" y1="62.277244" y2="96.27724400000001"/> - <line stroke="#000000" x1="122.02325267042629" x2="102.02325267042629" y1="62.277244" y2="62.277244"/> - <line stroke="#000000" x1="102.02325267042629" x2="122.02325267042629" y1="96.27724400000001" y2="96.27724400000001"/> - <line opacity="0.5" stroke="#0000ff" x1="102.02325267042629" x2="102.02325267042629" y1="96.27724400000001" y2="62.277244"/> - <line stroke="#000000" x1="92.02325267042629" x2="102.02325267042629" y1="96.27724400000001" y2="96.27724400000001"/> - <line stroke="#000000" x1="92.02325267042629" x2="92.02325267042629" y1="62.277244" y2="96.27724400000001"/> - <line stroke="#000000" x1="102.02325267042629" x2="92.02325267042629" y1="62.277244" y2="62.277244"/> - <line opacity="0.5" stroke="#0000ff" x1="250.0232526704263" x2="86.02325267042629" y1="166.27724400000002" y2="166.27724400000002"/> - <line opacity="0.5" stroke="#0000ff" x1="250.0232526704263" x2="250.0232526704263" y1="166.27724400000002" y2="96.27724400000001"/> - <line opacity="0.9666666666666667" stroke="#ff0000" x1="250.0232526704263" x2="320.0232526704263" y1="96.27724400000001" y2="96.27724400000001"/> - <line opacity="1.0" stroke="#ff0000" x1="250.0232526704263" x2="320.0232526704263" y1="166.27724400000002" y2="96.27724400000001"/> - <line stroke="#000000" x1="250.02325267042633" x2="250.02325267042633" y1="72.94391066666668" y2="96.27724400000001"/> - <line stroke="#000000" x1="320.0232526704263" x2="250.02325267042633" y1="72.94391066666668" y2="72.94391066666668"/> - <line stroke="#000000" x1="320.0232526704263" x2="320.0232526704263" y1="96.27724400000001" y2="72.94391066666668"/> - <line opacity="1.0" stroke="#0000ff" x1="250.02325267042633" x2="320.02325267042636" y1="166.27724400000002" y2="166.27724400000002"/> - <line stroke="#000000" x1="320.02325267042636" x2="320.0232526704263" y1="166.27724400000002" y2="96.27724400000001"/> - <line stroke="#000000" x1="320.02325267042636" x2="320.0232526704263" y1="236.277244" y2="166.27724400000002"/> - <line stroke="#000000" x1="320.0232526704263" x2="320.02325267042636" y1="196.27724400000002" y2="236.277244"/> - <line opacity="0.5" stroke="#0000ff" x1="250.02325267042633" x2="250.02325267042633" y1="196.27724400000002" y2="166.27724400000002"/> - <line opacity="0.5" stroke="#0000ff" x1="250.0232526704263" x2="250.0232526704263" y1="226.27724400000002" y2="196.27724400000002"/> - <line opacity="1.0" stroke="#0000ff" x1="320.0232526704263" x2="250.02325267042633" y1="226.27724400000002" y2="226.27724400000002"/> - <line stroke="#000000" x1="320.0232526704263" x2="320.0232526704263" y1="156.27724400000005" y2="196.27724400000002"/> - <line stroke="#000000" x1="320.0232526704263" x2="320.0232526704263" y1="226.27724400000002" y2="156.27724400000005"/> - <line stroke="#000000" x1="320.0232526704263" x2="320.0232526704263" y1="296.277244" y2="226.27724400000002"/> - <line opacity="1.0" stroke="#ff0000" x1="320.0232526704263" x2="250.02325267042633" y1="296.277244" y2="226.27724400000002"/> - <line opacity="0.5" stroke="#0000ff" x1="250.02325267042633" x2="250.0232526704263" y1="296.277244" y2="226.27724400000002"/> - <line opacity="0.9666666666666667" stroke="#ff0000" x1="320.0232526704263" x2="250.02325267042633" y1="296.277244" y2="296.277244"/> - <line opacity="0.5" stroke="#0000ff" x1="250.0232526704263" x2="86.02325267042632" y1="226.27724399999997" y2="226.27724400000005"/> - <line opacity="1.0" stroke="#0000ff" x1="190.02325267042633" x2="166.0232526704263" y1="296.277244" y2="296.277244"/> - <line stroke="#000000" x1="86.02325267042634" x2="166.0232526704263" y1="296.277244" y2="296.277244"/> - <line stroke="#000000" x1="86.02325267042634" x2="86.02325267042634" y1="296.277244" y2="296.277244"/> - <line stroke="#000000" x1="250.02325267042633" x2="250.02325267042633" y1="296.277244" y2="296.277244"/> - <line stroke="#000000" x1="251.02325267042633" x2="250.02325267042633" y1="296.277244" y2="296.277244"/> - <line stroke="#000000" x1="190.02325267042633" x2="190.02325267042633" y1="296.277244" y2="296.277244"/> - <line stroke="#000000" x1="250.02325267042633" x2="250.02325267042633" y1="296.277244" y2="296.277244"/> - <line stroke="#000000" x1="251.02325267042633" x2="251.02325267042633" y1="306.277244" y2="296.277244"/> - <line stroke="#000000" x1="190.02325267042633" x2="251.02325267042633" y1="306.277244" y2="306.277244"/> - <line stroke="#000000" x1="190.02325267042633" x2="190.02325267042633" y1="296.277244" y2="306.277244"/> - <line stroke="#000000" x1="190.02325267042636" x2="190.02325267042633" y1="330.27724400000005" y2="296.277244"/> - <line stroke="#000000" x1="166.02325267042633" x2="190.02325267042636" y1="330.27724400000005" y2="330.27724400000005"/> - <line opacity="0.5" stroke="#0000ff" x1="166.0232526704263" x2="166.02325267042633" y1="296.277244" y2="330.27724400000005"/> - <line stroke="#000000" x1="166.0232526704263" x2="146.0232526704263" y1="296.277244" y2="296.277244"/> - <line stroke="#000000" x1="146.02325267042636" x2="166.02325267042633" y1="330.27724400000005" y2="330.27724400000005"/> - <line opacity="0.5" stroke="#0000ff" x1="146.0232526704263" x2="146.02325267042636" y1="296.277244" y2="330.27724400000005"/> - <line stroke="#000000" x1="146.0232526704263" x2="122.02325267042633" y1="296.277244" y2="296.277244"/> - <line stroke="#000000" x1="122.02325267042634" x2="146.02325267042636" y1="330.27724400000005" y2="330.27724400000005"/> - <line opacity="0.5" stroke="#0000ff" x1="122.02325267042633" x2="122.02325267042634" y1="296.277244" y2="330.27724400000005"/> - <line stroke="#000000" x1="122.02325267042634" x2="102.02325267042634" y1="296.277244" y2="296.277244"/> - <line stroke="#000000" x1="102.02325267042634" x2="122.02325267042634" y1="330.27724400000005" y2="330.27724400000005"/> - <line opacity="0.5" stroke="#0000ff" x1="102.02325267042634" x2="102.02325267042634" y1="330.27724400000005" y2="296.277244"/> - <line stroke="#000000" x1="92.02325267042633" x2="102.02325267042634" y1="330.27724400000005" y2="330.27724400000005"/> - <line stroke="#000000" x1="92.02325267042632" x2="92.02325267042633" y1="296.277244" y2="330.27724400000005"/> - <line stroke="#000000" x1="102.02325267042633" x2="92.02325267042632" y1="296.277244" y2="296.277244"/> - <line opacity="0.17202086962263066" stroke="#0000ff" x1="86.02325267042632" x2="86.02325267042634" y1="226.27724400000008" y2="296.27724400000005"/> - <line opacity="0.9666666666666667" stroke="#ff0000" x1="86.02325267042634" x2="37.52421865697312" y1="296.277244" y2="296.27724400000005"/> - <line opacity="1.0" stroke="#ff0000" x1="86.02325267042632" x2="37.52421865697312" y1="226.27724400000008" y2="296.27724400000005"/> - <line stroke="#000000" x1="86.02325267042634" x2="86.02325267042634" y1="312.44358867115113" y2="296.277244"/> - <line stroke="#000000" x1="37.52421865697312" x2="86.02325267042634" y1="312.44358867115113" y2="312.44358867115113"/> - <line stroke="#000000" x1="37.52421865697312" x2="37.52421865697312" y1="296.27724400000005" y2="312.44358867115113"/> - <line opacity="1.0" stroke="#0000ff" x1="86.02325267042633" x2="20.485430034662475" y1="226.27724400000005" y2="250.8697998688633"/> - <line stroke="#000000" x1="20.485430034662475" x2="37.52421865697312" y1="250.8697998688633" y2="296.27724400000005"/> - <line stroke="#000000" x1="3.4466414123517666" x2="20.485430034662446" y1="205.46235573772654" y2="250.8697998688633"/> - <line stroke="#000000" x1="0.0" x2="3.4466414123517666" y1="196.27724400000008" y2="205.46235573772654"/> - <line opacity="0.36249906083609806" stroke="#0000ff" x1="0.0" x2="86.0232526704263" y1="196.27724400000008" y2="226.27724400000005"/> - <line opacity="0.3025684567112535" stroke="#0000ff" x1="86.02325267042629" x2="86.0232526704263" y1="196.27724400000005" y2="226.27724400000008"/> - <line opacity="0.3025684567112535" stroke="#0000ff" x1="86.02325267042627" x2="86.02325267042629" y1="166.27724400000005" y2="196.27724400000002"/> - <line opacity="0.36249906083609806" stroke="#0000ff" x1="2.8421709430404014e-14" x2="86.02325267042629" y1="196.27724400000008" y2="166.27724400000005"/> - <line opacity="1.0" stroke="#0000ff" x1="20.485430034662386" x2="86.02325267042626" y1="141.68468813113688" y2="166.27724400000008"/> - <line stroke="#000000" x1="3.4466414123517386" x2="0.0" y1="187.09213226227365" y2="196.27724400000008"/> - <line stroke="#000000" x1="20.485430034662386" x2="3.4466414123517386" y1="141.68468813113688" y2="187.09213226227365"/> - <line stroke="#000000" x1="37.52421865697301" x2="20.485430034662386" y1="96.27724400000005" y2="141.68468813113688"/> - <line opacity="1.0" stroke="#ff0000" x1="37.52421865697301" x2="86.02325267042626" y1="96.27724400000005" y2="166.27724400000008"/> - <line opacity="0.17202086962263066" stroke="#0000ff" x1="86.02325267042627" x2="86.0232526704263" y1="96.27724400000004" y2="166.27724400000008"/> - <line opacity="0.9666666666666667" stroke="#ff0000" x1="37.52421865697304" x2="86.02325267042627" y1="96.27724400000005" y2="96.27724400000004"/> - <line stroke="#000000" x1="37.52421865697304" x2="37.52421865697304" y1="80.110899328849" y2="96.27724400000005"/> - <line stroke="#000000" x1="86.02325267042627" x2="37.52421865697304" y1="80.11089932884899" y2="80.110899328849"/> - <line stroke="#000000" x1="86.02325267042627" x2="86.02325267042627" y1="96.27724400000004" y2="80.11089932884899"/> - <line stroke="#000000" x1="320.0232526704263" x2="320.0232526704263" y1="319.61057733333325" y2="296.277244"/> - <line stroke="#000000" x1="250.02325267042633" x2="320.0232526704263" y1="319.61057733333325" y2="319.61057733333325"/> - <line stroke="#000000" x1="250.02325267042633" x2="250.02325267042633" y1="296.277244" y2="319.61057733333325"/> - <line stroke="#888888" x1="208.0232526704263" x2="219.0232526704263" y1="41.63862200081469" y2="41.63862200081469"/> - <line stroke="#888888" x1="219.0232526704263" x2="219.0232526704263" y1="41.63862200081469" y2="54.63862200081469"/> - <line stroke="#888888" x1="219.0232526704263" x2="208.0232526704263" y1="54.63862200081469" y2="54.63862200081469"/> - <line stroke="#888888" x1="208.0232526704263" x2="208.0232526704263" y1="54.63862200081469" y2="41.63862200081469"/> - <line stroke="#888888" x1="239.5232526704263" x2="245.5232526704263" y1="43.1386220008147" y2="43.1386220008147"/> - <line stroke="#888888" x1="245.5232526704263" x2="245.5232526704263" y1="43.1386220008147" y2="53.1386220008147"/> - <line stroke="#888888" x1="245.5232526704263" x2="239.5232526704263" y1="53.1386220008147" y2="53.1386220008147"/> - <line stroke="#888888" x1="239.5232526704263" x2="239.5232526704263" y1="53.1386220008147" y2="43.1386220008147"/> - <line stroke="#888888" x1="212.4550708522445" x2="200.8641617613354" y1="7.750000001629389" y2="7.750000001629389"/> - <line stroke="#888888" x1="200.8641617613354" x2="200.8641617613354" y1="7.750000001629389" y2="7.250000001629389"/> - <line stroke="#888888" x1="200.8641617613354" x2="212.4550708522445" y1="7.250000001629389" y2="7.250000001629389"/> - <line stroke="#888888" x1="212.4550708522445" x2="212.4550708522445" y1="7.250000001629389" y2="7.750000001629389"/> - <line stroke="#888888" x1="240.1823435795172" x2="228.59143448860814" y1="7.750000001629389" y2="7.750000001629389"/> - <line stroke="#888888" x1="228.59143448860814" x2="228.59143448860814" y1="7.750000001629389" y2="7.250000001629389"/> - <line stroke="#888888" x1="228.59143448860814" x2="240.1823435795172" y1="7.250000001629389" y2="7.250000001629389"/> - <line stroke="#888888" x1="240.1823435795172" x2="240.1823435795172" y1="7.250000001629389" y2="7.750000001629389"/> - <line stroke="#888888" x1="258.5232526704263" x2="253.5232526704263" y1="52.1386220008147" y2="52.1386220008147"/> - <line stroke="#888888" x1="253.5232526704263" x2="253.5232526704263" y1="52.1386220008147" y2="44.1386220008147"/> - <line stroke="#888888" x1="253.5232526704263" x2="258.5232526704263" y1="44.1386220008147" y2="44.1386220008147"/> - <line stroke="#888888" x1="182.5232526704263" x2="187.5232526704263" y1="44.1386220008147" y2="44.1386220008147"/> - <line stroke="#888888" x1="187.5232526704263" x2="187.5232526704263" y1="44.1386220008147" y2="52.1386220008147"/> - <line stroke="#888888" x1="187.5232526704263" x2="182.5232526704263" y1="52.1386220008147" y2="52.1386220008147"/> - <line stroke="#888888" x1="182.27325267042627" x2="182.27325267042627" y1="85.19391066666667" y2="73.36057733333335"/> - <line stroke="#888888" x1="182.27325267042627" x2="182.7732526704263" y1="73.36057733333335" y2="73.36057733333335"/> - <line stroke="#888888" x1="182.7732526704263" x2="182.7732526704263" y1="73.36057733333335" y2="85.19391066666667"/> - <line stroke="#888888" x1="182.7732526704263" x2="182.27325267042627" y1="85.19391066666667" y2="85.19391066666667"/> - <line stroke="#888888" x1="147.0232526704263" x2="151.0232526704263" y1="73.27724400000001" y2="73.27724400000001"/> - <line stroke="#888888" x1="151.0232526704263" x2="151.0232526704263" y1="73.27724400000001" y2="85.27724400000001"/> - <line stroke="#888888" x1="151.0232526704263" x2="147.0232526704263" y1="85.27724400000001" y2="85.27724400000001"/> - <line stroke="#888888" x1="147.0232526704263" x2="147.0232526704263" y1="85.27724400000001" y2="73.27724400000001"/> - <line stroke="#888888" x1="159.02325267042627" x2="163.0232526704263" y1="74.777244" y2="74.777244"/> - <line stroke="#888888" x1="163.0232526704263" x2="163.0232526704263" y1="74.777244" y2="83.777244"/> - <line stroke="#888888" x1="163.0232526704263" x2="159.02325267042627" y1="83.777244" y2="83.777244"/> - <line stroke="#888888" x1="159.02325267042627" x2="159.02325267042627" y1="83.777244" y2="74.777244"/> - <line stroke="#888888" x1="122.52325267042629" x2="145.52325267042627" y1="73.27724400000001" y2="73.27724400000001"/> - <line stroke="#888888" x1="145.52325267042627" x2="145.52325267042627" y1="73.27724400000001" y2="85.27724400000001"/> - <line stroke="#888888" x1="145.52325267042627" x2="122.52325267042629" y1="85.27724400000001" y2="85.27724400000001"/> - <line stroke="#888888" x1="122.52325267042629" x2="122.52325267042629" y1="85.27724400000001" y2="73.27724400000001"/> - <line stroke="#888888" x1="117.02325267042629" x2="121.02325267042629" y1="73.27724400000001" y2="73.27724400000001"/> - <line stroke="#888888" x1="121.02325267042629" x2="121.02325267042629" y1="73.27724400000001" y2="85.27724400000001"/> - <line stroke="#888888" x1="121.02325267042629" x2="117.02325267042629" y1="85.27724400000001" y2="85.27724400000001"/> - <line stroke="#888888" x1="117.02325267042629" x2="117.02325267042629" y1="85.27724400000001" y2="73.27724400000001"/> - <line stroke="#888888" x1="94.52325267042627" x2="99.52325267042629" y1="73.61057733333334" y2="73.61057733333334"/> - <line stroke="#888888" x1="99.52325267042629" x2="99.52325267042629" y1="73.61057733333334" y2="84.94391066666667"/> - <line stroke="#888888" x1="99.52325267042629" x2="94.52325267042627" y1="84.94391066666667" y2="84.94391066666667"/> - <line stroke="#888888" x1="296.68991933709293" x2="296.68991933709293" y1="78.77724400000001" y2="90.44391066666668"/> - <line stroke="#888888" x1="296.68991933709293" x2="273.3565860037596" y1="90.44391066666668" y2="90.44391066666668"/> - <line stroke="#888888" x1="273.3565860037596" x2="273.3565860037596" y1="90.44391066666668" y2="78.77724400000001"/> - <line stroke="#888888" x1="302.27325267042636" x2="302.2732526704263" y1="213.19391066666668" y2="189.36057733333334"/> - <line stroke="#888888" x1="302.2732526704263" x2="302.7732526704263" y1="189.36057733333334" y2="189.36057733333334"/> - <line stroke="#888888" x1="302.7732526704263" x2="302.77325267042636" y1="189.36057733333334" y2="213.19391066666668"/> - <line stroke="#888888" x1="302.77325267042636" x2="302.27325267042636" y1="213.19391066666668" y2="213.19391066666668"/> - <line stroke="#888888" x1="302.27325267042636" x2="302.27325267042636" y1="203.19391066666668" y2="179.3605773333334"/> - <line stroke="#888888" x1="302.27325267042636" x2="302.77325267042636" y1="179.3605773333334" y2="179.3605773333334"/> - <line stroke="#888888" x1="302.77325267042636" x2="302.77325267042636" y1="179.3605773333334" y2="203.19391066666668"/> - <line stroke="#888888" x1="302.77325267042636" x2="302.27325267042636" y1="203.19391066666668" y2="203.19391066666668"/> - <line stroke="#888888" x1="201.1141617613354" x2="201.1141617613354" y1="303.77724400000005" y2="298.77724400000005"/> - <line stroke="#888888" x1="201.1141617613354" x2="212.20507085224452" y1="298.77724400000005" y2="298.77724400000005"/> - <line stroke="#888888" x1="212.20507085224452" x2="212.20507085224452" y1="298.77724400000005" y2="303.77724400000005"/> - <line stroke="#888888" x1="228.84143448860814" x2="228.84143448860814" y1="303.77724400000005" y2="298.77724400000005"/> - <line stroke="#888888" x1="228.84143448860814" x2="239.93234357951724" y1="298.77724400000005" y2="298.77724400000005"/> - <line stroke="#888888" x1="239.93234357951724" x2="239.93234357951724" y1="298.77724400000005" y2="303.77724400000005"/> - <line stroke="#888888" x1="182.27325267042636" x2="182.2732526704263" y1="319.1939106666666" y2="307.3605773333334"/> - <line stroke="#888888" x1="182.2732526704263" x2="182.77325267042633" y1="307.3605773333334" y2="307.3605773333334"/> - <line stroke="#888888" x1="182.77325267042633" x2="182.77325267042636" y1="307.3605773333334" y2="319.1939106666666"/> - <line stroke="#888888" x1="182.77325267042636" x2="182.27325267042636" y1="319.1939106666666" y2="319.1939106666666"/> - <line stroke="#888888" x1="147.02325267042633" x2="151.02325267042633" y1="307.27724400000005" y2="307.27724400000005"/> - <line stroke="#888888" x1="151.02325267042633" x2="151.02325267042633" y1="307.27724400000005" y2="319.277244"/> - <line stroke="#888888" x1="151.02325267042633" x2="147.02325267042633" y1="319.277244" y2="319.277244"/> - <line stroke="#888888" x1="147.02325267042633" x2="147.02325267042633" y1="319.277244" y2="307.27724400000005"/> - <line stroke="#888888" x1="159.0232526704263" x2="163.02325267042633" y1="308.77724400000005" y2="308.77724400000005"/> - <line stroke="#888888" x1="163.02325267042633" x2="163.02325267042633" y1="308.77724400000005" y2="317.77724400000005"/> - <line stroke="#888888" x1="163.02325267042633" x2="159.0232526704263" y1="317.77724400000005" y2="317.77724400000005"/> - <line stroke="#888888" x1="159.0232526704263" x2="159.0232526704263" y1="317.77724400000005" y2="308.77724400000005"/> - <line stroke="#888888" x1="122.52325267042634" x2="145.52325267042633" y1="307.27724400000005" y2="307.27724400000005"/> - <line stroke="#888888" x1="145.52325267042633" x2="145.52325267042633" y1="307.27724400000005" y2="319.277244"/> - <line stroke="#888888" x1="145.52325267042633" x2="122.52325267042634" y1="319.277244" y2="319.277244"/> - <line stroke="#888888" x1="122.52325267042634" x2="122.52325267042634" y1="319.277244" y2="307.27724400000005"/> - <line stroke="#888888" x1="117.02325267042634" x2="121.02325267042634" y1="307.27724400000005" y2="307.27724400000005"/> - <line stroke="#888888" x1="121.02325267042634" x2="121.02325267042634" y1="307.27724400000005" y2="319.277244"/> - <line stroke="#888888" x1="121.02325267042634" x2="117.02325267042634" y1="319.277244" y2="319.277244"/> - <line stroke="#888888" x1="117.02325267042634" x2="117.02325267042634" y1="319.277244" y2="307.27724400000005"/> - <line stroke="#888888" x1="94.52325267042633" x2="99.52325267042633" y1="307.6105773333334" y2="307.6105773333334"/> - <line stroke="#888888" x1="99.52325267042633" x2="99.52325267042634" y1="307.6105773333334" y2="318.9439106666666"/> - <line stroke="#888888" x1="99.52325267042634" x2="94.52325267042634" y1="318.9439106666666" y2="318.9439106666666"/> - <line stroke="#888888" x1="53.69056332812418" x2="53.69056332812418" y1="308.4020025033634" y2="300.3188301677879"/> - <line stroke="#888888" x1="53.69056332812418" x2="69.85690799927526" y1="300.3188301677879" y2="300.3188301677879"/> - <line stroke="#888888" x1="69.85690799927526" x2="69.85690799927526" y1="300.3188301677879" y2="308.4020025033634"/> - <line stroke="#888888" x1="20.624331748168913" x2="26.479589068954827" y1="216.0165790835827" y2="231.62052109850282"/> - <line stroke="#888888" x1="26.479589068954827" x2="26.01146176441367" y1="231.62052109850282" y2="231.7961822118518"/> - <line stroke="#888888" x1="26.01146176441367" x2="20.156204443627757" y1="231.7961822118518" y2="216.19224019693172"/> - <line stroke="#888888" x1="20.156204443627757" x2="20.624331748168913" y1="216.19224019693172" y2="216.0165790835827"/> - <line stroke="#888888" x1="26.479589068954795" x2="20.62433174816889" y1="160.9339669014974" y2="176.5379089164175"/> - <line stroke="#888888" x1="20.62433174816889" x2="20.156204443627733" y1="176.5379089164175" y2="176.3622478030685"/> - <line stroke="#888888" x1="20.156204443627733" x2="26.011461764413642" y1="176.3622478030685" y2="160.75830578814833"/> - <line stroke="#888888" x1="26.011461764413642" x2="26.479589068954795" y1="160.75830578814833" y2="160.9339669014974"/> - <line stroke="#888888" x1="69.8569079992752" x2="69.8569079992752" y1="84.15248549663676" y2="92.23565783221228"/> - <line stroke="#888888" x1="69.8569079992752" x2="53.69056332812412" y1="92.23565783221228" y2="92.2356578322123"/> - <line stroke="#888888" x1="53.69056332812412" x2="53.69056332812412" y1="92.2356578322123" y2="84.15248549663677"/> - <line stroke="#888888" x1="273.3565860037596" x2="273.3565860037596" y1="313.77724400000005" y2="302.1105773333333"/> - <line stroke="#888888" x1="273.3565860037596" x2="296.68991933709304" y1="302.1105773333333" y2="302.1105773333333"/> - <line stroke="#888888" x1="296.68991933709304" x2="296.68991933709304" y1="302.1105773333333" y2="313.77724400000005"/> - <line opacity="0.5" stroke="#0000ff" x1="363.02325267042636" x2="424.02325267042636" y1="84.27724400000001" y2="84.27724400000001"/> - <line opacity="0.5" stroke="#0000ff" x1="424.02325267042636" x2="424.02325267042636" y1="84.27724400000001" y2="108.27724400000001"/> - <line opacity="0.5" stroke="#0000ff" x1="424.02325267042636" x2="363.02325267042636" y1="108.27724400000001" y2="108.27724400000001"/> - <line opacity="0.5" stroke="#0000ff" x1="363.02325267042636" x2="363.02325267042636" y1="108.27724400000001" y2="84.27724400000001"/> - <line stroke="#000000" x1="363.02325267042636" x2="363.02325267042636" y1="77.277244" y2="84.27724400000001"/> - <line stroke="#000000" x1="423.0232526704263" x2="363.02325267042636" y1="77.277244" y2="77.277244"/> - <line stroke="#000000" x1="423.0232526704263" x2="423.0232526704263" y1="84.27724400000001" y2="77.277244"/> - <line stroke="#000000" x1="431.02325267042636" x2="424.02325267042636" y1="84.27724400000001" y2="84.27724400000001"/> - <line stroke="#000000" x1="431.02325267042636" x2="431.02325267042636" y1="108.27724400000001" y2="84.27724400000001"/> - <line stroke="#000000" x1="424.02325267042636" x2="431.02325267042636" y1="108.27724400000001" y2="108.27724400000001"/> - <line opacity="0.5" stroke="#0000ff" x1="424.02325267042636" x2="424.02325267042636" y1="108.27724400000001" y2="169.277244"/> - <line stroke="#000000" x1="364.0232526704263" x2="424.02325267042636" y1="169.277244" y2="169.277244"/> - <line opacity="0.5" stroke="#0000ff" x1="364.0232526704263" x2="364.0232526704263" y1="108.27724400000001" y2="169.277244"/> - <line stroke="#000000" x1="448.02325267042636" x2="424.02325267042636" y1="108.27724400000001" y2="108.27724400000001"/> - <line opacity="0.5" stroke="#0000ff" x1="448.02325267042636" x2="448.02325267042636" y1="108.27724400000001" y2="169.277244"/> - <line stroke="#000000" x1="424.02325267042636" x2="448.02325267042636" y1="169.277244" y2="169.277244"/> - <line stroke="#000000" x1="508.02325267042636" x2="448.02325267042636" y1="108.27724400000001" y2="108.27724400000001"/> - <line stroke="#000000" x1="508.02325267042636" x2="508.02325267042636" y1="169.277244" y2="108.27724400000001"/> - <line stroke="#000000" x1="448.02325267042636" x2="508.02325267042636" y1="169.277244" y2="169.277244"/> - <line stroke="#000000" x1="364.0232526704263" x2="340.02325267042636" y1="108.27724400000001" y2="108.27724400000001"/> - <line stroke="#000000" x1="340.02325267042636" x2="364.0232526704263" y1="169.277244" y2="169.277244"/> - <line opacity="0.5" stroke="#0000ff" x1="340.02325267042636" x2="340.02325267042636" y1="169.277244" y2="108.27724400000001"/> - <line stroke="#000000" x1="330.02325267042636" x2="340.02325267042636" y1="169.277244" y2="169.277244"/> - <line stroke="#000000" x1="330.02325267042636" x2="330.02325267042636" y1="108.27724400000001" y2="169.277244"/> - <line stroke="#000000" x1="340.02325267042636" x2="330.02325267042636" y1="108.27724400000001" y2="108.27724400000001"/> - <line stroke="#000000" x1="356.02325267042636" x2="363.02325267042636" y1="108.27724400000001" y2="108.27724400000001"/> - <line stroke="#000000" x1="356.02325267042636" x2="356.02325267042636" y1="84.27724400000001" y2="108.27724400000001"/> - <line stroke="#000000" x1="363.02325267042636" x2="356.02325267042636" y1="84.27724400000001" y2="84.27724400000001"/> - <line stroke="#888888" x1="412.1141617613354" x2="415.6141617613354" y1="79.02724400000001" y2="79.02724400000001"/> - <line stroke="#888888" x1="415.6141617613354" x2="412.1141617613354" y1="79.02724400000001" y2="82.52724400000001"/> - <line stroke="#888888" x1="412.1141617613354" x2="401.20507085224455" y1="82.52724400000001" y2="82.52724400000001"/> - <line stroke="#888888" x1="401.20507085224455" x2="397.7050708522445" y1="82.52724400000001" y2="79.02724400000001"/> - <line stroke="#888888" x1="397.7050708522445" x2="401.20507085224455" y1="79.02724400000001" y2="79.02724400000001"/> - <line stroke="#888888" x1="384.8414344886081" x2="388.3414344886082" y1="79.02724400000001" y2="79.02724400000001"/> - <line stroke="#888888" x1="388.3414344886082" x2="384.8414344886081" y1="79.02724400000001" y2="82.52724400000001"/> - <line stroke="#888888" x1="384.8414344886081" x2="373.93234357951724" y1="82.52724400000001" y2="82.52724400000001"/> - <line stroke="#888888" x1="373.93234357951724" x2="370.4323435795173" y1="82.52724400000001" y2="79.02724400000001"/> - <line stroke="#888888" x1="370.4323435795173" x2="373.93234357951724" y1="79.02724400000001" y2="79.02724400000001"/> - <line stroke="#888888" x1="429.27325267042636" x2="425.77325267042636" y1="100.27724400000001" y2="100.27724400000001"/> - <line stroke="#888888" x1="425.77325267042636" x2="425.77325267042636" y1="100.27724400000001" y2="92.27724400000001"/> - <line stroke="#888888" x1="425.77325267042636" x2="429.27325267042636" y1="92.27724400000001" y2="92.27724400000001"/> - <line stroke="#888888" x1="371.52325267042636" x2="371.52325267042636" y1="159.777244" y2="141.777244"/> - <line stroke="#888888" x1="371.52325267042636" x2="406.52325267042636" y1="141.777244" y2="141.777244"/> - <line stroke="#888888" x1="406.52325267042636" x2="406.52325267042636" y1="141.777244" y2="159.777244"/> - <line stroke="#888888" x1="406.52325267042636" x2="371.52325267042636" y1="159.777244" y2="159.777244"/> - <line stroke="#888888" x1="424.52325267042636" x2="424.52325267042636" y1="121.52724400000001" y2="118.52724400000001"/> - <line stroke="#888888" x1="424.52325267042636" x2="427.5232526704263" y1="118.52724400000001" y2="118.52724400000001"/> - <line stroke="#888888" x1="427.5232526704263" x2="427.5232526704263" y1="118.52724400000001" y2="121.52724400000001"/> - <line stroke="#888888" x1="427.5232526704263" x2="424.52325267042636" y1="121.52724400000001" y2="121.52724400000001"/> - <line stroke="#888888" x1="445.52325267042636" x2="445.52325267042636" y1="120.52724400000001" y2="119.52724400000001"/> - <line stroke="#888888" x1="445.52325267042636" x2="446.52325267042636" y1="119.52724400000001" y2="119.52724400000001"/> - <line stroke="#888888" x1="446.52325267042636" x2="446.52325267042636" y1="119.52724400000001" y2="120.52724400000001"/> - <line stroke="#888888" x1="446.52325267042636" x2="445.52325267042636" y1="120.52724400000001" y2="120.52724400000001"/> - <line stroke="#888888" x1="425.52325267042636" x2="425.52325267042636" y1="123.02724400000001" y2="122.02724400000001"/> - <line stroke="#888888" x1="425.52325267042636" x2="426.52325267042636" y1="122.02724400000001" y2="122.02724400000001"/> - <line stroke="#888888" x1="426.52325267042636" x2="426.52325267042636" y1="122.02724400000001" y2="123.02724400000001"/> - <line stroke="#888888" x1="426.52325267042636" x2="425.52325267042636" y1="123.02724400000001" y2="123.02724400000001"/> - <line stroke="#888888" x1="445.52325267042636" x2="445.52325267042636" y1="123.02724400000001" y2="122.02724400000001"/> - <line stroke="#888888" x1="445.52325267042636" x2="446.52325267042636" y1="122.02724400000001" y2="122.02724400000001"/> - <line stroke="#888888" x1="446.52325267042636" x2="446.52325267042636" y1="122.02724400000001" y2="123.02724400000001"/> - <line stroke="#888888" x1="446.52325267042636" x2="445.52325267042636" y1="123.02724400000001" y2="123.02724400000001"/> - <line stroke="#888888" x1="425.52325267042636" x2="425.52325267042636" y1="125.52724400000001" y2="124.52724400000001"/> - <line stroke="#888888" x1="425.52325267042636" x2="426.52325267042636" y1="124.52724400000001" y2="124.52724400000001"/> - <line stroke="#888888" x1="426.52325267042636" x2="426.52325267042636" y1="124.52724400000001" y2="125.52724400000001"/> - <line stroke="#888888" x1="426.52325267042636" x2="425.52325267042636" y1="125.52724400000001" y2="125.52724400000001"/> - <line stroke="#888888" x1="445.52325267042636" x2="445.52325267042636" y1="125.52724400000001" y2="124.52724400000001"/> - <line stroke="#888888" x1="445.52325267042636" x2="446.52325267042636" y1="124.52724400000001" y2="124.52724400000001"/> - <line stroke="#888888" x1="446.52325267042636" x2="446.52325267042636" y1="124.52724400000001" y2="125.52724400000001"/> - <line stroke="#888888" x1="446.52325267042636" x2="445.52325267042636" y1="125.52724400000001" y2="125.52724400000001"/> - <line stroke="#888888" x1="425.52325267042636" x2="425.52325267042636" y1="128.02724400000002" y2="127.02724400000001"/> - <line stroke="#888888" x1="425.52325267042636" x2="426.52325267042636" y1="127.02724400000001" y2="127.02724400000001"/> - <line stroke="#888888" x1="426.52325267042636" x2="426.52325267042636" y1="127.02724400000001" y2="128.02724400000002"/> - <line stroke="#888888" x1="426.52325267042636" x2="425.52325267042636" y1="128.02724400000002" y2="128.02724400000002"/> - <line stroke="#888888" x1="445.52325267042636" x2="445.52325267042636" y1="128.02724400000002" y2="127.02724400000001"/> - <line stroke="#888888" x1="445.52325267042636" x2="446.52325267042636" y1="127.02724400000001" y2="127.02724400000001"/> - <line stroke="#888888" x1="446.52325267042636" x2="446.52325267042636" y1="127.02724400000001" y2="128.02724400000002"/> - <line stroke="#888888" x1="446.52325267042636" x2="445.52325267042636" y1="128.02724400000002" y2="128.02724400000002"/> - <line stroke="#888888" x1="425.52325267042636" x2="425.52325267042636" y1="130.52724400000002" y2="129.527244"/> - <line stroke="#888888" x1="425.52325267042636" x2="426.52325267042636" y1="129.527244" y2="129.527244"/> - <line stroke="#888888" x1="426.52325267042636" x2="426.52325267042636" y1="129.527244" y2="130.52724400000002"/> - <line stroke="#888888" x1="426.52325267042636" x2="425.52325267042636" y1="130.52724400000002" y2="130.52724400000002"/> - <line stroke="#888888" x1="445.52325267042636" x2="445.52325267042636" y1="130.52724400000002" y2="129.527244"/> - <line stroke="#888888" x1="445.52325267042636" x2="446.52325267042636" y1="129.527244" y2="129.527244"/> - <line stroke="#888888" x1="446.52325267042636" x2="446.52325267042636" y1="129.527244" y2="130.52724400000002"/> - <line stroke="#888888" x1="446.52325267042636" x2="445.52325267042636" y1="130.52724400000002" y2="130.52724400000002"/> - <line stroke="#888888" x1="425.52325267042636" x2="425.52325267042636" y1="133.027244" y2="132.027244"/> - <line stroke="#888888" x1="425.52325267042636" x2="426.52325267042636" y1="132.027244" y2="132.027244"/> - <line stroke="#888888" x1="426.52325267042636" x2="426.52325267042636" y1="132.027244" y2="133.027244"/> - <line stroke="#888888" x1="426.52325267042636" x2="425.52325267042636" y1="133.027244" y2="133.027244"/> - <line stroke="#888888" x1="445.52325267042636" x2="445.52325267042636" y1="133.027244" y2="132.027244"/> - <line stroke="#888888" x1="445.52325267042636" x2="446.52325267042636" y1="132.027244" y2="132.027244"/> - <line stroke="#888888" x1="446.52325267042636" x2="446.52325267042636" y1="132.027244" y2="133.027244"/> - <line stroke="#888888" x1="446.52325267042636" x2="445.52325267042636" y1="133.027244" y2="133.027244"/> - <line stroke="#888888" x1="425.52325267042636" x2="425.52325267042636" y1="135.527244" y2="134.52724400000002"/> - <line stroke="#888888" x1="425.52325267042636" x2="426.52325267042636" y1="134.52724400000002" y2="134.52724400000002"/> - <line stroke="#888888" x1="426.52325267042636" x2="426.52325267042636" y1="134.52724400000002" y2="135.527244"/> - <line stroke="#888888" x1="426.52325267042636" x2="425.52325267042636" y1="135.527244" y2="135.527244"/> - <line stroke="#888888" x1="445.52325267042636" x2="445.52325267042636" y1="135.527244" y2="134.52724400000002"/> - <line stroke="#888888" x1="445.52325267042636" x2="446.52325267042636" y1="134.52724400000002" y2="134.52724400000002"/> - <line stroke="#888888" x1="446.52325267042636" x2="446.52325267042636" y1="134.52724400000002" y2="135.527244"/> - <line stroke="#888888" x1="446.52325267042636" x2="445.52325267042636" y1="135.527244" y2="135.527244"/> - <line stroke="#888888" x1="425.52325267042636" x2="425.52325267042636" y1="138.02724400000002" y2="137.027244"/> - <line stroke="#888888" x1="425.52325267042636" x2="426.52325267042636" y1="137.027244" y2="137.027244"/> - <line stroke="#888888" x1="426.52325267042636" x2="426.52325267042636" y1="137.027244" y2="138.02724400000002"/> - <line stroke="#888888" x1="426.52325267042636" x2="425.52325267042636" y1="138.02724400000002" y2="138.02724400000002"/> - <line stroke="#888888" x1="445.52325267042636" x2="445.52325267042636" y1="138.02724400000002" y2="137.027244"/> - <line stroke="#888888" x1="445.52325267042636" x2="446.52325267042636" y1="137.027244" y2="137.027244"/> - <line stroke="#888888" x1="446.52325267042636" x2="446.52325267042636" y1="137.027244" y2="138.02724400000002"/> - <line stroke="#888888" x1="446.52325267042636" x2="445.52325267042636" y1="138.02724400000002" y2="138.02724400000002"/> - <line stroke="#888888" x1="425.52325267042636" x2="425.52325267042636" y1="140.52724400000002" y2="139.527244"/> - <line stroke="#888888" x1="425.52325267042636" x2="426.52325267042636" y1="139.527244" y2="139.527244"/> - <line stroke="#888888" x1="426.52325267042636" x2="426.52325267042636" y1="139.527244" y2="140.52724400000002"/> - <line stroke="#888888" x1="426.52325267042636" x2="425.52325267042636" y1="140.52724400000002" y2="140.52724400000002"/> - <line stroke="#888888" x1="445.52325267042636" x2="445.52325267042636" y1="140.52724400000002" y2="139.527244"/> - <line stroke="#888888" x1="445.52325267042636" x2="446.52325267042636" y1="139.527244" y2="139.527244"/> - <line stroke="#888888" x1="446.52325267042636" x2="446.52325267042636" y1="139.527244" y2="140.52724400000002"/> - <line stroke="#888888" x1="446.52325267042636" x2="445.52325267042636" y1="140.52724400000002" y2="140.52724400000002"/> - <line stroke="#888888" x1="425.52325267042636" x2="425.52325267042636" y1="143.02724400000002" y2="142.027244"/> - <line stroke="#888888" x1="425.52325267042636" x2="426.52325267042636" y1="142.027244" y2="142.027244"/> - <line stroke="#888888" x1="426.52325267042636" x2="426.52325267042636" y1="142.027244" y2="143.02724400000002"/> - <line stroke="#888888" x1="426.52325267042636" x2="425.52325267042636" y1="143.02724400000002" y2="143.02724400000002"/> - <line stroke="#888888" x1="445.52325267042636" x2="445.52325267042636" y1="143.02724400000002" y2="142.027244"/> - <line stroke="#888888" x1="445.52325267042636" x2="446.52325267042636" y1="142.027244" y2="142.027244"/> - <line stroke="#888888" x1="446.52325267042636" x2="446.52325267042636" y1="142.027244" y2="143.02724400000002"/> - <line stroke="#888888" x1="446.52325267042636" x2="445.52325267042636" y1="143.02724400000002" y2="143.02724400000002"/> - <line stroke="#888888" x1="425.52325267042636" x2="425.52325267042636" y1="145.52724400000002" y2="144.527244"/> - <line stroke="#888888" x1="425.52325267042636" x2="426.52325267042636" y1="144.527244" y2="144.527244"/> - <line stroke="#888888" x1="426.52325267042636" x2="426.52325267042636" y1="144.527244" y2="145.52724400000002"/> - <line stroke="#888888" x1="426.52325267042636" x2="425.52325267042636" y1="145.52724400000002" y2="145.52724400000002"/> - <line stroke="#888888" x1="445.52325267042636" x2="445.52325267042636" y1="145.52724400000002" y2="144.527244"/> - <line stroke="#888888" x1="445.52325267042636" x2="446.52325267042636" y1="144.527244" y2="144.527244"/> - <line stroke="#888888" x1="446.52325267042636" x2="446.52325267042636" y1="144.527244" y2="145.52724400000002"/> - <line stroke="#888888" x1="446.52325267042636" x2="445.52325267042636" y1="145.52724400000002" y2="145.52724400000002"/> - <line stroke="#888888" x1="425.52325267042636" x2="425.52325267042636" y1="148.02724400000002" y2="147.02724400000002"/> - <line stroke="#888888" x1="425.52325267042636" x2="426.52325267042636" y1="147.02724400000002" y2="147.02724400000002"/> - <line stroke="#888888" x1="426.52325267042636" x2="426.52325267042636" y1="147.02724400000002" y2="148.02724400000002"/> - <line stroke="#888888" x1="426.52325267042636" x2="425.52325267042636" y1="148.02724400000002" y2="148.02724400000002"/> - <line stroke="#888888" x1="445.52325267042636" x2="445.52325267042636" y1="148.02724400000002" y2="147.02724400000002"/> - <line stroke="#888888" x1="445.52325267042636" x2="446.52325267042636" y1="147.02724400000002" y2="147.02724400000002"/> - <line stroke="#888888" x1="446.52325267042636" x2="446.52325267042636" y1="147.02724400000002" y2="148.02724400000002"/> - <line stroke="#888888" x1="446.52325267042636" x2="445.52325267042636" y1="148.02724400000002" y2="148.02724400000002"/> - <line stroke="#888888" x1="425.52325267042636" x2="425.52325267042636" y1="150.52724400000002" y2="149.52724400000002"/> - <line stroke="#888888" x1="425.52325267042636" x2="426.52325267042636" y1="149.52724400000002" y2="149.52724400000002"/> - <line stroke="#888888" x1="426.52325267042636" x2="426.52325267042636" y1="149.52724400000002" y2="150.52724400000002"/> - <line stroke="#888888" x1="426.52325267042636" x2="425.52325267042636" y1="150.52724400000002" y2="150.52724400000002"/> - <line stroke="#888888" x1="445.52325267042636" x2="445.52325267042636" y1="150.52724400000002" y2="149.52724400000002"/> - <line stroke="#888888" x1="445.52325267042636" x2="446.52325267042636" y1="149.52724400000002" y2="149.52724400000002"/> - <line stroke="#888888" x1="446.52325267042636" x2="446.52325267042636" y1="149.52724400000002" y2="150.52724400000002"/> - <line stroke="#888888" x1="446.52325267042636" x2="445.52325267042636" y1="150.52724400000002" y2="150.52724400000002"/> - <line stroke="#888888" x1="425.52325267042636" x2="425.52325267042636" y1="153.027244" y2="152.02724400000002"/> - <line stroke="#888888" x1="425.52325267042636" x2="426.52325267042636" y1="152.02724400000002" y2="152.02724400000002"/> - <line stroke="#888888" x1="426.52325267042636" x2="426.52325267042636" y1="152.02724400000002" y2="153.027244"/> - <line stroke="#888888" x1="426.52325267042636" x2="425.52325267042636" y1="153.027244" y2="153.027244"/> - <line stroke="#888888" x1="445.52325267042636" x2="445.52325267042636" y1="153.027244" y2="152.02724400000002"/> - <line stroke="#888888" x1="445.52325267042636" x2="446.52325267042636" y1="152.02724400000002" y2="152.02724400000002"/> - <line stroke="#888888" x1="446.52325267042636" x2="446.52325267042636" y1="152.02724400000002" y2="153.027244"/> - <line stroke="#888888" x1="446.52325267042636" x2="445.52325267042636" y1="153.027244" y2="153.027244"/> - <line stroke="#888888" x1="425.52325267042636" x2="425.52325267042636" y1="155.527244" y2="154.52724400000002"/> - <line stroke="#888888" x1="425.52325267042636" x2="426.52325267042636" y1="154.52724400000002" y2="154.52724400000002"/> - <line stroke="#888888" x1="426.52325267042636" x2="426.52325267042636" y1="154.52724400000002" y2="155.527244"/> - <line stroke="#888888" x1="426.52325267042636" x2="425.52325267042636" y1="155.527244" y2="155.527244"/> - <line stroke="#888888" x1="445.52325267042636" x2="445.52325267042636" y1="155.527244" y2="154.52724400000002"/> - <line stroke="#888888" x1="445.52325267042636" x2="446.52325267042636" y1="154.52724400000002" y2="154.52724400000002"/> - <line stroke="#888888" x1="446.52325267042636" x2="446.52325267042636" y1="154.52724400000002" y2="155.527244"/> - <line stroke="#888888" x1="446.52325267042636" x2="445.52325267042636" y1="155.527244" y2="155.527244"/> - <line stroke="#888888" x1="425.52325267042636" x2="425.52325267042636" y1="158.027244" y2="157.02724400000002"/> - <line stroke="#888888" x1="425.52325267042636" x2="426.52325267042636" y1="157.02724400000002" y2="157.02724400000002"/> - <line stroke="#888888" x1="426.52325267042636" x2="426.52325267042636" y1="157.02724400000002" y2="158.027244"/> - <line stroke="#888888" x1="426.52325267042636" x2="425.52325267042636" y1="158.027244" y2="158.027244"/> - <line stroke="#888888" x1="444.52325267042636" x2="444.52325267042636" y1="159.02724400000002" y2="156.02724400000002"/> - <line stroke="#888888" x1="444.52325267042636" x2="447.52325267042636" y1="156.02724400000002" y2="156.02724400000002"/> - <line stroke="#888888" x1="447.52325267042636" x2="447.52325267042636" y1="156.02724400000002" y2="159.02724400000002"/> - <line stroke="#888888" x1="447.52325267042636" x2="444.52325267042636" y1="159.02724400000002" y2="159.02724400000002"/> - <line stroke="#888888" x1="440.27325267042636" x2="431.77325267042636" y1="116.02724400000001" y2="116.02724400000001"/> - <line stroke="#888888" x1="431.77325267042636" x2="431.77325267042636" y1="116.02724400000001" y2="115.52724400000001"/> - <line stroke="#888888" x1="431.77325267042636" x2="440.27325267042636" y1="115.52724400000001" y2="115.52724400000001"/> - <line stroke="#888888" x1="440.27325267042636" x2="440.27325267042636" y1="115.52724400000001" y2="116.02724400000001"/> - <line stroke="#888888" x1="431.77325267042636" x2="440.27325267042636" y1="163.77724400000002" y2="163.77724400000002"/> - <line stroke="#888888" x1="440.27325267042636" x2="440.27325267042636" y1="163.77724400000002" y2="164.27724400000002"/> - <line stroke="#888888" x1="440.27325267042636" x2="431.77325267042636" y1="164.27724400000002" y2="164.27724400000002"/> - <line stroke="#888888" x1="431.77325267042636" x2="431.77325267042636" y1="164.27724400000002" y2="163.77724400000002"/> - <line stroke="#888888" x1="463.02325267042636" x2="463.02325267042636" y1="159.27724400000002" y2="146.277244"/> - <line stroke="#888888" x1="463.02325267042636" x2="493.02325267042636" y1="146.277244" y2="146.277244"/> - <line stroke="#888888" x1="493.02325267042636" x2="493.02325267042636" y1="146.277244" y2="159.27724400000002"/> - <line stroke="#888888" x1="493.02325267042636" x2="463.02325267042636" y1="159.27724400000002" y2="159.27724400000002"/> - <line stroke="#888888" x1="470.0914344886082" x2="458.6823435795173" y1="113.77724400000001" y2="113.77724400000001"/> - <line stroke="#888888" x1="458.6823435795173" x2="458.6823435795173" y1="113.77724400000001" y2="113.27724400000001"/> - <line stroke="#888888" x1="458.6823435795173" x2="470.0914344886082" y1="113.27724400000001" y2="113.27724400000001"/> - <line stroke="#888888" x1="470.0914344886082" x2="470.0914344886082" y1="113.27724400000001" y2="113.77724400000001"/> - <line stroke="#888888" x1="497.3641617613354" x2="485.95507085224455" y1="113.77724400000001" y2="113.77724400000001"/> - <line stroke="#888888" x1="485.95507085224455" x2="485.95507085224455" y1="113.77724400000001" y2="113.27724400000001"/> - <line stroke="#888888" x1="485.95507085224455" x2="497.3641617613354" y1="113.27724400000001" y2="113.27724400000001"/> - <line stroke="#888888" x1="497.3641617613354" x2="497.3641617613354" y1="113.27724400000001" y2="113.77724400000001"/> - <line stroke="#888888" x1="500.27325267042636" x2="500.27325267042636" y1="130.70906218181818" y2="119.1181530909091"/> - <line stroke="#888888" x1="500.27325267042636" x2="500.77325267042636" y1="119.1181530909091" y2="119.1181530909091"/> - <line stroke="#888888" x1="500.77325267042636" x2="500.77325267042636" y1="119.1181530909091" y2="130.70906218181818"/> - <line stroke="#888888" x1="500.77325267042636" x2="500.27325267042636" y1="130.70906218181818" y2="130.70906218181818"/> - <line stroke="#888888" x1="500.27325267042636" x2="500.27325267042636" y1="158.43633490909093" y2="146.8454258181818"/> - <line stroke="#888888" x1="500.27325267042636" x2="500.77325267042636" y1="146.8454258181818" y2="146.8454258181818"/> - <line stroke="#888888" x1="500.77325267042636" x2="500.77325267042636" y1="146.8454258181818" y2="158.43633490909093"/> - <line stroke="#888888" x1="500.77325267042636" x2="500.27325267042636" y1="158.43633490909093" y2="158.43633490909093"/> - <line stroke="#888888" x1="340.52325267042636" x2="340.52325267042636" y1="121.52724400000001" y2="118.52724400000001"/> - <line stroke="#888888" x1="340.52325267042636" x2="343.52325267042636" y1="118.52724400000001" y2="118.52724400000001"/> - <line stroke="#888888" x1="343.52325267042636" x2="343.52325267042636" y1="118.52724400000001" y2="121.52724400000001"/> - <line stroke="#888888" x1="343.52325267042636" x2="340.52325267042636" y1="121.52724400000001" y2="121.52724400000001"/> - <line stroke="#888888" x1="361.52325267042636" x2="361.52325267042636" y1="120.52724400000001" y2="119.52724400000001"/> - <line stroke="#888888" x1="361.52325267042636" x2="362.52325267042636" y1="119.52724400000001" y2="119.52724400000001"/> - <line stroke="#888888" x1="362.52325267042636" x2="362.52325267042636" y1="119.52724400000001" y2="120.52724400000001"/> - <line stroke="#888888" x1="362.52325267042636" x2="361.52325267042636" y1="120.52724400000001" y2="120.52724400000001"/> - <line stroke="#888888" x1="341.5232526704263" x2="341.5232526704263" y1="123.02724400000001" y2="122.02724400000001"/> - <line stroke="#888888" x1="341.5232526704263" x2="342.52325267042636" y1="122.02724400000001" y2="122.02724400000001"/> - <line stroke="#888888" x1="342.52325267042636" x2="342.52325267042636" y1="122.02724400000001" y2="123.02724400000001"/> - <line stroke="#888888" x1="342.52325267042636" x2="341.5232526704263" y1="123.02724400000001" y2="123.02724400000001"/> - <line stroke="#888888" x1="361.52325267042636" x2="361.52325267042636" y1="123.02724400000001" y2="122.02724400000001"/> - <line stroke="#888888" x1="361.52325267042636" x2="362.52325267042636" y1="122.02724400000001" y2="122.02724400000001"/> - <line stroke="#888888" x1="362.52325267042636" x2="362.52325267042636" y1="122.02724400000001" y2="123.02724400000001"/> - <line stroke="#888888" x1="362.52325267042636" x2="361.52325267042636" y1="123.02724400000001" y2="123.02724400000001"/> - <line stroke="#888888" x1="341.5232526704263" x2="341.5232526704263" y1="125.52724400000001" y2="124.52724400000001"/> - <line stroke="#888888" x1="341.5232526704263" x2="342.52325267042636" y1="124.52724400000001" y2="124.52724400000001"/> - <line stroke="#888888" x1="342.52325267042636" x2="342.52325267042636" y1="124.52724400000001" y2="125.52724400000001"/> - <line stroke="#888888" x1="342.52325267042636" x2="341.5232526704263" y1="125.52724400000001" y2="125.52724400000001"/> - <line stroke="#888888" x1="361.52325267042636" x2="361.52325267042636" y1="125.52724400000001" y2="124.52724400000001"/> - <line stroke="#888888" x1="361.52325267042636" x2="362.52325267042636" y1="124.52724400000001" y2="124.52724400000001"/> - <line stroke="#888888" x1="362.52325267042636" x2="362.52325267042636" y1="124.52724400000001" y2="125.52724400000001"/> - <line stroke="#888888" x1="362.52325267042636" x2="361.52325267042636" y1="125.52724400000001" y2="125.52724400000001"/> - <line stroke="#888888" x1="341.5232526704263" x2="341.5232526704263" y1="128.02724400000002" y2="127.02724400000001"/> - <line stroke="#888888" x1="341.5232526704263" x2="342.52325267042636" y1="127.02724400000001" y2="127.02724400000001"/> - <line stroke="#888888" x1="342.52325267042636" x2="342.52325267042636" y1="127.02724400000001" y2="128.02724400000002"/> - <line stroke="#888888" x1="342.52325267042636" x2="341.5232526704263" y1="128.02724400000002" y2="128.02724400000002"/> - <line stroke="#888888" x1="361.52325267042636" x2="361.52325267042636" y1="128.02724400000002" y2="127.02724400000001"/> - <line stroke="#888888" x1="361.52325267042636" x2="362.52325267042636" y1="127.02724400000001" y2="127.02724400000001"/> - <line stroke="#888888" x1="362.52325267042636" x2="362.52325267042636" y1="127.02724400000001" y2="128.02724400000002"/> - <line stroke="#888888" x1="362.52325267042636" x2="361.52325267042636" y1="128.02724400000002" y2="128.02724400000002"/> - <line stroke="#888888" x1="341.5232526704263" x2="341.5232526704263" y1="130.52724400000002" y2="129.527244"/> - <line stroke="#888888" x1="341.5232526704263" x2="342.52325267042636" y1="129.527244" y2="129.527244"/> - <line stroke="#888888" x1="342.52325267042636" x2="342.52325267042636" y1="129.527244" y2="130.52724400000002"/> - <line stroke="#888888" x1="342.52325267042636" x2="341.5232526704263" y1="130.52724400000002" y2="130.52724400000002"/> - <line stroke="#888888" x1="361.52325267042636" x2="361.52325267042636" y1="130.52724400000002" y2="129.527244"/> - <line stroke="#888888" x1="361.52325267042636" x2="362.52325267042636" y1="129.527244" y2="129.527244"/> - <line stroke="#888888" x1="362.52325267042636" x2="362.52325267042636" y1="129.527244" y2="130.52724400000002"/> - <line stroke="#888888" x1="362.52325267042636" x2="361.52325267042636" y1="130.52724400000002" y2="130.52724400000002"/> - <line stroke="#888888" x1="341.5232526704263" x2="341.5232526704263" y1="133.027244" y2="132.027244"/> - <line stroke="#888888" x1="341.5232526704263" x2="342.52325267042636" y1="132.027244" y2="132.027244"/> - <line stroke="#888888" x1="342.52325267042636" x2="342.52325267042636" y1="132.027244" y2="133.027244"/> - <line stroke="#888888" x1="342.52325267042636" x2="341.5232526704263" y1="133.027244" y2="133.027244"/> - <line stroke="#888888" x1="361.52325267042636" x2="361.52325267042636" y1="133.027244" y2="132.027244"/> - <line stroke="#888888" x1="361.52325267042636" x2="362.52325267042636" y1="132.027244" y2="132.027244"/> - <line stroke="#888888" x1="362.52325267042636" x2="362.52325267042636" y1="132.027244" y2="133.027244"/> - <line stroke="#888888" x1="362.52325267042636" x2="361.52325267042636" y1="133.027244" y2="133.027244"/> - <line stroke="#888888" x1="341.5232526704263" x2="341.5232526704263" y1="135.527244" y2="134.52724400000002"/> - <line stroke="#888888" x1="341.5232526704263" x2="342.52325267042636" y1="134.52724400000002" y2="134.52724400000002"/> - <line stroke="#888888" x1="342.52325267042636" x2="342.52325267042636" y1="134.52724400000002" y2="135.527244"/> - <line stroke="#888888" x1="342.52325267042636" x2="341.5232526704263" y1="135.527244" y2="135.527244"/> - <line stroke="#888888" x1="361.52325267042636" x2="361.52325267042636" y1="135.527244" y2="134.52724400000002"/> - <line stroke="#888888" x1="361.52325267042636" x2="362.52325267042636" y1="134.52724400000002" y2="134.52724400000002"/> - <line stroke="#888888" x1="362.52325267042636" x2="362.52325267042636" y1="134.52724400000002" y2="135.527244"/> - <line stroke="#888888" x1="362.52325267042636" x2="361.52325267042636" y1="135.527244" y2="135.527244"/> - <line stroke="#888888" x1="341.5232526704263" x2="341.5232526704263" y1="138.02724400000002" y2="137.027244"/> - <line stroke="#888888" x1="341.5232526704263" x2="342.52325267042636" y1="137.027244" y2="137.027244"/> - <line stroke="#888888" x1="342.52325267042636" x2="342.52325267042636" y1="137.027244" y2="138.02724400000002"/> - <line stroke="#888888" x1="342.52325267042636" x2="341.5232526704263" y1="138.02724400000002" y2="138.02724400000002"/> - <line stroke="#888888" x1="361.52325267042636" x2="361.52325267042636" y1="138.02724400000002" y2="137.027244"/> - <line stroke="#888888" x1="361.52325267042636" x2="362.52325267042636" y1="137.027244" y2="137.027244"/> - <line stroke="#888888" x1="362.52325267042636" x2="362.52325267042636" y1="137.027244" y2="138.02724400000002"/> - <line stroke="#888888" x1="362.52325267042636" x2="361.52325267042636" y1="138.02724400000002" y2="138.02724400000002"/> - <line stroke="#888888" x1="341.5232526704263" x2="341.5232526704263" y1="140.52724400000002" y2="139.527244"/> - <line stroke="#888888" x1="341.5232526704263" x2="342.52325267042636" y1="139.527244" y2="139.527244"/> - <line stroke="#888888" x1="342.52325267042636" x2="342.52325267042636" y1="139.527244" y2="140.52724400000002"/> - <line stroke="#888888" x1="342.52325267042636" x2="341.5232526704263" y1="140.52724400000002" y2="140.52724400000002"/> - <line stroke="#888888" x1="361.52325267042636" x2="361.52325267042636" y1="140.52724400000002" y2="139.527244"/> - <line stroke="#888888" x1="361.52325267042636" x2="362.52325267042636" y1="139.527244" y2="139.527244"/> - <line stroke="#888888" x1="362.52325267042636" x2="362.52325267042636" y1="139.527244" y2="140.52724400000002"/> - <line stroke="#888888" x1="362.52325267042636" x2="361.52325267042636" y1="140.52724400000002" y2="140.52724400000002"/> - <line stroke="#888888" x1="341.5232526704263" x2="341.5232526704263" y1="143.02724400000002" y2="142.027244"/> - <line stroke="#888888" x1="341.5232526704263" x2="342.52325267042636" y1="142.027244" y2="142.027244"/> - <line stroke="#888888" x1="342.52325267042636" x2="342.52325267042636" y1="142.027244" y2="143.02724400000002"/> - <line stroke="#888888" x1="342.52325267042636" x2="341.5232526704263" y1="143.02724400000002" y2="143.02724400000002"/> - <line stroke="#888888" x1="361.52325267042636" x2="361.52325267042636" y1="143.02724400000002" y2="142.027244"/> - <line stroke="#888888" x1="361.52325267042636" x2="362.52325267042636" y1="142.027244" y2="142.027244"/> - <line stroke="#888888" x1="362.52325267042636" x2="362.52325267042636" y1="142.027244" y2="143.02724400000002"/> - <line stroke="#888888" x1="362.52325267042636" x2="361.52325267042636" y1="143.02724400000002" y2="143.02724400000002"/> - <line stroke="#888888" x1="341.5232526704263" x2="341.5232526704263" y1="145.52724400000002" y2="144.527244"/> - <line stroke="#888888" x1="341.5232526704263" x2="342.52325267042636" y1="144.527244" y2="144.527244"/> - <line stroke="#888888" x1="342.52325267042636" x2="342.52325267042636" y1="144.527244" y2="145.52724400000002"/> - <line stroke="#888888" x1="342.52325267042636" x2="341.5232526704263" y1="145.52724400000002" y2="145.52724400000002"/> - <line stroke="#888888" x1="361.52325267042636" x2="361.52325267042636" y1="145.52724400000002" y2="144.527244"/> - <line stroke="#888888" x1="361.52325267042636" x2="362.52325267042636" y1="144.527244" y2="144.527244"/> - <line stroke="#888888" x1="362.52325267042636" x2="362.52325267042636" y1="144.527244" y2="145.52724400000002"/> - <line stroke="#888888" x1="362.52325267042636" x2="361.52325267042636" y1="145.52724400000002" y2="145.52724400000002"/> - <line stroke="#888888" x1="341.5232526704263" x2="341.5232526704263" y1="148.02724400000002" y2="147.02724400000002"/> - <line stroke="#888888" x1="341.5232526704263" x2="342.52325267042636" y1="147.02724400000002" y2="147.02724400000002"/> - <line stroke="#888888" x1="342.52325267042636" x2="342.52325267042636" y1="147.02724400000002" y2="148.02724400000002"/> - <line stroke="#888888" x1="342.52325267042636" x2="341.5232526704263" y1="148.02724400000002" y2="148.02724400000002"/> - <line stroke="#888888" x1="361.52325267042636" x2="361.52325267042636" y1="148.02724400000002" y2="147.02724400000002"/> - <line stroke="#888888" x1="361.52325267042636" x2="362.52325267042636" y1="147.02724400000002" y2="147.02724400000002"/> - <line stroke="#888888" x1="362.52325267042636" x2="362.52325267042636" y1="147.02724400000002" y2="148.02724400000002"/> - <line stroke="#888888" x1="362.52325267042636" x2="361.52325267042636" y1="148.02724400000002" y2="148.02724400000002"/> - <line stroke="#888888" x1="341.5232526704263" x2="341.5232526704263" y1="150.52724400000002" y2="149.52724400000002"/> - <line stroke="#888888" x1="341.5232526704263" x2="342.52325267042636" y1="149.52724400000002" y2="149.52724400000002"/> - <line stroke="#888888" x1="342.52325267042636" x2="342.52325267042636" y1="149.52724400000002" y2="150.52724400000002"/> - <line stroke="#888888" x1="342.52325267042636" x2="341.5232526704263" y1="150.52724400000002" y2="150.52724400000002"/> - <line stroke="#888888" x1="361.52325267042636" x2="361.52325267042636" y1="150.52724400000002" y2="149.52724400000002"/> - <line stroke="#888888" x1="361.52325267042636" x2="362.52325267042636" y1="149.52724400000002" y2="149.52724400000002"/> - <line stroke="#888888" x1="362.52325267042636" x2="362.52325267042636" y1="149.52724400000002" y2="150.52724400000002"/> - <line stroke="#888888" x1="362.52325267042636" x2="361.52325267042636" y1="150.52724400000002" y2="150.52724400000002"/> - <line stroke="#888888" x1="341.5232526704263" x2="341.5232526704263" y1="153.027244" y2="152.02724400000002"/> - <line stroke="#888888" x1="341.5232526704263" x2="342.52325267042636" y1="152.02724400000002" y2="152.02724400000002"/> - <line stroke="#888888" x1="342.52325267042636" x2="342.52325267042636" y1="152.02724400000002" y2="153.027244"/> - <line stroke="#888888" x1="342.52325267042636" x2="341.5232526704263" y1="153.027244" y2="153.027244"/> - <line stroke="#888888" x1="361.52325267042636" x2="361.52325267042636" y1="153.027244" y2="152.02724400000002"/> - <line stroke="#888888" x1="361.52325267042636" x2="362.52325267042636" y1="152.02724400000002" y2="152.02724400000002"/> - <line stroke="#888888" x1="362.52325267042636" x2="362.52325267042636" y1="152.02724400000002" y2="153.027244"/> - <line stroke="#888888" x1="362.52325267042636" x2="361.52325267042636" y1="153.027244" y2="153.027244"/> - <line stroke="#888888" x1="341.5232526704263" x2="341.5232526704263" y1="155.527244" y2="154.52724400000002"/> - <line stroke="#888888" x1="341.5232526704263" x2="342.52325267042636" y1="154.52724400000002" y2="154.52724400000002"/> - <line stroke="#888888" x1="342.52325267042636" x2="342.52325267042636" y1="154.52724400000002" y2="155.527244"/> - <line stroke="#888888" x1="342.52325267042636" x2="341.5232526704263" y1="155.527244" y2="155.527244"/> - <line stroke="#888888" x1="361.52325267042636" x2="361.52325267042636" y1="155.527244" y2="154.52724400000002"/> - <line stroke="#888888" x1="361.52325267042636" x2="362.52325267042636" y1="154.52724400000002" y2="154.52724400000002"/> - <line stroke="#888888" x1="362.52325267042636" x2="362.52325267042636" y1="154.52724400000002" y2="155.527244"/> - <line stroke="#888888" x1="362.52325267042636" x2="361.52325267042636" y1="155.527244" y2="155.527244"/> - <line stroke="#888888" x1="341.5232526704263" x2="341.5232526704263" y1="158.027244" y2="157.02724400000002"/> - <line stroke="#888888" x1="341.5232526704263" x2="342.52325267042636" y1="157.02724400000002" y2="157.02724400000002"/> - <line stroke="#888888" x1="342.52325267042636" x2="342.52325267042636" y1="157.02724400000002" y2="158.027244"/> - <line stroke="#888888" x1="342.52325267042636" x2="341.5232526704263" y1="158.027244" y2="158.027244"/> - <line stroke="#888888" x1="360.52325267042636" x2="360.52325267042636" y1="159.02724400000002" y2="156.02724400000002"/> - <line stroke="#888888" x1="360.52325267042636" x2="363.5232526704263" y1="156.02724400000002" y2="156.02724400000002"/> - <line stroke="#888888" x1="363.5232526704263" x2="363.5232526704263" y1="156.02724400000002" y2="159.02724400000002"/> - <line stroke="#888888" x1="363.5232526704263" x2="360.52325267042636" y1="159.02724400000002" y2="159.02724400000002"/> - <line stroke="#888888" x1="356.27325267042636" x2="347.77325267042636" y1="116.02724400000001" y2="116.02724400000001"/> - <line stroke="#888888" x1="347.77325267042636" x2="347.77325267042636" y1="116.02724400000001" y2="115.52724400000001"/> - <line stroke="#888888" x1="347.77325267042636" x2="356.27325267042636" y1="115.52724400000001" y2="115.52724400000001"/> - <line stroke="#888888" x1="356.27325267042636" x2="356.27325267042636" y1="115.52724400000001" y2="116.02724400000001"/> - <line stroke="#888888" x1="347.77325267042636" x2="356.27325267042636" y1="163.77724400000002" y2="163.77724400000002"/> - <line stroke="#888888" x1="356.27325267042636" x2="356.27325267042636" y1="163.77724400000002" y2="164.27724400000002"/> - <line stroke="#888888" x1="356.27325267042636" x2="347.77325267042636" y1="164.27724400000002" y2="164.27724400000002"/> - <line stroke="#888888" x1="347.77325267042636" x2="347.77325267042636" y1="164.27724400000002" y2="163.77724400000002"/> - <line stroke="#888888" x1="332.5232526704263" x2="337.52325267042636" y1="119.3681530909091" y2="119.3681530909091"/> - <line stroke="#888888" x1="337.52325267042636" x2="337.52325267042636" y1="119.3681530909091" y2="130.45906218181818"/> - <line stroke="#888888" x1="337.52325267042636" x2="332.5232526704263" y1="130.45906218181818" y2="130.45906218181818"/> - <line stroke="#888888" x1="332.5232526704263" x2="337.52325267042636" y1="147.0954258181818" y2="147.0954258181818"/> - <line stroke="#888888" x1="337.52325267042636" x2="337.52325267042636" y1="147.0954258181818" y2="158.18633490909093"/> - <line stroke="#888888" x1="337.52325267042636" x2="332.5232526704263" y1="158.18633490909093" y2="158.18633490909093"/> - <line stroke="#888888" x1="357.77325267042636" x2="361.27325267042636" y1="92.27724400000001" y2="92.27724400000001"/> - <line stroke="#888888" x1="361.27325267042636" x2="361.27325267042636" y1="92.27724400000001" y2="100.27724400000001"/> - <line stroke="#888888" x1="361.27325267042636" x2="357.77325267042636" y1="100.27724400000001" y2="100.27724400000001"/> + <line stroke="#000000" x1="329.02325267042613" x2="210.02325267042616" y1="125.00000000000001" y2="125.00000000000001"/> + <line opacity="0.25" stroke="#0000ff" x1="329.02325267042613" x2="390.0232526704262" y1="125.00000000000001" y2="125.00000000000001"/> + <line stroke="#000000" x1="390.0232526704262" x2="390.0232526704262" y1="125.00000000000001" y2="125.00000000000001"/> + <line stroke="#000000" x1="210.02325267042616" x2="210.02325267042616" y1="125.00000000000001" y2="125.00000000000001"/> + <line opacity="0.25" stroke="#0000ff" x1="329.02325267042613" x2="390.0232526704262" y1="88.86137800081471" y2="88.86137800081471"/> + <line stroke="#000000" x1="390.0232526704262" x2="390.0232526704262" y1="125.00000000000001" y2="88.86137800081471"/> + <line stroke="#000000" x1="329.02325267042613" x2="329.02325267042613" y1="88.86137800081471" y2="125.00000000000001"/> + <line opacity="0.25" stroke="#0000ff" x1="390.0232526704262" x2="329.02325267042613" y1="64.86137800081471" y2="64.86137800081471"/> + <line opacity="0.5" stroke="#0000ff" x1="390.0232526704262" x2="390.0232526704262" y1="64.86137800081471" y2="88.86137800081471"/> + <line stroke="#000000" x1="329.02325267042613" x2="329.02325267042613" y1="28.722756001629396" y2="64.86137800081472"/> + <line stroke="#000000" x1="390.0232526704262" x2="329.02325267042613" y1="28.722756001629396" y2="28.722756001629396"/> + <line stroke="#000000" x1="390.0232526704262" x2="390.0232526704262" y1="64.86137800081472" y2="28.722756001629396"/> + <line stroke="#000000" x1="400.0232526704262" x2="390.0232526704262" y1="64.86137800081471" y2="64.86137800081471"/> + <line stroke="#000000" x1="400.0232526704262" x2="400.0232526704262" y1="88.86137800081471" y2="64.86137800081471"/> + <line stroke="#000000" x1="390.0232526704262" x2="400.0232526704262" y1="88.86137800081471" y2="88.86137800081471"/> + <line stroke="#000000" x1="319.02325267042613" x2="329.02325267042613" y1="88.86137800081471" y2="88.86137800081471"/> + <line stroke="#000000" x1="319.02325267042613" x2="319.02325267042613" y1="64.86137800081471" y2="88.86137800081471"/> + <line stroke="#000000" x1="329.02325267042613" x2="319.02325267042613" y1="64.86137800081471" y2="64.86137800081471"/> + <line stroke="#000000" x1="186.0232526704262" x2="86.02325267042616" y1="125.00000000000001" y2="125.00000000000001"/> + <line opacity="1.0" stroke="#0000ff" x1="186.0232526704262" x2="210.02325267042616" y1="125.00000000000001" y2="125.00000000000001"/> + <line stroke="#000000" x1="390.0232526704262" x2="390.0232526704262" y1="125.00000000000001" y2="125.00000000000001"/> + <line stroke="#000000" x1="86.02325267042616" x2="86.02325267042616" y1="125.00000000000001" y2="125.00000000000001"/> + <line stroke="#000000" x1="210.02325267042616" x2="210.02325267042616" y1="125.00000000000001" y2="91.0"/> + <line opacity="0.5" stroke="#0000ff" x1="186.0232526704262" x2="186.0232526704262" y1="91.0" y2="125.00000000000001"/> + <line stroke="#000000" x1="186.0232526704262" x2="186.0232526704262" y1="55.00000000000001" y2="91.0"/> + <line opacity="0.5" stroke="#ff0000" x1="186.0232526704262" x2="210.02325267042616" y1="55.00000000000001" y2="55.00000000000001"/> + <line stroke="#000000" x1="210.02325267042616" x2="210.02325267042616" y1="91.0" y2="55.00000000000001"/> + <line stroke="#000000" x1="210.02325267042616" x2="210.02325267042616" y1="55.00000000000001" y2="5.000000000000001"/> + <line stroke="#000000" x1="186.0232526704262" x2="186.0232526704262" y1="5.000000000000001" y2="55.00000000000001"/> + <line stroke="#000000" x1="186.0232526704262" x2="186.0232526704262" y1="0.0" y2="5.000000000000001"/> + <line stroke="#000000" x1="210.02325267042616" x2="186.0232526704262" y1="0.0" y2="0.0"/> + <line stroke="#000000" x1="210.02325267042616" x2="210.02325267042616" y1="5.000000000000001" y2="0.0"/> + <line stroke="#000000" x1="186.0232526704262" x2="166.0232526704262" y1="91.0" y2="91.0"/> + <line stroke="#000000" x1="166.0232526704262" x2="186.0232526704262" y1="125.00000000000001" y2="125.00000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="166.0232526704262" x2="166.0232526704262" y1="91.0" y2="125.00000000000001"/> + <line stroke="#000000" x1="166.0232526704262" x2="142.02325267042616" y1="91.0" y2="91.0"/> + <line stroke="#000000" x1="142.02325267042616" x2="166.0232526704262" y1="125.00000000000001" y2="125.00000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="142.02325267042616" x2="142.02325267042616" y1="91.0" y2="125.00000000000001"/> + <line stroke="#000000" x1="142.02325267042616" x2="122.02325267042617" y1="91.0" y2="91.0"/> + <line stroke="#000000" x1="122.02325267042617" x2="142.02325267042616" y1="125.00000000000001" y2="125.00000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="122.02325267042617" x2="122.02325267042617" y1="125.00000000000001" y2="91.0"/> + <line stroke="#000000" x1="112.02325267042617" x2="122.02325267042617" y1="125.00000000000001" y2="125.00000000000001"/> + <line stroke="#000000" x1="112.02325267042617" x2="112.02325267042617" y1="91.0" y2="125.00000000000001"/> + <line stroke="#000000" x1="122.02325267042617" x2="112.02325267042617" y1="91.0" y2="91.0"/> + <line opacity="0.5" stroke="#0000ff" x1="390.0232526704262" x2="86.02325267042616" y1="195.00000000000003" y2="195.00000000000003"/> + <line opacity="0.5" stroke="#0000ff" x1="390.0232526704262" x2="390.0232526704262" y1="195.00000000000003" y2="125.00000000000001"/> + <line opacity="0.9666666666666667" stroke="#ff0000" x1="390.0232526704262" x2="460.0232526704262" y1="125.00000000000001" y2="125.00000000000001"/> + <line opacity="1.0" stroke="#ff0000" x1="390.0232526704262" x2="460.0232526704262" y1="195.00000000000003" y2="125.00000000000001"/> + <line stroke="#000000" x1="390.0232526704262" x2="390.0232526704262" y1="101.66666666666669" y2="125.00000000000001"/> + <line stroke="#000000" x1="460.0232526704262" x2="390.0232526704262" y1="101.66666666666669" y2="101.66666666666669"/> + <line stroke="#000000" x1="460.0232526704262" x2="460.0232526704262" y1="125.00000000000001" y2="101.66666666666669"/> + <line opacity="1.0" stroke="#0000ff" x1="390.02325267042625" x2="460.0232526704262" y1="195.00000000000003" y2="195.00000000000003"/> + <line stroke="#000000" x1="460.0232526704262" x2="460.0232526704262" y1="195.00000000000003" y2="125.00000000000001"/> + <line stroke="#000000" x1="460.02325267042625" x2="460.0232526704262" y1="265.00000000000006" y2="195.0"/> + <line stroke="#000000" x1="460.0232526704262" x2="460.02325267042625" y1="245.0" y2="265.00000000000006"/> + <line opacity="0.5" stroke="#0000ff" x1="390.0232526704263" x2="390.02325267042625" y1="245.00000000000003" y2="195.00000000000006"/> + <line opacity="0.5" stroke="#0000ff" x1="390.0232526704263" x2="390.0232526704263" y1="295.0" y2="245.00000000000003"/> + <line opacity="1.0" stroke="#0000ff" x1="460.02325267042625" x2="390.0232526704263" y1="295.0" y2="295.0"/> + <line stroke="#000000" x1="460.02325267042625" x2="460.02325267042625" y1="225.00000000000003" y2="245.00000000000003"/> + <line stroke="#000000" x1="460.02325267042625" x2="460.02325267042625" y1="295.0" y2="225.00000000000003"/> + <line stroke="#000000" x1="460.02325267042625" x2="460.02325267042625" y1="365.0" y2="295.0"/> + <line opacity="1.0" stroke="#ff0000" x1="460.02325267042625" x2="390.0232526704263" y1="365.0" y2="295.0"/> + <line opacity="0.5" stroke="#0000ff" x1="390.0232526704263" x2="390.0232526704263" y1="365.00000000000006" y2="295.0"/> + <line opacity="0.9666666666666667" stroke="#ff0000" x1="460.02325267042625" x2="390.0232526704263" y1="365.0" y2="365.00000000000006"/> + <line opacity="0.5" stroke="#0000ff" x1="390.0232526704263" x2="86.02325267042634" y1="295.0" y2="295.0000000000001"/> + <line opacity="1.0" stroke="#0000ff" x1="210.02325267042633" x2="186.02325267042636" y1="365.0000000000001" y2="365.00000000000017"/> + <line stroke="#000000" x1="86.02325267042634" x2="186.02325267042636" y1="365.00000000000017" y2="365.00000000000017"/> + <line stroke="#000000" x1="86.02325267042634" x2="86.02325267042634" y1="365.00000000000017" y2="365.00000000000017"/> + <line stroke="#000000" x1="390.0232526704263" x2="390.0232526704263" y1="365.00000000000006" y2="365.00000000000006"/> + <line stroke="#000000" x1="210.02325267042633" x2="329.02325267042636" y1="365.0000000000001" y2="365.00000000000006"/> + <line stroke="#000000" x1="210.02325267042633" x2="210.02325267042633" y1="365.0000000000001" y2="365.0000000000001"/> + <line stroke="#000000" x1="390.0232526704263" x2="390.0232526704263" y1="365.00000000000006" y2="365.00000000000006"/> + <line stroke="#000000" x1="390.0232526704263" x2="390.0232526704263" y1="375.00000000000006" y2="365.00000000000006"/> + <line stroke="#000000" x1="329.02325267042636" x2="390.0232526704263" y1="375.00000000000006" y2="375.00000000000006"/> + <line stroke="#000000" x1="329.02325267042636" x2="329.02325267042636" y1="365.00000000000006" y2="375.00000000000006"/> + <line stroke="#000000" x1="210.02325267042636" x2="210.02325267042633" y1="399.0000000000001" y2="365.0000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="186.02325267042633" x2="186.02325267042636" y1="365.0000000000001" y2="399.0000000000001"/> + <line stroke="#000000" x1="210.02325267042636" x2="210.02325267042636" y1="435.0000000000001" y2="399.0000000000001"/> + <line opacity="0.5" stroke="#ff0000" x1="210.02325267042636" x2="186.0232526704264" y1="435.0000000000001" y2="435.0000000000001"/> + <line stroke="#000000" x1="186.02325267042636" x2="186.0232526704264" y1="399.0000000000001" y2="435.0000000000001"/> + <line stroke="#000000" x1="186.0232526704264" x2="186.0232526704264" y1="435.0000000000001" y2="485.0000000000001"/> + <line stroke="#000000" x1="210.0232526704264" x2="210.02325267042636" y1="485.0000000000001" y2="435.0000000000001"/> + <line stroke="#000000" x1="186.0232526704264" x2="210.0232526704264" y1="485.0000000000001" y2="485.0000000000001"/> + <line stroke="#000000" x1="186.02325267042633" x2="166.0232526704263" y1="365.0000000000001" y2="365.0000000000001"/> + <line stroke="#000000" x1="166.02325267042633" x2="186.02325267042636" y1="399.0000000000001" y2="399.0000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="166.0232526704263" x2="166.02325267042633" y1="365.0000000000001" y2="399.0000000000001"/> + <line stroke="#000000" x1="166.0232526704263" x2="142.02325267042633" y1="365.0000000000001" y2="365.0000000000001"/> + <line stroke="#000000" x1="142.02325267042636" x2="166.02325267042633" y1="399.0000000000001" y2="399.0000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="142.02325267042633" x2="142.02325267042636" y1="365.0000000000001" y2="399.0000000000001"/> + <line stroke="#000000" x1="142.02325267042633" x2="122.02325267042634" y1="365.0000000000001" y2="365.0000000000001"/> + <line stroke="#000000" x1="122.02325267042636" x2="142.02325267042636" y1="399.0000000000001" y2="399.0000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="122.02325267042636" x2="122.02325267042634" y1="399.0000000000001" y2="365.0000000000001"/> + <line stroke="#000000" x1="112.02325267042634" x2="122.02325267042634" y1="399.0000000000001" y2="399.0000000000001"/> + <line stroke="#000000" x1="112.02325267042633" x2="112.02325267042634" y1="365.0000000000001" y2="399.0000000000001"/> + <line stroke="#000000" x1="122.02325267042633" x2="112.02325267042633" y1="365.0000000000001" y2="365.0000000000001"/> + <line opacity="0.25" stroke="#0000ff" x1="86.0232526704263" x2="86.02325267042634" y1="295.00000000000017" y2="365.00000000000017"/> + <line opacity="0.9666666666666667" stroke="#ff0000" x1="86.02325267042634" x2="32.42924173922606" y1="365.00000000000017" y2="365.0000000000002"/> + <line opacity="1.0" stroke="#ff0000" x1="86.02325267042632" x2="32.42924173922606" y1="295.00000000000017" y2="365.0000000000002"/> + <line stroke="#000000" x1="86.02325267042634" x2="86.02325267042634" y1="382.8646703104003" y2="365.00000000000017"/> + <line stroke="#000000" x1="32.42924173922606" x2="86.02325267042634" y1="382.8646703104003" y2="382.8646703104003"/> + <line stroke="#000000" x1="32.42924173922606" x2="32.42924173922606" y1="365.0000000000002" y2="382.8646703104003"/> + <line opacity="1.0" stroke="#0000ff" x1="86.02325267042632" x2="18.447362619882885" y1="295.00000000000017" y2="313.2619572849372"/> + <line stroke="#000000" x1="18.447362619882885" x2="32.42924173922606" y1="313.2619572849372" y2="365.0000000000002"/> + <line stroke="#000000" x1="4.465483500539649" x2="18.447362619882853" y1="261.5239145698741" y2="313.2619572849372"/> + <line stroke="#000000" x1="0.0" x2="4.465483500539649" y1="245.00000000000028" y2="261.5239145698741"/> + <line opacity="0.3048477725015598" stroke="#0000ff" x1="0.0" x2="86.0232526704263" y1="245.00000000000028" y2="295.0000000000001"/> + <line opacity="0.3025684567112535" stroke="#0000ff" x1="86.02325267042627" x2="86.02325267042632" y1="245.0000000000002" y2="295.0000000000001"/> + <line opacity="0.3025684567112535" stroke="#0000ff" x1="86.02325267042623" x2="86.02325267042627" y1="195.00000000000017" y2="245.0000000000002"/> + <line opacity="0.3048477725015598" stroke="#0000ff" x1="0.0" x2="86.02325267042623" y1="245.00000000000026" y2="195.00000000000017"/> + <line opacity="1.0" stroke="#0000ff" x1="18.447362619882743" x2="86.02325267042623" y1="176.73804271506336" y2="195.00000000000017"/> + <line stroke="#000000" x1="4.465483500539619" x2="0.0" y1="228.47608543012643" y2="245.00000000000026"/> + <line stroke="#000000" x1="18.447362619882743" x2="4.465483500539619" y1="176.73804271506336" y2="228.47608543012643"/> + <line stroke="#000000" x1="32.42924173922586" x2="18.447362619882743" y1="125.00000000000027" y2="176.73804271506336"/> + <line opacity="1.0" stroke="#ff0000" x1="32.42924173922586" x2="86.02325267042623" y1="125.00000000000027" y2="195.00000000000017"/> + <line opacity="0.25" stroke="#0000ff" x1="86.02325267042613" x2="86.0232526704262" y1="125.00000000000021" y2="195.00000000000017"/> + <line opacity="0.9666666666666667" stroke="#ff0000" x1="32.42924173922586" x2="86.02325267042613" y1="125.00000000000027" y2="125.00000000000021"/> + <line stroke="#000000" x1="32.42924173922584" x2="32.42924173922586" y1="107.13532968960016" y2="125.00000000000027"/> + <line stroke="#000000" x1="86.02325267042612" x2="32.42924173922584" y1="107.13532968960011" y2="107.13532968960016"/> + <line stroke="#000000" x1="86.02325267042613" x2="86.02325267042612" y1="125.00000000000021" y2="107.13532968960011"/> + <line stroke="#000000" x1="460.02325267042625" x2="460.02325267042625" y1="388.3333333333333" y2="365.0"/> + <line stroke="#000000" x1="390.0232526704263" x2="460.02325267042625" y1="388.33333333333337" y2="388.3333333333333"/> + <line stroke="#000000" x1="390.0232526704263" x2="390.0232526704263" y1="365.00000000000006" y2="388.33333333333337"/> + <line stroke="#888888" x1="347.02325267042613" x2="358.0232526704262" y1="70.3613780008147" y2="70.3613780008147"/> + <line stroke="#888888" x1="358.0232526704262" x2="358.0232526704262" y1="70.3613780008147" y2="83.36137800081471"/> + <line stroke="#888888" x1="358.0232526704262" x2="347.02325267042613" y1="83.36137800081471" y2="83.36137800081471"/> + <line stroke="#888888" x1="347.02325267042613" x2="347.02325267042613" y1="83.36137800081471" y2="70.3613780008147"/> + <line stroke="#888888" x1="378.52325267042613" x2="384.5232526704262" y1="71.86137800081471" y2="71.86137800081471"/> + <line stroke="#888888" x1="384.5232526704262" x2="384.5232526704262" y1="71.86137800081471" y2="81.86137800081471"/> + <line stroke="#888888" x1="384.5232526704262" x2="378.52325267042613" y1="81.86137800081471" y2="81.86137800081471"/> + <line stroke="#888888" x1="378.52325267042613" x2="378.52325267042613" y1="81.86137800081471" y2="71.86137800081471"/> + <line stroke="#888888" x1="351.45507085224443" x2="339.8641617613353" y1="36.47275600162939" y2="36.47275600162939"/> + <line stroke="#888888" x1="339.8641617613353" x2="339.8641617613353" y1="36.47275600162939" y2="35.9727560016294"/> + <line stroke="#888888" x1="339.8641617613353" x2="351.45507085224443" y1="35.9727560016294" y2="35.9727560016294"/> + <line stroke="#888888" x1="351.45507085224443" x2="351.45507085224443" y1="35.9727560016294" y2="36.47275600162939"/> + <line stroke="#888888" x1="379.18234357951707" x2="367.591434488608" y1="36.47275600162939" y2="36.47275600162939"/> + <line stroke="#888888" x1="367.591434488608" x2="367.591434488608" y1="36.47275600162939" y2="35.9727560016294"/> + <line stroke="#888888" x1="367.591434488608" x2="379.18234357951707" y1="35.9727560016294" y2="35.9727560016294"/> + <line stroke="#888888" x1="379.18234357951707" x2="379.18234357951707" y1="35.9727560016294" y2="36.47275600162939"/> + <line stroke="#888888" x1="397.5232526704262" x2="392.52325267042613" y1="80.86137800081471" y2="80.86137800081471"/> + <line stroke="#888888" x1="392.52325267042613" x2="392.52325267042613" y1="80.86137800081471" y2="72.86137800081471"/> + <line stroke="#888888" x1="392.52325267042613" x2="397.5232526704262" y1="72.86137800081471" y2="72.86137800081471"/> + <line stroke="#888888" x1="321.5232526704262" x2="326.5232526704262" y1="72.86137800081471" y2="72.86137800081471"/> + <line stroke="#888888" x1="326.5232526704262" x2="326.5232526704262" y1="72.86137800081471" y2="80.86137800081471"/> + <line stroke="#888888" x1="326.5232526704262" x2="321.5232526704262" y1="80.86137800081471" y2="80.86137800081471"/> + <line stroke="#888888" x1="202.2732526704262" x2="202.2732526704262" y1="113.91666666666669" y2="102.08333333333336"/> + <line stroke="#888888" x1="202.2732526704262" x2="202.7732526704262" y1="102.08333333333336" y2="102.08333333333336"/> + <line stroke="#888888" x1="202.7732526704262" x2="202.7732526704262" y1="102.08333333333336" y2="113.91666666666669"/> + <line stroke="#888888" x1="202.7732526704262" x2="202.2732526704262" y1="113.91666666666669" y2="113.91666666666669"/> + <line stroke="#888888" x1="202.0232526704262" x2="204.5232526704262" y1="1.2500000000000002" y2="1.2500000000000002"/> + <line stroke="#888888" x1="204.5232526704262" x2="202.0232526704262" y1="1.2500000000000002" y2="3.7500000000000004"/> + <line stroke="#888888" x1="202.0232526704262" x2="194.02325267042616" y1="3.7500000000000004" y2="3.7500000000000004"/> + <line stroke="#888888" x1="194.02325267042616" x2="191.52325267042616" y1="3.7500000000000004" y2="1.2500000000000002"/> + <line stroke="#888888" x1="191.52325267042616" x2="194.02325267042616" y1="1.2500000000000002" y2="1.2500000000000002"/> + <line stroke="#888888" x1="167.02325267042616" x2="171.02325267042616" y1="102.00000000000001" y2="102.00000000000001"/> + <line stroke="#888888" x1="171.02325267042616" x2="171.02325267042616" y1="102.00000000000001" y2="114.00000000000001"/> + <line stroke="#888888" x1="171.02325267042616" x2="167.02325267042616" y1="114.00000000000001" y2="114.00000000000001"/> + <line stroke="#888888" x1="167.02325267042616" x2="167.02325267042616" y1="114.00000000000001" y2="102.00000000000001"/> + <line stroke="#888888" x1="179.0232526704262" x2="183.0232526704262" y1="103.5" y2="103.5"/> + <line stroke="#888888" x1="183.0232526704262" x2="183.0232526704262" y1="103.5" y2="112.50000000000001"/> + <line stroke="#888888" x1="183.0232526704262" x2="179.0232526704262" y1="112.50000000000001" y2="112.50000000000001"/> + <line stroke="#888888" x1="179.0232526704262" x2="179.0232526704262" y1="112.50000000000001" y2="103.5"/> + <line stroke="#888888" x1="142.5232526704262" x2="165.5232526704262" y1="102.00000000000001" y2="102.00000000000001"/> + <line stroke="#888888" x1="165.5232526704262" x2="165.5232526704262" y1="102.00000000000001" y2="114.00000000000001"/> + <line stroke="#888888" x1="165.5232526704262" x2="142.5232526704262" y1="114.00000000000001" y2="114.00000000000001"/> + <line stroke="#888888" x1="142.5232526704262" x2="142.5232526704262" y1="114.00000000000001" y2="102.00000000000001"/> + <line stroke="#888888" x1="137.02325267042616" x2="141.0232526704262" y1="102.00000000000001" y2="102.00000000000001"/> + <line stroke="#888888" x1="141.0232526704262" x2="141.0232526704262" y1="102.00000000000001" y2="114.00000000000001"/> + <line stroke="#888888" x1="141.0232526704262" x2="137.02325267042616" y1="114.00000000000001" y2="114.00000000000001"/> + <line stroke="#888888" x1="137.02325267042616" x2="137.02325267042616" y1="114.00000000000001" y2="102.00000000000001"/> + <line stroke="#888888" x1="114.52325267042617" x2="119.52325267042617" y1="102.33333333333334" y2="102.33333333333334"/> + <line stroke="#888888" x1="119.52325267042617" x2="119.52325267042617" y1="102.33333333333334" y2="113.66666666666669"/> + <line stroke="#888888" x1="119.52325267042617" x2="114.52325267042617" y1="113.66666666666669" y2="113.66666666666669"/> + <line stroke="#888888" x1="436.68991933709293" x2="436.68991933709293" y1="107.50000000000001" y2="119.16666666666669"/> + <line stroke="#888888" x1="436.68991933709293" x2="413.35658600375956" y1="119.16666666666669" y2="119.16666666666669"/> + <line stroke="#888888" x1="413.35658600375956" x2="413.35658600375956" y1="119.16666666666669" y2="107.50000000000001"/> + <line stroke="#888888" x1="442.27325267042625" x2="442.27325267042625" y1="241.91666666666666" y2="218.08333333333334"/> + <line stroke="#888888" x1="442.27325267042625" x2="442.77325267042625" y1="218.08333333333334" y2="218.08333333333334"/> + <line stroke="#888888" x1="442.77325267042625" x2="442.77325267042625" y1="218.08333333333334" y2="241.91666666666666"/> + <line stroke="#888888" x1="442.77325267042625" x2="442.27325267042625" y1="241.91666666666666" y2="241.91666666666666"/> + <line stroke="#888888" x1="442.2732526704263" x2="442.2732526704263" y1="271.9166666666667" y2="248.08333333333337"/> + <line stroke="#888888" x1="442.2732526704263" x2="442.7732526704263" y1="248.08333333333337" y2="248.08333333333337"/> + <line stroke="#888888" x1="442.7732526704263" x2="442.7732526704263" y1="248.08333333333337" y2="271.9166666666667"/> + <line stroke="#888888" x1="442.7732526704263" x2="442.2732526704263" y1="271.9166666666667" y2="271.9166666666667"/> + <line stroke="#888888" x1="340.11416176133537" x2="340.11416176133537" y1="372.50000000000006" y2="367.50000000000006"/> + <line stroke="#888888" x1="340.11416176133537" x2="351.20507085224455" y1="367.50000000000006" y2="367.50000000000006"/> + <line stroke="#888888" x1="351.20507085224455" x2="351.20507085224455" y1="367.50000000000006" y2="372.50000000000006"/> + <line stroke="#888888" x1="367.8414344886082" x2="367.8414344886082" y1="372.50000000000006" y2="367.50000000000006"/> + <line stroke="#888888" x1="367.8414344886082" x2="378.9323435795172" y1="367.50000000000006" y2="367.50000000000006"/> + <line stroke="#888888" x1="378.9323435795172" x2="378.9323435795172" y1="367.50000000000006" y2="372.50000000000006"/> + <line stroke="#888888" x1="202.27325267042633" x2="202.27325267042633" y1="387.9166666666668" y2="376.0833333333334"/> + <line stroke="#888888" x1="202.27325267042633" x2="202.77325267042633" y1="376.0833333333334" y2="376.0833333333334"/> + <line stroke="#888888" x1="202.77325267042633" x2="202.77325267042636" y1="376.0833333333334" y2="387.9166666666668"/> + <line stroke="#888888" x1="202.77325267042636" x2="202.27325267042633" y1="387.9166666666668" y2="387.9166666666668"/> + <line stroke="#888888" x1="193.7732526704264" x2="202.27325267042636" y1="481.0000000000001" y2="481.0000000000001"/> + <line stroke="#888888" x1="202.27325267042636" x2="202.27325267042636" y1="481.0000000000001" y2="481.5000000000001"/> + <line stroke="#888888" x1="202.27325267042636" x2="193.7732526704264" y1="481.5000000000001" y2="481.5000000000001"/> + <line stroke="#888888" x1="193.7732526704264" x2="193.7732526704264" y1="481.5000000000001" y2="481.0000000000001"/> + <line stroke="#888888" x1="167.02325267042633" x2="171.02325267042633" y1="376.0000000000001" y2="376.0000000000001"/> + <line stroke="#888888" x1="171.02325267042633" x2="171.02325267042633" y1="376.0000000000001" y2="388.0000000000001"/> + <line stroke="#888888" x1="171.02325267042633" x2="167.02325267042633" y1="388.0000000000001" y2="388.0000000000001"/> + <line stroke="#888888" x1="167.02325267042633" x2="167.02325267042633" y1="388.0000000000001" y2="376.0000000000001"/> + <line stroke="#888888" x1="179.02325267042633" x2="183.02325267042633" y1="377.50000000000006" y2="377.50000000000006"/> + <line stroke="#888888" x1="183.02325267042633" x2="183.02325267042633" y1="377.50000000000006" y2="386.50000000000006"/> + <line stroke="#888888" x1="183.02325267042633" x2="179.02325267042633" y1="386.50000000000006" y2="386.50000000000006"/> + <line stroke="#888888" x1="179.02325267042633" x2="179.02325267042633" y1="386.50000000000006" y2="377.50000000000006"/> + <line stroke="#888888" x1="142.52325267042636" x2="165.52325267042636" y1="376.0000000000001" y2="376.0000000000001"/> + <line stroke="#888888" x1="165.52325267042636" x2="165.52325267042636" y1="376.0000000000001" y2="388.0000000000001"/> + <line stroke="#888888" x1="165.52325267042636" x2="142.52325267042636" y1="388.0000000000001" y2="388.0000000000001"/> + <line stroke="#888888" x1="142.52325267042636" x2="142.52325267042636" y1="388.0000000000001" y2="376.0000000000001"/> + <line stroke="#888888" x1="137.02325267042636" x2="141.02325267042633" y1="376.0000000000001" y2="376.0000000000001"/> + <line stroke="#888888" x1="141.02325267042633" x2="141.02325267042633" y1="376.0000000000001" y2="388.0000000000001"/> + <line stroke="#888888" x1="141.02325267042633" x2="137.02325267042636" y1="388.0000000000001" y2="388.0000000000001"/> + <line stroke="#888888" x1="137.02325267042636" x2="137.02325267042636" y1="388.0000000000001" y2="376.0000000000001"/> + <line stroke="#888888" x1="114.52325267042633" x2="119.52325267042633" y1="376.3333333333334" y2="376.3333333333334"/> + <line stroke="#888888" x1="119.52325267042633" x2="119.52325267042634" y1="376.3333333333334" y2="387.6666666666668"/> + <line stroke="#888888" x1="119.52325267042634" x2="114.52325267042634" y1="387.6666666666668" y2="387.6666666666668"/> + <line stroke="#888888" x1="50.293912049626165" x2="50.293912049626165" y1="378.3985027328003" y2="369.46616757760023"/> + <line stroke="#888888" x1="50.293912049626165" x2="68.15858236002626" y1="369.46616757760023" y2="369.46616757760023"/> + <line stroke="#888888" x1="68.15858236002626" x2="68.15858236002626" y1="369.46616757760023" y2="378.3985027328003"/> + <line stroke="#888888" x1="22.23674174086841" x2="27.02781066601807" y1="274.96789528790873" y2="292.6965944551955"/> + <line stroke="#888888" x1="27.02781066601807" x2="26.545125737085613" y1="292.6965944551955" y2="292.82703700723084"/> + <line stroke="#888888" x1="26.545125737085613" x2="21.754056811935953" y1="292.82703700723084" y2="275.098337839944"/> + <line stroke="#888888" x1="21.754056811935953" x2="22.23674174086841" y1="275.098337839944" y2="274.96789528790873"/> + <line stroke="#888888" x1="27.027810666018013" x2="22.236741740868357" y1="197.30340554480492" y2="215.0321047120917"/> + <line stroke="#888888" x1="22.236741740868357" x2="21.7540568119359" y1="215.0321047120917" y2="214.90166216005642"/> + <line stroke="#888888" x1="21.7540568119359" x2="26.54512573708556" y1="214.90166216005642" y2="197.17296299276964"/> + <line stroke="#888888" x1="26.54512573708556" x2="27.027810666018013" y1="197.17296299276964" y2="197.30340554480492"/> + <line stroke="#888888" x1="68.15858236002603" x2="68.15858236002603" y1="111.60149726720016" y2="120.5338324224002"/> + <line stroke="#888888" x1="68.15858236002603" x2="50.293912049625966" y1="120.5338324224002" y2="120.53383242240022"/> + <line stroke="#888888" x1="50.293912049625966" x2="50.29391204962594" y1="120.53383242240022" y2="111.60149726720017"/> + <line stroke="#888888" x1="413.3565860037597" x2="413.3565860037597" y1="382.49999999999994" y2="370.83333333333337"/> + <line stroke="#888888" x1="413.3565860037597" x2="436.68991933709293" y1="370.83333333333337" y2="370.8333333333333"/> + <line stroke="#888888" x1="436.68991933709293" x2="436.68991933709293" y1="370.8333333333333" y2="382.49999999999994"/> + <line opacity="0.5" stroke="#0000ff" x1="503.0232526704263" x2="564.0232526704264" y1="113.00000000000001" y2="113.00000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="564.0232526704264" x2="564.0232526704264" y1="113.00000000000001" y2="137.00000000000003"/> + <line opacity="0.5" stroke="#0000ff" x1="564.0232526704264" x2="503.0232526704263" y1="137.00000000000003" y2="137.00000000000003"/> + <line opacity="0.5" stroke="#0000ff" x1="503.0232526704263" x2="503.0232526704263" y1="137.00000000000003" y2="113.00000000000001"/> + <line stroke="#000000" x1="503.0232526704263" x2="503.0232526704263" y1="106.00000000000001" y2="113.00000000000001"/> + <line stroke="#000000" x1="563.0232526704264" x2="503.0232526704263" y1="106.00000000000001" y2="106.00000000000001"/> + <line stroke="#000000" x1="563.0232526704264" x2="563.0232526704264" y1="113.00000000000001" y2="106.00000000000001"/> + <line stroke="#000000" x1="571.0232526704264" x2="564.0232526704264" y1="113.00000000000001" y2="113.00000000000001"/> + <line stroke="#000000" x1="571.0232526704264" x2="571.0232526704264" y1="137.00000000000003" y2="113.00000000000001"/> + <line stroke="#000000" x1="564.0232526704264" x2="571.0232526704264" y1="137.00000000000003" y2="137.00000000000003"/> + <line opacity="0.5" stroke="#0000ff" x1="564.0232526704264" x2="564.0232526704264" y1="137.00000000000003" y2="198.0"/> + <line stroke="#000000" x1="504.0232526704263" x2="564.0232526704264" y1="198.0" y2="198.0"/> + <line opacity="0.5" stroke="#0000ff" x1="504.0232526704263" x2="504.0232526704263" y1="137.00000000000003" y2="198.0"/> + <line stroke="#000000" x1="588.0232526704262" x2="564.0232526704264" y1="137.00000000000003" y2="137.00000000000003"/> + <line opacity="0.5" stroke="#0000ff" x1="588.0232526704262" x2="588.0232526704262" y1="137.00000000000003" y2="198.0"/> + <line stroke="#000000" x1="564.0232526704264" x2="588.0232526704262" y1="198.0" y2="198.0"/> + <line stroke="#000000" x1="648.0232526704264" x2="588.0232526704262" y1="137.00000000000003" y2="137.00000000000003"/> + <line stroke="#000000" x1="648.0232526704264" x2="648.0232526704264" y1="198.0" y2="137.00000000000003"/> + <line stroke="#000000" x1="588.0232526704262" x2="648.0232526704264" y1="198.0" y2="198.0"/> + <line stroke="#000000" x1="504.0232526704263" x2="480.0232526704263" y1="137.00000000000003" y2="137.00000000000003"/> + <line stroke="#000000" x1="480.0232526704263" x2="504.0232526704263" y1="198.0" y2="198.0"/> + <line opacity="0.5" stroke="#0000ff" x1="480.0232526704263" x2="480.0232526704263" y1="198.0" y2="137.00000000000003"/> + <line stroke="#000000" x1="470.0232526704263" x2="480.0232526704263" y1="198.0" y2="198.0"/> + <line stroke="#000000" x1="470.0232526704263" x2="470.0232526704263" y1="137.00000000000003" y2="198.0"/> + <line stroke="#000000" x1="480.0232526704263" x2="470.0232526704263" y1="137.00000000000003" y2="137.00000000000003"/> + <line stroke="#000000" x1="496.0232526704263" x2="503.0232526704263" y1="137.00000000000003" y2="137.00000000000003"/> + <line stroke="#000000" x1="496.0232526704263" x2="496.0232526704263" y1="113.00000000000001" y2="137.00000000000003"/> + <line stroke="#000000" x1="503.0232526704263" x2="496.0232526704263" y1="113.00000000000001" y2="113.00000000000001"/> + <line stroke="#888888" x1="552.1141617613354" x2="555.6141617613354" y1="107.75000000000001" y2="107.75000000000001"/> + <line stroke="#888888" x1="555.6141617613354" x2="552.1141617613354" y1="107.75000000000001" y2="111.25000000000001"/> + <line stroke="#888888" x1="552.1141617613354" x2="541.2050708522444" y1="111.25000000000001" y2="111.25000000000001"/> + <line stroke="#888888" x1="541.2050708522444" x2="537.7050708522446" y1="111.25000000000001" y2="107.75000000000001"/> + <line stroke="#888888" x1="537.7050708522446" x2="541.2050708522444" y1="107.75000000000001" y2="107.75000000000001"/> + <line stroke="#888888" x1="524.8414344886082" x2="528.3414344886082" y1="107.75000000000001" y2="107.75000000000001"/> + <line stroke="#888888" x1="528.3414344886082" x2="524.8414344886082" y1="107.75000000000001" y2="111.25000000000001"/> + <line stroke="#888888" x1="524.8414344886082" x2="513.9323435795172" y1="111.25000000000001" y2="111.25000000000001"/> + <line stroke="#888888" x1="513.9323435795172" x2="510.43234357951724" y1="111.25000000000001" y2="107.75000000000001"/> + <line stroke="#888888" x1="510.43234357951724" x2="513.9323435795172" y1="107.75000000000001" y2="107.75000000000001"/> + <line stroke="#888888" x1="569.2732526704264" x2="565.7732526704262" y1="129.0" y2="129.0"/> + <line stroke="#888888" x1="565.7732526704262" x2="565.7732526704262" y1="129.0" y2="121.00000000000001"/> + <line stroke="#888888" x1="565.7732526704262" x2="569.2732526704264" y1="121.00000000000001" y2="121.00000000000001"/> + <line stroke="#888888" x1="511.5232526704263" x2="511.5232526704263" y1="188.50000000000003" y2="170.5"/> + <line stroke="#888888" x1="511.5232526704263" x2="546.5232526704264" y1="170.5" y2="170.5"/> + <line stroke="#888888" x1="546.5232526704264" x2="546.5232526704264" y1="170.5" y2="188.50000000000003"/> + <line stroke="#888888" x1="546.5232526704264" x2="511.5232526704263" y1="188.50000000000003" y2="188.50000000000003"/> + <line stroke="#888888" x1="564.5232526704264" x2="564.5232526704264" y1="150.25" y2="147.25000000000003"/> + <line stroke="#888888" x1="564.5232526704264" x2="567.5232526704262" y1="147.25000000000003" y2="147.25000000000003"/> + <line stroke="#888888" x1="567.5232526704262" x2="567.5232526704262" y1="147.25000000000003" y2="150.25"/> + <line stroke="#888888" x1="567.5232526704262" x2="564.5232526704264" y1="150.25" y2="150.25"/> + <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="149.25000000000003" y2="148.25"/> + <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="148.25" y2="148.25"/> + <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="148.25" y2="149.25000000000003"/> + <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="149.25000000000003" y2="149.25000000000003"/> + <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="151.75000000000003" y2="150.75000000000003"/> + <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="150.75000000000003" y2="150.75000000000003"/> + <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="150.75000000000003" y2="151.75000000000003"/> + <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="151.75000000000003" y2="151.75000000000003"/> + <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="151.75000000000003" y2="150.75000000000003"/> + <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="150.75000000000003" y2="150.75000000000003"/> + <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="150.75000000000003" y2="151.75000000000003"/> + <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="151.75000000000003" y2="151.75000000000003"/> + <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="154.25000000000003" y2="153.25000000000003"/> + <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="153.25000000000003" y2="153.25000000000003"/> + <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="153.25000000000003" y2="154.25000000000003"/> + <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="154.25000000000003" y2="154.25000000000003"/> + <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="154.25000000000003" y2="153.25000000000003"/> + <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="153.25000000000003" y2="153.25000000000003"/> + <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="153.25000000000003" y2="154.25000000000003"/> + <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="154.25000000000003" y2="154.25000000000003"/> + <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="156.75" y2="155.75000000000003"/> + <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="155.75000000000003" y2="155.75000000000003"/> + <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="155.75000000000003" y2="156.75"/> + <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="156.75" y2="156.75"/> + <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="156.75" y2="155.75000000000003"/> + <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="155.75000000000003" y2="155.75000000000003"/> + <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="155.75000000000003" y2="156.75"/> + <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="156.75" y2="156.75"/> + <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="159.25" y2="158.25000000000003"/> + <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="158.25000000000003" y2="158.25000000000003"/> + <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="158.25000000000003" y2="159.25"/> + <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="159.25" y2="159.25"/> + <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="159.25" y2="158.25000000000003"/> + <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="158.25000000000003" y2="158.25000000000003"/> + <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="158.25000000000003" y2="159.25"/> + <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="159.25" y2="159.25"/> + <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="161.75" y2="160.75000000000003"/> + <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="160.75000000000003" y2="160.75000000000003"/> + <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="160.75000000000003" y2="161.75"/> + <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="161.75" y2="161.75"/> + <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="161.75" y2="160.75000000000003"/> + <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="160.75000000000003" y2="160.75000000000003"/> + <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="160.75000000000003" y2="161.75"/> + <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="161.75" y2="161.75"/> + <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="164.25000000000003" y2="163.25000000000003"/> + <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="163.25000000000003" y2="163.25000000000003"/> + <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="163.25000000000003" y2="164.25000000000003"/> + <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="164.25000000000003" y2="164.25000000000003"/> + <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="164.25000000000003" y2="163.25000000000003"/> + <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="163.25000000000003" y2="163.25000000000003"/> + <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="163.25000000000003" y2="164.25000000000003"/> + <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="164.25000000000003" y2="164.25000000000003"/> + <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="166.75000000000003" y2="165.75"/> + <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="165.75" y2="165.75"/> + <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="165.75" y2="166.75000000000003"/> + <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="166.75000000000003" y2="166.75000000000003"/> + <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="166.75000000000003" y2="165.75"/> + <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="165.75" y2="165.75"/> + <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="165.75" y2="166.75000000000003"/> + <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="166.75000000000003" y2="166.75000000000003"/> + <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="169.25000000000003" y2="168.25"/> + <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="168.25" y2="168.25"/> + <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="168.25" y2="169.25000000000003"/> + <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="169.25000000000003" y2="169.25000000000003"/> + <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="169.25000000000003" y2="168.25"/> + <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="168.25" y2="168.25"/> + <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="168.25" y2="169.25000000000003"/> + <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="169.25000000000003" y2="169.25000000000003"/> + <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="171.75000000000003" y2="170.75"/> + <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="170.75" y2="170.75"/> + <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="170.75" y2="171.75000000000003"/> + <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="171.75000000000003" y2="171.75000000000003"/> + <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="171.75000000000003" y2="170.75"/> + <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="170.75" y2="170.75"/> + <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="170.75" y2="171.75000000000003"/> + <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="171.75000000000003" y2="171.75000000000003"/> + <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="174.25000000000003" y2="173.25000000000003"/> + <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="173.25000000000003" y2="173.25000000000003"/> + <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="173.25000000000003" y2="174.25000000000003"/> + <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="174.25000000000003" y2="174.25000000000003"/> + <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="174.25000000000003" y2="173.25000000000003"/> + <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="173.25000000000003" y2="173.25000000000003"/> + <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="173.25000000000003" y2="174.25000000000003"/> + <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="174.25000000000003" y2="174.25000000000003"/> + <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="176.75000000000003" y2="175.75000000000003"/> + <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="175.75000000000003" y2="175.75000000000003"/> + <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="175.75000000000003" y2="176.75000000000003"/> + <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="176.75000000000003" y2="176.75000000000003"/> + <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="176.75000000000003" y2="175.75000000000003"/> + <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="175.75000000000003" y2="175.75000000000003"/> + <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="175.75000000000003" y2="176.75000000000003"/> + <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="176.75000000000003" y2="176.75000000000003"/> + <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="179.25000000000003" y2="178.25000000000003"/> + <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="178.25000000000003" y2="178.25000000000003"/> + <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="178.25000000000003" y2="179.25000000000003"/> + <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="179.25000000000003" y2="179.25000000000003"/> + <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="179.25000000000003" y2="178.25000000000003"/> + <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="178.25000000000003" y2="178.25000000000003"/> + <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="178.25000000000003" y2="179.25000000000003"/> + <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="179.25000000000003" y2="179.25000000000003"/> + <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="181.75" y2="180.75000000000003"/> + <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="180.75000000000003" y2="180.75000000000003"/> + <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="180.75000000000003" y2="181.75"/> + <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="181.75" y2="181.75"/> + <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="181.75" y2="180.75000000000003"/> + <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="180.75000000000003" y2="180.75000000000003"/> + <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="180.75000000000003" y2="181.75"/> + <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="181.75" y2="181.75"/> + <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="184.25" y2="183.25000000000003"/> + <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="183.25000000000003" y2="183.25000000000003"/> + <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="183.25000000000003" y2="184.25"/> + <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="184.25" y2="184.25"/> + <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="184.25" y2="183.25000000000003"/> + <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="183.25000000000003" y2="183.25000000000003"/> + <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="183.25000000000003" y2="184.25"/> + <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="184.25" y2="184.25"/> + <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="186.75" y2="185.75000000000003"/> + <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="185.75000000000003" y2="185.75000000000003"/> + <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="185.75000000000003" y2="186.75"/> + <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="186.75" y2="186.75"/> + <line stroke="#888888" x1="584.5232526704264" x2="584.5232526704264" y1="187.75000000000003" y2="184.75000000000003"/> + <line stroke="#888888" x1="584.5232526704264" x2="587.5232526704262" y1="184.75000000000003" y2="184.75000000000003"/> + <line stroke="#888888" x1="587.5232526704262" x2="587.5232526704262" y1="184.75000000000003" y2="187.75000000000003"/> + <line stroke="#888888" x1="587.5232526704262" x2="584.5232526704264" y1="187.75000000000003" y2="187.75000000000003"/> + <line stroke="#888888" x1="580.2732526704264" x2="571.7732526704262" y1="144.75000000000003" y2="144.75000000000003"/> + <line stroke="#888888" x1="571.7732526704262" x2="571.7732526704262" y1="144.75000000000003" y2="144.25000000000003"/> + <line stroke="#888888" x1="571.7732526704262" x2="580.2732526704264" y1="144.25000000000003" y2="144.25000000000003"/> + <line stroke="#888888" x1="580.2732526704264" x2="580.2732526704264" y1="144.25000000000003" y2="144.75000000000003"/> + <line stroke="#888888" x1="571.7732526704262" x2="580.2732526704264" y1="192.50000000000003" y2="192.50000000000003"/> + <line stroke="#888888" x1="580.2732526704264" x2="580.2732526704264" y1="192.50000000000003" y2="193.00000000000003"/> + <line stroke="#888888" x1="580.2732526704264" x2="571.7732526704262" y1="193.00000000000003" y2="193.00000000000003"/> + <line stroke="#888888" x1="571.7732526704262" x2="571.7732526704262" y1="193.00000000000003" y2="192.50000000000003"/> + <line stroke="#888888" x1="603.0232526704264" x2="603.0232526704264" y1="188.00000000000003" y2="175.0"/> + <line stroke="#888888" x1="603.0232526704264" x2="633.0232526704262" y1="175.0" y2="175.0"/> + <line stroke="#888888" x1="633.0232526704262" x2="633.0232526704262" y1="175.0" y2="188.00000000000003"/> + <line stroke="#888888" x1="633.0232526704262" x2="603.0232526704264" y1="188.00000000000003" y2="188.00000000000003"/> + <line stroke="#888888" x1="610.0914344886081" x2="598.6823435795171" y1="142.50000000000003" y2="142.50000000000003"/> + <line stroke="#888888" x1="598.6823435795171" x2="598.6823435795171" y1="142.50000000000003" y2="142.00000000000003"/> + <line stroke="#888888" x1="598.6823435795171" x2="610.0914344886081" y1="142.00000000000003" y2="142.00000000000003"/> + <line stroke="#888888" x1="610.0914344886081" x2="610.0914344886081" y1="142.00000000000003" y2="142.50000000000003"/> + <line stroke="#888888" x1="637.3641617613355" x2="625.9550708522444" y1="142.50000000000003" y2="142.50000000000003"/> + <line stroke="#888888" x1="625.9550708522444" x2="625.9550708522444" y1="142.50000000000003" y2="142.00000000000003"/> + <line stroke="#888888" x1="625.9550708522444" x2="637.3641617613355" y1="142.00000000000003" y2="142.00000000000003"/> + <line stroke="#888888" x1="637.3641617613355" x2="637.3641617613355" y1="142.00000000000003" y2="142.50000000000003"/> + <line stroke="#888888" x1="640.2732526704264" x2="640.2732526704264" y1="159.43181818181822" y2="147.84090909090912"/> + <line stroke="#888888" x1="640.2732526704264" x2="640.7732526704264" y1="147.84090909090912" y2="147.84090909090912"/> + <line stroke="#888888" x1="640.7732526704264" x2="640.7732526704264" y1="147.84090909090912" y2="159.43181818181822"/> + <line stroke="#888888" x1="640.7732526704264" x2="640.2732526704264" y1="159.43181818181822" y2="159.43181818181822"/> + <line stroke="#888888" x1="640.2732526704264" x2="640.2732526704264" y1="187.15909090909093" y2="175.5681818181818"/> + <line stroke="#888888" x1="640.2732526704264" x2="640.7732526704264" y1="175.5681818181818" y2="175.5681818181818"/> + <line stroke="#888888" x1="640.7732526704264" x2="640.7732526704264" y1="175.5681818181818" y2="187.15909090909093"/> + <line stroke="#888888" x1="640.7732526704264" x2="640.2732526704264" y1="187.15909090909093" y2="187.15909090909093"/> + <line stroke="#888888" x1="480.5232526704263" x2="480.5232526704263" y1="150.25" y2="147.25000000000003"/> + <line stroke="#888888" x1="480.5232526704263" x2="483.5232526704263" y1="147.25000000000003" y2="147.25000000000003"/> + <line stroke="#888888" x1="483.5232526704263" x2="483.5232526704263" y1="147.25000000000003" y2="150.25"/> + <line stroke="#888888" x1="483.5232526704263" x2="480.5232526704263" y1="150.25" y2="150.25"/> + <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="149.25000000000003" y2="148.25"/> + <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="148.25" y2="148.25"/> + <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="148.25" y2="149.25000000000003"/> + <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="149.25000000000003" y2="149.25000000000003"/> + <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="151.75000000000003" y2="150.75000000000003"/> + <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="150.75000000000003" y2="150.75000000000003"/> + <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="150.75000000000003" y2="151.75000000000003"/> + <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="151.75000000000003" y2="151.75000000000003"/> + <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="151.75000000000003" y2="150.75000000000003"/> + <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="150.75000000000003" y2="150.75000000000003"/> + <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="150.75000000000003" y2="151.75000000000003"/> + <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="151.75000000000003" y2="151.75000000000003"/> + <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="154.25000000000003" y2="153.25000000000003"/> + <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="153.25000000000003" y2="153.25000000000003"/> + <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="153.25000000000003" y2="154.25000000000003"/> + <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="154.25000000000003" y2="154.25000000000003"/> + <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="154.25000000000003" y2="153.25000000000003"/> + <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="153.25000000000003" y2="153.25000000000003"/> + <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="153.25000000000003" y2="154.25000000000003"/> + <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="154.25000000000003" y2="154.25000000000003"/> + <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="156.75" y2="155.75000000000003"/> + <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="155.75000000000003" y2="155.75000000000003"/> + <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="155.75000000000003" y2="156.75"/> + <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="156.75" y2="156.75"/> + <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="156.75" y2="155.75000000000003"/> + <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="155.75000000000003" y2="155.75000000000003"/> + <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="155.75000000000003" y2="156.75"/> + <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="156.75" y2="156.75"/> + <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="159.25" y2="158.25000000000003"/> + <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="158.25000000000003" y2="158.25000000000003"/> + <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="158.25000000000003" y2="159.25"/> + <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="159.25" y2="159.25"/> + <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="159.25" y2="158.25000000000003"/> + <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="158.25000000000003" y2="158.25000000000003"/> + <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="158.25000000000003" y2="159.25"/> + <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="159.25" y2="159.25"/> + <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="161.75" y2="160.75000000000003"/> + <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="160.75000000000003" y2="160.75000000000003"/> + <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="160.75000000000003" y2="161.75"/> + <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="161.75" y2="161.75"/> + <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="161.75" y2="160.75000000000003"/> + <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="160.75000000000003" y2="160.75000000000003"/> + <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="160.75000000000003" y2="161.75"/> + <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="161.75" y2="161.75"/> + <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="164.25000000000003" y2="163.25000000000003"/> + <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="163.25000000000003" y2="163.25000000000003"/> + <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="163.25000000000003" y2="164.25000000000003"/> + <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="164.25000000000003" y2="164.25000000000003"/> + <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="164.25000000000003" y2="163.25000000000003"/> + <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="163.25000000000003" y2="163.25000000000003"/> + <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="163.25000000000003" y2="164.25000000000003"/> + <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="164.25000000000003" y2="164.25000000000003"/> + <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="166.75000000000003" y2="165.75"/> + <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="165.75" y2="165.75"/> + <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="165.75" y2="166.75000000000003"/> + <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="166.75000000000003" y2="166.75000000000003"/> + <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="166.75000000000003" y2="165.75"/> + <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="165.75" y2="165.75"/> + <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="165.75" y2="166.75000000000003"/> + <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="166.75000000000003" y2="166.75000000000003"/> + <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="169.25000000000003" y2="168.25"/> + <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="168.25" y2="168.25"/> + <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="168.25" y2="169.25000000000003"/> + <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="169.25000000000003" y2="169.25000000000003"/> + <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="169.25000000000003" y2="168.25"/> + <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="168.25" y2="168.25"/> + <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="168.25" y2="169.25000000000003"/> + <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="169.25000000000003" y2="169.25000000000003"/> + <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="171.75000000000003" y2="170.75"/> + <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="170.75" y2="170.75"/> + <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="170.75" y2="171.75000000000003"/> + <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="171.75000000000003" y2="171.75000000000003"/> + <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="171.75000000000003" y2="170.75"/> + <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="170.75" y2="170.75"/> + <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="170.75" y2="171.75000000000003"/> + <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="171.75000000000003" y2="171.75000000000003"/> + <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="174.25000000000003" y2="173.25000000000003"/> + <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="173.25000000000003" y2="173.25000000000003"/> + <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="173.25000000000003" y2="174.25000000000003"/> + <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="174.25000000000003" y2="174.25000000000003"/> + <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="174.25000000000003" y2="173.25000000000003"/> + <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="173.25000000000003" y2="173.25000000000003"/> + <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="173.25000000000003" y2="174.25000000000003"/> + <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="174.25000000000003" y2="174.25000000000003"/> + <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="176.75000000000003" y2="175.75000000000003"/> + <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="175.75000000000003" y2="175.75000000000003"/> + <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="175.75000000000003" y2="176.75000000000003"/> + <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="176.75000000000003" y2="176.75000000000003"/> + <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="176.75000000000003" y2="175.75000000000003"/> + <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="175.75000000000003" y2="175.75000000000003"/> + <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="175.75000000000003" y2="176.75000000000003"/> + <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="176.75000000000003" y2="176.75000000000003"/> + <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="179.25000000000003" y2="178.25000000000003"/> + <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="178.25000000000003" y2="178.25000000000003"/> + <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="178.25000000000003" y2="179.25000000000003"/> + <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="179.25000000000003" y2="179.25000000000003"/> + <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="179.25000000000003" y2="178.25000000000003"/> + <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="178.25000000000003" y2="178.25000000000003"/> + <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="178.25000000000003" y2="179.25000000000003"/> + <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="179.25000000000003" y2="179.25000000000003"/> + <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="181.75" y2="180.75000000000003"/> + <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="180.75000000000003" y2="180.75000000000003"/> + <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="180.75000000000003" y2="181.75"/> + <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="181.75" y2="181.75"/> + <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="181.75" y2="180.75000000000003"/> + <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="180.75000000000003" y2="180.75000000000003"/> + <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="180.75000000000003" y2="181.75"/> + <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="181.75" y2="181.75"/> + <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="184.25" y2="183.25000000000003"/> + <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="183.25000000000003" y2="183.25000000000003"/> + <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="183.25000000000003" y2="184.25"/> + <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="184.25" y2="184.25"/> + <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="184.25" y2="183.25000000000003"/> + <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="183.25000000000003" y2="183.25000000000003"/> + <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="183.25000000000003" y2="184.25"/> + <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="184.25" y2="184.25"/> + <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="186.75" y2="185.75000000000003"/> + <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="185.75000000000003" y2="185.75000000000003"/> + <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="185.75000000000003" y2="186.75"/> + <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="186.75" y2="186.75"/> + <line stroke="#888888" x1="500.5232526704263" x2="500.5232526704263" y1="187.75000000000003" y2="184.75000000000003"/> + <line stroke="#888888" x1="500.5232526704263" x2="503.5232526704263" y1="184.75000000000003" y2="184.75000000000003"/> + <line stroke="#888888" x1="503.5232526704263" x2="503.5232526704263" y1="184.75000000000003" y2="187.75000000000003"/> + <line stroke="#888888" x1="503.5232526704263" x2="500.5232526704263" y1="187.75000000000003" y2="187.75000000000003"/> + <line stroke="#888888" x1="496.27325267042636" x2="487.7732526704263" y1="144.75000000000003" y2="144.75000000000003"/> + <line stroke="#888888" x1="487.7732526704263" x2="487.7732526704263" y1="144.75000000000003" y2="144.25000000000003"/> + <line stroke="#888888" x1="487.7732526704263" x2="496.27325267042636" y1="144.25000000000003" y2="144.25000000000003"/> + <line stroke="#888888" x1="496.27325267042636" x2="496.27325267042636" y1="144.25000000000003" y2="144.75000000000003"/> + <line stroke="#888888" x1="487.7732526704263" x2="496.27325267042636" y1="192.50000000000003" y2="192.50000000000003"/> + <line stroke="#888888" x1="496.27325267042636" x2="496.27325267042636" y1="192.50000000000003" y2="193.00000000000003"/> + <line stroke="#888888" x1="496.27325267042636" x2="487.7732526704263" y1="193.00000000000003" y2="193.00000000000003"/> + <line stroke="#888888" x1="487.7732526704263" x2="487.7732526704263" y1="193.00000000000003" y2="192.50000000000003"/> + <line stroke="#888888" x1="472.5232526704263" x2="477.5232526704263" y1="148.09090909090912" y2="148.09090909090912"/> + <line stroke="#888888" x1="477.5232526704263" x2="477.5232526704263" y1="148.09090909090912" y2="159.1818181818182"/> + <line stroke="#888888" x1="477.5232526704263" x2="472.5232526704263" y1="159.1818181818182" y2="159.1818181818182"/> + <line stroke="#888888" x1="472.5232526704263" x2="477.5232526704263" y1="175.81818181818184" y2="175.81818181818184"/> + <line stroke="#888888" x1="477.5232526704263" x2="477.5232526704263" y1="175.81818181818184" y2="186.90909090909093"/> + <line stroke="#888888" x1="477.5232526704263" x2="472.5232526704263" y1="186.90909090909093" y2="186.90909090909093"/> + <line stroke="#888888" x1="497.7732526704263" x2="501.2732526704263" y1="121.00000000000001" y2="121.00000000000001"/> + <line stroke="#888888" x1="501.2732526704263" x2="501.2732526704263" y1="121.00000000000001" y2="129.0"/> + <line stroke="#888888" x1="501.2732526704263" x2="497.7732526704263" y1="129.0" y2="129.0"/> </svg> diff --git a/rocolib/output/BoatWithServoMountAndStack/graph-autofold-default.dxf b/rocolib/output/BoatWithServoMountAndStack/graph-autofold-default.dxf index 59b72a5e1e44a584c1d8905f460adce19d66349b..9b66ed31d674a497f7b28a9d8652ec84e2ea45d5 100644 --- a/rocolib/output/BoatWithServoMountAndStack/graph-autofold-default.dxf +++ b/rocolib/output/BoatWithServoMountAndStack/graph-autofold-default.dxf @@ -493,7 +493,7 @@ TABLE 2 LAYER 70 -15 +16 0 LAYER 2 @@ -547,7 +547,7 @@ CONTINUOUS 0 LAYER 2 -45 +0 70 0 62 @@ -557,7 +557,7 @@ CONTINUOUS 0 LAYER 2 -0 +45 70 0 62 @@ -587,6 +587,16 @@ CONTINUOUS 0 LAYER 2 +-90 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 90.0 70 0 @@ -617,7 +627,7 @@ CONTINUOUS 0 LAYER 2 -30.963756532073518 +45.0 70 0 62 @@ -627,7 +637,7 @@ CONTINUOUS 0 LAYER 2 -65.24983095049765 +54.87259905028077 70 0 62 @@ -1038,40 +1048,40 @@ MVIEW } 0 LINE - 6 -DOTTED 62 -1 +5 8 -45 +cut 10 -190.0232526704263 +329.02325267042613 20 -96.27724400000001 +125.00000000000001 30 0.0 11 -251.0232526704263 +210.02325267042616 21 -96.27724400000001 +125.00000000000001 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 -cut +45 10 -250.0232526704263 +329.02325267042613 20 -96.27724400000001 +125.00000000000001 30 0.0 11 -251.0232526704263 +390.0232526704262 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1081,15 +1091,15 @@ LINE 8 cut 10 -250.0232526704263 +390.0232526704262 20 -96.27724400000001 +125.00000000000001 30 0.0 11 -250.0232526704263 +390.0232526704262 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1099,15 +1109,15 @@ LINE 8 cut 10 -190.0232526704263 +210.02325267042616 20 -96.27724400000001 +125.00000000000001 30 0.0 11 -190.0232526704263 +210.02325267042616 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1119,15 +1129,15 @@ DOTTED 8 45 10 -190.0232526704263 +329.02325267042613 20 -60.1386220008147 +88.86137800081471 30 0.0 11 -251.0232526704263 +390.0232526704262 21 -60.1386220008147 +88.86137800081471 31 0.0 0 @@ -1137,15 +1147,15 @@ LINE 8 cut 10 -251.0232526704263 +390.0232526704262 20 -96.27724400000001 +125.00000000000001 30 0.0 11 -251.0232526704263 +390.0232526704262 21 -60.1386220008147 +88.86137800081471 31 0.0 0 @@ -1155,15 +1165,15 @@ LINE 8 cut 10 -190.0232526704263 +329.02325267042613 20 -60.1386220008147 +88.86137800081471 30 0.0 11 -190.0232526704263 +329.02325267042613 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1175,15 +1185,15 @@ DOTTED 8 45 10 -251.0232526704263 +390.0232526704262 20 -36.1386220008147 +64.86137800081471 30 0.0 11 -190.0232526704263 +329.02325267042613 21 -36.1386220008147 +64.86137800081471 31 0.0 0 @@ -1195,15 +1205,15 @@ DOTTED 8 90 10 -251.0232526704263 +390.0232526704262 20 -36.1386220008147 +64.86137800081471 30 0.0 11 -251.0232526704263 +390.0232526704262 21 -60.1386220008147 +88.86137800081471 31 0.0 0 @@ -1213,15 +1223,15 @@ LINE 8 cut 10 -190.0232526704263 +329.02325267042613 20 -1.6293881799356315e-09 +28.722756001629396 30 0.0 11 -190.0232526704263 +329.02325267042613 21 -36.138622000814706 +64.86137800081472 31 0.0 0 @@ -1231,15 +1241,15 @@ LINE 8 cut 10 -251.0232526704263 +390.0232526704262 20 -1.6293881799356315e-09 +28.722756001629396 30 0.0 11 -190.0232526704263 +329.02325267042613 21 -1.6293881799356315e-09 +28.722756001629396 31 0.0 0 @@ -1249,15 +1259,15 @@ LINE 8 cut 10 -251.0232526704263 +390.0232526704262 20 -36.138622000814706 +64.86137800081472 30 0.0 11 -251.0232526704263 +390.0232526704262 21 -1.6293881799356315e-09 +28.722756001629396 31 0.0 0 @@ -1267,15 +1277,15 @@ LINE 8 cut 10 -261.0232526704263 +400.0232526704262 20 -36.1386220008147 +64.86137800081471 30 0.0 11 -251.0232526704263 +390.0232526704262 21 -36.1386220008147 +64.86137800081471 31 0.0 0 @@ -1285,15 +1295,15 @@ LINE 8 cut 10 -261.0232526704263 +400.0232526704262 20 -60.1386220008147 +88.86137800081471 30 0.0 11 -261.0232526704263 +400.0232526704262 21 -36.1386220008147 +64.86137800081471 31 0.0 0 @@ -1303,15 +1313,15 @@ LINE 8 cut 10 -251.0232526704263 +390.0232526704262 20 -60.1386220008147 +88.86137800081471 30 0.0 11 -261.0232526704263 +400.0232526704262 21 -60.1386220008147 +88.86137800081471 31 0.0 0 @@ -1321,15 +1331,15 @@ LINE 8 cut 10 -180.02325267042627 +319.02325267042613 20 -60.1386220008147 +88.86137800081471 30 0.0 11 -190.0232526704263 +329.02325267042613 21 -60.1386220008147 +88.86137800081471 31 0.0 0 @@ -1339,15 +1349,15 @@ LINE 8 cut 10 -180.02325267042627 +319.02325267042613 20 -36.1386220008147 +64.86137800081471 30 0.0 11 -180.02325267042627 +319.02325267042613 21 -60.1386220008147 +88.86137800081471 31 0.0 0 @@ -1357,15 +1367,15 @@ LINE 8 cut 10 -190.0232526704263 +329.02325267042613 20 -36.1386220008147 +64.86137800081471 30 0.0 11 -180.02325267042627 +319.02325267042613 21 -36.1386220008147 +64.86137800081471 31 0.0 0 @@ -1375,15 +1385,15 @@ LINE 8 cut 10 -166.02325267042627 +186.0232526704262 20 -96.27724400000001 +125.00000000000001 30 0.0 11 -86.02325267042629 +86.02325267042616 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1395,15 +1405,15 @@ DOTTED 8 180 10 -166.02325267042627 +186.0232526704262 20 -96.27724400000001 +125.00000000000001 30 0.0 11 -190.0232526704263 +210.02325267042616 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1413,15 +1423,15 @@ LINE 8 cut 10 -250.0232526704263 +390.0232526704262 20 -96.27724400000001 +125.00000000000001 30 0.0 11 -250.0232526704263 +390.0232526704262 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1431,15 +1441,15 @@ LINE 8 cut 10 -86.02325267042629 +86.02325267042616 20 -96.27724400000001 +125.00000000000001 30 0.0 11 -86.02325267042629 +86.02325267042616 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1449,15 +1459,35 @@ LINE 8 cut 10 -190.0232526704263 +210.02325267042616 20 -62.277244 +125.00000000000001 30 0.0 11 -166.02325267042627 +210.02325267042616 21 -62.277244 +91.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +186.0232526704262 + 20 +91.0 + 30 +0.0 + 11 +186.0232526704262 + 21 +125.00000000000001 31 0.0 0 @@ -1467,15 +1497,15 @@ LINE 8 cut 10 -190.0232526704263 +186.0232526704262 20 -96.27724400000001 +55.00000000000001 30 0.0 11 -190.0232526704263 +186.0232526704262 21 -62.277244 +91.0 31 0.0 0 @@ -1485,17 +1515,125 @@ DOTTED 62 1 8 -90 +-90 + 10 +186.0232526704262 + 20 +55.00000000000001 + 30 +0.0 + 11 +210.02325267042616 + 21 +55.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +210.02325267042616 + 20 +91.0 + 30 +0.0 + 11 +210.02325267042616 + 21 +55.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +210.02325267042616 + 20 +55.00000000000001 + 30 +0.0 + 11 +210.02325267042616 + 21 +5.000000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +186.0232526704262 + 20 +5.000000000000001 + 30 +0.0 + 11 +186.0232526704262 + 21 +55.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +186.0232526704262 + 20 +0.0 + 30 +0.0 + 11 +186.0232526704262 + 21 +5.000000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +210.02325267042616 + 20 +0.0 + 30 +0.0 + 11 +186.0232526704262 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut 10 -166.02325267042627 +210.02325267042616 20 -62.277244 +5.000000000000001 30 0.0 11 -166.02325267042627 +210.02325267042616 21 -96.27724400000001 +0.0 31 0.0 0 @@ -1505,15 +1643,15 @@ LINE 8 cut 10 -166.02325267042627 +186.0232526704262 20 -62.277244 +91.0 30 0.0 11 -146.02325267042627 +166.0232526704262 21 -62.277244 +91.0 31 0.0 0 @@ -1523,15 +1661,15 @@ LINE 8 cut 10 -146.02325267042627 +166.0232526704262 20 -96.27724400000001 +125.00000000000001 30 0.0 11 -166.02325267042627 +186.0232526704262 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1543,15 +1681,15 @@ DOTTED 8 90 10 -146.02325267042627 +166.0232526704262 20 -62.277244 +91.0 30 0.0 11 -146.02325267042627 +166.0232526704262 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1561,15 +1699,15 @@ LINE 8 cut 10 -146.02325267042627 +166.0232526704262 20 -62.277244 +91.0 30 0.0 11 -122.02325267042629 +142.02325267042616 21 -62.277244 +91.0 31 0.0 0 @@ -1579,15 +1717,15 @@ LINE 8 cut 10 -122.02325267042629 +142.02325267042616 20 -96.27724400000001 +125.00000000000001 30 0.0 11 -146.02325267042627 +166.0232526704262 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1599,15 +1737,15 @@ DOTTED 8 90 10 -122.02325267042629 +142.02325267042616 20 -62.277244 +91.0 30 0.0 11 -122.02325267042629 +142.02325267042616 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1617,15 +1755,15 @@ LINE 8 cut 10 -122.02325267042629 +142.02325267042616 20 -62.277244 +91.0 30 0.0 11 -102.02325267042629 +122.02325267042617 21 -62.277244 +91.0 31 0.0 0 @@ -1635,15 +1773,15 @@ LINE 8 cut 10 -102.02325267042629 +122.02325267042617 20 -96.27724400000001 +125.00000000000001 30 0.0 11 -122.02325267042629 +142.02325267042616 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1655,15 +1793,15 @@ DOTTED 8 90 10 -102.02325267042629 +122.02325267042617 20 -96.27724400000001 +125.00000000000001 30 0.0 11 -102.02325267042629 +122.02325267042617 21 -62.277244 +91.0 31 0.0 0 @@ -1673,15 +1811,15 @@ LINE 8 cut 10 -92.02325267042629 +112.02325267042617 20 -96.27724400000001 +125.00000000000001 30 0.0 11 -102.02325267042629 +122.02325267042617 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1691,15 +1829,15 @@ LINE 8 cut 10 -92.02325267042629 +112.02325267042617 20 -62.277244 +91.0 30 0.0 11 -92.02325267042629 +112.02325267042617 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1709,15 +1847,15 @@ LINE 8 cut 10 -102.02325267042629 +122.02325267042617 20 -62.277244 +91.0 30 0.0 11 -92.02325267042629 +112.02325267042617 21 -62.277244 +91.0 31 0.0 0 @@ -1729,15 +1867,15 @@ DOTTED 8 90 10 -250.0232526704263 +390.0232526704262 20 -166.27724400000002 +195.00000000000003 30 0.0 11 -86.02325267042629 +86.02325267042616 21 -166.27724400000002 +195.00000000000003 31 0.0 0 @@ -1749,15 +1887,15 @@ DOTTED 8 90.0 10 -250.0232526704263 +390.0232526704262 20 -166.27724400000002 +195.00000000000003 30 0.0 11 -250.0232526704263 +390.0232526704262 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1769,15 +1907,15 @@ DOTTED 8 -174 10 -250.0232526704263 +390.0232526704262 20 -96.27724400000001 +125.00000000000001 30 0.0 11 -320.0232526704263 +460.0232526704262 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1789,15 +1927,15 @@ DOTTED 8 -180 10 -250.0232526704263 +390.0232526704262 20 -166.27724400000002 +195.00000000000003 30 0.0 11 -320.0232526704263 +460.0232526704262 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1807,15 +1945,15 @@ LINE 8 cut 10 -250.02325267042633 +390.0232526704262 20 -72.94391066666668 +101.66666666666669 30 0.0 11 -250.02325267042633 +390.0232526704262 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1825,15 +1963,15 @@ LINE 8 cut 10 -320.0232526704263 +460.0232526704262 20 -72.94391066666668 +101.66666666666669 30 0.0 11 -250.02325267042633 +390.0232526704262 21 -72.94391066666668 +101.66666666666669 31 0.0 0 @@ -1843,15 +1981,15 @@ LINE 8 cut 10 -320.0232526704263 +460.0232526704262 20 -96.27724400000001 +125.00000000000001 30 0.0 11 -320.0232526704263 +460.0232526704262 21 -72.94391066666668 +101.66666666666669 31 0.0 0 @@ -1863,15 +2001,15 @@ DOTTED 8 180 10 -250.02325267042633 +390.02325267042625 20 -166.27724400000002 +195.00000000000003 30 0.0 11 -320.02325267042636 +460.0232526704262 21 -166.27724400000002 +195.00000000000003 31 0.0 0 @@ -1881,15 +2019,15 @@ LINE 8 cut 10 -320.02325267042636 +460.0232526704262 20 -166.27724400000002 +195.00000000000003 30 0.0 11 -320.0232526704263 +460.0232526704262 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1899,15 +2037,15 @@ LINE 8 cut 10 -320.02325267042636 +460.02325267042625 20 -236.277244 +265.00000000000006 30 0.0 11 -320.0232526704263 +460.0232526704262 21 -166.27724400000002 +195.0 31 0.0 0 @@ -1917,15 +2055,15 @@ LINE 8 cut 10 -320.0232526704263 +460.0232526704262 20 -196.27724400000002 +245.0 30 0.0 11 -320.02325267042636 +460.02325267042625 21 -236.277244 +265.00000000000006 31 0.0 0 @@ -1937,15 +2075,15 @@ DOTTED 8 90.0 10 -250.02325267042633 +390.0232526704263 20 -196.27724400000002 +245.00000000000003 30 0.0 11 -250.02325267042633 +390.02325267042625 21 -166.27724400000002 +195.00000000000006 31 0.0 0 @@ -1957,15 +2095,15 @@ DOTTED 8 90.0 10 -250.0232526704263 +390.0232526704263 20 -226.27724400000002 +295.0 30 0.0 11 -250.0232526704263 +390.0232526704263 21 -196.27724400000002 +245.00000000000003 31 0.0 0 @@ -1977,15 +2115,15 @@ DOTTED 8 180 10 -320.0232526704263 +460.02325267042625 20 -226.27724400000002 +295.0 30 0.0 11 -250.02325267042633 +390.0232526704263 21 -226.27724400000002 +295.0 31 0.0 0 @@ -1995,15 +2133,15 @@ LINE 8 cut 10 -320.0232526704263 +460.02325267042625 20 -156.27724400000005 +225.00000000000003 30 0.0 11 -320.0232526704263 +460.02325267042625 21 -196.27724400000002 +245.00000000000003 31 0.0 0 @@ -2013,15 +2151,15 @@ LINE 8 cut 10 -320.0232526704263 +460.02325267042625 20 -226.27724400000002 +295.0 30 0.0 11 -320.0232526704263 +460.02325267042625 21 -156.27724400000005 +225.00000000000003 31 0.0 0 @@ -2031,15 +2169,15 @@ LINE 8 cut 10 -320.0232526704263 +460.02325267042625 20 -296.277244 +365.0 30 0.0 11 -320.0232526704263 +460.02325267042625 21 -226.27724400000002 +295.0 31 0.0 0 @@ -2051,15 +2189,15 @@ DOTTED 8 -180 10 -320.0232526704263 +460.02325267042625 20 -296.277244 +365.0 30 0.0 11 -250.02325267042633 +390.0232526704263 21 -226.27724400000002 +295.0 31 0.0 0 @@ -2071,15 +2209,15 @@ DOTTED 8 90.0 10 -250.02325267042633 +390.0232526704263 20 -296.277244 +365.00000000000006 30 0.0 11 -250.0232526704263 +390.0232526704263 21 -226.27724400000002 +295.0 31 0.0 0 @@ -2091,15 +2229,15 @@ DOTTED 8 -174 10 -320.0232526704263 +460.02325267042625 20 -296.277244 +365.0 30 0.0 11 -250.02325267042633 +390.0232526704263 21 -296.277244 +365.00000000000006 31 0.0 0 @@ -2111,15 +2249,15 @@ DOTTED 8 90 10 -250.0232526704263 +390.0232526704263 20 -226.27724399999997 +295.0 30 0.0 11 -86.02325267042632 +86.02325267042634 21 -226.27724400000005 +295.0000000000001 31 0.0 0 @@ -2131,15 +2269,15 @@ DOTTED 8 180 10 -190.02325267042633 +210.02325267042633 20 -296.277244 +365.0000000000001 30 0.0 11 -166.0232526704263 +186.02325267042636 21 -296.277244 +365.00000000000017 31 0.0 0 @@ -2151,13 +2289,13 @@ cut 10 86.02325267042634 20 -296.277244 +365.00000000000017 30 0.0 11 -166.0232526704263 +186.02325267042636 21 -296.277244 +365.00000000000017 31 0.0 0 @@ -2169,13 +2307,13 @@ cut 10 86.02325267042634 20 -296.277244 +365.00000000000017 30 0.0 11 86.02325267042634 21 -296.277244 +365.00000000000017 31 0.0 0 @@ -2185,15 +2323,15 @@ LINE 8 cut 10 -250.02325267042633 +390.0232526704263 20 -296.277244 +365.00000000000006 30 0.0 11 -250.02325267042633 +390.0232526704263 21 -296.277244 +365.00000000000006 31 0.0 0 @@ -2203,15 +2341,15 @@ LINE 8 cut 10 -251.02325267042633 +210.02325267042633 20 -296.277244 +365.0000000000001 30 0.0 11 -250.02325267042633 +329.02325267042636 21 -296.277244 +365.00000000000006 31 0.0 0 @@ -2221,15 +2359,15 @@ LINE 8 cut 10 -190.02325267042633 +210.02325267042633 20 -296.277244 +365.0000000000001 30 0.0 11 -190.02325267042633 +210.02325267042633 21 -296.277244 +365.0000000000001 31 0.0 0 @@ -2239,15 +2377,15 @@ LINE 8 cut 10 -250.02325267042633 +390.0232526704263 20 -296.277244 +365.00000000000006 30 0.0 11 -250.02325267042633 +390.0232526704263 21 -296.277244 +365.00000000000006 31 0.0 0 @@ -2257,15 +2395,15 @@ LINE 8 cut 10 -251.02325267042633 +390.0232526704263 20 -306.277244 +375.00000000000006 30 0.0 11 -251.02325267042633 +390.0232526704263 21 -296.277244 +365.00000000000006 31 0.0 0 @@ -2275,15 +2413,15 @@ LINE 8 cut 10 -190.02325267042633 +329.02325267042636 20 -306.277244 +375.00000000000006 30 0.0 11 -251.02325267042633 +390.0232526704263 21 -306.277244 +375.00000000000006 31 0.0 0 @@ -2293,15 +2431,15 @@ LINE 8 cut 10 -190.02325267042633 +329.02325267042636 20 -296.277244 +365.00000000000006 30 0.0 11 -190.02325267042633 +329.02325267042636 21 -306.277244 +375.00000000000006 31 0.0 0 @@ -2311,15 +2449,35 @@ LINE 8 cut 10 -190.02325267042636 +210.02325267042636 + 20 +399.0000000000001 + 30 +0.0 + 11 +210.02325267042633 + 21 +365.0000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +186.02325267042633 20 -330.27724400000005 +365.0000000000001 30 0.0 11 -190.02325267042633 +186.02325267042636 21 -296.277244 +399.0000000000001 31 0.0 0 @@ -2329,15 +2487,15 @@ LINE 8 cut 10 -166.02325267042633 +210.02325267042636 20 -330.27724400000005 +435.0000000000001 30 0.0 11 -190.02325267042636 +210.02325267042636 21 -330.27724400000005 +399.0000000000001 31 0.0 0 @@ -2347,17 +2505,17 @@ DOTTED 62 1 8 -90 +-90 10 -166.0232526704263 +210.02325267042636 20 -296.277244 +435.0000000000001 30 0.0 11 -166.02325267042633 +186.0232526704264 21 -330.27724400000005 +435.0000000000001 31 0.0 0 @@ -2367,15 +2525,51 @@ LINE 8 cut 10 -166.0232526704263 +186.02325267042636 + 20 +399.0000000000001 + 30 +0.0 + 11 +186.0232526704264 + 21 +435.0000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +186.0232526704264 + 20 +435.0000000000001 + 30 +0.0 + 11 +186.0232526704264 + 21 +485.0000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +210.0232526704264 20 -296.277244 +485.0000000000001 30 0.0 11 -146.0232526704263 +210.02325267042636 21 -296.277244 +435.0000000000001 31 0.0 0 @@ -2385,15 +2579,51 @@ LINE 8 cut 10 -146.02325267042636 +186.0232526704264 20 -330.27724400000005 +485.0000000000001 30 0.0 11 +210.0232526704264 + 21 +485.0000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +186.02325267042633 + 20 +365.0000000000001 + 30 +0.0 + 11 +166.0232526704263 + 21 +365.0000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 166.02325267042633 + 20 +399.0000000000001 + 30 +0.0 + 11 +186.02325267042636 21 -330.27724400000005 +399.0000000000001 31 0.0 0 @@ -2405,15 +2635,15 @@ DOTTED 8 90 10 -146.0232526704263 +166.0232526704263 20 -296.277244 +365.0000000000001 30 0.0 11 -146.02325267042636 +166.02325267042633 21 -330.27724400000005 +399.0000000000001 31 0.0 0 @@ -2423,15 +2653,15 @@ LINE 8 cut 10 -146.0232526704263 +166.0232526704263 20 -296.277244 +365.0000000000001 30 0.0 11 -122.02325267042633 +142.02325267042633 21 -296.277244 +365.0000000000001 31 0.0 0 @@ -2441,15 +2671,15 @@ LINE 8 cut 10 -122.02325267042634 +142.02325267042636 20 -330.27724400000005 +399.0000000000001 30 0.0 11 -146.02325267042636 +166.02325267042633 21 -330.27724400000005 +399.0000000000001 31 0.0 0 @@ -2461,15 +2691,15 @@ DOTTED 8 90 10 -122.02325267042633 +142.02325267042633 20 -296.277244 +365.0000000000001 30 0.0 11 -122.02325267042634 +142.02325267042636 21 -330.27724400000005 +399.0000000000001 31 0.0 0 @@ -2479,15 +2709,15 @@ LINE 8 cut 10 -122.02325267042634 +142.02325267042633 20 -296.277244 +365.0000000000001 30 0.0 11 -102.02325267042634 +122.02325267042634 21 -296.277244 +365.0000000000001 31 0.0 0 @@ -2497,15 +2727,15 @@ LINE 8 cut 10 -102.02325267042634 +122.02325267042636 20 -330.27724400000005 +399.0000000000001 30 0.0 11 -122.02325267042634 +142.02325267042636 21 -330.27724400000005 +399.0000000000001 31 0.0 0 @@ -2517,15 +2747,15 @@ DOTTED 8 90 10 -102.02325267042634 +122.02325267042636 20 -330.27724400000005 +399.0000000000001 30 0.0 11 -102.02325267042634 +122.02325267042634 21 -296.277244 +365.0000000000001 31 0.0 0 @@ -2535,15 +2765,15 @@ LINE 8 cut 10 -92.02325267042633 +112.02325267042634 20 -330.27724400000005 +399.0000000000001 30 0.0 11 -102.02325267042634 +122.02325267042634 21 -330.27724400000005 +399.0000000000001 31 0.0 0 @@ -2553,15 +2783,15 @@ LINE 8 cut 10 -92.02325267042632 +112.02325267042633 20 -296.277244 +365.0000000000001 30 0.0 11 -92.02325267042633 +112.02325267042634 21 -330.27724400000005 +399.0000000000001 31 0.0 0 @@ -2571,15 +2801,15 @@ LINE 8 cut 10 -102.02325267042633 +122.02325267042633 20 -296.277244 +365.0000000000001 30 0.0 11 -92.02325267042632 +112.02325267042633 21 -296.277244 +365.0000000000001 31 0.0 0 @@ -2589,17 +2819,17 @@ DOTTED 62 1 8 -30.963756532073518 +45.0 10 -86.02325267042632 +86.0232526704263 20 -226.27724400000008 +295.00000000000017 30 0.0 11 86.02325267042634 21 -296.27724400000005 +365.00000000000017 31 0.0 0 @@ -2613,13 +2843,13 @@ DOTTED 10 86.02325267042634 20 -296.277244 +365.00000000000017 30 0.0 11 -37.52421865697312 +32.42924173922606 21 -296.27724400000005 +365.0000000000002 31 0.0 0 @@ -2633,13 +2863,13 @@ DOTTED 10 86.02325267042632 20 -226.27724400000008 +295.00000000000017 30 0.0 11 -37.52421865697312 +32.42924173922606 21 -296.27724400000005 +365.0000000000002 31 0.0 0 @@ -2651,13 +2881,13 @@ cut 10 86.02325267042634 20 -312.44358867115113 +382.8646703104003 30 0.0 11 86.02325267042634 21 -296.277244 +365.00000000000017 31 0.0 0 @@ -2667,15 +2897,15 @@ LINE 8 cut 10 -37.52421865697312 +32.42924173922606 20 -312.44358867115113 +382.8646703104003 30 0.0 11 86.02325267042634 21 -312.44358867115113 +382.8646703104003 31 0.0 0 @@ -2685,15 +2915,15 @@ LINE 8 cut 10 -37.52421865697312 +32.42924173922606 20 -296.27724400000005 +365.0000000000002 30 0.0 11 -37.52421865697312 +32.42924173922606 21 -312.44358867115113 +382.8646703104003 31 0.0 0 @@ -2705,15 +2935,15 @@ DOTTED 8 180 10 -86.02325267042633 +86.02325267042632 20 -226.27724400000005 +295.00000000000017 30 0.0 11 -20.485430034662475 +18.447362619882885 21 -250.8697998688633 +313.2619572849372 31 0.0 0 @@ -2723,15 +2953,15 @@ LINE 8 cut 10 -20.485430034662475 +18.447362619882885 20 -250.8697998688633 +313.2619572849372 30 0.0 11 -37.52421865697312 +32.42924173922606 21 -296.27724400000005 +365.0000000000002 31 0.0 0 @@ -2741,15 +2971,15 @@ LINE 8 cut 10 -3.4466414123517666 +4.465483500539649 20 -205.46235573772654 +261.5239145698741 30 0.0 11 -20.485430034662446 +18.447362619882853 21 -250.8697998688633 +313.2619572849372 31 0.0 0 @@ -2761,13 +2991,13 @@ cut 10 0.0 20 -196.27724400000008 +245.00000000000028 30 0.0 11 -3.4466414123517666 +4.465483500539649 21 -205.46235573772654 +261.5239145698741 31 0.0 0 @@ -2777,17 +3007,17 @@ DOTTED 62 1 8 -65.24983095049765 +54.87259905028077 10 0.0 20 -196.27724400000008 +245.00000000000028 30 0.0 11 86.0232526704263 21 -226.27724400000005 +295.0000000000001 31 0.0 0 @@ -2799,15 +3029,15 @@ DOTTED 8 54.462322208025626 10 -86.02325267042629 +86.02325267042627 20 -196.27724400000005 +245.0000000000002 30 0.0 11 -86.0232526704263 +86.02325267042632 21 -226.27724400000008 +295.0000000000001 31 0.0 0 @@ -2819,15 +3049,15 @@ DOTTED 8 54.462322208025626 10 -86.02325267042627 +86.02325267042623 20 -166.27724400000005 +195.00000000000017 30 0.0 11 -86.02325267042629 +86.02325267042627 21 -196.27724400000002 +245.0000000000002 31 0.0 0 @@ -2837,17 +3067,17 @@ DOTTED 62 1 8 -65.24983095049765 +54.87259905028077 10 -2.8421709430404014e-14 +0.0 20 -196.27724400000008 +245.00000000000026 30 0.0 11 -86.02325267042629 +86.02325267042623 21 -166.27724400000005 +195.00000000000017 31 0.0 0 @@ -2859,15 +3089,15 @@ DOTTED 8 180 10 -20.485430034662386 +18.447362619882743 20 -141.68468813113688 +176.73804271506336 30 0.0 11 -86.02325267042626 +86.02325267042623 21 -166.27724400000008 +195.00000000000017 31 0.0 0 @@ -2877,15 +3107,15 @@ LINE 8 cut 10 -3.4466414123517386 +4.465483500539619 20 -187.09213226227365 +228.47608543012643 30 0.0 11 0.0 21 -196.27724400000008 +245.00000000000026 31 0.0 0 @@ -2895,15 +3125,15 @@ LINE 8 cut 10 -20.485430034662386 +18.447362619882743 20 -141.68468813113688 +176.73804271506336 30 0.0 11 -3.4466414123517386 +4.465483500539619 21 -187.09213226227365 +228.47608543012643 31 0.0 0 @@ -2913,15 +3143,15 @@ LINE 8 cut 10 -37.52421865697301 +32.42924173922586 20 -96.27724400000005 +125.00000000000027 30 0.0 11 -20.485430034662386 +18.447362619882743 21 -141.68468813113688 +176.73804271506336 31 0.0 0 @@ -2933,15 +3163,15 @@ DOTTED 8 -180 10 -37.52421865697301 +32.42924173922586 20 -96.27724400000005 +125.00000000000027 30 0.0 11 -86.02325267042626 +86.02325267042623 21 -166.27724400000008 +195.00000000000017 31 0.0 0 @@ -2951,17 +3181,17 @@ DOTTED 62 1 8 -30.963756532073518 +45.0 10 -86.02325267042627 +86.02325267042613 20 -96.27724400000004 +125.00000000000021 30 0.0 11 -86.0232526704263 +86.0232526704262 21 -166.27724400000008 +195.00000000000017 31 0.0 0 @@ -2973,15 +3203,15 @@ DOTTED 8 -174 10 -37.52421865697304 +32.42924173922586 20 -96.27724400000005 +125.00000000000027 30 0.0 11 -86.02325267042627 +86.02325267042613 21 -96.27724400000004 +125.00000000000021 31 0.0 0 @@ -2991,15 +3221,15 @@ LINE 8 cut 10 -37.52421865697304 +32.42924173922584 20 -80.110899328849 +107.13532968960016 30 0.0 11 -37.52421865697304 +32.42924173922586 21 -96.27724400000005 +125.00000000000027 31 0.0 0 @@ -3009,15 +3239,15 @@ LINE 8 cut 10 -86.02325267042627 +86.02325267042612 20 -80.11089932884899 +107.13532968960011 30 0.0 11 -37.52421865697304 +32.42924173922584 21 -80.110899328849 +107.13532968960016 31 0.0 0 @@ -3027,15 +3257,177 @@ LINE 8 cut 10 -86.02325267042627 +86.02325267042613 20 -96.27724400000004 +125.00000000000021 30 0.0 11 -86.02325267042627 +86.02325267042612 + 21 +107.13532968960011 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +460.02325267042625 + 20 +388.3333333333333 + 30 +0.0 + 11 +460.02325267042625 + 21 +365.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +390.0232526704263 + 20 +388.33333333333337 + 30 +0.0 + 11 +460.02325267042625 + 21 +388.3333333333333 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +390.0232526704263 + 20 +365.00000000000006 + 30 +0.0 + 11 +390.0232526704263 + 21 +388.33333333333337 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +347.02325267042613 + 20 +70.3613780008147 + 30 +0.0 + 11 +358.0232526704262 + 21 +70.3613780008147 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +358.0232526704262 + 20 +70.3613780008147 + 30 +0.0 + 11 +358.0232526704262 + 21 +83.36137800081471 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +358.0232526704262 + 20 +83.36137800081471 + 30 +0.0 + 11 +347.02325267042613 + 21 +83.36137800081471 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +347.02325267042613 + 20 +83.36137800081471 + 30 +0.0 + 11 +347.02325267042613 + 21 +70.3613780008147 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +378.52325267042613 + 20 +71.86137800081471 + 30 +0.0 + 11 +384.5232526704262 + 21 +71.86137800081471 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +384.5232526704262 + 20 +71.86137800081471 + 30 +0.0 + 11 +384.5232526704262 21 -80.11089932884899 +81.86137800081471 31 0.0 0 @@ -3045,15 +3437,15 @@ LINE 8 cut 10 -320.0232526704263 +384.5232526704262 20 -319.61057733333325 +81.86137800081471 30 0.0 11 -320.0232526704263 +378.52325267042613 21 -296.277244 +81.86137800081471 31 0.0 0 @@ -3063,15 +3455,15 @@ LINE 8 cut 10 -250.02325267042633 +378.52325267042613 20 -319.61057733333325 +81.86137800081471 30 0.0 11 -320.0232526704263 +378.52325267042613 21 -319.61057733333325 +71.86137800081471 31 0.0 0 @@ -3081,15 +3473,15 @@ LINE 8 cut 10 -250.02325267042633 +351.45507085224443 20 -296.277244 +36.47275600162939 30 0.0 11 -250.02325267042633 +339.8641617613353 21 -319.61057733333325 +36.47275600162939 31 0.0 0 @@ -3099,15 +3491,15 @@ LINE 8 cut 10 -208.0232526704263 +339.8641617613353 20 -41.63862200081469 +36.47275600162939 30 0.0 11 -219.0232526704263 +339.8641617613353 21 -41.63862200081469 +35.9727560016294 31 0.0 0 @@ -3117,15 +3509,15 @@ LINE 8 cut 10 -219.0232526704263 +339.8641617613353 20 -41.63862200081469 +35.9727560016294 30 0.0 11 -219.0232526704263 +351.45507085224443 21 -54.63862200081469 +35.9727560016294 31 0.0 0 @@ -3135,15 +3527,15 @@ LINE 8 cut 10 -219.0232526704263 +351.45507085224443 20 -54.63862200081469 +35.9727560016294 30 0.0 11 -208.0232526704263 +351.45507085224443 21 -54.63862200081469 +36.47275600162939 31 0.0 0 @@ -3153,15 +3545,15 @@ LINE 8 cut 10 -208.0232526704263 +379.18234357951707 20 -54.63862200081469 +36.47275600162939 30 0.0 11 -208.0232526704263 +367.591434488608 21 -41.63862200081469 +36.47275600162939 31 0.0 0 @@ -3171,15 +3563,15 @@ LINE 8 cut 10 -239.5232526704263 +367.591434488608 20 -43.1386220008147 +36.47275600162939 30 0.0 11 -245.5232526704263 +367.591434488608 21 -43.1386220008147 +35.9727560016294 31 0.0 0 @@ -3189,15 +3581,15 @@ LINE 8 cut 10 -245.5232526704263 +367.591434488608 20 -43.1386220008147 +35.9727560016294 30 0.0 11 -245.5232526704263 +379.18234357951707 21 -53.1386220008147 +35.9727560016294 31 0.0 0 @@ -3207,15 +3599,15 @@ LINE 8 cut 10 -245.5232526704263 +379.18234357951707 20 -53.1386220008147 +35.9727560016294 30 0.0 11 -239.5232526704263 +379.18234357951707 21 -53.1386220008147 +36.47275600162939 31 0.0 0 @@ -3225,15 +3617,15 @@ LINE 8 cut 10 -239.5232526704263 +397.5232526704262 20 -53.1386220008147 +80.86137800081471 30 0.0 11 -239.5232526704263 +392.52325267042613 21 -43.1386220008147 +80.86137800081471 31 0.0 0 @@ -3243,15 +3635,15 @@ LINE 8 cut 10 -212.4550708522445 +392.52325267042613 20 -7.750000001629389 +80.86137800081471 30 0.0 11 -200.8641617613354 +392.52325267042613 21 -7.750000001629389 +72.86137800081471 31 0.0 0 @@ -3261,15 +3653,15 @@ LINE 8 cut 10 -200.8641617613354 +392.52325267042613 20 -7.750000001629389 +72.86137800081471 30 0.0 11 -200.8641617613354 +397.5232526704262 21 -7.250000001629389 +72.86137800081471 31 0.0 0 @@ -3279,15 +3671,15 @@ LINE 8 cut 10 -200.8641617613354 +321.5232526704262 20 -7.250000001629389 +72.86137800081471 30 0.0 11 -212.4550708522445 +326.5232526704262 21 -7.250000001629389 +72.86137800081471 31 0.0 0 @@ -3297,15 +3689,15 @@ LINE 8 cut 10 -212.4550708522445 +326.5232526704262 20 -7.250000001629389 +72.86137800081471 30 0.0 11 -212.4550708522445 +326.5232526704262 21 -7.750000001629389 +80.86137800081471 31 0.0 0 @@ -3315,15 +3707,15 @@ LINE 8 cut 10 -240.1823435795172 +326.5232526704262 20 -7.750000001629389 +80.86137800081471 30 0.0 11 -228.59143448860814 +321.5232526704262 21 -7.750000001629389 +80.86137800081471 31 0.0 0 @@ -3333,15 +3725,15 @@ LINE 8 cut 10 -228.59143448860814 +202.2732526704262 20 -7.750000001629389 +113.91666666666669 30 0.0 11 -228.59143448860814 +202.2732526704262 21 -7.250000001629389 +102.08333333333336 31 0.0 0 @@ -3351,15 +3743,15 @@ LINE 8 cut 10 -228.59143448860814 +202.2732526704262 20 -7.250000001629389 +102.08333333333336 30 0.0 11 -240.1823435795172 +202.7732526704262 21 -7.250000001629389 +102.08333333333336 31 0.0 0 @@ -3369,15 +3761,15 @@ LINE 8 cut 10 -240.1823435795172 +202.7732526704262 20 -7.250000001629389 +102.08333333333336 30 0.0 11 -240.1823435795172 +202.7732526704262 21 -7.750000001629389 +113.91666666666669 31 0.0 0 @@ -3387,15 +3779,15 @@ LINE 8 cut 10 -258.5232526704263 +202.7732526704262 20 -52.1386220008147 +113.91666666666669 30 0.0 11 -253.5232526704263 +202.2732526704262 21 -52.1386220008147 +113.91666666666669 31 0.0 0 @@ -3405,15 +3797,15 @@ LINE 8 cut 10 -253.5232526704263 +202.0232526704262 20 -52.1386220008147 +1.2500000000000002 30 0.0 11 -253.5232526704263 +204.5232526704262 21 -44.1386220008147 +1.2500000000000002 31 0.0 0 @@ -3423,15 +3815,15 @@ LINE 8 cut 10 -253.5232526704263 +204.5232526704262 20 -44.1386220008147 +1.2500000000000002 30 0.0 11 -258.5232526704263 +202.0232526704262 21 -44.1386220008147 +3.7500000000000004 31 0.0 0 @@ -3441,15 +3833,15 @@ LINE 8 cut 10 -182.5232526704263 +202.0232526704262 20 -44.1386220008147 +3.7500000000000004 30 0.0 11 -187.5232526704263 +194.02325267042616 21 -44.1386220008147 +3.7500000000000004 31 0.0 0 @@ -3459,15 +3851,15 @@ LINE 8 cut 10 -187.5232526704263 +194.02325267042616 20 -44.1386220008147 +3.7500000000000004 30 0.0 11 -187.5232526704263 +191.52325267042616 21 -52.1386220008147 +1.2500000000000002 31 0.0 0 @@ -3477,15 +3869,15 @@ LINE 8 cut 10 -187.5232526704263 +191.52325267042616 20 -52.1386220008147 +1.2500000000000002 30 0.0 11 -182.5232526704263 +194.02325267042616 21 -52.1386220008147 +1.2500000000000002 31 0.0 0 @@ -3495,15 +3887,15 @@ LINE 8 cut 10 -182.27325267042627 +167.02325267042616 20 -85.19391066666667 +102.00000000000001 30 0.0 11 -182.27325267042627 +171.02325267042616 21 -73.36057733333335 +102.00000000000001 31 0.0 0 @@ -3513,15 +3905,15 @@ LINE 8 cut 10 -182.27325267042627 +171.02325267042616 20 -73.36057733333335 +102.00000000000001 30 0.0 11 -182.7732526704263 +171.02325267042616 21 -73.36057733333335 +114.00000000000001 31 0.0 0 @@ -3531,15 +3923,15 @@ LINE 8 cut 10 -182.7732526704263 +171.02325267042616 20 -73.36057733333335 +114.00000000000001 30 0.0 11 -182.7732526704263 +167.02325267042616 21 -85.19391066666667 +114.00000000000001 31 0.0 0 @@ -3549,15 +3941,15 @@ LINE 8 cut 10 -182.7732526704263 +167.02325267042616 20 -85.19391066666667 +114.00000000000001 30 0.0 11 -182.27325267042627 +167.02325267042616 21 -85.19391066666667 +102.00000000000001 31 0.0 0 @@ -3567,15 +3959,15 @@ LINE 8 cut 10 -147.0232526704263 +179.0232526704262 20 -73.27724400000001 +103.5 30 0.0 11 -151.0232526704263 +183.0232526704262 21 -73.27724400000001 +103.5 31 0.0 0 @@ -3585,15 +3977,15 @@ LINE 8 cut 10 -151.0232526704263 +183.0232526704262 20 -73.27724400000001 +103.5 30 0.0 11 -151.0232526704263 +183.0232526704262 21 -85.27724400000001 +112.50000000000001 31 0.0 0 @@ -3603,15 +3995,15 @@ LINE 8 cut 10 -151.0232526704263 +183.0232526704262 20 -85.27724400000001 +112.50000000000001 30 0.0 11 -147.0232526704263 +179.0232526704262 21 -85.27724400000001 +112.50000000000001 31 0.0 0 @@ -3621,15 +4013,15 @@ LINE 8 cut 10 -147.0232526704263 +179.0232526704262 20 -85.27724400000001 +112.50000000000001 30 0.0 11 -147.0232526704263 +179.0232526704262 21 -73.27724400000001 +103.5 31 0.0 0 @@ -3639,15 +4031,15 @@ LINE 8 cut 10 -159.02325267042627 +142.5232526704262 20 -74.777244 +102.00000000000001 30 0.0 11 -163.0232526704263 +165.5232526704262 21 -74.777244 +102.00000000000001 31 0.0 0 @@ -3657,15 +4049,15 @@ LINE 8 cut 10 -163.0232526704263 +165.5232526704262 20 -74.777244 +102.00000000000001 30 0.0 11 -163.0232526704263 +165.5232526704262 21 -83.777244 +114.00000000000001 31 0.0 0 @@ -3675,15 +4067,15 @@ LINE 8 cut 10 -163.0232526704263 +165.5232526704262 20 -83.777244 +114.00000000000001 30 0.0 11 -159.02325267042627 +142.5232526704262 21 -83.777244 +114.00000000000001 31 0.0 0 @@ -3693,15 +4085,15 @@ LINE 8 cut 10 -159.02325267042627 +142.5232526704262 20 -83.777244 +114.00000000000001 30 0.0 11 -159.02325267042627 +142.5232526704262 21 -74.777244 +102.00000000000001 31 0.0 0 @@ -3711,15 +4103,15 @@ LINE 8 cut 10 -122.52325267042629 +137.02325267042616 20 -73.27724400000001 +102.00000000000001 30 0.0 11 -145.52325267042627 +141.0232526704262 21 -73.27724400000001 +102.00000000000001 31 0.0 0 @@ -3729,15 +4121,15 @@ LINE 8 cut 10 -145.52325267042627 +141.0232526704262 20 -73.27724400000001 +102.00000000000001 30 0.0 11 -145.52325267042627 +141.0232526704262 21 -85.27724400000001 +114.00000000000001 31 0.0 0 @@ -3747,15 +4139,15 @@ LINE 8 cut 10 -145.52325267042627 +141.0232526704262 20 -85.27724400000001 +114.00000000000001 30 0.0 11 -122.52325267042629 +137.02325267042616 21 -85.27724400000001 +114.00000000000001 31 0.0 0 @@ -3765,15 +4157,15 @@ LINE 8 cut 10 -122.52325267042629 +137.02325267042616 20 -85.27724400000001 +114.00000000000001 30 0.0 11 -122.52325267042629 +137.02325267042616 21 -73.27724400000001 +102.00000000000001 31 0.0 0 @@ -3783,15 +4175,15 @@ LINE 8 cut 10 -117.02325267042629 +114.52325267042617 20 -73.27724400000001 +102.33333333333334 30 0.0 11 -121.02325267042629 +119.52325267042617 21 -73.27724400000001 +102.33333333333334 31 0.0 0 @@ -3801,15 +4193,15 @@ LINE 8 cut 10 -121.02325267042629 +119.52325267042617 20 -73.27724400000001 +102.33333333333334 30 0.0 11 -121.02325267042629 +119.52325267042617 21 -85.27724400000001 +113.66666666666669 31 0.0 0 @@ -3819,15 +4211,15 @@ LINE 8 cut 10 -121.02325267042629 +119.52325267042617 20 -85.27724400000001 +113.66666666666669 30 0.0 11 -117.02325267042629 +114.52325267042617 21 -85.27724400000001 +113.66666666666669 31 0.0 0 @@ -3837,15 +4229,15 @@ LINE 8 cut 10 -117.02325267042629 +436.68991933709293 20 -85.27724400000001 +107.50000000000001 30 0.0 11 -117.02325267042629 +436.68991933709293 21 -73.27724400000001 +119.16666666666669 31 0.0 0 @@ -3855,15 +4247,15 @@ LINE 8 cut 10 -94.52325267042627 +436.68991933709293 20 -73.61057733333334 +119.16666666666669 30 0.0 11 -99.52325267042629 +413.35658600375956 21 -73.61057733333334 +119.16666666666669 31 0.0 0 @@ -3873,15 +4265,15 @@ LINE 8 cut 10 -99.52325267042629 +413.35658600375956 20 -73.61057733333334 +119.16666666666669 30 0.0 11 -99.52325267042629 +413.35658600375956 21 -84.94391066666667 +107.50000000000001 31 0.0 0 @@ -3891,15 +4283,15 @@ LINE 8 cut 10 -99.52325267042629 +442.27325267042625 20 -84.94391066666667 +241.91666666666666 30 0.0 11 -94.52325267042627 +442.27325267042625 21 -84.94391066666667 +218.08333333333334 31 0.0 0 @@ -3909,15 +4301,15 @@ LINE 8 cut 10 -296.68991933709293 +442.27325267042625 20 -78.77724400000001 +218.08333333333334 30 0.0 11 -296.68991933709293 +442.77325267042625 21 -90.44391066666668 +218.08333333333334 31 0.0 0 @@ -3927,15 +4319,15 @@ LINE 8 cut 10 -296.68991933709293 +442.77325267042625 20 -90.44391066666668 +218.08333333333334 30 0.0 11 -273.3565860037596 +442.77325267042625 21 -90.44391066666668 +241.91666666666666 31 0.0 0 @@ -3945,15 +4337,15 @@ LINE 8 cut 10 -273.3565860037596 +442.77325267042625 20 -90.44391066666668 +241.91666666666666 30 0.0 11 -273.3565860037596 +442.27325267042625 21 -78.77724400000001 +241.91666666666666 31 0.0 0 @@ -3963,15 +4355,15 @@ LINE 8 cut 10 -302.27325267042636 +442.2732526704263 20 -213.19391066666668 +271.9166666666667 30 0.0 11 -302.2732526704263 +442.2732526704263 21 -189.36057733333334 +248.08333333333337 31 0.0 0 @@ -3981,15 +4373,15 @@ LINE 8 cut 10 -302.2732526704263 +442.2732526704263 20 -189.36057733333334 +248.08333333333337 30 0.0 11 -302.7732526704263 +442.7732526704263 21 -189.36057733333334 +248.08333333333337 31 0.0 0 @@ -3999,15 +4391,15 @@ LINE 8 cut 10 -302.7732526704263 +442.7732526704263 20 -189.36057733333334 +248.08333333333337 30 0.0 11 -302.77325267042636 +442.7732526704263 21 -213.19391066666668 +271.9166666666667 31 0.0 0 @@ -4017,15 +4409,15 @@ LINE 8 cut 10 -302.77325267042636 +442.7732526704263 20 -213.19391066666668 +271.9166666666667 30 0.0 11 -302.27325267042636 +442.2732526704263 21 -213.19391066666668 +271.9166666666667 31 0.0 0 @@ -4035,15 +4427,15 @@ LINE 8 cut 10 -302.27325267042636 +340.11416176133537 20 -203.19391066666668 +372.50000000000006 30 0.0 11 -302.27325267042636 +340.11416176133537 21 -179.3605773333334 +367.50000000000006 31 0.0 0 @@ -4053,15 +4445,15 @@ LINE 8 cut 10 -302.27325267042636 +340.11416176133537 20 -179.3605773333334 +367.50000000000006 30 0.0 11 -302.77325267042636 +351.20507085224455 21 -179.3605773333334 +367.50000000000006 31 0.0 0 @@ -4071,15 +4463,15 @@ LINE 8 cut 10 -302.77325267042636 +351.20507085224455 20 -179.3605773333334 +367.50000000000006 30 0.0 11 -302.77325267042636 +351.20507085224455 21 -203.19391066666668 +372.50000000000006 31 0.0 0 @@ -4089,15 +4481,15 @@ LINE 8 cut 10 -302.77325267042636 +367.8414344886082 20 -203.19391066666668 +372.50000000000006 30 0.0 11 -302.27325267042636 +367.8414344886082 21 -203.19391066666668 +367.50000000000006 31 0.0 0 @@ -4107,15 +4499,15 @@ LINE 8 cut 10 -201.1141617613354 +367.8414344886082 20 -303.77724400000005 +367.50000000000006 30 0.0 11 -201.1141617613354 +378.9323435795172 21 -298.77724400000005 +367.50000000000006 31 0.0 0 @@ -4125,15 +4517,15 @@ LINE 8 cut 10 -201.1141617613354 +378.9323435795172 20 -298.77724400000005 +367.50000000000006 30 0.0 11 -212.20507085224452 +378.9323435795172 21 -298.77724400000005 +372.50000000000006 31 0.0 0 @@ -4143,15 +4535,15 @@ LINE 8 cut 10 -212.20507085224452 +202.27325267042633 20 -298.77724400000005 +387.9166666666668 30 0.0 11 -212.20507085224452 +202.27325267042633 21 -303.77724400000005 +376.0833333333334 31 0.0 0 @@ -4161,15 +4553,15 @@ LINE 8 cut 10 -228.84143448860814 +202.27325267042633 20 -303.77724400000005 +376.0833333333334 30 0.0 11 -228.84143448860814 +202.77325267042633 21 -298.77724400000005 +376.0833333333334 31 0.0 0 @@ -4179,15 +4571,15 @@ LINE 8 cut 10 -228.84143448860814 +202.77325267042633 20 -298.77724400000005 +376.0833333333334 30 0.0 11 -239.93234357951724 +202.77325267042636 21 -298.77724400000005 +387.9166666666668 31 0.0 0 @@ -4197,15 +4589,15 @@ LINE 8 cut 10 -239.93234357951724 +202.77325267042636 20 -298.77724400000005 +387.9166666666668 30 0.0 11 -239.93234357951724 +202.27325267042633 21 -303.77724400000005 +387.9166666666668 31 0.0 0 @@ -4215,15 +4607,15 @@ LINE 8 cut 10 -182.27325267042636 +193.7732526704264 20 -319.1939106666666 +481.0000000000001 30 0.0 11 -182.2732526704263 +202.27325267042636 21 -307.3605773333334 +481.0000000000001 31 0.0 0 @@ -4233,15 +4625,15 @@ LINE 8 cut 10 -182.2732526704263 +202.27325267042636 20 -307.3605773333334 +481.0000000000001 30 0.0 11 -182.77325267042633 +202.27325267042636 21 -307.3605773333334 +481.5000000000001 31 0.0 0 @@ -4251,15 +4643,15 @@ LINE 8 cut 10 -182.77325267042633 +202.27325267042636 20 -307.3605773333334 +481.5000000000001 30 0.0 11 -182.77325267042636 +193.7732526704264 21 -319.1939106666666 +481.5000000000001 31 0.0 0 @@ -4269,15 +4661,15 @@ LINE 8 cut 10 -182.77325267042636 +193.7732526704264 20 -319.1939106666666 +481.5000000000001 30 0.0 11 -182.27325267042636 +193.7732526704264 21 -319.1939106666666 +481.0000000000001 31 0.0 0 @@ -4287,15 +4679,15 @@ LINE 8 cut 10 -147.02325267042633 +167.02325267042633 20 -307.27724400000005 +376.0000000000001 30 0.0 11 -151.02325267042633 +171.02325267042633 21 -307.27724400000005 +376.0000000000001 31 0.0 0 @@ -4305,15 +4697,15 @@ LINE 8 cut 10 -151.02325267042633 +171.02325267042633 20 -307.27724400000005 +376.0000000000001 30 0.0 11 -151.02325267042633 +171.02325267042633 21 -319.277244 +388.0000000000001 31 0.0 0 @@ -4323,15 +4715,15 @@ LINE 8 cut 10 -151.02325267042633 +171.02325267042633 20 -319.277244 +388.0000000000001 30 0.0 11 -147.02325267042633 +167.02325267042633 21 -319.277244 +388.0000000000001 31 0.0 0 @@ -4341,15 +4733,15 @@ LINE 8 cut 10 -147.02325267042633 +167.02325267042633 20 -319.277244 +388.0000000000001 30 0.0 11 -147.02325267042633 +167.02325267042633 21 -307.27724400000005 +376.0000000000001 31 0.0 0 @@ -4359,15 +4751,15 @@ LINE 8 cut 10 -159.0232526704263 +179.02325267042633 20 -308.77724400000005 +377.50000000000006 30 0.0 11 -163.02325267042633 +183.02325267042633 21 -308.77724400000005 +377.50000000000006 31 0.0 0 @@ -4377,15 +4769,15 @@ LINE 8 cut 10 -163.02325267042633 +183.02325267042633 20 -308.77724400000005 +377.50000000000006 30 0.0 11 -163.02325267042633 +183.02325267042633 21 -317.77724400000005 +386.50000000000006 31 0.0 0 @@ -4395,15 +4787,15 @@ LINE 8 cut 10 -163.02325267042633 +183.02325267042633 20 -317.77724400000005 +386.50000000000006 30 0.0 11 -159.0232526704263 +179.02325267042633 21 -317.77724400000005 +386.50000000000006 31 0.0 0 @@ -4413,15 +4805,15 @@ LINE 8 cut 10 -159.0232526704263 +179.02325267042633 20 -317.77724400000005 +386.50000000000006 30 0.0 11 -159.0232526704263 +179.02325267042633 21 -308.77724400000005 +377.50000000000006 31 0.0 0 @@ -4431,15 +4823,15 @@ LINE 8 cut 10 -122.52325267042634 +142.52325267042636 20 -307.27724400000005 +376.0000000000001 30 0.0 11 -145.52325267042633 +165.52325267042636 21 -307.27724400000005 +376.0000000000001 31 0.0 0 @@ -4449,15 +4841,15 @@ LINE 8 cut 10 -145.52325267042633 +165.52325267042636 20 -307.27724400000005 +376.0000000000001 30 0.0 11 -145.52325267042633 +165.52325267042636 21 -319.277244 +388.0000000000001 31 0.0 0 @@ -4467,15 +4859,15 @@ LINE 8 cut 10 -145.52325267042633 +165.52325267042636 20 -319.277244 +388.0000000000001 30 0.0 11 -122.52325267042634 +142.52325267042636 21 -319.277244 +388.0000000000001 31 0.0 0 @@ -4485,15 +4877,15 @@ LINE 8 cut 10 -122.52325267042634 +142.52325267042636 20 -319.277244 +388.0000000000001 30 0.0 11 -122.52325267042634 +142.52325267042636 21 -307.27724400000005 +376.0000000000001 31 0.0 0 @@ -4503,15 +4895,15 @@ LINE 8 cut 10 -117.02325267042634 +137.02325267042636 20 -307.27724400000005 +376.0000000000001 30 0.0 11 -121.02325267042634 +141.02325267042633 21 -307.27724400000005 +376.0000000000001 31 0.0 0 @@ -4521,15 +4913,15 @@ LINE 8 cut 10 -121.02325267042634 +141.02325267042633 20 -307.27724400000005 +376.0000000000001 30 0.0 11 -121.02325267042634 +141.02325267042633 21 -319.277244 +388.0000000000001 31 0.0 0 @@ -4539,15 +4931,15 @@ LINE 8 cut 10 -121.02325267042634 +141.02325267042633 20 -319.277244 +388.0000000000001 30 0.0 11 -117.02325267042634 +137.02325267042636 21 -319.277244 +388.0000000000001 31 0.0 0 @@ -4557,15 +4949,15 @@ LINE 8 cut 10 -117.02325267042634 +137.02325267042636 20 -319.277244 +388.0000000000001 30 0.0 11 -117.02325267042634 +137.02325267042636 21 -307.27724400000005 +376.0000000000001 31 0.0 0 @@ -4575,15 +4967,15 @@ LINE 8 cut 10 -94.52325267042633 +114.52325267042633 20 -307.6105773333334 +376.3333333333334 30 0.0 11 -99.52325267042633 +119.52325267042633 21 -307.6105773333334 +376.3333333333334 31 0.0 0 @@ -4593,15 +4985,15 @@ LINE 8 cut 10 -99.52325267042633 +119.52325267042633 20 -307.6105773333334 +376.3333333333334 30 0.0 11 -99.52325267042634 +119.52325267042634 21 -318.9439106666666 +387.6666666666668 31 0.0 0 @@ -4611,15 +5003,15 @@ LINE 8 cut 10 -99.52325267042634 +119.52325267042634 20 -318.9439106666666 +387.6666666666668 30 0.0 11 -94.52325267042634 +114.52325267042634 21 -318.9439106666666 +387.6666666666668 31 0.0 0 @@ -4629,15 +5021,15 @@ LINE 8 cut 10 -53.69056332812418 +50.293912049626165 20 -308.4020025033634 +378.3985027328003 30 0.0 11 -53.69056332812418 +50.293912049626165 21 -300.3188301677879 +369.46616757760023 31 0.0 0 @@ -4647,15 +5039,15 @@ LINE 8 cut 10 -53.69056332812418 +50.293912049626165 20 -300.3188301677879 +369.46616757760023 30 0.0 11 -69.85690799927526 +68.15858236002626 21 -300.3188301677879 +369.46616757760023 31 0.0 0 @@ -4665,15 +5057,15 @@ LINE 8 cut 10 -69.85690799927526 +68.15858236002626 20 -300.3188301677879 +369.46616757760023 30 0.0 11 -69.85690799927526 +68.15858236002626 21 -308.4020025033634 +378.3985027328003 31 0.0 0 @@ -4683,15 +5075,15 @@ LINE 8 cut 10 -20.624331748168913 +22.23674174086841 20 -216.0165790835827 +274.96789528790873 30 0.0 11 -26.479589068954827 +27.02781066601807 21 -231.62052109850282 +292.6965944551955 31 0.0 0 @@ -4701,15 +5093,15 @@ LINE 8 cut 10 -26.479589068954827 +27.02781066601807 20 -231.62052109850282 +292.6965944551955 30 0.0 11 -26.01146176441367 +26.545125737085613 21 -231.7961822118518 +292.82703700723084 31 0.0 0 @@ -4719,15 +5111,15 @@ LINE 8 cut 10 -26.01146176441367 +26.545125737085613 20 -231.7961822118518 +292.82703700723084 30 0.0 11 -20.156204443627757 +21.754056811935953 21 -216.19224019693172 +275.098337839944 31 0.0 0 @@ -4737,15 +5129,15 @@ LINE 8 cut 10 -20.156204443627757 +21.754056811935953 20 -216.19224019693172 +275.098337839944 30 0.0 11 -20.624331748168913 +22.23674174086841 21 -216.0165790835827 +274.96789528790873 31 0.0 0 @@ -4755,15 +5147,15 @@ LINE 8 cut 10 -26.479589068954795 +27.027810666018013 20 -160.9339669014974 +197.30340554480492 30 0.0 11 -20.62433174816889 +22.236741740868357 21 -176.5379089164175 +215.0321047120917 31 0.0 0 @@ -4773,15 +5165,15 @@ LINE 8 cut 10 -20.62433174816889 +22.236741740868357 20 -176.5379089164175 +215.0321047120917 30 0.0 11 -20.156204443627733 +21.7540568119359 21 -176.3622478030685 +214.90166216005642 31 0.0 0 @@ -4791,15 +5183,15 @@ LINE 8 cut 10 -20.156204443627733 +21.7540568119359 20 -176.3622478030685 +214.90166216005642 30 0.0 11 -26.011461764413642 +26.54512573708556 21 -160.75830578814833 +197.17296299276964 31 0.0 0 @@ -4809,15 +5201,15 @@ LINE 8 cut 10 -26.011461764413642 +26.54512573708556 20 -160.75830578814833 +197.17296299276964 30 0.0 11 -26.479589068954795 +27.027810666018013 21 -160.9339669014974 +197.30340554480492 31 0.0 0 @@ -4827,15 +5219,15 @@ LINE 8 cut 10 -69.8569079992752 +68.15858236002603 20 -84.15248549663676 +111.60149726720016 30 0.0 11 -69.8569079992752 +68.15858236002603 21 -92.23565783221228 +120.5338324224002 31 0.0 0 @@ -4845,15 +5237,15 @@ LINE 8 cut 10 -69.8569079992752 +68.15858236002603 20 -92.23565783221228 +120.5338324224002 30 0.0 11 -53.69056332812412 +50.293912049625966 21 -92.2356578322123 +120.53383242240022 31 0.0 0 @@ -4863,15 +5255,15 @@ LINE 8 cut 10 -53.69056332812412 +50.293912049625966 20 -92.2356578322123 +120.53383242240022 30 0.0 11 -53.69056332812412 +50.29391204962594 21 -84.15248549663677 +111.60149726720017 31 0.0 0 @@ -4881,15 +5273,15 @@ LINE 8 cut 10 -273.3565860037596 +413.3565860037597 20 -313.77724400000005 +382.49999999999994 30 0.0 11 -273.3565860037596 +413.3565860037597 21 -302.1105773333333 +370.83333333333337 31 0.0 0 @@ -4899,15 +5291,15 @@ LINE 8 cut 10 -273.3565860037596 +413.3565860037597 20 -302.1105773333333 +370.83333333333337 30 0.0 11 -296.68991933709304 +436.68991933709293 21 -302.1105773333333 +370.8333333333333 31 0.0 0 @@ -4917,15 +5309,15 @@ LINE 8 cut 10 -296.68991933709304 +436.68991933709293 20 -302.1105773333333 +370.8333333333333 30 0.0 11 -296.68991933709304 +436.68991933709293 21 -313.77724400000005 +382.49999999999994 31 0.0 0 @@ -4937,15 +5329,15 @@ DOTTED 8 90 10 -363.02325267042636 +503.0232526704263 20 -84.27724400000001 +113.00000000000001 30 0.0 11 -424.02325267042636 +564.0232526704264 21 -84.27724400000001 +113.00000000000001 31 0.0 0 @@ -4957,15 +5349,15 @@ DOTTED 8 90 10 -424.02325267042636 +564.0232526704264 20 -84.27724400000001 +113.00000000000001 30 0.0 11 -424.02325267042636 +564.0232526704264 21 -108.27724400000001 +137.00000000000003 31 0.0 0 @@ -4977,15 +5369,15 @@ DOTTED 8 90 10 -424.02325267042636 +564.0232526704264 20 -108.27724400000001 +137.00000000000003 30 0.0 11 -363.02325267042636 +503.0232526704263 21 -108.27724400000001 +137.00000000000003 31 0.0 0 @@ -4997,15 +5389,15 @@ DOTTED 8 90 10 -363.02325267042636 +503.0232526704263 20 -108.27724400000001 +137.00000000000003 30 0.0 11 -363.02325267042636 +503.0232526704263 21 -84.27724400000001 +113.00000000000001 31 0.0 0 @@ -5015,15 +5407,15 @@ LINE 8 cut 10 -363.02325267042636 +503.0232526704263 20 -77.277244 +106.00000000000001 30 0.0 11 -363.02325267042636 +503.0232526704263 21 -84.27724400000001 +113.00000000000001 31 0.0 0 @@ -5033,15 +5425,15 @@ LINE 8 cut 10 -423.0232526704263 +563.0232526704264 20 -77.277244 +106.00000000000001 30 0.0 11 -363.02325267042636 +503.0232526704263 21 -77.277244 +106.00000000000001 31 0.0 0 @@ -5051,15 +5443,15 @@ LINE 8 cut 10 -423.0232526704263 +563.0232526704264 20 -84.27724400000001 +113.00000000000001 30 0.0 11 -423.0232526704263 +563.0232526704264 21 -77.277244 +106.00000000000001 31 0.0 0 @@ -5069,15 +5461,15 @@ LINE 8 cut 10 -431.02325267042636 +571.0232526704264 20 -84.27724400000001 +113.00000000000001 30 0.0 11 -424.02325267042636 +564.0232526704264 21 -84.27724400000001 +113.00000000000001 31 0.0 0 @@ -5087,15 +5479,15 @@ LINE 8 cut 10 -431.02325267042636 +571.0232526704264 20 -108.27724400000001 +137.00000000000003 30 0.0 11 -431.02325267042636 +571.0232526704264 21 -84.27724400000001 +113.00000000000001 31 0.0 0 @@ -5105,15 +5497,15 @@ LINE 8 cut 10 -424.02325267042636 +564.0232526704264 20 -108.27724400000001 +137.00000000000003 30 0.0 11 -431.02325267042636 +571.0232526704264 21 -108.27724400000001 +137.00000000000003 31 0.0 0 @@ -5125,15 +5517,15 @@ DOTTED 8 90 10 -424.02325267042636 +564.0232526704264 20 -108.27724400000001 +137.00000000000003 30 0.0 11 -424.02325267042636 +564.0232526704264 21 -169.277244 +198.0 31 0.0 0 @@ -5143,15 +5535,15 @@ LINE 8 cut 10 -364.0232526704263 +504.0232526704263 20 -169.277244 +198.0 30 0.0 11 -424.02325267042636 +564.0232526704264 21 -169.277244 +198.0 31 0.0 0 @@ -5163,15 +5555,15 @@ DOTTED 8 90 10 -364.0232526704263 +504.0232526704263 20 -108.27724400000001 +137.00000000000003 30 0.0 11 -364.0232526704263 +504.0232526704263 21 -169.277244 +198.0 31 0.0 0 @@ -5181,15 +5573,15 @@ LINE 8 cut 10 -448.02325267042636 +588.0232526704262 20 -108.27724400000001 +137.00000000000003 30 0.0 11 -424.02325267042636 +564.0232526704264 21 -108.27724400000001 +137.00000000000003 31 0.0 0 @@ -5201,15 +5593,15 @@ DOTTED 8 90 10 -448.02325267042636 +588.0232526704262 20 -108.27724400000001 +137.00000000000003 30 0.0 11 -448.02325267042636 +588.0232526704262 21 -169.277244 +198.0 31 0.0 0 @@ -5219,15 +5611,15 @@ LINE 8 cut 10 -424.02325267042636 +564.0232526704264 20 -169.277244 +198.0 30 0.0 11 -448.02325267042636 +588.0232526704262 21 -169.277244 +198.0 31 0.0 0 @@ -5237,15 +5629,15 @@ LINE 8 cut 10 -508.02325267042636 +648.0232526704264 20 -108.27724400000001 +137.00000000000003 30 0.0 11 -448.02325267042636 +588.0232526704262 21 -108.27724400000001 +137.00000000000003 31 0.0 0 @@ -5255,15 +5647,15 @@ LINE 8 cut 10 -508.02325267042636 +648.0232526704264 20 -169.277244 +198.0 30 0.0 11 -508.02325267042636 +648.0232526704264 21 -108.27724400000001 +137.00000000000003 31 0.0 0 @@ -5273,15 +5665,15 @@ LINE 8 cut 10 -448.02325267042636 +588.0232526704262 20 -169.277244 +198.0 30 0.0 11 -508.02325267042636 +648.0232526704264 21 -169.277244 +198.0 31 0.0 0 @@ -5291,15 +5683,15 @@ LINE 8 cut 10 -364.0232526704263 +504.0232526704263 20 -108.27724400000001 +137.00000000000003 30 0.0 11 -340.02325267042636 +480.0232526704263 21 -108.27724400000001 +137.00000000000003 31 0.0 0 @@ -5309,15 +5701,15 @@ LINE 8 cut 10 -340.02325267042636 +480.0232526704263 20 -169.277244 +198.0 30 0.0 11 -364.0232526704263 +504.0232526704263 21 -169.277244 +198.0 31 0.0 0 @@ -5329,15 +5721,15 @@ DOTTED 8 90 10 -340.02325267042636 +480.0232526704263 20 -169.277244 +198.0 30 0.0 11 -340.02325267042636 +480.0232526704263 21 -108.27724400000001 +137.00000000000003 31 0.0 0 @@ -5347,15 +5739,15 @@ LINE 8 cut 10 -330.02325267042636 +470.0232526704263 20 -169.277244 +198.0 30 0.0 11 -340.02325267042636 +480.0232526704263 21 -169.277244 +198.0 31 0.0 0 @@ -5365,15 +5757,15 @@ LINE 8 cut 10 -330.02325267042636 +470.0232526704263 20 -108.27724400000001 +137.00000000000003 30 0.0 11 -330.02325267042636 +470.0232526704263 21 -169.277244 +198.0 31 0.0 0 @@ -5383,15 +5775,15 @@ LINE 8 cut 10 -340.02325267042636 +480.0232526704263 20 -108.27724400000001 +137.00000000000003 30 0.0 11 -330.02325267042636 +470.0232526704263 21 -108.27724400000001 +137.00000000000003 31 0.0 0 @@ -5401,15 +5793,15 @@ LINE 8 cut 10 -356.02325267042636 +496.0232526704263 20 -108.27724400000001 +137.00000000000003 30 0.0 11 -363.02325267042636 +503.0232526704263 21 -108.27724400000001 +137.00000000000003 31 0.0 0 @@ -5419,15 +5811,15 @@ LINE 8 cut 10 -356.02325267042636 +496.0232526704263 20 -84.27724400000001 +113.00000000000001 30 0.0 11 -356.02325267042636 +496.0232526704263 21 -108.27724400000001 +137.00000000000003 31 0.0 0 @@ -5437,15 +5829,15 @@ LINE 8 cut 10 -363.02325267042636 +503.0232526704263 20 -84.27724400000001 +113.00000000000001 30 0.0 11 -356.02325267042636 +496.0232526704263 21 -84.27724400000001 +113.00000000000001 31 0.0 0 @@ -5455,15 +5847,15 @@ LINE 8 cut 10 -412.1141617613354 +552.1141617613354 20 -79.02724400000001 +107.75000000000001 30 0.0 11 -415.6141617613354 +555.6141617613354 21 -79.02724400000001 +107.75000000000001 31 0.0 0 @@ -5473,15 +5865,15 @@ LINE 8 cut 10 -415.6141617613354 +555.6141617613354 20 -79.02724400000001 +107.75000000000001 30 0.0 11 -412.1141617613354 +552.1141617613354 21 -82.52724400000001 +111.25000000000001 31 0.0 0 @@ -5491,15 +5883,15 @@ LINE 8 cut 10 -412.1141617613354 +552.1141617613354 20 -82.52724400000001 +111.25000000000001 30 0.0 11 -401.20507085224455 +541.2050708522444 21 -82.52724400000001 +111.25000000000001 31 0.0 0 @@ -5509,15 +5901,15 @@ LINE 8 cut 10 -401.20507085224455 +541.2050708522444 20 -82.52724400000001 +111.25000000000001 30 0.0 11 -397.7050708522445 +537.7050708522446 21 -79.02724400000001 +107.75000000000001 31 0.0 0 @@ -5527,15 +5919,15 @@ LINE 8 cut 10 -397.7050708522445 +537.7050708522446 20 -79.02724400000001 +107.75000000000001 30 0.0 11 -401.20507085224455 +541.2050708522444 21 -79.02724400000001 +107.75000000000001 31 0.0 0 @@ -5545,15 +5937,15 @@ LINE 8 cut 10 -384.8414344886081 +524.8414344886082 20 -79.02724400000001 +107.75000000000001 30 0.0 11 -388.3414344886082 +528.3414344886082 21 -79.02724400000001 +107.75000000000001 31 0.0 0 @@ -5563,15 +5955,15 @@ LINE 8 cut 10 -388.3414344886082 +528.3414344886082 20 -79.02724400000001 +107.75000000000001 30 0.0 11 -384.8414344886081 +524.8414344886082 21 -82.52724400000001 +111.25000000000001 31 0.0 0 @@ -5581,15 +5973,15 @@ LINE 8 cut 10 -384.8414344886081 +524.8414344886082 20 -82.52724400000001 +111.25000000000001 30 0.0 11 -373.93234357951724 +513.9323435795172 21 -82.52724400000001 +111.25000000000001 31 0.0 0 @@ -5599,15 +5991,15 @@ LINE 8 cut 10 -373.93234357951724 +513.9323435795172 20 -82.52724400000001 +111.25000000000001 30 0.0 11 -370.4323435795173 +510.43234357951724 21 -79.02724400000001 +107.75000000000001 31 0.0 0 @@ -5617,15 +6009,15 @@ LINE 8 cut 10 -370.4323435795173 +510.43234357951724 20 -79.02724400000001 +107.75000000000001 30 0.0 11 -373.93234357951724 +513.9323435795172 21 -79.02724400000001 +107.75000000000001 31 0.0 0 @@ -5635,15 +6027,15 @@ LINE 8 cut 10 -429.27325267042636 +569.2732526704264 20 -100.27724400000001 +129.0 30 0.0 11 -425.77325267042636 +565.7732526704262 21 -100.27724400000001 +129.0 31 0.0 0 @@ -5653,15 +6045,15 @@ LINE 8 cut 10 -425.77325267042636 +565.7732526704262 20 -100.27724400000001 +129.0 30 0.0 11 -425.77325267042636 +565.7732526704262 21 -92.27724400000001 +121.00000000000001 31 0.0 0 @@ -5671,15 +6063,15 @@ LINE 8 cut 10 -425.77325267042636 +565.7732526704262 20 -92.27724400000001 +121.00000000000001 30 0.0 11 -429.27325267042636 +569.2732526704264 21 -92.27724400000001 +121.00000000000001 31 0.0 0 @@ -5689,15 +6081,15 @@ LINE 8 cut 10 -371.52325267042636 +511.5232526704263 20 -159.777244 +188.50000000000003 30 0.0 11 -371.52325267042636 +511.5232526704263 21 -141.777244 +170.5 31 0.0 0 @@ -5707,15 +6099,15 @@ LINE 8 cut 10 -371.52325267042636 +511.5232526704263 20 -141.777244 +170.5 30 0.0 11 -406.52325267042636 +546.5232526704264 21 -141.777244 +170.5 31 0.0 0 @@ -5725,15 +6117,15 @@ LINE 8 cut 10 -406.52325267042636 +546.5232526704264 20 -141.777244 +170.5 30 0.0 11 -406.52325267042636 +546.5232526704264 21 -159.777244 +188.50000000000003 31 0.0 0 @@ -5743,15 +6135,15 @@ LINE 8 cut 10 -406.52325267042636 +546.5232526704264 20 -159.777244 +188.50000000000003 30 0.0 11 -371.52325267042636 +511.5232526704263 21 -159.777244 +188.50000000000003 31 0.0 0 @@ -5761,15 +6153,15 @@ LINE 8 cut 10 -424.52325267042636 +564.5232526704264 20 -121.52724400000001 +150.25 30 0.0 11 -424.52325267042636 +564.5232526704264 21 -118.52724400000001 +147.25000000000003 31 0.0 0 @@ -5779,15 +6171,15 @@ LINE 8 cut 10 -424.52325267042636 +564.5232526704264 20 -118.52724400000001 +147.25000000000003 30 0.0 11 -427.5232526704263 +567.5232526704262 21 -118.52724400000001 +147.25000000000003 31 0.0 0 @@ -5797,15 +6189,15 @@ LINE 8 cut 10 -427.5232526704263 +567.5232526704262 20 -118.52724400000001 +147.25000000000003 30 0.0 11 -427.5232526704263 +567.5232526704262 21 -121.52724400000001 +150.25 31 0.0 0 @@ -5815,15 +6207,15 @@ LINE 8 cut 10 -427.5232526704263 +567.5232526704262 20 -121.52724400000001 +150.25 30 0.0 11 -424.52325267042636 +564.5232526704264 21 -121.52724400000001 +150.25 31 0.0 0 @@ -5833,15 +6225,15 @@ LINE 8 cut 10 -445.52325267042636 +585.5232526704262 20 -120.52724400000001 +149.25000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -119.52724400000001 +148.25 31 0.0 0 @@ -5851,15 +6243,15 @@ LINE 8 cut 10 -445.52325267042636 +585.5232526704262 20 -119.52724400000001 +148.25 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -119.52724400000001 +148.25 31 0.0 0 @@ -5869,15 +6261,15 @@ LINE 8 cut 10 -446.52325267042636 +586.5232526704262 20 -119.52724400000001 +148.25 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -120.52724400000001 +149.25000000000003 31 0.0 0 @@ -5887,15 +6279,15 @@ LINE 8 cut 10 -446.52325267042636 +586.5232526704262 20 -120.52724400000001 +149.25000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -120.52724400000001 +149.25000000000003 31 0.0 0 @@ -5905,15 +6297,15 @@ LINE 8 cut 10 -425.52325267042636 +565.5232526704264 20 -123.02724400000001 +151.75000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -122.02724400000001 +150.75000000000003 31 0.0 0 @@ -5923,15 +6315,15 @@ LINE 8 cut 10 -425.52325267042636 +565.5232526704264 20 -122.02724400000001 +150.75000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -122.02724400000001 +150.75000000000003 31 0.0 0 @@ -5941,15 +6333,15 @@ LINE 8 cut 10 -426.52325267042636 +566.5232526704264 20 -122.02724400000001 +150.75000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -123.02724400000001 +151.75000000000003 31 0.0 0 @@ -5959,15 +6351,15 @@ LINE 8 cut 10 -426.52325267042636 +566.5232526704264 20 -123.02724400000001 +151.75000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -123.02724400000001 +151.75000000000003 31 0.0 0 @@ -5977,15 +6369,15 @@ LINE 8 cut 10 -445.52325267042636 +585.5232526704262 20 -123.02724400000001 +151.75000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -122.02724400000001 +150.75000000000003 31 0.0 0 @@ -5995,15 +6387,15 @@ LINE 8 cut 10 -445.52325267042636 +585.5232526704262 20 -122.02724400000001 +150.75000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -122.02724400000001 +150.75000000000003 31 0.0 0 @@ -6013,15 +6405,15 @@ LINE 8 cut 10 -446.52325267042636 +586.5232526704262 20 -122.02724400000001 +150.75000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -123.02724400000001 +151.75000000000003 31 0.0 0 @@ -6031,15 +6423,15 @@ LINE 8 cut 10 -446.52325267042636 +586.5232526704262 20 -123.02724400000001 +151.75000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -123.02724400000001 +151.75000000000003 31 0.0 0 @@ -6049,15 +6441,15 @@ LINE 8 cut 10 -425.52325267042636 +565.5232526704264 20 -125.52724400000001 +154.25000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -124.52724400000001 +153.25000000000003 31 0.0 0 @@ -6067,15 +6459,15 @@ LINE 8 cut 10 -425.52325267042636 +565.5232526704264 20 -124.52724400000001 +153.25000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -124.52724400000001 +153.25000000000003 31 0.0 0 @@ -6085,15 +6477,15 @@ LINE 8 cut 10 -426.52325267042636 +566.5232526704264 20 -124.52724400000001 +153.25000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -125.52724400000001 +154.25000000000003 31 0.0 0 @@ -6103,15 +6495,15 @@ LINE 8 cut 10 -426.52325267042636 +566.5232526704264 20 -125.52724400000001 +154.25000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -125.52724400000001 +154.25000000000003 31 0.0 0 @@ -6121,15 +6513,15 @@ LINE 8 cut 10 -445.52325267042636 +585.5232526704262 20 -125.52724400000001 +154.25000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -124.52724400000001 +153.25000000000003 31 0.0 0 @@ -6139,15 +6531,15 @@ LINE 8 cut 10 -445.52325267042636 +585.5232526704262 20 -124.52724400000001 +153.25000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -124.52724400000001 +153.25000000000003 31 0.0 0 @@ -6157,15 +6549,15 @@ LINE 8 cut 10 -446.52325267042636 +586.5232526704262 20 -124.52724400000001 +153.25000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -125.52724400000001 +154.25000000000003 31 0.0 0 @@ -6175,15 +6567,15 @@ LINE 8 cut 10 -446.52325267042636 +586.5232526704262 20 -125.52724400000001 +154.25000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -125.52724400000001 +154.25000000000003 31 0.0 0 @@ -6193,15 +6585,15 @@ LINE 8 cut 10 -425.52325267042636 +565.5232526704264 20 -128.02724400000002 +156.75 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -127.02724400000001 +155.75000000000003 31 0.0 0 @@ -6211,15 +6603,15 @@ LINE 8 cut 10 -425.52325267042636 +565.5232526704264 20 -127.02724400000001 +155.75000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -127.02724400000001 +155.75000000000003 31 0.0 0 @@ -6229,15 +6621,15 @@ LINE 8 cut 10 -426.52325267042636 +566.5232526704264 20 -127.02724400000001 +155.75000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -128.02724400000002 +156.75 31 0.0 0 @@ -6247,15 +6639,15 @@ LINE 8 cut 10 -426.52325267042636 +566.5232526704264 20 -128.02724400000002 +156.75 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -128.02724400000002 +156.75 31 0.0 0 @@ -6265,15 +6657,15 @@ LINE 8 cut 10 -445.52325267042636 +585.5232526704262 20 -128.02724400000002 +156.75 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -127.02724400000001 +155.75000000000003 31 0.0 0 @@ -6283,15 +6675,15 @@ LINE 8 cut 10 -445.52325267042636 +585.5232526704262 20 -127.02724400000001 +155.75000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -127.02724400000001 +155.75000000000003 31 0.0 0 @@ -6301,15 +6693,15 @@ LINE 8 cut 10 -446.52325267042636 +586.5232526704262 20 -127.02724400000001 +155.75000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -128.02724400000002 +156.75 31 0.0 0 @@ -6319,15 +6711,15 @@ LINE 8 cut 10 -446.52325267042636 +586.5232526704262 20 -128.02724400000002 +156.75 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -128.02724400000002 +156.75 31 0.0 0 @@ -6337,15 +6729,15 @@ LINE 8 cut 10 -425.52325267042636 +565.5232526704264 20 -130.52724400000002 +159.25 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -129.527244 +158.25000000000003 31 0.0 0 @@ -6355,15 +6747,15 @@ LINE 8 cut 10 -425.52325267042636 +565.5232526704264 20 -129.527244 +158.25000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -129.527244 +158.25000000000003 31 0.0 0 @@ -6373,15 +6765,15 @@ LINE 8 cut 10 -426.52325267042636 +566.5232526704264 20 -129.527244 +158.25000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -130.52724400000002 +159.25 31 0.0 0 @@ -6391,15 +6783,15 @@ LINE 8 cut 10 -426.52325267042636 +566.5232526704264 20 -130.52724400000002 +159.25 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -130.52724400000002 +159.25 31 0.0 0 @@ -6409,15 +6801,15 @@ LINE 8 cut 10 -445.52325267042636 +585.5232526704262 20 -130.52724400000002 +159.25 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -129.527244 +158.25000000000003 31 0.0 0 @@ -6427,15 +6819,15 @@ LINE 8 cut 10 -445.52325267042636 +585.5232526704262 20 -129.527244 +158.25000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -129.527244 +158.25000000000003 31 0.0 0 @@ -6445,15 +6837,15 @@ LINE 8 cut 10 -446.52325267042636 +586.5232526704262 20 -129.527244 +158.25000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -130.52724400000002 +159.25 31 0.0 0 @@ -6463,15 +6855,15 @@ LINE 8 cut 10 -446.52325267042636 +586.5232526704262 20 -130.52724400000002 +159.25 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -130.52724400000002 +159.25 31 0.0 0 @@ -6481,15 +6873,15 @@ LINE 8 cut 10 -425.52325267042636 +565.5232526704264 20 -133.027244 +161.75 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -132.027244 +160.75000000000003 31 0.0 0 @@ -6499,15 +6891,15 @@ LINE 8 cut 10 -425.52325267042636 +565.5232526704264 20 -132.027244 +160.75000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -132.027244 +160.75000000000003 31 0.0 0 @@ -6517,15 +6909,15 @@ LINE 8 cut 10 -426.52325267042636 +566.5232526704264 20 -132.027244 +160.75000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -133.027244 +161.75 31 0.0 0 @@ -6535,15 +6927,15 @@ LINE 8 cut 10 -426.52325267042636 +566.5232526704264 20 -133.027244 +161.75 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -133.027244 +161.75 31 0.0 0 @@ -6553,15 +6945,15 @@ LINE 8 cut 10 -445.52325267042636 +585.5232526704262 20 -133.027244 +161.75 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -132.027244 +160.75000000000003 31 0.0 0 @@ -6571,15 +6963,15 @@ LINE 8 cut 10 -445.52325267042636 +585.5232526704262 20 -132.027244 +160.75000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -132.027244 +160.75000000000003 31 0.0 0 @@ -6589,15 +6981,15 @@ LINE 8 cut 10 -446.52325267042636 +586.5232526704262 20 -132.027244 +160.75000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -133.027244 +161.75 31 0.0 0 @@ -6607,15 +6999,15 @@ LINE 8 cut 10 -446.52325267042636 +586.5232526704262 20 -133.027244 +161.75 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -133.027244 +161.75 31 0.0 0 @@ -6625,15 +7017,15 @@ LINE 8 cut 10 -425.52325267042636 +565.5232526704264 20 -135.527244 +164.25000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -134.52724400000002 +163.25000000000003 31 0.0 0 @@ -6643,15 +7035,15 @@ LINE 8 cut 10 -425.52325267042636 +565.5232526704264 20 -134.52724400000002 +163.25000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -134.52724400000002 +163.25000000000003 31 0.0 0 @@ -6661,15 +7053,15 @@ LINE 8 cut 10 -426.52325267042636 +566.5232526704264 20 -134.52724400000002 +163.25000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -135.527244 +164.25000000000003 31 0.0 0 @@ -6679,15 +7071,15 @@ LINE 8 cut 10 -426.52325267042636 +566.5232526704264 20 -135.527244 +164.25000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -135.527244 +164.25000000000003 31 0.0 0 @@ -6697,15 +7089,15 @@ LINE 8 cut 10 -445.52325267042636 +585.5232526704262 20 -135.527244 +164.25000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -134.52724400000002 +163.25000000000003 31 0.0 0 @@ -6715,15 +7107,15 @@ LINE 8 cut 10 -445.52325267042636 +585.5232526704262 20 -134.52724400000002 +163.25000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -134.52724400000002 +163.25000000000003 31 0.0 0 @@ -6733,15 +7125,15 @@ LINE 8 cut 10 -446.52325267042636 +586.5232526704262 20 -134.52724400000002 +163.25000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -135.527244 +164.25000000000003 31 0.0 0 @@ -6751,15 +7143,15 @@ LINE 8 cut 10 -446.52325267042636 +586.5232526704262 20 -135.527244 +164.25000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -135.527244 +164.25000000000003 31 0.0 0 @@ -6769,15 +7161,15 @@ LINE 8 cut 10 -425.52325267042636 +565.5232526704264 20 -138.02724400000002 +166.75000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -137.027244 +165.75 31 0.0 0 @@ -6787,15 +7179,15 @@ LINE 8 cut 10 -425.52325267042636 +565.5232526704264 20 -137.027244 +165.75 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -137.027244 +165.75 31 0.0 0 @@ -6805,15 +7197,15 @@ LINE 8 cut 10 -426.52325267042636 +566.5232526704264 20 -137.027244 +165.75 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -138.02724400000002 +166.75000000000003 31 0.0 0 @@ -6823,15 +7215,15 @@ LINE 8 cut 10 -426.52325267042636 +566.5232526704264 20 -138.02724400000002 +166.75000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -138.02724400000002 +166.75000000000003 31 0.0 0 @@ -6841,15 +7233,15 @@ LINE 8 cut 10 -445.52325267042636 +585.5232526704262 20 -138.02724400000002 +166.75000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -137.027244 +165.75 31 0.0 0 @@ -6859,15 +7251,15 @@ LINE 8 cut 10 -445.52325267042636 +585.5232526704262 20 -137.027244 +165.75 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -137.027244 +165.75 31 0.0 0 @@ -6877,15 +7269,15 @@ LINE 8 cut 10 -446.52325267042636 +586.5232526704262 20 -137.027244 +165.75 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -138.02724400000002 +166.75000000000003 31 0.0 0 @@ -6895,15 +7287,15 @@ LINE 8 cut 10 -446.52325267042636 +586.5232526704262 20 -138.02724400000002 +166.75000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -138.02724400000002 +166.75000000000003 31 0.0 0 @@ -6913,15 +7305,15 @@ LINE 8 cut 10 -425.52325267042636 +565.5232526704264 20 -140.52724400000002 +169.25000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -139.527244 +168.25 31 0.0 0 @@ -6931,15 +7323,15 @@ LINE 8 cut 10 -425.52325267042636 +565.5232526704264 20 -139.527244 +168.25 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -139.527244 +168.25 31 0.0 0 @@ -6949,15 +7341,15 @@ LINE 8 cut 10 -426.52325267042636 +566.5232526704264 20 -139.527244 +168.25 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -140.52724400000002 +169.25000000000003 31 0.0 0 @@ -6967,15 +7359,15 @@ LINE 8 cut 10 -426.52325267042636 +566.5232526704264 20 -140.52724400000002 +169.25000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -140.52724400000002 +169.25000000000003 31 0.0 0 @@ -6985,15 +7377,15 @@ LINE 8 cut 10 -445.52325267042636 +585.5232526704262 20 -140.52724400000002 +169.25000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -139.527244 +168.25 31 0.0 0 @@ -7003,15 +7395,15 @@ LINE 8 cut 10 -445.52325267042636 +585.5232526704262 20 -139.527244 +168.25 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -139.527244 +168.25 31 0.0 0 @@ -7021,15 +7413,15 @@ LINE 8 cut 10 -446.52325267042636 +586.5232526704262 20 -139.527244 +168.25 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -140.52724400000002 +169.25000000000003 31 0.0 0 @@ -7039,15 +7431,15 @@ LINE 8 cut 10 -446.52325267042636 +586.5232526704262 20 -140.52724400000002 +169.25000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -140.52724400000002 +169.25000000000003 31 0.0 0 @@ -7057,15 +7449,15 @@ LINE 8 cut 10 -425.52325267042636 +565.5232526704264 20 -143.02724400000002 +171.75000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -142.027244 +170.75 31 0.0 0 @@ -7075,15 +7467,15 @@ LINE 8 cut 10 -425.52325267042636 +565.5232526704264 20 -142.027244 +170.75 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -142.027244 +170.75 31 0.0 0 @@ -7093,15 +7485,15 @@ LINE 8 cut 10 -426.52325267042636 +566.5232526704264 20 -142.027244 +170.75 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -143.02724400000002 +171.75000000000003 31 0.0 0 @@ -7111,15 +7503,15 @@ LINE 8 cut 10 -426.52325267042636 +566.5232526704264 20 -143.02724400000002 +171.75000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -143.02724400000002 +171.75000000000003 31 0.0 0 @@ -7129,15 +7521,15 @@ LINE 8 cut 10 -445.52325267042636 +585.5232526704262 20 -143.02724400000002 +171.75000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -142.027244 +170.75 31 0.0 0 @@ -7147,15 +7539,15 @@ LINE 8 cut 10 -445.52325267042636 +585.5232526704262 20 -142.027244 +170.75 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -142.027244 +170.75 31 0.0 0 @@ -7165,15 +7557,15 @@ LINE 8 cut 10 -446.52325267042636 +586.5232526704262 20 -142.027244 +170.75 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -143.02724400000002 +171.75000000000003 31 0.0 0 @@ -7183,15 +7575,15 @@ LINE 8 cut 10 -446.52325267042636 +586.5232526704262 20 -143.02724400000002 +171.75000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -143.02724400000002 +171.75000000000003 31 0.0 0 @@ -7201,15 +7593,15 @@ LINE 8 cut 10 -425.52325267042636 +565.5232526704264 20 -145.52724400000002 +174.25000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -144.527244 +173.25000000000003 31 0.0 0 @@ -7219,15 +7611,15 @@ LINE 8 cut 10 -425.52325267042636 +565.5232526704264 20 -144.527244 +173.25000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -144.527244 +173.25000000000003 31 0.0 0 @@ -7237,15 +7629,15 @@ LINE 8 cut 10 -426.52325267042636 +566.5232526704264 20 -144.527244 +173.25000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -145.52724400000002 +174.25000000000003 31 0.0 0 @@ -7255,15 +7647,15 @@ LINE 8 cut 10 -426.52325267042636 +566.5232526704264 20 -145.52724400000002 +174.25000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -145.52724400000002 +174.25000000000003 31 0.0 0 @@ -7273,15 +7665,15 @@ LINE 8 cut 10 -445.52325267042636 +585.5232526704262 20 -145.52724400000002 +174.25000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -144.527244 +173.25000000000003 31 0.0 0 @@ -7291,15 +7683,15 @@ LINE 8 cut 10 -445.52325267042636 +585.5232526704262 20 -144.527244 +173.25000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -144.527244 +173.25000000000003 31 0.0 0 @@ -7309,15 +7701,15 @@ LINE 8 cut 10 -446.52325267042636 +586.5232526704262 20 -144.527244 +173.25000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -145.52724400000002 +174.25000000000003 31 0.0 0 @@ -7327,15 +7719,15 @@ LINE 8 cut 10 -446.52325267042636 +586.5232526704262 20 -145.52724400000002 +174.25000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -145.52724400000002 +174.25000000000003 31 0.0 0 @@ -7345,15 +7737,15 @@ LINE 8 cut 10 -425.52325267042636 +565.5232526704264 20 -148.02724400000002 +176.75000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -147.02724400000002 +175.75000000000003 31 0.0 0 @@ -7363,15 +7755,15 @@ LINE 8 cut 10 -425.52325267042636 +565.5232526704264 20 -147.02724400000002 +175.75000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -147.02724400000002 +175.75000000000003 31 0.0 0 @@ -7381,15 +7773,15 @@ LINE 8 cut 10 -426.52325267042636 +566.5232526704264 20 -147.02724400000002 +175.75000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -148.02724400000002 +176.75000000000003 31 0.0 0 @@ -7399,15 +7791,15 @@ LINE 8 cut 10 -426.52325267042636 +566.5232526704264 20 -148.02724400000002 +176.75000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -148.02724400000002 +176.75000000000003 31 0.0 0 @@ -7417,15 +7809,15 @@ LINE 8 cut 10 -445.52325267042636 +585.5232526704262 20 -148.02724400000002 +176.75000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -147.02724400000002 +175.75000000000003 31 0.0 0 @@ -7435,15 +7827,15 @@ LINE 8 cut 10 -445.52325267042636 +585.5232526704262 20 -147.02724400000002 +175.75000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -147.02724400000002 +175.75000000000003 31 0.0 0 @@ -7453,15 +7845,15 @@ LINE 8 cut 10 -446.52325267042636 +586.5232526704262 20 -147.02724400000002 +175.75000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -148.02724400000002 +176.75000000000003 31 0.0 0 @@ -7471,15 +7863,15 @@ LINE 8 cut 10 -446.52325267042636 +586.5232526704262 20 -148.02724400000002 +176.75000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -148.02724400000002 +176.75000000000003 31 0.0 0 @@ -7489,15 +7881,15 @@ LINE 8 cut 10 -425.52325267042636 +565.5232526704264 20 -150.52724400000002 +179.25000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -149.52724400000002 +178.25000000000003 31 0.0 0 @@ -7507,15 +7899,15 @@ LINE 8 cut 10 -425.52325267042636 +565.5232526704264 20 -149.52724400000002 +178.25000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -149.52724400000002 +178.25000000000003 31 0.0 0 @@ -7525,15 +7917,15 @@ LINE 8 cut 10 -426.52325267042636 +566.5232526704264 20 -149.52724400000002 +178.25000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -150.52724400000002 +179.25000000000003 31 0.0 0 @@ -7543,15 +7935,15 @@ LINE 8 cut 10 -426.52325267042636 +566.5232526704264 20 -150.52724400000002 +179.25000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -150.52724400000002 +179.25000000000003 31 0.0 0 @@ -7561,15 +7953,15 @@ LINE 8 cut 10 -445.52325267042636 +585.5232526704262 20 -150.52724400000002 +179.25000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -149.52724400000002 +178.25000000000003 31 0.0 0 @@ -7579,15 +7971,15 @@ LINE 8 cut 10 -445.52325267042636 +585.5232526704262 20 -149.52724400000002 +178.25000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -149.52724400000002 +178.25000000000003 31 0.0 0 @@ -7597,15 +7989,15 @@ LINE 8 cut 10 -446.52325267042636 +586.5232526704262 20 -149.52724400000002 +178.25000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -150.52724400000002 +179.25000000000003 31 0.0 0 @@ -7615,15 +8007,15 @@ LINE 8 cut 10 -446.52325267042636 +586.5232526704262 20 -150.52724400000002 +179.25000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -150.52724400000002 +179.25000000000003 31 0.0 0 @@ -7633,15 +8025,15 @@ LINE 8 cut 10 -425.52325267042636 +565.5232526704264 20 -153.027244 +181.75 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -152.02724400000002 +180.75000000000003 31 0.0 0 @@ -7651,15 +8043,15 @@ LINE 8 cut 10 -425.52325267042636 +565.5232526704264 20 -152.02724400000002 +180.75000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -152.02724400000002 +180.75000000000003 31 0.0 0 @@ -7669,15 +8061,15 @@ LINE 8 cut 10 -426.52325267042636 +566.5232526704264 20 -152.02724400000002 +180.75000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -153.027244 +181.75 31 0.0 0 @@ -7687,15 +8079,15 @@ LINE 8 cut 10 -426.52325267042636 +566.5232526704264 20 -153.027244 +181.75 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -153.027244 +181.75 31 0.0 0 @@ -7705,15 +8097,15 @@ LINE 8 cut 10 -445.52325267042636 +585.5232526704262 20 -153.027244 +181.75 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -152.02724400000002 +180.75000000000003 31 0.0 0 @@ -7723,15 +8115,15 @@ LINE 8 cut 10 -445.52325267042636 +585.5232526704262 20 -152.02724400000002 +180.75000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -152.02724400000002 +180.75000000000003 31 0.0 0 @@ -7741,15 +8133,15 @@ LINE 8 cut 10 -446.52325267042636 +586.5232526704262 20 -152.02724400000002 +180.75000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -153.027244 +181.75 31 0.0 0 @@ -7759,15 +8151,15 @@ LINE 8 cut 10 -446.52325267042636 +586.5232526704262 20 -153.027244 +181.75 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -153.027244 +181.75 31 0.0 0 @@ -7777,15 +8169,15 @@ LINE 8 cut 10 -425.52325267042636 +565.5232526704264 20 -155.527244 +184.25 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -154.52724400000002 +183.25000000000003 31 0.0 0 @@ -7795,15 +8187,15 @@ LINE 8 cut 10 -425.52325267042636 +565.5232526704264 20 -154.52724400000002 +183.25000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -154.52724400000002 +183.25000000000003 31 0.0 0 @@ -7813,15 +8205,15 @@ LINE 8 cut 10 -426.52325267042636 +566.5232526704264 20 -154.52724400000002 +183.25000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -155.527244 +184.25 31 0.0 0 @@ -7831,15 +8223,15 @@ LINE 8 cut 10 -426.52325267042636 +566.5232526704264 20 -155.527244 +184.25 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -155.527244 +184.25 31 0.0 0 @@ -7849,15 +8241,15 @@ LINE 8 cut 10 -445.52325267042636 +585.5232526704262 20 -155.527244 +184.25 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -154.52724400000002 +183.25000000000003 31 0.0 0 @@ -7867,15 +8259,15 @@ LINE 8 cut 10 -445.52325267042636 +585.5232526704262 20 -154.52724400000002 +183.25000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -154.52724400000002 +183.25000000000003 31 0.0 0 @@ -7885,15 +8277,15 @@ LINE 8 cut 10 -446.52325267042636 +586.5232526704262 20 -154.52724400000002 +183.25000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -155.527244 +184.25 31 0.0 0 @@ -7903,15 +8295,15 @@ LINE 8 cut 10 -446.52325267042636 +586.5232526704262 20 -155.527244 +184.25 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -155.527244 +184.25 31 0.0 0 @@ -7921,15 +8313,15 @@ LINE 8 cut 10 -425.52325267042636 +565.5232526704264 20 -158.027244 +186.75 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -157.02724400000002 +185.75000000000003 31 0.0 0 @@ -7939,15 +8331,15 @@ LINE 8 cut 10 -425.52325267042636 +565.5232526704264 20 -157.02724400000002 +185.75000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -157.02724400000002 +185.75000000000003 31 0.0 0 @@ -7957,15 +8349,15 @@ LINE 8 cut 10 -426.52325267042636 +566.5232526704264 20 -157.02724400000002 +185.75000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -158.027244 +186.75 31 0.0 0 @@ -7975,15 +8367,15 @@ LINE 8 cut 10 -426.52325267042636 +566.5232526704264 20 -158.027244 +186.75 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -158.027244 +186.75 31 0.0 0 @@ -7993,15 +8385,15 @@ LINE 8 cut 10 -444.52325267042636 +584.5232526704264 20 -159.02724400000002 +187.75000000000003 30 0.0 11 -444.52325267042636 +584.5232526704264 21 -156.02724400000002 +184.75000000000003 31 0.0 0 @@ -8011,15 +8403,15 @@ LINE 8 cut 10 -444.52325267042636 +584.5232526704264 20 -156.02724400000002 +184.75000000000003 30 0.0 11 -447.52325267042636 +587.5232526704262 21 -156.02724400000002 +184.75000000000003 31 0.0 0 @@ -8029,15 +8421,15 @@ LINE 8 cut 10 -447.52325267042636 +587.5232526704262 20 -156.02724400000002 +184.75000000000003 30 0.0 11 -447.52325267042636 +587.5232526704262 21 -159.02724400000002 +187.75000000000003 31 0.0 0 @@ -8047,15 +8439,15 @@ LINE 8 cut 10 -447.52325267042636 +587.5232526704262 20 -159.02724400000002 +187.75000000000003 30 0.0 11 -444.52325267042636 +584.5232526704264 21 -159.02724400000002 +187.75000000000003 31 0.0 0 @@ -8065,15 +8457,15 @@ LINE 8 cut 10 -440.27325267042636 +580.2732526704264 20 -116.02724400000001 +144.75000000000003 30 0.0 11 -431.77325267042636 +571.7732526704262 21 -116.02724400000001 +144.75000000000003 31 0.0 0 @@ -8083,15 +8475,15 @@ LINE 8 cut 10 -431.77325267042636 +571.7732526704262 20 -116.02724400000001 +144.75000000000003 30 0.0 11 -431.77325267042636 +571.7732526704262 21 -115.52724400000001 +144.25000000000003 31 0.0 0 @@ -8101,15 +8493,15 @@ LINE 8 cut 10 -431.77325267042636 +571.7732526704262 20 -115.52724400000001 +144.25000000000003 30 0.0 11 -440.27325267042636 +580.2732526704264 21 -115.52724400000001 +144.25000000000003 31 0.0 0 @@ -8119,15 +8511,15 @@ LINE 8 cut 10 -440.27325267042636 +580.2732526704264 20 -115.52724400000001 +144.25000000000003 30 0.0 11 -440.27325267042636 +580.2732526704264 21 -116.02724400000001 +144.75000000000003 31 0.0 0 @@ -8137,15 +8529,15 @@ LINE 8 cut 10 -431.77325267042636 +571.7732526704262 20 -163.77724400000002 +192.50000000000003 30 0.0 11 -440.27325267042636 +580.2732526704264 21 -163.77724400000002 +192.50000000000003 31 0.0 0 @@ -8155,15 +8547,15 @@ LINE 8 cut 10 -440.27325267042636 +580.2732526704264 20 -163.77724400000002 +192.50000000000003 30 0.0 11 -440.27325267042636 +580.2732526704264 21 -164.27724400000002 +193.00000000000003 31 0.0 0 @@ -8173,15 +8565,15 @@ LINE 8 cut 10 -440.27325267042636 +580.2732526704264 20 -164.27724400000002 +193.00000000000003 30 0.0 11 -431.77325267042636 +571.7732526704262 21 -164.27724400000002 +193.00000000000003 31 0.0 0 @@ -8191,15 +8583,15 @@ LINE 8 cut 10 -431.77325267042636 +571.7732526704262 20 -164.27724400000002 +193.00000000000003 30 0.0 11 -431.77325267042636 +571.7732526704262 21 -163.77724400000002 +192.50000000000003 31 0.0 0 @@ -8209,15 +8601,15 @@ LINE 8 cut 10 -463.02325267042636 +603.0232526704264 20 -159.27724400000002 +188.00000000000003 30 0.0 11 -463.02325267042636 +603.0232526704264 21 -146.277244 +175.0 31 0.0 0 @@ -8227,15 +8619,15 @@ LINE 8 cut 10 -463.02325267042636 +603.0232526704264 20 -146.277244 +175.0 30 0.0 11 -493.02325267042636 +633.0232526704262 21 -146.277244 +175.0 31 0.0 0 @@ -8245,15 +8637,15 @@ LINE 8 cut 10 -493.02325267042636 +633.0232526704262 20 -146.277244 +175.0 30 0.0 11 -493.02325267042636 +633.0232526704262 21 -159.27724400000002 +188.00000000000003 31 0.0 0 @@ -8263,15 +8655,15 @@ LINE 8 cut 10 -493.02325267042636 +633.0232526704262 20 -159.27724400000002 +188.00000000000003 30 0.0 11 -463.02325267042636 +603.0232526704264 21 -159.27724400000002 +188.00000000000003 31 0.0 0 @@ -8281,15 +8673,15 @@ LINE 8 cut 10 -470.0914344886082 +610.0914344886081 20 -113.77724400000001 +142.50000000000003 30 0.0 11 -458.6823435795173 +598.6823435795171 21 -113.77724400000001 +142.50000000000003 31 0.0 0 @@ -8299,15 +8691,15 @@ LINE 8 cut 10 -458.6823435795173 +598.6823435795171 20 -113.77724400000001 +142.50000000000003 30 0.0 11 -458.6823435795173 +598.6823435795171 21 -113.27724400000001 +142.00000000000003 31 0.0 0 @@ -8317,15 +8709,15 @@ LINE 8 cut 10 -458.6823435795173 +598.6823435795171 20 -113.27724400000001 +142.00000000000003 30 0.0 11 -470.0914344886082 +610.0914344886081 21 -113.27724400000001 +142.00000000000003 31 0.0 0 @@ -8335,15 +8727,15 @@ LINE 8 cut 10 -470.0914344886082 +610.0914344886081 20 -113.27724400000001 +142.00000000000003 30 0.0 11 -470.0914344886082 +610.0914344886081 21 -113.77724400000001 +142.50000000000003 31 0.0 0 @@ -8353,15 +8745,15 @@ LINE 8 cut 10 -497.3641617613354 +637.3641617613355 20 -113.77724400000001 +142.50000000000003 30 0.0 11 -485.95507085224455 +625.9550708522444 21 -113.77724400000001 +142.50000000000003 31 0.0 0 @@ -8371,15 +8763,15 @@ LINE 8 cut 10 -485.95507085224455 +625.9550708522444 20 -113.77724400000001 +142.50000000000003 30 0.0 11 -485.95507085224455 +625.9550708522444 21 -113.27724400000001 +142.00000000000003 31 0.0 0 @@ -8389,15 +8781,15 @@ LINE 8 cut 10 -485.95507085224455 +625.9550708522444 20 -113.27724400000001 +142.00000000000003 30 0.0 11 -497.3641617613354 +637.3641617613355 21 -113.27724400000001 +142.00000000000003 31 0.0 0 @@ -8407,15 +8799,15 @@ LINE 8 cut 10 -497.3641617613354 +637.3641617613355 20 -113.27724400000001 +142.00000000000003 30 0.0 11 -497.3641617613354 +637.3641617613355 21 -113.77724400000001 +142.50000000000003 31 0.0 0 @@ -8425,15 +8817,15 @@ LINE 8 cut 10 -500.27325267042636 +640.2732526704264 20 -130.70906218181818 +159.43181818181822 30 0.0 11 -500.27325267042636 +640.2732526704264 21 -119.1181530909091 +147.84090909090912 31 0.0 0 @@ -8443,15 +8835,15 @@ LINE 8 cut 10 -500.27325267042636 +640.2732526704264 20 -119.1181530909091 +147.84090909090912 30 0.0 11 -500.77325267042636 +640.7732526704264 21 -119.1181530909091 +147.84090909090912 31 0.0 0 @@ -8461,15 +8853,15 @@ LINE 8 cut 10 -500.77325267042636 +640.7732526704264 20 -119.1181530909091 +147.84090909090912 30 0.0 11 -500.77325267042636 +640.7732526704264 21 -130.70906218181818 +159.43181818181822 31 0.0 0 @@ -8479,15 +8871,15 @@ LINE 8 cut 10 -500.77325267042636 +640.7732526704264 20 -130.70906218181818 +159.43181818181822 30 0.0 11 -500.27325267042636 +640.2732526704264 21 -130.70906218181818 +159.43181818181822 31 0.0 0 @@ -8497,15 +8889,15 @@ LINE 8 cut 10 -500.27325267042636 +640.2732526704264 20 -158.43633490909093 +187.15909090909093 30 0.0 11 -500.27325267042636 +640.2732526704264 21 -146.8454258181818 +175.5681818181818 31 0.0 0 @@ -8515,15 +8907,15 @@ LINE 8 cut 10 -500.27325267042636 +640.2732526704264 20 -146.8454258181818 +175.5681818181818 30 0.0 11 -500.77325267042636 +640.7732526704264 21 -146.8454258181818 +175.5681818181818 31 0.0 0 @@ -8533,15 +8925,15 @@ LINE 8 cut 10 -500.77325267042636 +640.7732526704264 20 -146.8454258181818 +175.5681818181818 30 0.0 11 -500.77325267042636 +640.7732526704264 21 -158.43633490909093 +187.15909090909093 31 0.0 0 @@ -8551,15 +8943,15 @@ LINE 8 cut 10 -500.77325267042636 +640.7732526704264 20 -158.43633490909093 +187.15909090909093 30 0.0 11 -500.27325267042636 +640.2732526704264 21 -158.43633490909093 +187.15909090909093 31 0.0 0 @@ -8569,15 +8961,15 @@ LINE 8 cut 10 -340.52325267042636 +480.5232526704263 20 -121.52724400000001 +150.25 30 0.0 11 -340.52325267042636 +480.5232526704263 21 -118.52724400000001 +147.25000000000003 31 0.0 0 @@ -8587,15 +8979,15 @@ LINE 8 cut 10 -340.52325267042636 +480.5232526704263 20 -118.52724400000001 +147.25000000000003 30 0.0 11 -343.52325267042636 +483.5232526704263 21 -118.52724400000001 +147.25000000000003 31 0.0 0 @@ -8605,15 +8997,15 @@ LINE 8 cut 10 -343.52325267042636 +483.5232526704263 20 -118.52724400000001 +147.25000000000003 30 0.0 11 -343.52325267042636 +483.5232526704263 21 -121.52724400000001 +150.25 31 0.0 0 @@ -8623,15 +9015,15 @@ LINE 8 cut 10 -343.52325267042636 +483.5232526704263 20 -121.52724400000001 +150.25 30 0.0 11 -340.52325267042636 +480.5232526704263 21 -121.52724400000001 +150.25 31 0.0 0 @@ -8641,15 +9033,15 @@ LINE 8 cut 10 -361.52325267042636 +501.5232526704263 20 -120.52724400000001 +149.25000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -119.52724400000001 +148.25 31 0.0 0 @@ -8659,15 +9051,15 @@ LINE 8 cut 10 -361.52325267042636 +501.5232526704263 20 -119.52724400000001 +148.25 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -119.52724400000001 +148.25 31 0.0 0 @@ -8677,15 +9069,15 @@ LINE 8 cut 10 -362.52325267042636 +502.5232526704263 20 -119.52724400000001 +148.25 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -120.52724400000001 +149.25000000000003 31 0.0 0 @@ -8695,15 +9087,15 @@ LINE 8 cut 10 -362.52325267042636 +502.5232526704263 20 -120.52724400000001 +149.25000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -120.52724400000001 +149.25000000000003 31 0.0 0 @@ -8713,15 +9105,15 @@ LINE 8 cut 10 -341.5232526704263 +481.5232526704263 20 -123.02724400000001 +151.75000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -122.02724400000001 +150.75000000000003 31 0.0 0 @@ -8731,15 +9123,15 @@ LINE 8 cut 10 -341.5232526704263 +481.5232526704263 20 -122.02724400000001 +150.75000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -122.02724400000001 +150.75000000000003 31 0.0 0 @@ -8749,15 +9141,15 @@ LINE 8 cut 10 -342.52325267042636 +482.52325267042636 20 -122.02724400000001 +150.75000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -123.02724400000001 +151.75000000000003 31 0.0 0 @@ -8767,15 +9159,15 @@ LINE 8 cut 10 -342.52325267042636 +482.52325267042636 20 -123.02724400000001 +151.75000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -123.02724400000001 +151.75000000000003 31 0.0 0 @@ -8785,15 +9177,15 @@ LINE 8 cut 10 -361.52325267042636 +501.5232526704263 20 -123.02724400000001 +151.75000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -122.02724400000001 +150.75000000000003 31 0.0 0 @@ -8803,15 +9195,15 @@ LINE 8 cut 10 -361.52325267042636 +501.5232526704263 20 -122.02724400000001 +150.75000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -122.02724400000001 +150.75000000000003 31 0.0 0 @@ -8821,15 +9213,15 @@ LINE 8 cut 10 -362.52325267042636 +502.5232526704263 20 -122.02724400000001 +150.75000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -123.02724400000001 +151.75000000000003 31 0.0 0 @@ -8839,15 +9231,15 @@ LINE 8 cut 10 -362.52325267042636 +502.5232526704263 20 -123.02724400000001 +151.75000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -123.02724400000001 +151.75000000000003 31 0.0 0 @@ -8857,15 +9249,15 @@ LINE 8 cut 10 -341.5232526704263 +481.5232526704263 20 -125.52724400000001 +154.25000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -124.52724400000001 +153.25000000000003 31 0.0 0 @@ -8875,15 +9267,15 @@ LINE 8 cut 10 -341.5232526704263 +481.5232526704263 20 -124.52724400000001 +153.25000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -124.52724400000001 +153.25000000000003 31 0.0 0 @@ -8893,15 +9285,15 @@ LINE 8 cut 10 -342.52325267042636 +482.52325267042636 20 -124.52724400000001 +153.25000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -125.52724400000001 +154.25000000000003 31 0.0 0 @@ -8911,15 +9303,15 @@ LINE 8 cut 10 -342.52325267042636 +482.52325267042636 20 -125.52724400000001 +154.25000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -125.52724400000001 +154.25000000000003 31 0.0 0 @@ -8929,15 +9321,15 @@ LINE 8 cut 10 -361.52325267042636 +501.5232526704263 20 -125.52724400000001 +154.25000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -124.52724400000001 +153.25000000000003 31 0.0 0 @@ -8947,15 +9339,15 @@ LINE 8 cut 10 -361.52325267042636 +501.5232526704263 20 -124.52724400000001 +153.25000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -124.52724400000001 +153.25000000000003 31 0.0 0 @@ -8965,15 +9357,15 @@ LINE 8 cut 10 -362.52325267042636 +502.5232526704263 20 -124.52724400000001 +153.25000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -125.52724400000001 +154.25000000000003 31 0.0 0 @@ -8983,15 +9375,15 @@ LINE 8 cut 10 -362.52325267042636 +502.5232526704263 20 -125.52724400000001 +154.25000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -125.52724400000001 +154.25000000000003 31 0.0 0 @@ -9001,15 +9393,15 @@ LINE 8 cut 10 -341.5232526704263 +481.5232526704263 20 -128.02724400000002 +156.75 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -127.02724400000001 +155.75000000000003 31 0.0 0 @@ -9019,15 +9411,15 @@ LINE 8 cut 10 -341.5232526704263 +481.5232526704263 20 -127.02724400000001 +155.75000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -127.02724400000001 +155.75000000000003 31 0.0 0 @@ -9037,15 +9429,15 @@ LINE 8 cut 10 -342.52325267042636 +482.52325267042636 20 -127.02724400000001 +155.75000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -128.02724400000002 +156.75 31 0.0 0 @@ -9055,15 +9447,15 @@ LINE 8 cut 10 -342.52325267042636 +482.52325267042636 20 -128.02724400000002 +156.75 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -128.02724400000002 +156.75 31 0.0 0 @@ -9073,15 +9465,15 @@ LINE 8 cut 10 -361.52325267042636 +501.5232526704263 20 -128.02724400000002 +156.75 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -127.02724400000001 +155.75000000000003 31 0.0 0 @@ -9091,15 +9483,15 @@ LINE 8 cut 10 -361.52325267042636 +501.5232526704263 20 -127.02724400000001 +155.75000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -127.02724400000001 +155.75000000000003 31 0.0 0 @@ -9109,15 +9501,15 @@ LINE 8 cut 10 -362.52325267042636 +502.5232526704263 20 -127.02724400000001 +155.75000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -128.02724400000002 +156.75 31 0.0 0 @@ -9127,15 +9519,15 @@ LINE 8 cut 10 -362.52325267042636 +502.5232526704263 20 -128.02724400000002 +156.75 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -128.02724400000002 +156.75 31 0.0 0 @@ -9145,15 +9537,15 @@ LINE 8 cut 10 -341.5232526704263 +481.5232526704263 20 -130.52724400000002 +159.25 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -129.527244 +158.25000000000003 31 0.0 0 @@ -9163,15 +9555,15 @@ LINE 8 cut 10 -341.5232526704263 +481.5232526704263 20 -129.527244 +158.25000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -129.527244 +158.25000000000003 31 0.0 0 @@ -9181,15 +9573,15 @@ LINE 8 cut 10 -342.52325267042636 +482.52325267042636 20 -129.527244 +158.25000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -130.52724400000002 +159.25 31 0.0 0 @@ -9199,15 +9591,15 @@ LINE 8 cut 10 -342.52325267042636 +482.52325267042636 20 -130.52724400000002 +159.25 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -130.52724400000002 +159.25 31 0.0 0 @@ -9217,15 +9609,15 @@ LINE 8 cut 10 -361.52325267042636 +501.5232526704263 20 -130.52724400000002 +159.25 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -129.527244 +158.25000000000003 31 0.0 0 @@ -9235,15 +9627,15 @@ LINE 8 cut 10 -361.52325267042636 +501.5232526704263 20 -129.527244 +158.25000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -129.527244 +158.25000000000003 31 0.0 0 @@ -9253,15 +9645,15 @@ LINE 8 cut 10 -362.52325267042636 +502.5232526704263 20 -129.527244 +158.25000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -130.52724400000002 +159.25 31 0.0 0 @@ -9271,15 +9663,15 @@ LINE 8 cut 10 -362.52325267042636 +502.5232526704263 20 -130.52724400000002 +159.25 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -130.52724400000002 +159.25 31 0.0 0 @@ -9289,15 +9681,15 @@ LINE 8 cut 10 -341.5232526704263 +481.5232526704263 20 -133.027244 +161.75 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -132.027244 +160.75000000000003 31 0.0 0 @@ -9307,15 +9699,15 @@ LINE 8 cut 10 -341.5232526704263 +481.5232526704263 20 -132.027244 +160.75000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -132.027244 +160.75000000000003 31 0.0 0 @@ -9325,15 +9717,15 @@ LINE 8 cut 10 -342.52325267042636 +482.52325267042636 20 -132.027244 +160.75000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -133.027244 +161.75 31 0.0 0 @@ -9343,15 +9735,15 @@ LINE 8 cut 10 -342.52325267042636 +482.52325267042636 20 -133.027244 +161.75 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -133.027244 +161.75 31 0.0 0 @@ -9361,15 +9753,15 @@ LINE 8 cut 10 -361.52325267042636 +501.5232526704263 20 -133.027244 +161.75 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -132.027244 +160.75000000000003 31 0.0 0 @@ -9379,15 +9771,15 @@ LINE 8 cut 10 -361.52325267042636 +501.5232526704263 20 -132.027244 +160.75000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -132.027244 +160.75000000000003 31 0.0 0 @@ -9397,15 +9789,15 @@ LINE 8 cut 10 -362.52325267042636 +502.5232526704263 20 -132.027244 +160.75000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -133.027244 +161.75 31 0.0 0 @@ -9415,15 +9807,15 @@ LINE 8 cut 10 -362.52325267042636 +502.5232526704263 20 -133.027244 +161.75 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -133.027244 +161.75 31 0.0 0 @@ -9433,15 +9825,15 @@ LINE 8 cut 10 -341.5232526704263 +481.5232526704263 20 -135.527244 +164.25000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -134.52724400000002 +163.25000000000003 31 0.0 0 @@ -9451,15 +9843,15 @@ LINE 8 cut 10 -341.5232526704263 +481.5232526704263 20 -134.52724400000002 +163.25000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -134.52724400000002 +163.25000000000003 31 0.0 0 @@ -9469,15 +9861,15 @@ LINE 8 cut 10 -342.52325267042636 +482.52325267042636 20 -134.52724400000002 +163.25000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -135.527244 +164.25000000000003 31 0.0 0 @@ -9487,15 +9879,15 @@ LINE 8 cut 10 -342.52325267042636 +482.52325267042636 20 -135.527244 +164.25000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -135.527244 +164.25000000000003 31 0.0 0 @@ -9505,15 +9897,15 @@ LINE 8 cut 10 -361.52325267042636 +501.5232526704263 20 -135.527244 +164.25000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -134.52724400000002 +163.25000000000003 31 0.0 0 @@ -9523,15 +9915,15 @@ LINE 8 cut 10 -361.52325267042636 +501.5232526704263 20 -134.52724400000002 +163.25000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -134.52724400000002 +163.25000000000003 31 0.0 0 @@ -9541,15 +9933,15 @@ LINE 8 cut 10 -362.52325267042636 +502.5232526704263 20 -134.52724400000002 +163.25000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -135.527244 +164.25000000000003 31 0.0 0 @@ -9559,15 +9951,15 @@ LINE 8 cut 10 -362.52325267042636 +502.5232526704263 20 -135.527244 +164.25000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -135.527244 +164.25000000000003 31 0.0 0 @@ -9577,15 +9969,15 @@ LINE 8 cut 10 -341.5232526704263 +481.5232526704263 20 -138.02724400000002 +166.75000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -137.027244 +165.75 31 0.0 0 @@ -9595,15 +9987,15 @@ LINE 8 cut 10 -341.5232526704263 +481.5232526704263 20 -137.027244 +165.75 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -137.027244 +165.75 31 0.0 0 @@ -9613,15 +10005,15 @@ LINE 8 cut 10 -342.52325267042636 +482.52325267042636 20 -137.027244 +165.75 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -138.02724400000002 +166.75000000000003 31 0.0 0 @@ -9631,15 +10023,15 @@ LINE 8 cut 10 -342.52325267042636 +482.52325267042636 20 -138.02724400000002 +166.75000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -138.02724400000002 +166.75000000000003 31 0.0 0 @@ -9649,15 +10041,15 @@ LINE 8 cut 10 -361.52325267042636 +501.5232526704263 20 -138.02724400000002 +166.75000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -137.027244 +165.75 31 0.0 0 @@ -9667,15 +10059,15 @@ LINE 8 cut 10 -361.52325267042636 +501.5232526704263 20 -137.027244 +165.75 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -137.027244 +165.75 31 0.0 0 @@ -9685,15 +10077,15 @@ LINE 8 cut 10 -362.52325267042636 +502.5232526704263 20 -137.027244 +165.75 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -138.02724400000002 +166.75000000000003 31 0.0 0 @@ -9703,15 +10095,15 @@ LINE 8 cut 10 -362.52325267042636 +502.5232526704263 20 -138.02724400000002 +166.75000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -138.02724400000002 +166.75000000000003 31 0.0 0 @@ -9721,15 +10113,15 @@ LINE 8 cut 10 -341.5232526704263 +481.5232526704263 20 -140.52724400000002 +169.25000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -139.527244 +168.25 31 0.0 0 @@ -9739,15 +10131,15 @@ LINE 8 cut 10 -341.5232526704263 +481.5232526704263 20 -139.527244 +168.25 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -139.527244 +168.25 31 0.0 0 @@ -9757,15 +10149,15 @@ LINE 8 cut 10 -342.52325267042636 +482.52325267042636 20 -139.527244 +168.25 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -140.52724400000002 +169.25000000000003 31 0.0 0 @@ -9775,15 +10167,15 @@ LINE 8 cut 10 -342.52325267042636 +482.52325267042636 20 -140.52724400000002 +169.25000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -140.52724400000002 +169.25000000000003 31 0.0 0 @@ -9793,15 +10185,15 @@ LINE 8 cut 10 -361.52325267042636 +501.5232526704263 20 -140.52724400000002 +169.25000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -139.527244 +168.25 31 0.0 0 @@ -9811,15 +10203,15 @@ LINE 8 cut 10 -361.52325267042636 +501.5232526704263 20 -139.527244 +168.25 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -139.527244 +168.25 31 0.0 0 @@ -9829,15 +10221,15 @@ LINE 8 cut 10 -362.52325267042636 +502.5232526704263 20 -139.527244 +168.25 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -140.52724400000002 +169.25000000000003 31 0.0 0 @@ -9847,15 +10239,15 @@ LINE 8 cut 10 -362.52325267042636 +502.5232526704263 20 -140.52724400000002 +169.25000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -140.52724400000002 +169.25000000000003 31 0.0 0 @@ -9865,15 +10257,15 @@ LINE 8 cut 10 -341.5232526704263 +481.5232526704263 20 -143.02724400000002 +171.75000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -142.027244 +170.75 31 0.0 0 @@ -9883,15 +10275,15 @@ LINE 8 cut 10 -341.5232526704263 +481.5232526704263 20 -142.027244 +170.75 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -142.027244 +170.75 31 0.0 0 @@ -9901,15 +10293,15 @@ LINE 8 cut 10 -342.52325267042636 +482.52325267042636 20 -142.027244 +170.75 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -143.02724400000002 +171.75000000000003 31 0.0 0 @@ -9919,15 +10311,15 @@ LINE 8 cut 10 -342.52325267042636 +482.52325267042636 20 -143.02724400000002 +171.75000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -143.02724400000002 +171.75000000000003 31 0.0 0 @@ -9937,15 +10329,15 @@ LINE 8 cut 10 -361.52325267042636 +501.5232526704263 20 -143.02724400000002 +171.75000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -142.027244 +170.75 31 0.0 0 @@ -9955,15 +10347,15 @@ LINE 8 cut 10 -361.52325267042636 +501.5232526704263 20 -142.027244 +170.75 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -142.027244 +170.75 31 0.0 0 @@ -9973,15 +10365,15 @@ LINE 8 cut 10 -362.52325267042636 +502.5232526704263 20 -142.027244 +170.75 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -143.02724400000002 +171.75000000000003 31 0.0 0 @@ -9991,15 +10383,15 @@ LINE 8 cut 10 -362.52325267042636 +502.5232526704263 20 -143.02724400000002 +171.75000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -143.02724400000002 +171.75000000000003 31 0.0 0 @@ -10009,15 +10401,15 @@ LINE 8 cut 10 -341.5232526704263 +481.5232526704263 20 -145.52724400000002 +174.25000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -144.527244 +173.25000000000003 31 0.0 0 @@ -10027,15 +10419,15 @@ LINE 8 cut 10 -341.5232526704263 +481.5232526704263 20 -144.527244 +173.25000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -144.527244 +173.25000000000003 31 0.0 0 @@ -10045,15 +10437,15 @@ LINE 8 cut 10 -342.52325267042636 +482.52325267042636 20 -144.527244 +173.25000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -145.52724400000002 +174.25000000000003 31 0.0 0 @@ -10063,15 +10455,15 @@ LINE 8 cut 10 -342.52325267042636 +482.52325267042636 20 -145.52724400000002 +174.25000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -145.52724400000002 +174.25000000000003 31 0.0 0 @@ -10081,15 +10473,15 @@ LINE 8 cut 10 -361.52325267042636 +501.5232526704263 20 -145.52724400000002 +174.25000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -144.527244 +173.25000000000003 31 0.0 0 @@ -10099,15 +10491,15 @@ LINE 8 cut 10 -361.52325267042636 +501.5232526704263 20 -144.527244 +173.25000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -144.527244 +173.25000000000003 31 0.0 0 @@ -10117,15 +10509,15 @@ LINE 8 cut 10 -362.52325267042636 +502.5232526704263 20 -144.527244 +173.25000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -145.52724400000002 +174.25000000000003 31 0.0 0 @@ -10135,15 +10527,15 @@ LINE 8 cut 10 -362.52325267042636 +502.5232526704263 20 -145.52724400000002 +174.25000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -145.52724400000002 +174.25000000000003 31 0.0 0 @@ -10153,15 +10545,15 @@ LINE 8 cut 10 -341.5232526704263 +481.5232526704263 20 -148.02724400000002 +176.75000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -147.02724400000002 +175.75000000000003 31 0.0 0 @@ -10171,15 +10563,15 @@ LINE 8 cut 10 -341.5232526704263 +481.5232526704263 20 -147.02724400000002 +175.75000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -147.02724400000002 +175.75000000000003 31 0.0 0 @@ -10189,15 +10581,15 @@ LINE 8 cut 10 -342.52325267042636 +482.52325267042636 20 -147.02724400000002 +175.75000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -148.02724400000002 +176.75000000000003 31 0.0 0 @@ -10207,15 +10599,15 @@ LINE 8 cut 10 -342.52325267042636 +482.52325267042636 20 -148.02724400000002 +176.75000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -148.02724400000002 +176.75000000000003 31 0.0 0 @@ -10225,15 +10617,15 @@ LINE 8 cut 10 -361.52325267042636 +501.5232526704263 20 -148.02724400000002 +176.75000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -147.02724400000002 +175.75000000000003 31 0.0 0 @@ -10243,15 +10635,15 @@ LINE 8 cut 10 -361.52325267042636 +501.5232526704263 20 -147.02724400000002 +175.75000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -147.02724400000002 +175.75000000000003 31 0.0 0 @@ -10261,15 +10653,15 @@ LINE 8 cut 10 -362.52325267042636 +502.5232526704263 20 -147.02724400000002 +175.75000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -148.02724400000002 +176.75000000000003 31 0.0 0 @@ -10279,15 +10671,15 @@ LINE 8 cut 10 -362.52325267042636 +502.5232526704263 20 -148.02724400000002 +176.75000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -148.02724400000002 +176.75000000000003 31 0.0 0 @@ -10297,15 +10689,15 @@ LINE 8 cut 10 -341.5232526704263 +481.5232526704263 20 -150.52724400000002 +179.25000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -149.52724400000002 +178.25000000000003 31 0.0 0 @@ -10315,15 +10707,15 @@ LINE 8 cut 10 -341.5232526704263 +481.5232526704263 20 -149.52724400000002 +178.25000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -149.52724400000002 +178.25000000000003 31 0.0 0 @@ -10333,15 +10725,15 @@ LINE 8 cut 10 -342.52325267042636 +482.52325267042636 20 -149.52724400000002 +178.25000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -150.52724400000002 +179.25000000000003 31 0.0 0 @@ -10351,15 +10743,15 @@ LINE 8 cut 10 -342.52325267042636 +482.52325267042636 20 -150.52724400000002 +179.25000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -150.52724400000002 +179.25000000000003 31 0.0 0 @@ -10369,15 +10761,15 @@ LINE 8 cut 10 -361.52325267042636 +501.5232526704263 20 -150.52724400000002 +179.25000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -149.52724400000002 +178.25000000000003 31 0.0 0 @@ -10387,15 +10779,15 @@ LINE 8 cut 10 -361.52325267042636 +501.5232526704263 20 -149.52724400000002 +178.25000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -149.52724400000002 +178.25000000000003 31 0.0 0 @@ -10405,15 +10797,15 @@ LINE 8 cut 10 -362.52325267042636 +502.5232526704263 20 -149.52724400000002 +178.25000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -150.52724400000002 +179.25000000000003 31 0.0 0 @@ -10423,15 +10815,15 @@ LINE 8 cut 10 -362.52325267042636 +502.5232526704263 20 -150.52724400000002 +179.25000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -150.52724400000002 +179.25000000000003 31 0.0 0 @@ -10441,15 +10833,15 @@ LINE 8 cut 10 -341.5232526704263 +481.5232526704263 20 -153.027244 +181.75 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -152.02724400000002 +180.75000000000003 31 0.0 0 @@ -10459,15 +10851,15 @@ LINE 8 cut 10 -341.5232526704263 +481.5232526704263 20 -152.02724400000002 +180.75000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -152.02724400000002 +180.75000000000003 31 0.0 0 @@ -10477,15 +10869,15 @@ LINE 8 cut 10 -342.52325267042636 +482.52325267042636 20 -152.02724400000002 +180.75000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -153.027244 +181.75 31 0.0 0 @@ -10495,15 +10887,15 @@ LINE 8 cut 10 -342.52325267042636 +482.52325267042636 20 -153.027244 +181.75 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -153.027244 +181.75 31 0.0 0 @@ -10513,15 +10905,15 @@ LINE 8 cut 10 -361.52325267042636 +501.5232526704263 20 -153.027244 +181.75 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -152.02724400000002 +180.75000000000003 31 0.0 0 @@ -10531,15 +10923,15 @@ LINE 8 cut 10 -361.52325267042636 +501.5232526704263 20 -152.02724400000002 +180.75000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -152.02724400000002 +180.75000000000003 31 0.0 0 @@ -10549,15 +10941,15 @@ LINE 8 cut 10 -362.52325267042636 +502.5232526704263 20 -152.02724400000002 +180.75000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -153.027244 +181.75 31 0.0 0 @@ -10567,15 +10959,15 @@ LINE 8 cut 10 -362.52325267042636 +502.5232526704263 20 -153.027244 +181.75 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -153.027244 +181.75 31 0.0 0 @@ -10585,15 +10977,15 @@ LINE 8 cut 10 -341.5232526704263 +481.5232526704263 20 -155.527244 +184.25 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -154.52724400000002 +183.25000000000003 31 0.0 0 @@ -10603,15 +10995,15 @@ LINE 8 cut 10 -341.5232526704263 +481.5232526704263 20 -154.52724400000002 +183.25000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -154.52724400000002 +183.25000000000003 31 0.0 0 @@ -10621,15 +11013,15 @@ LINE 8 cut 10 -342.52325267042636 +482.52325267042636 20 -154.52724400000002 +183.25000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -155.527244 +184.25 31 0.0 0 @@ -10639,15 +11031,15 @@ LINE 8 cut 10 -342.52325267042636 +482.52325267042636 20 -155.527244 +184.25 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -155.527244 +184.25 31 0.0 0 @@ -10657,15 +11049,15 @@ LINE 8 cut 10 -361.52325267042636 +501.5232526704263 20 -155.527244 +184.25 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -154.52724400000002 +183.25000000000003 31 0.0 0 @@ -10675,15 +11067,15 @@ LINE 8 cut 10 -361.52325267042636 +501.5232526704263 20 -154.52724400000002 +183.25000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -154.52724400000002 +183.25000000000003 31 0.0 0 @@ -10693,15 +11085,15 @@ LINE 8 cut 10 -362.52325267042636 +502.5232526704263 20 -154.52724400000002 +183.25000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -155.527244 +184.25 31 0.0 0 @@ -10711,15 +11103,15 @@ LINE 8 cut 10 -362.52325267042636 +502.5232526704263 20 -155.527244 +184.25 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -155.527244 +184.25 31 0.0 0 @@ -10729,15 +11121,15 @@ LINE 8 cut 10 -341.5232526704263 +481.5232526704263 20 -158.027244 +186.75 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -157.02724400000002 +185.75000000000003 31 0.0 0 @@ -10747,15 +11139,15 @@ LINE 8 cut 10 -341.5232526704263 +481.5232526704263 20 -157.02724400000002 +185.75000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -157.02724400000002 +185.75000000000003 31 0.0 0 @@ -10765,15 +11157,15 @@ LINE 8 cut 10 -342.52325267042636 +482.52325267042636 20 -157.02724400000002 +185.75000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -158.027244 +186.75 31 0.0 0 @@ -10783,15 +11175,15 @@ LINE 8 cut 10 -342.52325267042636 +482.52325267042636 20 -158.027244 +186.75 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -158.027244 +186.75 31 0.0 0 @@ -10801,15 +11193,15 @@ LINE 8 cut 10 -360.52325267042636 +500.5232526704263 20 -159.02724400000002 +187.75000000000003 30 0.0 11 -360.52325267042636 +500.5232526704263 21 -156.02724400000002 +184.75000000000003 31 0.0 0 @@ -10819,15 +11211,15 @@ LINE 8 cut 10 -360.52325267042636 +500.5232526704263 20 -156.02724400000002 +184.75000000000003 30 0.0 11 -363.5232526704263 +503.5232526704263 21 -156.02724400000002 +184.75000000000003 31 0.0 0 @@ -10837,15 +11229,15 @@ LINE 8 cut 10 -363.5232526704263 +503.5232526704263 20 -156.02724400000002 +184.75000000000003 30 0.0 11 -363.5232526704263 +503.5232526704263 21 -159.02724400000002 +187.75000000000003 31 0.0 0 @@ -10855,15 +11247,15 @@ LINE 8 cut 10 -363.5232526704263 +503.5232526704263 20 -159.02724400000002 +187.75000000000003 30 0.0 11 -360.52325267042636 +500.5232526704263 21 -159.02724400000002 +187.75000000000003 31 0.0 0 @@ -10873,15 +11265,15 @@ LINE 8 cut 10 -356.27325267042636 +496.27325267042636 20 -116.02724400000001 +144.75000000000003 30 0.0 11 -347.77325267042636 +487.7732526704263 21 -116.02724400000001 +144.75000000000003 31 0.0 0 @@ -10891,15 +11283,15 @@ LINE 8 cut 10 -347.77325267042636 +487.7732526704263 20 -116.02724400000001 +144.75000000000003 30 0.0 11 -347.77325267042636 +487.7732526704263 21 -115.52724400000001 +144.25000000000003 31 0.0 0 @@ -10909,15 +11301,15 @@ LINE 8 cut 10 -347.77325267042636 +487.7732526704263 20 -115.52724400000001 +144.25000000000003 30 0.0 11 -356.27325267042636 +496.27325267042636 21 -115.52724400000001 +144.25000000000003 31 0.0 0 @@ -10927,15 +11319,15 @@ LINE 8 cut 10 -356.27325267042636 +496.27325267042636 20 -115.52724400000001 +144.25000000000003 30 0.0 11 -356.27325267042636 +496.27325267042636 21 -116.02724400000001 +144.75000000000003 31 0.0 0 @@ -10945,15 +11337,15 @@ LINE 8 cut 10 -347.77325267042636 +487.7732526704263 20 -163.77724400000002 +192.50000000000003 30 0.0 11 -356.27325267042636 +496.27325267042636 21 -163.77724400000002 +192.50000000000003 31 0.0 0 @@ -10963,15 +11355,15 @@ LINE 8 cut 10 -356.27325267042636 +496.27325267042636 20 -163.77724400000002 +192.50000000000003 30 0.0 11 -356.27325267042636 +496.27325267042636 21 -164.27724400000002 +193.00000000000003 31 0.0 0 @@ -10981,15 +11373,15 @@ LINE 8 cut 10 -356.27325267042636 +496.27325267042636 20 -164.27724400000002 +193.00000000000003 30 0.0 11 -347.77325267042636 +487.7732526704263 21 -164.27724400000002 +193.00000000000003 31 0.0 0 @@ -10999,15 +11391,15 @@ LINE 8 cut 10 -347.77325267042636 +487.7732526704263 20 -164.27724400000002 +193.00000000000003 30 0.0 11 -347.77325267042636 +487.7732526704263 21 -163.77724400000002 +192.50000000000003 31 0.0 0 @@ -11017,15 +11409,15 @@ LINE 8 cut 10 -332.5232526704263 +472.5232526704263 20 -119.3681530909091 +148.09090909090912 30 0.0 11 -337.52325267042636 +477.5232526704263 21 -119.3681530909091 +148.09090909090912 31 0.0 0 @@ -11035,15 +11427,15 @@ LINE 8 cut 10 -337.52325267042636 +477.5232526704263 20 -119.3681530909091 +148.09090909090912 30 0.0 11 -337.52325267042636 +477.5232526704263 21 -130.45906218181818 +159.1818181818182 31 0.0 0 @@ -11053,15 +11445,15 @@ LINE 8 cut 10 -337.52325267042636 +477.5232526704263 20 -130.45906218181818 +159.1818181818182 30 0.0 11 -332.5232526704263 +472.5232526704263 21 -130.45906218181818 +159.1818181818182 31 0.0 0 @@ -11071,15 +11463,15 @@ LINE 8 cut 10 -332.5232526704263 +472.5232526704263 20 -147.0954258181818 +175.81818181818184 30 0.0 11 -337.52325267042636 +477.5232526704263 21 -147.0954258181818 +175.81818181818184 31 0.0 0 @@ -11089,15 +11481,15 @@ LINE 8 cut 10 -337.52325267042636 +477.5232526704263 20 -147.0954258181818 +175.81818181818184 30 0.0 11 -337.52325267042636 +477.5232526704263 21 -158.18633490909093 +186.90909090909093 31 0.0 0 @@ -11107,15 +11499,15 @@ LINE 8 cut 10 -337.52325267042636 +477.5232526704263 20 -158.18633490909093 +186.90909090909093 30 0.0 11 -332.5232526704263 +472.5232526704263 21 -158.18633490909093 +186.90909090909093 31 0.0 0 @@ -11125,15 +11517,15 @@ LINE 8 cut 10 -357.77325267042636 +497.7732526704263 20 -92.27724400000001 +121.00000000000001 30 0.0 11 -361.27325267042636 +501.2732526704263 21 -92.27724400000001 +121.00000000000001 31 0.0 0 @@ -11143,15 +11535,15 @@ LINE 8 cut 10 -361.27325267042636 +501.2732526704263 20 -92.27724400000001 +121.00000000000001 30 0.0 11 -361.27325267042636 +501.2732526704263 21 -100.27724400000001 +129.0 31 0.0 0 @@ -11161,15 +11553,15 @@ LINE 8 cut 10 -361.27325267042636 +501.2732526704263 20 -100.27724400000001 +129.0 30 0.0 11 -357.77325267042636 +497.7732526704263 21 -100.27724400000001 +129.0 31 0.0 0 diff --git a/rocolib/output/BoatWithServoMountAndStack/graph-autofold-graph.dxf b/rocolib/output/BoatWithServoMountAndStack/graph-autofold-graph.dxf index 1cb83f7d6d0970afb5b343d6749e90549a8b5b0e..6441502866b92aa4aeca9bb125218b38f73df4ab 100644 --- a/rocolib/output/BoatWithServoMountAndStack/graph-autofold-graph.dxf +++ b/rocolib/output/BoatWithServoMountAndStack/graph-autofold-graph.dxf @@ -938,40 +938,40 @@ MVIEW } 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -190.0232526704263 +329.02325267042613 20 -96.27724400000001 +125.00000000000001 30 0.0 11 -251.0232526704263 +210.02325267042616 21 -96.27724400000001 +125.00000000000001 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -250.0232526704263 +329.02325267042613 20 -96.27724400000001 +125.00000000000001 30 0.0 11 -251.0232526704263 +390.0232526704262 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -981,15 +981,15 @@ LINE 8 0 10 -250.0232526704263 +390.0232526704262 20 -96.27724400000001 +125.00000000000001 30 0.0 11 -250.0232526704263 +390.0232526704262 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -999,15 +999,15 @@ LINE 8 0 10 -190.0232526704263 +210.02325267042616 20 -96.27724400000001 +125.00000000000001 30 0.0 11 -190.0232526704263 +210.02325267042616 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1019,15 +1019,15 @@ DOTTED 8 0 10 -190.0232526704263 +329.02325267042613 20 -60.1386220008147 +88.86137800081471 30 0.0 11 -251.0232526704263 +390.0232526704262 21 -60.1386220008147 +88.86137800081471 31 0.0 0 @@ -1037,15 +1037,15 @@ LINE 8 0 10 -251.0232526704263 +390.0232526704262 20 -96.27724400000001 +125.00000000000001 30 0.0 11 -251.0232526704263 +390.0232526704262 21 -60.1386220008147 +88.86137800081471 31 0.0 0 @@ -1055,15 +1055,15 @@ LINE 8 0 10 -190.0232526704263 +329.02325267042613 20 -60.1386220008147 +88.86137800081471 30 0.0 11 -190.0232526704263 +329.02325267042613 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1075,15 +1075,15 @@ DOTTED 8 0 10 -251.0232526704263 +390.0232526704262 20 -36.1386220008147 +64.86137800081471 30 0.0 11 -190.0232526704263 +329.02325267042613 21 -36.1386220008147 +64.86137800081471 31 0.0 0 @@ -1095,15 +1095,15 @@ DOTTED 8 0 10 -251.0232526704263 +390.0232526704262 20 -36.1386220008147 +64.86137800081471 30 0.0 11 -251.0232526704263 +390.0232526704262 21 -60.1386220008147 +88.86137800081471 31 0.0 0 @@ -1113,15 +1113,15 @@ LINE 8 0 10 -190.0232526704263 +329.02325267042613 20 -1.6293881799356315e-09 +28.722756001629396 30 0.0 11 -190.0232526704263 +329.02325267042613 21 -36.138622000814706 +64.86137800081472 31 0.0 0 @@ -1131,15 +1131,15 @@ LINE 8 0 10 -251.0232526704263 +390.0232526704262 20 -1.6293881799356315e-09 +28.722756001629396 30 0.0 11 -190.0232526704263 +329.02325267042613 21 -1.6293881799356315e-09 +28.722756001629396 31 0.0 0 @@ -1149,15 +1149,15 @@ LINE 8 0 10 -251.0232526704263 +390.0232526704262 20 -36.138622000814706 +64.86137800081472 30 0.0 11 -251.0232526704263 +390.0232526704262 21 -1.6293881799356315e-09 +28.722756001629396 31 0.0 0 @@ -1167,15 +1167,15 @@ LINE 8 0 10 -261.0232526704263 +400.0232526704262 20 -36.1386220008147 +64.86137800081471 30 0.0 11 -251.0232526704263 +390.0232526704262 21 -36.1386220008147 +64.86137800081471 31 0.0 0 @@ -1185,15 +1185,15 @@ LINE 8 0 10 -261.0232526704263 +400.0232526704262 20 -60.1386220008147 +88.86137800081471 30 0.0 11 -261.0232526704263 +400.0232526704262 21 -36.1386220008147 +64.86137800081471 31 0.0 0 @@ -1203,15 +1203,15 @@ LINE 8 0 10 -251.0232526704263 +390.0232526704262 20 -60.1386220008147 +88.86137800081471 30 0.0 11 -261.0232526704263 +400.0232526704262 21 -60.1386220008147 +88.86137800081471 31 0.0 0 @@ -1221,15 +1221,15 @@ LINE 8 0 10 -180.02325267042627 +319.02325267042613 20 -60.1386220008147 +88.86137800081471 30 0.0 11 -190.0232526704263 +329.02325267042613 21 -60.1386220008147 +88.86137800081471 31 0.0 0 @@ -1239,15 +1239,15 @@ LINE 8 0 10 -180.02325267042627 +319.02325267042613 20 -36.1386220008147 +64.86137800081471 30 0.0 11 -180.02325267042627 +319.02325267042613 21 -60.1386220008147 +88.86137800081471 31 0.0 0 @@ -1257,15 +1257,15 @@ LINE 8 0 10 -190.0232526704263 +329.02325267042613 20 -36.1386220008147 +64.86137800081471 30 0.0 11 -180.02325267042627 +319.02325267042613 21 -36.1386220008147 +64.86137800081471 31 0.0 0 @@ -1275,15 +1275,15 @@ LINE 8 0 10 -166.02325267042627 +186.0232526704262 20 -96.27724400000001 +125.00000000000001 30 0.0 11 -86.02325267042629 +86.02325267042616 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1295,15 +1295,15 @@ DOTTED 8 0 10 -166.02325267042627 +186.0232526704262 20 -96.27724400000001 +125.00000000000001 30 0.0 11 -190.0232526704263 +210.02325267042616 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1313,15 +1313,15 @@ LINE 8 0 10 -250.0232526704263 +390.0232526704262 20 -96.27724400000001 +125.00000000000001 30 0.0 11 -250.0232526704263 +390.0232526704262 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1331,15 +1331,15 @@ LINE 8 0 10 -86.02325267042629 +86.02325267042616 20 -96.27724400000001 +125.00000000000001 30 0.0 11 -86.02325267042629 +86.02325267042616 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1349,15 +1349,35 @@ LINE 8 0 10 -190.0232526704263 +210.02325267042616 + 20 +125.00000000000001 + 30 +0.0 + 11 +210.02325267042616 + 21 +91.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +186.0232526704262 20 -62.277244 +91.0 30 0.0 11 -166.02325267042627 +186.0232526704262 21 -62.277244 +125.00000000000001 31 0.0 0 @@ -1367,15 +1387,15 @@ LINE 8 0 10 -190.0232526704263 +186.0232526704262 20 -96.27724400000001 +55.00000000000001 30 0.0 11 -190.0232526704263 +186.0232526704262 21 -62.277244 +91.0 31 0.0 0 @@ -1387,15 +1407,123 @@ DOTTED 8 0 10 -166.02325267042627 +186.0232526704262 + 20 +55.00000000000001 + 30 +0.0 + 11 +210.02325267042616 + 21 +55.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +210.02325267042616 + 20 +91.0 + 30 +0.0 + 11 +210.02325267042616 + 21 +55.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +210.02325267042616 + 20 +55.00000000000001 + 30 +0.0 + 11 +210.02325267042616 + 21 +5.000000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +186.0232526704262 + 20 +5.000000000000001 + 30 +0.0 + 11 +186.0232526704262 + 21 +55.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +186.0232526704262 + 20 +0.0 + 30 +0.0 + 11 +186.0232526704262 + 21 +5.000000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +210.02325267042616 + 20 +0.0 + 30 +0.0 + 11 +186.0232526704262 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +210.02325267042616 20 -62.277244 +5.000000000000001 30 0.0 11 -166.02325267042627 +210.02325267042616 21 -96.27724400000001 +0.0 31 0.0 0 @@ -1405,15 +1533,15 @@ LINE 8 0 10 -166.02325267042627 +186.0232526704262 20 -62.277244 +91.0 30 0.0 11 -146.02325267042627 +166.0232526704262 21 -62.277244 +91.0 31 0.0 0 @@ -1423,15 +1551,15 @@ LINE 8 0 10 -146.02325267042627 +166.0232526704262 20 -96.27724400000001 +125.00000000000001 30 0.0 11 -166.02325267042627 +186.0232526704262 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1443,15 +1571,15 @@ DOTTED 8 0 10 -146.02325267042627 +166.0232526704262 20 -62.277244 +91.0 30 0.0 11 -146.02325267042627 +166.0232526704262 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1461,15 +1589,15 @@ LINE 8 0 10 -146.02325267042627 +166.0232526704262 20 -62.277244 +91.0 30 0.0 11 -122.02325267042629 +142.02325267042616 21 -62.277244 +91.0 31 0.0 0 @@ -1479,15 +1607,15 @@ LINE 8 0 10 -122.02325267042629 +142.02325267042616 20 -96.27724400000001 +125.00000000000001 30 0.0 11 -146.02325267042627 +166.0232526704262 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1499,15 +1627,15 @@ DOTTED 8 0 10 -122.02325267042629 +142.02325267042616 20 -62.277244 +91.0 30 0.0 11 -122.02325267042629 +142.02325267042616 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1517,15 +1645,15 @@ LINE 8 0 10 -122.02325267042629 +142.02325267042616 20 -62.277244 +91.0 30 0.0 11 -102.02325267042629 +122.02325267042617 21 -62.277244 +91.0 31 0.0 0 @@ -1535,15 +1663,15 @@ LINE 8 0 10 -102.02325267042629 +122.02325267042617 20 -96.27724400000001 +125.00000000000001 30 0.0 11 -122.02325267042629 +142.02325267042616 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1555,15 +1683,15 @@ DOTTED 8 0 10 -102.02325267042629 +122.02325267042617 20 -96.27724400000001 +125.00000000000001 30 0.0 11 -102.02325267042629 +122.02325267042617 21 -62.277244 +91.0 31 0.0 0 @@ -1573,15 +1701,15 @@ LINE 8 0 10 -92.02325267042629 +112.02325267042617 20 -96.27724400000001 +125.00000000000001 30 0.0 11 -102.02325267042629 +122.02325267042617 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1591,15 +1719,15 @@ LINE 8 0 10 -92.02325267042629 +112.02325267042617 20 -62.277244 +91.0 30 0.0 11 -92.02325267042629 +112.02325267042617 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1609,15 +1737,15 @@ LINE 8 0 10 -102.02325267042629 +122.02325267042617 20 -62.277244 +91.0 30 0.0 11 -92.02325267042629 +112.02325267042617 21 -62.277244 +91.0 31 0.0 0 @@ -1629,15 +1757,15 @@ DOTTED 8 0 10 -250.0232526704263 +390.0232526704262 20 -166.27724400000002 +195.00000000000003 30 0.0 11 -86.02325267042629 +86.02325267042616 21 -166.27724400000002 +195.00000000000003 31 0.0 0 @@ -1649,15 +1777,15 @@ DOTTED 8 0 10 -250.0232526704263 +390.0232526704262 20 -166.27724400000002 +195.00000000000003 30 0.0 11 -250.0232526704263 +390.0232526704262 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1669,15 +1797,15 @@ DOTTED 8 0 10 -250.0232526704263 +390.0232526704262 20 -96.27724400000001 +125.00000000000001 30 0.0 11 -320.0232526704263 +460.0232526704262 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1689,15 +1817,15 @@ DOTTED 8 0 10 -250.0232526704263 +390.0232526704262 20 -166.27724400000002 +195.00000000000003 30 0.0 11 -320.0232526704263 +460.0232526704262 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1707,15 +1835,15 @@ LINE 8 0 10 -250.02325267042633 +390.0232526704262 20 -72.94391066666668 +101.66666666666669 30 0.0 11 -250.02325267042633 +390.0232526704262 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1725,15 +1853,15 @@ LINE 8 0 10 -320.0232526704263 +460.0232526704262 20 -72.94391066666668 +101.66666666666669 30 0.0 11 -250.02325267042633 +390.0232526704262 21 -72.94391066666668 +101.66666666666669 31 0.0 0 @@ -1743,15 +1871,15 @@ LINE 8 0 10 -320.0232526704263 +460.0232526704262 20 -96.27724400000001 +125.00000000000001 30 0.0 11 -320.0232526704263 +460.0232526704262 21 -72.94391066666668 +101.66666666666669 31 0.0 0 @@ -1763,15 +1891,15 @@ DOTTED 8 0 10 -250.02325267042633 +390.02325267042625 20 -166.27724400000002 +195.00000000000003 30 0.0 11 -320.02325267042636 +460.0232526704262 21 -166.27724400000002 +195.00000000000003 31 0.0 0 @@ -1781,15 +1909,15 @@ LINE 8 0 10 -320.02325267042636 +460.0232526704262 20 -166.27724400000002 +195.00000000000003 30 0.0 11 -320.0232526704263 +460.0232526704262 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1799,15 +1927,15 @@ LINE 8 0 10 -320.02325267042636 +460.02325267042625 20 -236.277244 +265.00000000000006 30 0.0 11 -320.0232526704263 +460.0232526704262 21 -166.27724400000002 +195.0 31 0.0 0 @@ -1817,15 +1945,15 @@ LINE 8 0 10 -320.0232526704263 +460.0232526704262 20 -196.27724400000002 +245.0 30 0.0 11 -320.02325267042636 +460.02325267042625 21 -236.277244 +265.00000000000006 31 0.0 0 @@ -1837,15 +1965,15 @@ DOTTED 8 0 10 -250.02325267042633 +390.0232526704263 20 -196.27724400000002 +245.00000000000003 30 0.0 11 -250.02325267042633 +390.02325267042625 21 -166.27724400000002 +195.00000000000006 31 0.0 0 @@ -1857,15 +1985,15 @@ DOTTED 8 0 10 -250.0232526704263 +390.0232526704263 20 -226.27724400000002 +295.0 30 0.0 11 -250.0232526704263 +390.0232526704263 21 -196.27724400000002 +245.00000000000003 31 0.0 0 @@ -1877,15 +2005,15 @@ DOTTED 8 0 10 -320.0232526704263 +460.02325267042625 20 -226.27724400000002 +295.0 30 0.0 11 -250.02325267042633 +390.0232526704263 21 -226.27724400000002 +295.0 31 0.0 0 @@ -1895,15 +2023,15 @@ LINE 8 0 10 -320.0232526704263 +460.02325267042625 20 -156.27724400000005 +225.00000000000003 30 0.0 11 -320.0232526704263 +460.02325267042625 21 -196.27724400000002 +245.00000000000003 31 0.0 0 @@ -1913,15 +2041,15 @@ LINE 8 0 10 -320.0232526704263 +460.02325267042625 20 -226.27724400000002 +295.0 30 0.0 11 -320.0232526704263 +460.02325267042625 21 -156.27724400000005 +225.00000000000003 31 0.0 0 @@ -1931,15 +2059,15 @@ LINE 8 0 10 -320.0232526704263 +460.02325267042625 20 -296.277244 +365.0 30 0.0 11 -320.0232526704263 +460.02325267042625 21 -226.27724400000002 +295.0 31 0.0 0 @@ -1951,15 +2079,15 @@ DOTTED 8 0 10 -320.0232526704263 +460.02325267042625 20 -296.277244 +365.0 30 0.0 11 -250.02325267042633 +390.0232526704263 21 -226.27724400000002 +295.0 31 0.0 0 @@ -1971,15 +2099,15 @@ DOTTED 8 0 10 -250.02325267042633 +390.0232526704263 20 -296.277244 +365.00000000000006 30 0.0 11 -250.0232526704263 +390.0232526704263 21 -226.27724400000002 +295.0 31 0.0 0 @@ -1991,15 +2119,15 @@ DOTTED 8 0 10 -320.0232526704263 +460.02325267042625 20 -296.277244 +365.0 30 0.0 11 -250.02325267042633 +390.0232526704263 21 -296.277244 +365.00000000000006 31 0.0 0 @@ -2011,15 +2139,15 @@ DOTTED 8 0 10 -250.0232526704263 +390.0232526704263 20 -226.27724399999997 +295.0 30 0.0 11 -86.02325267042632 +86.02325267042634 21 -226.27724400000005 +295.0000000000001 31 0.0 0 @@ -2031,15 +2159,15 @@ DOTTED 8 0 10 -190.02325267042633 +210.02325267042633 20 -296.277244 +365.0000000000001 30 0.0 11 -166.0232526704263 +186.02325267042636 21 -296.277244 +365.00000000000017 31 0.0 0 @@ -2051,13 +2179,13 @@ LINE 10 86.02325267042634 20 -296.277244 +365.00000000000017 30 0.0 11 -166.0232526704263 +186.02325267042636 21 -296.277244 +365.00000000000017 31 0.0 0 @@ -2069,13 +2197,13 @@ LINE 10 86.02325267042634 20 -296.277244 +365.00000000000017 30 0.0 11 86.02325267042634 21 -296.277244 +365.00000000000017 31 0.0 0 @@ -2085,15 +2213,15 @@ LINE 8 0 10 -250.02325267042633 +390.0232526704263 20 -296.277244 +365.00000000000006 30 0.0 11 -250.02325267042633 +390.0232526704263 21 -296.277244 +365.00000000000006 31 0.0 0 @@ -2103,15 +2231,15 @@ LINE 8 0 10 -251.02325267042633 +210.02325267042633 20 -296.277244 +365.0000000000001 30 0.0 11 -250.02325267042633 +329.02325267042636 21 -296.277244 +365.00000000000006 31 0.0 0 @@ -2121,15 +2249,15 @@ LINE 8 0 10 -190.02325267042633 +210.02325267042633 20 -296.277244 +365.0000000000001 30 0.0 11 -190.02325267042633 +210.02325267042633 21 -296.277244 +365.0000000000001 31 0.0 0 @@ -2139,15 +2267,15 @@ LINE 8 0 10 -250.02325267042633 +390.0232526704263 20 -296.277244 +365.00000000000006 30 0.0 11 -250.02325267042633 +390.0232526704263 21 -296.277244 +365.00000000000006 31 0.0 0 @@ -2157,15 +2285,15 @@ LINE 8 0 10 -251.02325267042633 +390.0232526704263 20 -306.277244 +375.00000000000006 30 0.0 11 -251.02325267042633 +390.0232526704263 21 -296.277244 +365.00000000000006 31 0.0 0 @@ -2175,15 +2303,15 @@ LINE 8 0 10 -190.02325267042633 +329.02325267042636 20 -306.277244 +375.00000000000006 30 0.0 11 -251.02325267042633 +390.0232526704263 21 -306.277244 +375.00000000000006 31 0.0 0 @@ -2193,15 +2321,15 @@ LINE 8 0 10 -190.02325267042633 +329.02325267042636 20 -296.277244 +365.00000000000006 30 0.0 11 -190.02325267042633 +329.02325267042636 21 -306.277244 +375.00000000000006 31 0.0 0 @@ -2211,15 +2339,35 @@ LINE 8 0 10 -190.02325267042636 +210.02325267042636 20 -330.27724400000005 +399.0000000000001 30 0.0 11 -190.02325267042633 +210.02325267042633 21 -296.277244 +365.0000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +186.02325267042633 + 20 +365.0000000000001 + 30 +0.0 + 11 +186.02325267042636 + 21 +399.0000000000001 31 0.0 0 @@ -2229,15 +2377,15 @@ LINE 8 0 10 -166.02325267042633 +210.02325267042636 20 -330.27724400000005 +435.0000000000001 30 0.0 11 -190.02325267042636 +210.02325267042636 21 -330.27724400000005 +399.0000000000001 31 0.0 0 @@ -2249,15 +2397,15 @@ DOTTED 8 0 10 -166.0232526704263 +210.02325267042636 20 -296.277244 +435.0000000000001 30 0.0 11 -166.02325267042633 +186.0232526704264 21 -330.27724400000005 +435.0000000000001 31 0.0 0 @@ -2267,15 +2415,69 @@ LINE 8 0 10 -166.0232526704263 +186.02325267042636 + 20 +399.0000000000001 + 30 +0.0 + 11 +186.0232526704264 + 21 +435.0000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +186.0232526704264 + 20 +435.0000000000001 + 30 +0.0 + 11 +186.0232526704264 + 21 +485.0000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +210.0232526704264 + 20 +485.0000000000001 + 30 +0.0 + 11 +210.02325267042636 + 21 +435.0000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +186.0232526704264 20 -296.277244 +485.0000000000001 30 0.0 11 -146.0232526704263 +210.0232526704264 21 -296.277244 +485.0000000000001 31 0.0 0 @@ -2285,15 +2487,33 @@ LINE 8 0 10 -146.02325267042636 +186.02325267042633 20 -330.27724400000005 +365.0000000000001 30 0.0 11 +166.0232526704263 + 21 +365.0000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 166.02325267042633 + 20 +399.0000000000001 + 30 +0.0 + 11 +186.02325267042636 21 -330.27724400000005 +399.0000000000001 31 0.0 0 @@ -2305,15 +2525,15 @@ DOTTED 8 0 10 -146.0232526704263 +166.0232526704263 20 -296.277244 +365.0000000000001 30 0.0 11 -146.02325267042636 +166.02325267042633 21 -330.27724400000005 +399.0000000000001 31 0.0 0 @@ -2323,15 +2543,15 @@ LINE 8 0 10 -146.0232526704263 +166.0232526704263 20 -296.277244 +365.0000000000001 30 0.0 11 -122.02325267042633 +142.02325267042633 21 -296.277244 +365.0000000000001 31 0.0 0 @@ -2341,15 +2561,15 @@ LINE 8 0 10 -122.02325267042634 +142.02325267042636 20 -330.27724400000005 +399.0000000000001 30 0.0 11 -146.02325267042636 +166.02325267042633 21 -330.27724400000005 +399.0000000000001 31 0.0 0 @@ -2361,15 +2581,15 @@ DOTTED 8 0 10 -122.02325267042633 +142.02325267042633 20 -296.277244 +365.0000000000001 30 0.0 11 -122.02325267042634 +142.02325267042636 21 -330.27724400000005 +399.0000000000001 31 0.0 0 @@ -2379,15 +2599,15 @@ LINE 8 0 10 -122.02325267042634 +142.02325267042633 20 -296.277244 +365.0000000000001 30 0.0 11 -102.02325267042634 +122.02325267042634 21 -296.277244 +365.0000000000001 31 0.0 0 @@ -2397,15 +2617,15 @@ LINE 8 0 10 -102.02325267042634 +122.02325267042636 20 -330.27724400000005 +399.0000000000001 30 0.0 11 -122.02325267042634 +142.02325267042636 21 -330.27724400000005 +399.0000000000001 31 0.0 0 @@ -2417,15 +2637,15 @@ DOTTED 8 0 10 -102.02325267042634 +122.02325267042636 20 -330.27724400000005 +399.0000000000001 30 0.0 11 -102.02325267042634 +122.02325267042634 21 -296.277244 +365.0000000000001 31 0.0 0 @@ -2435,15 +2655,15 @@ LINE 8 0 10 -92.02325267042633 +112.02325267042634 20 -330.27724400000005 +399.0000000000001 30 0.0 11 -102.02325267042634 +122.02325267042634 21 -330.27724400000005 +399.0000000000001 31 0.0 0 @@ -2453,15 +2673,15 @@ LINE 8 0 10 -92.02325267042632 +112.02325267042633 20 -296.277244 +365.0000000000001 30 0.0 11 -92.02325267042633 +112.02325267042634 21 -330.27724400000005 +399.0000000000001 31 0.0 0 @@ -2471,15 +2691,15 @@ LINE 8 0 10 -102.02325267042633 +122.02325267042633 20 -296.277244 +365.0000000000001 30 0.0 11 -92.02325267042632 +112.02325267042633 21 -296.277244 +365.0000000000001 31 0.0 0 @@ -2491,15 +2711,15 @@ DOTTED 8 0 10 -86.02325267042632 +86.0232526704263 20 -226.27724400000008 +295.00000000000017 30 0.0 11 86.02325267042634 21 -296.27724400000005 +365.00000000000017 31 0.0 0 @@ -2513,13 +2733,13 @@ DOTTED 10 86.02325267042634 20 -296.277244 +365.00000000000017 30 0.0 11 -37.52421865697312 +32.42924173922606 21 -296.27724400000005 +365.0000000000002 31 0.0 0 @@ -2533,13 +2753,13 @@ DOTTED 10 86.02325267042632 20 -226.27724400000008 +295.00000000000017 30 0.0 11 -37.52421865697312 +32.42924173922606 21 -296.27724400000005 +365.0000000000002 31 0.0 0 @@ -2551,13 +2771,13 @@ LINE 10 86.02325267042634 20 -312.44358867115113 +382.8646703104003 30 0.0 11 86.02325267042634 21 -296.277244 +365.00000000000017 31 0.0 0 @@ -2567,15 +2787,15 @@ LINE 8 0 10 -37.52421865697312 +32.42924173922606 20 -312.44358867115113 +382.8646703104003 30 0.0 11 86.02325267042634 21 -312.44358867115113 +382.8646703104003 31 0.0 0 @@ -2585,15 +2805,15 @@ LINE 8 0 10 -37.52421865697312 +32.42924173922606 20 -296.27724400000005 +365.0000000000002 30 0.0 11 -37.52421865697312 +32.42924173922606 21 -312.44358867115113 +382.8646703104003 31 0.0 0 @@ -2605,15 +2825,15 @@ DOTTED 8 0 10 -86.02325267042633 +86.02325267042632 20 -226.27724400000005 +295.00000000000017 30 0.0 11 -20.485430034662475 +18.447362619882885 21 -250.8697998688633 +313.2619572849372 31 0.0 0 @@ -2623,15 +2843,15 @@ LINE 8 0 10 -20.485430034662475 +18.447362619882885 20 -250.8697998688633 +313.2619572849372 30 0.0 11 -37.52421865697312 +32.42924173922606 21 -296.27724400000005 +365.0000000000002 31 0.0 0 @@ -2641,15 +2861,15 @@ LINE 8 0 10 -3.4466414123517666 +4.465483500539649 20 -205.46235573772654 +261.5239145698741 30 0.0 11 -20.485430034662446 +18.447362619882853 21 -250.8697998688633 +313.2619572849372 31 0.0 0 @@ -2661,13 +2881,13 @@ LINE 10 0.0 20 -196.27724400000008 +245.00000000000028 30 0.0 11 -3.4466414123517666 +4.465483500539649 21 -205.46235573772654 +261.5239145698741 31 0.0 0 @@ -2681,13 +2901,13 @@ DOTTED 10 0.0 20 -196.27724400000008 +245.00000000000028 30 0.0 11 86.0232526704263 21 -226.27724400000005 +295.0000000000001 31 0.0 0 @@ -2699,15 +2919,15 @@ DOTTED 8 0 10 -86.02325267042629 +86.02325267042627 20 -196.27724400000005 +245.0000000000002 30 0.0 11 -86.0232526704263 +86.02325267042632 21 -226.27724400000008 +295.0000000000001 31 0.0 0 @@ -2719,15 +2939,15 @@ DOTTED 8 0 10 -86.02325267042627 +86.02325267042623 20 -166.27724400000005 +195.00000000000017 30 0.0 11 -86.02325267042629 +86.02325267042627 21 -196.27724400000002 +245.0000000000002 31 0.0 0 @@ -2739,15 +2959,15 @@ DOTTED 8 0 10 -2.8421709430404014e-14 +0.0 20 -196.27724400000008 +245.00000000000026 30 0.0 11 -86.02325267042629 +86.02325267042623 21 -166.27724400000005 +195.00000000000017 31 0.0 0 @@ -2759,15 +2979,15 @@ DOTTED 8 0 10 -20.485430034662386 +18.447362619882743 20 -141.68468813113688 +176.73804271506336 30 0.0 11 -86.02325267042626 +86.02325267042623 21 -166.27724400000008 +195.00000000000017 31 0.0 0 @@ -2777,15 +2997,15 @@ LINE 8 0 10 -3.4466414123517386 +4.465483500539619 20 -187.09213226227365 +228.47608543012643 30 0.0 11 0.0 21 -196.27724400000008 +245.00000000000026 31 0.0 0 @@ -2795,15 +3015,15 @@ LINE 8 0 10 -20.485430034662386 +18.447362619882743 20 -141.68468813113688 +176.73804271506336 30 0.0 11 -3.4466414123517386 +4.465483500539619 21 -187.09213226227365 +228.47608543012643 31 0.0 0 @@ -2813,15 +3033,15 @@ LINE 8 0 10 -37.52421865697301 +32.42924173922586 20 -96.27724400000005 +125.00000000000027 30 0.0 11 -20.485430034662386 +18.447362619882743 21 -141.68468813113688 +176.73804271506336 31 0.0 0 @@ -2833,15 +3053,15 @@ DOTTED 8 0 10 -37.52421865697301 +32.42924173922586 20 -96.27724400000005 +125.00000000000027 30 0.0 11 -86.02325267042626 +86.02325267042623 21 -166.27724400000008 +195.00000000000017 31 0.0 0 @@ -2853,15 +3073,15 @@ DOTTED 8 0 10 -86.02325267042627 +86.02325267042613 20 -96.27724400000004 +125.00000000000021 30 0.0 11 -86.0232526704263 +86.0232526704262 21 -166.27724400000008 +195.00000000000017 31 0.0 0 @@ -2873,15 +3093,15 @@ DOTTED 8 0 10 -37.52421865697304 +32.42924173922586 20 -96.27724400000005 +125.00000000000027 30 0.0 11 -86.02325267042627 +86.02325267042613 21 -96.27724400000004 +125.00000000000021 31 0.0 0 @@ -2891,15 +3111,15 @@ LINE 8 0 10 -37.52421865697304 +32.42924173922584 20 -80.110899328849 +107.13532968960016 30 0.0 11 -37.52421865697304 +32.42924173922586 21 -96.27724400000005 +125.00000000000027 31 0.0 0 @@ -2909,15 +3129,15 @@ LINE 8 0 10 -86.02325267042627 +86.02325267042612 20 -80.11089932884899 +107.13532968960011 30 0.0 11 -37.52421865697304 +32.42924173922584 21 -80.110899328849 +107.13532968960016 31 0.0 0 @@ -2927,15 +3147,177 @@ LINE 8 0 10 -86.02325267042627 +86.02325267042613 20 -96.27724400000004 +125.00000000000021 30 0.0 11 -86.02325267042627 +86.02325267042612 + 21 +107.13532968960011 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +460.02325267042625 + 20 +388.3333333333333 + 30 +0.0 + 11 +460.02325267042625 + 21 +365.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +390.0232526704263 + 20 +388.33333333333337 + 30 +0.0 + 11 +460.02325267042625 + 21 +388.3333333333333 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +390.0232526704263 + 20 +365.00000000000006 + 30 +0.0 + 11 +390.0232526704263 + 21 +388.33333333333337 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +347.02325267042613 + 20 +70.3613780008147 + 30 +0.0 + 11 +358.0232526704262 + 21 +70.3613780008147 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +358.0232526704262 + 20 +70.3613780008147 + 30 +0.0 + 11 +358.0232526704262 + 21 +83.36137800081471 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +358.0232526704262 + 20 +83.36137800081471 + 30 +0.0 + 11 +347.02325267042613 + 21 +83.36137800081471 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +347.02325267042613 + 20 +83.36137800081471 + 30 +0.0 + 11 +347.02325267042613 + 21 +70.3613780008147 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +378.52325267042613 + 20 +71.86137800081471 + 30 +0.0 + 11 +384.5232526704262 + 21 +71.86137800081471 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +384.5232526704262 + 20 +71.86137800081471 + 30 +0.0 + 11 +384.5232526704262 21 -80.11089932884899 +81.86137800081471 31 0.0 0 @@ -2945,15 +3327,15 @@ LINE 8 0 10 -320.0232526704263 +384.5232526704262 20 -319.61057733333325 +81.86137800081471 30 0.0 11 -320.0232526704263 +378.52325267042613 21 -296.277244 +81.86137800081471 31 0.0 0 @@ -2963,15 +3345,15 @@ LINE 8 0 10 -250.02325267042633 +378.52325267042613 20 -319.61057733333325 +81.86137800081471 30 0.0 11 -320.0232526704263 +378.52325267042613 21 -319.61057733333325 +71.86137800081471 31 0.0 0 @@ -2981,15 +3363,15 @@ LINE 8 0 10 -250.02325267042633 +351.45507085224443 20 -296.277244 +36.47275600162939 30 0.0 11 -250.02325267042633 +339.8641617613353 21 -319.61057733333325 +36.47275600162939 31 0.0 0 @@ -2999,15 +3381,15 @@ LINE 8 0 10 -208.0232526704263 +339.8641617613353 20 -41.63862200081469 +36.47275600162939 30 0.0 11 -219.0232526704263 +339.8641617613353 21 -41.63862200081469 +35.9727560016294 31 0.0 0 @@ -3017,15 +3399,15 @@ LINE 8 0 10 -219.0232526704263 +339.8641617613353 20 -41.63862200081469 +35.9727560016294 30 0.0 11 -219.0232526704263 +351.45507085224443 21 -54.63862200081469 +35.9727560016294 31 0.0 0 @@ -3035,15 +3417,15 @@ LINE 8 0 10 -219.0232526704263 +351.45507085224443 20 -54.63862200081469 +35.9727560016294 30 0.0 11 -208.0232526704263 +351.45507085224443 21 -54.63862200081469 +36.47275600162939 31 0.0 0 @@ -3053,15 +3435,15 @@ LINE 8 0 10 -208.0232526704263 +379.18234357951707 20 -54.63862200081469 +36.47275600162939 30 0.0 11 -208.0232526704263 +367.591434488608 21 -41.63862200081469 +36.47275600162939 31 0.0 0 @@ -3071,15 +3453,15 @@ LINE 8 0 10 -239.5232526704263 +367.591434488608 20 -43.1386220008147 +36.47275600162939 30 0.0 11 -245.5232526704263 +367.591434488608 21 -43.1386220008147 +35.9727560016294 31 0.0 0 @@ -3089,15 +3471,15 @@ LINE 8 0 10 -245.5232526704263 +367.591434488608 20 -43.1386220008147 +35.9727560016294 30 0.0 11 -245.5232526704263 +379.18234357951707 21 -53.1386220008147 +35.9727560016294 31 0.0 0 @@ -3107,15 +3489,15 @@ LINE 8 0 10 -245.5232526704263 +379.18234357951707 20 -53.1386220008147 +35.9727560016294 30 0.0 11 -239.5232526704263 +379.18234357951707 21 -53.1386220008147 +36.47275600162939 31 0.0 0 @@ -3125,15 +3507,15 @@ LINE 8 0 10 -239.5232526704263 +397.5232526704262 20 -53.1386220008147 +80.86137800081471 30 0.0 11 -239.5232526704263 +392.52325267042613 21 -43.1386220008147 +80.86137800081471 31 0.0 0 @@ -3143,15 +3525,15 @@ LINE 8 0 10 -212.4550708522445 +392.52325267042613 20 -7.750000001629389 +80.86137800081471 30 0.0 11 -200.8641617613354 +392.52325267042613 21 -7.750000001629389 +72.86137800081471 31 0.0 0 @@ -3161,15 +3543,15 @@ LINE 8 0 10 -200.8641617613354 +392.52325267042613 20 -7.750000001629389 +72.86137800081471 30 0.0 11 -200.8641617613354 +397.5232526704262 21 -7.250000001629389 +72.86137800081471 31 0.0 0 @@ -3179,15 +3561,15 @@ LINE 8 0 10 -200.8641617613354 +321.5232526704262 20 -7.250000001629389 +72.86137800081471 30 0.0 11 -212.4550708522445 +326.5232526704262 21 -7.250000001629389 +72.86137800081471 31 0.0 0 @@ -3197,15 +3579,15 @@ LINE 8 0 10 -212.4550708522445 +326.5232526704262 20 -7.250000001629389 +72.86137800081471 30 0.0 11 -212.4550708522445 +326.5232526704262 21 -7.750000001629389 +80.86137800081471 31 0.0 0 @@ -3215,15 +3597,15 @@ LINE 8 0 10 -240.1823435795172 +326.5232526704262 20 -7.750000001629389 +80.86137800081471 30 0.0 11 -228.59143448860814 +321.5232526704262 21 -7.750000001629389 +80.86137800081471 31 0.0 0 @@ -3233,15 +3615,15 @@ LINE 8 0 10 -228.59143448860814 +202.2732526704262 20 -7.750000001629389 +113.91666666666669 30 0.0 11 -228.59143448860814 +202.2732526704262 21 -7.250000001629389 +102.08333333333336 31 0.0 0 @@ -3251,15 +3633,15 @@ LINE 8 0 10 -228.59143448860814 +202.2732526704262 20 -7.250000001629389 +102.08333333333336 30 0.0 11 -240.1823435795172 +202.7732526704262 21 -7.250000001629389 +102.08333333333336 31 0.0 0 @@ -3269,15 +3651,15 @@ LINE 8 0 10 -240.1823435795172 +202.7732526704262 20 -7.250000001629389 +102.08333333333336 30 0.0 11 -240.1823435795172 +202.7732526704262 21 -7.750000001629389 +113.91666666666669 31 0.0 0 @@ -3287,15 +3669,15 @@ LINE 8 0 10 -258.5232526704263 +202.7732526704262 20 -52.1386220008147 +113.91666666666669 30 0.0 11 -253.5232526704263 +202.2732526704262 21 -52.1386220008147 +113.91666666666669 31 0.0 0 @@ -3305,15 +3687,15 @@ LINE 8 0 10 -253.5232526704263 +202.0232526704262 20 -52.1386220008147 +1.2500000000000002 30 0.0 11 -253.5232526704263 +204.5232526704262 21 -44.1386220008147 +1.2500000000000002 31 0.0 0 @@ -3323,15 +3705,15 @@ LINE 8 0 10 -253.5232526704263 +204.5232526704262 20 -44.1386220008147 +1.2500000000000002 30 0.0 11 -258.5232526704263 +202.0232526704262 21 -44.1386220008147 +3.7500000000000004 31 0.0 0 @@ -3341,15 +3723,15 @@ LINE 8 0 10 -182.5232526704263 +202.0232526704262 20 -44.1386220008147 +3.7500000000000004 30 0.0 11 -187.5232526704263 +194.02325267042616 21 -44.1386220008147 +3.7500000000000004 31 0.0 0 @@ -3359,15 +3741,15 @@ LINE 8 0 10 -187.5232526704263 +194.02325267042616 20 -44.1386220008147 +3.7500000000000004 30 0.0 11 -187.5232526704263 +191.52325267042616 21 -52.1386220008147 +1.2500000000000002 31 0.0 0 @@ -3377,15 +3759,15 @@ LINE 8 0 10 -187.5232526704263 +191.52325267042616 20 -52.1386220008147 +1.2500000000000002 30 0.0 11 -182.5232526704263 +194.02325267042616 21 -52.1386220008147 +1.2500000000000002 31 0.0 0 @@ -3395,15 +3777,15 @@ LINE 8 0 10 -182.27325267042627 +167.02325267042616 20 -85.19391066666667 +102.00000000000001 30 0.0 11 -182.27325267042627 +171.02325267042616 21 -73.36057733333335 +102.00000000000001 31 0.0 0 @@ -3413,15 +3795,15 @@ LINE 8 0 10 -182.27325267042627 +171.02325267042616 20 -73.36057733333335 +102.00000000000001 30 0.0 11 -182.7732526704263 +171.02325267042616 21 -73.36057733333335 +114.00000000000001 31 0.0 0 @@ -3431,15 +3813,15 @@ LINE 8 0 10 -182.7732526704263 +171.02325267042616 20 -73.36057733333335 +114.00000000000001 30 0.0 11 -182.7732526704263 +167.02325267042616 21 -85.19391066666667 +114.00000000000001 31 0.0 0 @@ -3449,15 +3831,15 @@ LINE 8 0 10 -182.7732526704263 +167.02325267042616 20 -85.19391066666667 +114.00000000000001 30 0.0 11 -182.27325267042627 +167.02325267042616 21 -85.19391066666667 +102.00000000000001 31 0.0 0 @@ -3467,15 +3849,15 @@ LINE 8 0 10 -147.0232526704263 +179.0232526704262 20 -73.27724400000001 +103.5 30 0.0 11 -151.0232526704263 +183.0232526704262 21 -73.27724400000001 +103.5 31 0.0 0 @@ -3485,15 +3867,15 @@ LINE 8 0 10 -151.0232526704263 +183.0232526704262 20 -73.27724400000001 +103.5 30 0.0 11 -151.0232526704263 +183.0232526704262 21 -85.27724400000001 +112.50000000000001 31 0.0 0 @@ -3503,15 +3885,15 @@ LINE 8 0 10 -151.0232526704263 +183.0232526704262 20 -85.27724400000001 +112.50000000000001 30 0.0 11 -147.0232526704263 +179.0232526704262 21 -85.27724400000001 +112.50000000000001 31 0.0 0 @@ -3521,15 +3903,15 @@ LINE 8 0 10 -147.0232526704263 +179.0232526704262 20 -85.27724400000001 +112.50000000000001 30 0.0 11 -147.0232526704263 +179.0232526704262 21 -73.27724400000001 +103.5 31 0.0 0 @@ -3539,15 +3921,15 @@ LINE 8 0 10 -159.02325267042627 +142.5232526704262 20 -74.777244 +102.00000000000001 30 0.0 11 -163.0232526704263 +165.5232526704262 21 -74.777244 +102.00000000000001 31 0.0 0 @@ -3557,15 +3939,15 @@ LINE 8 0 10 -163.0232526704263 +165.5232526704262 20 -74.777244 +102.00000000000001 30 0.0 11 -163.0232526704263 +165.5232526704262 21 -83.777244 +114.00000000000001 31 0.0 0 @@ -3575,15 +3957,15 @@ LINE 8 0 10 -163.0232526704263 +165.5232526704262 20 -83.777244 +114.00000000000001 30 0.0 11 -159.02325267042627 +142.5232526704262 21 -83.777244 +114.00000000000001 31 0.0 0 @@ -3593,15 +3975,15 @@ LINE 8 0 10 -159.02325267042627 +142.5232526704262 20 -83.777244 +114.00000000000001 30 0.0 11 -159.02325267042627 +142.5232526704262 21 -74.777244 +102.00000000000001 31 0.0 0 @@ -3611,15 +3993,15 @@ LINE 8 0 10 -122.52325267042629 +137.02325267042616 20 -73.27724400000001 +102.00000000000001 30 0.0 11 -145.52325267042627 +141.0232526704262 21 -73.27724400000001 +102.00000000000001 31 0.0 0 @@ -3629,15 +4011,15 @@ LINE 8 0 10 -145.52325267042627 +141.0232526704262 20 -73.27724400000001 +102.00000000000001 30 0.0 11 -145.52325267042627 +141.0232526704262 21 -85.27724400000001 +114.00000000000001 31 0.0 0 @@ -3647,15 +4029,15 @@ LINE 8 0 10 -145.52325267042627 +141.0232526704262 20 -85.27724400000001 +114.00000000000001 30 0.0 11 -122.52325267042629 +137.02325267042616 21 -85.27724400000001 +114.00000000000001 31 0.0 0 @@ -3665,15 +4047,15 @@ LINE 8 0 10 -122.52325267042629 +137.02325267042616 20 -85.27724400000001 +114.00000000000001 30 0.0 11 -122.52325267042629 +137.02325267042616 21 -73.27724400000001 +102.00000000000001 31 0.0 0 @@ -3683,15 +4065,15 @@ LINE 8 0 10 -117.02325267042629 +114.52325267042617 20 -73.27724400000001 +102.33333333333334 30 0.0 11 -121.02325267042629 +119.52325267042617 21 -73.27724400000001 +102.33333333333334 31 0.0 0 @@ -3701,15 +4083,15 @@ LINE 8 0 10 -121.02325267042629 +119.52325267042617 20 -73.27724400000001 +102.33333333333334 30 0.0 11 -121.02325267042629 +119.52325267042617 21 -85.27724400000001 +113.66666666666669 31 0.0 0 @@ -3719,15 +4101,15 @@ LINE 8 0 10 -121.02325267042629 +119.52325267042617 20 -85.27724400000001 +113.66666666666669 30 0.0 11 -117.02325267042629 +114.52325267042617 21 -85.27724400000001 +113.66666666666669 31 0.0 0 @@ -3737,15 +4119,15 @@ LINE 8 0 10 -117.02325267042629 +436.68991933709293 20 -85.27724400000001 +107.50000000000001 30 0.0 11 -117.02325267042629 +436.68991933709293 21 -73.27724400000001 +119.16666666666669 31 0.0 0 @@ -3755,15 +4137,15 @@ LINE 8 0 10 -94.52325267042627 +436.68991933709293 20 -73.61057733333334 +119.16666666666669 30 0.0 11 -99.52325267042629 +413.35658600375956 21 -73.61057733333334 +119.16666666666669 31 0.0 0 @@ -3773,15 +4155,15 @@ LINE 8 0 10 -99.52325267042629 +413.35658600375956 20 -73.61057733333334 +119.16666666666669 30 0.0 11 -99.52325267042629 +413.35658600375956 21 -84.94391066666667 +107.50000000000001 31 0.0 0 @@ -3791,15 +4173,15 @@ LINE 8 0 10 -99.52325267042629 +442.27325267042625 20 -84.94391066666667 +241.91666666666666 30 0.0 11 -94.52325267042627 +442.27325267042625 21 -84.94391066666667 +218.08333333333334 31 0.0 0 @@ -3809,15 +4191,15 @@ LINE 8 0 10 -296.68991933709293 +442.27325267042625 20 -78.77724400000001 +218.08333333333334 30 0.0 11 -296.68991933709293 +442.77325267042625 21 -90.44391066666668 +218.08333333333334 31 0.0 0 @@ -3827,15 +4209,15 @@ LINE 8 0 10 -296.68991933709293 +442.77325267042625 20 -90.44391066666668 +218.08333333333334 30 0.0 11 -273.3565860037596 +442.77325267042625 21 -90.44391066666668 +241.91666666666666 31 0.0 0 @@ -3845,15 +4227,15 @@ LINE 8 0 10 -273.3565860037596 +442.77325267042625 20 -90.44391066666668 +241.91666666666666 30 0.0 11 -273.3565860037596 +442.27325267042625 21 -78.77724400000001 +241.91666666666666 31 0.0 0 @@ -3863,15 +4245,15 @@ LINE 8 0 10 -302.27325267042636 +442.2732526704263 20 -213.19391066666668 +271.9166666666667 30 0.0 11 -302.2732526704263 +442.2732526704263 21 -189.36057733333334 +248.08333333333337 31 0.0 0 @@ -3881,15 +4263,15 @@ LINE 8 0 10 -302.2732526704263 +442.2732526704263 20 -189.36057733333334 +248.08333333333337 30 0.0 11 -302.7732526704263 +442.7732526704263 21 -189.36057733333334 +248.08333333333337 31 0.0 0 @@ -3899,15 +4281,15 @@ LINE 8 0 10 -302.7732526704263 +442.7732526704263 20 -189.36057733333334 +248.08333333333337 30 0.0 11 -302.77325267042636 +442.7732526704263 21 -213.19391066666668 +271.9166666666667 31 0.0 0 @@ -3917,15 +4299,15 @@ LINE 8 0 10 -302.77325267042636 +442.7732526704263 20 -213.19391066666668 +271.9166666666667 30 0.0 11 -302.27325267042636 +442.2732526704263 21 -213.19391066666668 +271.9166666666667 31 0.0 0 @@ -3935,15 +4317,15 @@ LINE 8 0 10 -302.27325267042636 +340.11416176133537 20 -203.19391066666668 +372.50000000000006 30 0.0 11 -302.27325267042636 +340.11416176133537 21 -179.3605773333334 +367.50000000000006 31 0.0 0 @@ -3953,15 +4335,15 @@ LINE 8 0 10 -302.27325267042636 +340.11416176133537 20 -179.3605773333334 +367.50000000000006 30 0.0 11 -302.77325267042636 +351.20507085224455 21 -179.3605773333334 +367.50000000000006 31 0.0 0 @@ -3971,15 +4353,15 @@ LINE 8 0 10 -302.77325267042636 +351.20507085224455 20 -179.3605773333334 +367.50000000000006 30 0.0 11 -302.77325267042636 +351.20507085224455 21 -203.19391066666668 +372.50000000000006 31 0.0 0 @@ -3989,15 +4371,15 @@ LINE 8 0 10 -302.77325267042636 +367.8414344886082 20 -203.19391066666668 +372.50000000000006 30 0.0 11 -302.27325267042636 +367.8414344886082 21 -203.19391066666668 +367.50000000000006 31 0.0 0 @@ -4007,15 +4389,15 @@ LINE 8 0 10 -201.1141617613354 +367.8414344886082 20 -303.77724400000005 +367.50000000000006 30 0.0 11 -201.1141617613354 +378.9323435795172 21 -298.77724400000005 +367.50000000000006 31 0.0 0 @@ -4025,15 +4407,15 @@ LINE 8 0 10 -201.1141617613354 +378.9323435795172 20 -298.77724400000005 +367.50000000000006 30 0.0 11 -212.20507085224452 +378.9323435795172 21 -298.77724400000005 +372.50000000000006 31 0.0 0 @@ -4043,15 +4425,15 @@ LINE 8 0 10 -212.20507085224452 +202.27325267042633 20 -298.77724400000005 +387.9166666666668 30 0.0 11 -212.20507085224452 +202.27325267042633 21 -303.77724400000005 +376.0833333333334 31 0.0 0 @@ -4061,15 +4443,15 @@ LINE 8 0 10 -228.84143448860814 +202.27325267042633 20 -303.77724400000005 +376.0833333333334 30 0.0 11 -228.84143448860814 +202.77325267042633 21 -298.77724400000005 +376.0833333333334 31 0.0 0 @@ -4079,15 +4461,15 @@ LINE 8 0 10 -228.84143448860814 +202.77325267042633 20 -298.77724400000005 +376.0833333333334 30 0.0 11 -239.93234357951724 +202.77325267042636 21 -298.77724400000005 +387.9166666666668 31 0.0 0 @@ -4097,15 +4479,15 @@ LINE 8 0 10 -239.93234357951724 +202.77325267042636 20 -298.77724400000005 +387.9166666666668 30 0.0 11 -239.93234357951724 +202.27325267042633 21 -303.77724400000005 +387.9166666666668 31 0.0 0 @@ -4115,15 +4497,15 @@ LINE 8 0 10 -182.27325267042636 +193.7732526704264 20 -319.1939106666666 +481.0000000000001 30 0.0 11 -182.2732526704263 +202.27325267042636 21 -307.3605773333334 +481.0000000000001 31 0.0 0 @@ -4133,15 +4515,15 @@ LINE 8 0 10 -182.2732526704263 +202.27325267042636 20 -307.3605773333334 +481.0000000000001 30 0.0 11 -182.77325267042633 +202.27325267042636 21 -307.3605773333334 +481.5000000000001 31 0.0 0 @@ -4151,15 +4533,15 @@ LINE 8 0 10 -182.77325267042633 +202.27325267042636 20 -307.3605773333334 +481.5000000000001 30 0.0 11 -182.77325267042636 +193.7732526704264 21 -319.1939106666666 +481.5000000000001 31 0.0 0 @@ -4169,15 +4551,15 @@ LINE 8 0 10 -182.77325267042636 +193.7732526704264 20 -319.1939106666666 +481.5000000000001 30 0.0 11 -182.27325267042636 +193.7732526704264 21 -319.1939106666666 +481.0000000000001 31 0.0 0 @@ -4187,15 +4569,15 @@ LINE 8 0 10 -147.02325267042633 +167.02325267042633 20 -307.27724400000005 +376.0000000000001 30 0.0 11 -151.02325267042633 +171.02325267042633 21 -307.27724400000005 +376.0000000000001 31 0.0 0 @@ -4205,15 +4587,15 @@ LINE 8 0 10 -151.02325267042633 +171.02325267042633 20 -307.27724400000005 +376.0000000000001 30 0.0 11 -151.02325267042633 +171.02325267042633 21 -319.277244 +388.0000000000001 31 0.0 0 @@ -4223,15 +4605,15 @@ LINE 8 0 10 -151.02325267042633 +171.02325267042633 20 -319.277244 +388.0000000000001 30 0.0 11 -147.02325267042633 +167.02325267042633 21 -319.277244 +388.0000000000001 31 0.0 0 @@ -4241,15 +4623,15 @@ LINE 8 0 10 -147.02325267042633 +167.02325267042633 20 -319.277244 +388.0000000000001 30 0.0 11 -147.02325267042633 +167.02325267042633 21 -307.27724400000005 +376.0000000000001 31 0.0 0 @@ -4259,15 +4641,15 @@ LINE 8 0 10 -159.0232526704263 +179.02325267042633 20 -308.77724400000005 +377.50000000000006 30 0.0 11 -163.02325267042633 +183.02325267042633 21 -308.77724400000005 +377.50000000000006 31 0.0 0 @@ -4277,15 +4659,15 @@ LINE 8 0 10 -163.02325267042633 +183.02325267042633 20 -308.77724400000005 +377.50000000000006 30 0.0 11 -163.02325267042633 +183.02325267042633 21 -317.77724400000005 +386.50000000000006 31 0.0 0 @@ -4295,15 +4677,15 @@ LINE 8 0 10 -163.02325267042633 +183.02325267042633 20 -317.77724400000005 +386.50000000000006 30 0.0 11 -159.0232526704263 +179.02325267042633 21 -317.77724400000005 +386.50000000000006 31 0.0 0 @@ -4313,15 +4695,15 @@ LINE 8 0 10 -159.0232526704263 +179.02325267042633 20 -317.77724400000005 +386.50000000000006 30 0.0 11 -159.0232526704263 +179.02325267042633 21 -308.77724400000005 +377.50000000000006 31 0.0 0 @@ -4331,15 +4713,15 @@ LINE 8 0 10 -122.52325267042634 +142.52325267042636 20 -307.27724400000005 +376.0000000000001 30 0.0 11 -145.52325267042633 +165.52325267042636 21 -307.27724400000005 +376.0000000000001 31 0.0 0 @@ -4349,15 +4731,15 @@ LINE 8 0 10 -145.52325267042633 +165.52325267042636 20 -307.27724400000005 +376.0000000000001 30 0.0 11 -145.52325267042633 +165.52325267042636 21 -319.277244 +388.0000000000001 31 0.0 0 @@ -4367,15 +4749,15 @@ LINE 8 0 10 -145.52325267042633 +165.52325267042636 20 -319.277244 +388.0000000000001 30 0.0 11 -122.52325267042634 +142.52325267042636 21 -319.277244 +388.0000000000001 31 0.0 0 @@ -4385,15 +4767,15 @@ LINE 8 0 10 -122.52325267042634 +142.52325267042636 20 -319.277244 +388.0000000000001 30 0.0 11 -122.52325267042634 +142.52325267042636 21 -307.27724400000005 +376.0000000000001 31 0.0 0 @@ -4403,15 +4785,15 @@ LINE 8 0 10 -117.02325267042634 +137.02325267042636 20 -307.27724400000005 +376.0000000000001 30 0.0 11 -121.02325267042634 +141.02325267042633 21 -307.27724400000005 +376.0000000000001 31 0.0 0 @@ -4421,15 +4803,15 @@ LINE 8 0 10 -121.02325267042634 +141.02325267042633 20 -307.27724400000005 +376.0000000000001 30 0.0 11 -121.02325267042634 +141.02325267042633 21 -319.277244 +388.0000000000001 31 0.0 0 @@ -4439,15 +4821,15 @@ LINE 8 0 10 -121.02325267042634 +141.02325267042633 20 -319.277244 +388.0000000000001 30 0.0 11 -117.02325267042634 +137.02325267042636 21 -319.277244 +388.0000000000001 31 0.0 0 @@ -4457,15 +4839,15 @@ LINE 8 0 10 -117.02325267042634 +137.02325267042636 20 -319.277244 +388.0000000000001 30 0.0 11 -117.02325267042634 +137.02325267042636 21 -307.27724400000005 +376.0000000000001 31 0.0 0 @@ -4475,15 +4857,15 @@ LINE 8 0 10 -94.52325267042633 +114.52325267042633 20 -307.6105773333334 +376.3333333333334 30 0.0 11 -99.52325267042633 +119.52325267042633 21 -307.6105773333334 +376.3333333333334 31 0.0 0 @@ -4493,15 +4875,15 @@ LINE 8 0 10 -99.52325267042633 +119.52325267042633 20 -307.6105773333334 +376.3333333333334 30 0.0 11 -99.52325267042634 +119.52325267042634 21 -318.9439106666666 +387.6666666666668 31 0.0 0 @@ -4511,15 +4893,15 @@ LINE 8 0 10 -99.52325267042634 +119.52325267042634 20 -318.9439106666666 +387.6666666666668 30 0.0 11 -94.52325267042634 +114.52325267042634 21 -318.9439106666666 +387.6666666666668 31 0.0 0 @@ -4529,15 +4911,15 @@ LINE 8 0 10 -53.69056332812418 +50.293912049626165 20 -308.4020025033634 +378.3985027328003 30 0.0 11 -53.69056332812418 +50.293912049626165 21 -300.3188301677879 +369.46616757760023 31 0.0 0 @@ -4547,15 +4929,15 @@ LINE 8 0 10 -53.69056332812418 +50.293912049626165 20 -300.3188301677879 +369.46616757760023 30 0.0 11 -69.85690799927526 +68.15858236002626 21 -300.3188301677879 +369.46616757760023 31 0.0 0 @@ -4565,15 +4947,15 @@ LINE 8 0 10 -69.85690799927526 +68.15858236002626 20 -300.3188301677879 +369.46616757760023 30 0.0 11 -69.85690799927526 +68.15858236002626 21 -308.4020025033634 +378.3985027328003 31 0.0 0 @@ -4583,15 +4965,15 @@ LINE 8 0 10 -20.624331748168913 +22.23674174086841 20 -216.0165790835827 +274.96789528790873 30 0.0 11 -26.479589068954827 +27.02781066601807 21 -231.62052109850282 +292.6965944551955 31 0.0 0 @@ -4601,15 +4983,15 @@ LINE 8 0 10 -26.479589068954827 +27.02781066601807 20 -231.62052109850282 +292.6965944551955 30 0.0 11 -26.01146176441367 +26.545125737085613 21 -231.7961822118518 +292.82703700723084 31 0.0 0 @@ -4619,15 +5001,15 @@ LINE 8 0 10 -26.01146176441367 +26.545125737085613 20 -231.7961822118518 +292.82703700723084 30 0.0 11 -20.156204443627757 +21.754056811935953 21 -216.19224019693172 +275.098337839944 31 0.0 0 @@ -4637,15 +5019,15 @@ LINE 8 0 10 -20.156204443627757 +21.754056811935953 20 -216.19224019693172 +275.098337839944 30 0.0 11 -20.624331748168913 +22.23674174086841 21 -216.0165790835827 +274.96789528790873 31 0.0 0 @@ -4655,15 +5037,15 @@ LINE 8 0 10 -26.479589068954795 +27.027810666018013 20 -160.9339669014974 +197.30340554480492 30 0.0 11 -20.62433174816889 +22.236741740868357 21 -176.5379089164175 +215.0321047120917 31 0.0 0 @@ -4673,15 +5055,15 @@ LINE 8 0 10 -20.62433174816889 +22.236741740868357 20 -176.5379089164175 +215.0321047120917 30 0.0 11 -20.156204443627733 +21.7540568119359 21 -176.3622478030685 +214.90166216005642 31 0.0 0 @@ -4691,15 +5073,15 @@ LINE 8 0 10 -20.156204443627733 +21.7540568119359 20 -176.3622478030685 +214.90166216005642 30 0.0 11 -26.011461764413642 +26.54512573708556 21 -160.75830578814833 +197.17296299276964 31 0.0 0 @@ -4709,15 +5091,15 @@ LINE 8 0 10 -26.011461764413642 +26.54512573708556 20 -160.75830578814833 +197.17296299276964 30 0.0 11 -26.479589068954795 +27.027810666018013 21 -160.9339669014974 +197.30340554480492 31 0.0 0 @@ -4727,15 +5109,15 @@ LINE 8 0 10 -69.8569079992752 +68.15858236002603 20 -84.15248549663676 +111.60149726720016 30 0.0 11 -69.8569079992752 +68.15858236002603 21 -92.23565783221228 +120.5338324224002 31 0.0 0 @@ -4745,15 +5127,15 @@ LINE 8 0 10 -69.8569079992752 +68.15858236002603 20 -92.23565783221228 +120.5338324224002 30 0.0 11 -53.69056332812412 +50.293912049625966 21 -92.2356578322123 +120.53383242240022 31 0.0 0 @@ -4763,15 +5145,15 @@ LINE 8 0 10 -53.69056332812412 +50.293912049625966 20 -92.2356578322123 +120.53383242240022 30 0.0 11 -53.69056332812412 +50.29391204962594 21 -84.15248549663677 +111.60149726720017 31 0.0 0 @@ -4781,15 +5163,15 @@ LINE 8 0 10 -273.3565860037596 +413.3565860037597 20 -313.77724400000005 +382.49999999999994 30 0.0 11 -273.3565860037596 +413.3565860037597 21 -302.1105773333333 +370.83333333333337 31 0.0 0 @@ -4799,15 +5181,15 @@ LINE 8 0 10 -273.3565860037596 +413.3565860037597 20 -302.1105773333333 +370.83333333333337 30 0.0 11 -296.68991933709304 +436.68991933709293 21 -302.1105773333333 +370.8333333333333 31 0.0 0 @@ -4817,15 +5199,15 @@ LINE 8 0 10 -296.68991933709304 +436.68991933709293 20 -302.1105773333333 +370.8333333333333 30 0.0 11 -296.68991933709304 +436.68991933709293 21 -313.77724400000005 +382.49999999999994 31 0.0 0 @@ -4837,15 +5219,15 @@ DOTTED 8 0 10 -363.02325267042636 +503.0232526704263 20 -84.27724400000001 +113.00000000000001 30 0.0 11 -424.02325267042636 +564.0232526704264 21 -84.27724400000001 +113.00000000000001 31 0.0 0 @@ -4857,15 +5239,15 @@ DOTTED 8 0 10 -424.02325267042636 +564.0232526704264 20 -84.27724400000001 +113.00000000000001 30 0.0 11 -424.02325267042636 +564.0232526704264 21 -108.27724400000001 +137.00000000000003 31 0.0 0 @@ -4877,15 +5259,15 @@ DOTTED 8 0 10 -424.02325267042636 +564.0232526704264 20 -108.27724400000001 +137.00000000000003 30 0.0 11 -363.02325267042636 +503.0232526704263 21 -108.27724400000001 +137.00000000000003 31 0.0 0 @@ -4897,15 +5279,15 @@ DOTTED 8 0 10 -363.02325267042636 +503.0232526704263 20 -108.27724400000001 +137.00000000000003 30 0.0 11 -363.02325267042636 +503.0232526704263 21 -84.27724400000001 +113.00000000000001 31 0.0 0 @@ -4915,15 +5297,15 @@ LINE 8 0 10 -363.02325267042636 +503.0232526704263 20 -77.277244 +106.00000000000001 30 0.0 11 -363.02325267042636 +503.0232526704263 21 -84.27724400000001 +113.00000000000001 31 0.0 0 @@ -4933,15 +5315,15 @@ LINE 8 0 10 -423.0232526704263 +563.0232526704264 20 -77.277244 +106.00000000000001 30 0.0 11 -363.02325267042636 +503.0232526704263 21 -77.277244 +106.00000000000001 31 0.0 0 @@ -4951,15 +5333,15 @@ LINE 8 0 10 -423.0232526704263 +563.0232526704264 20 -84.27724400000001 +113.00000000000001 30 0.0 11 -423.0232526704263 +563.0232526704264 21 -77.277244 +106.00000000000001 31 0.0 0 @@ -4969,15 +5351,15 @@ LINE 8 0 10 -431.02325267042636 +571.0232526704264 20 -84.27724400000001 +113.00000000000001 30 0.0 11 -424.02325267042636 +564.0232526704264 21 -84.27724400000001 +113.00000000000001 31 0.0 0 @@ -4987,15 +5369,15 @@ LINE 8 0 10 -431.02325267042636 +571.0232526704264 20 -108.27724400000001 +137.00000000000003 30 0.0 11 -431.02325267042636 +571.0232526704264 21 -84.27724400000001 +113.00000000000001 31 0.0 0 @@ -5005,15 +5387,15 @@ LINE 8 0 10 -424.02325267042636 +564.0232526704264 20 -108.27724400000001 +137.00000000000003 30 0.0 11 -431.02325267042636 +571.0232526704264 21 -108.27724400000001 +137.00000000000003 31 0.0 0 @@ -5025,15 +5407,15 @@ DOTTED 8 0 10 -424.02325267042636 +564.0232526704264 20 -108.27724400000001 +137.00000000000003 30 0.0 11 -424.02325267042636 +564.0232526704264 21 -169.277244 +198.0 31 0.0 0 @@ -5043,15 +5425,15 @@ LINE 8 0 10 -364.0232526704263 +504.0232526704263 20 -169.277244 +198.0 30 0.0 11 -424.02325267042636 +564.0232526704264 21 -169.277244 +198.0 31 0.0 0 @@ -5063,15 +5445,15 @@ DOTTED 8 0 10 -364.0232526704263 +504.0232526704263 20 -108.27724400000001 +137.00000000000003 30 0.0 11 -364.0232526704263 +504.0232526704263 21 -169.277244 +198.0 31 0.0 0 @@ -5081,15 +5463,15 @@ LINE 8 0 10 -448.02325267042636 +588.0232526704262 20 -108.27724400000001 +137.00000000000003 30 0.0 11 -424.02325267042636 +564.0232526704264 21 -108.27724400000001 +137.00000000000003 31 0.0 0 @@ -5101,15 +5483,15 @@ DOTTED 8 0 10 -448.02325267042636 +588.0232526704262 20 -108.27724400000001 +137.00000000000003 30 0.0 11 -448.02325267042636 +588.0232526704262 21 -169.277244 +198.0 31 0.0 0 @@ -5119,15 +5501,15 @@ LINE 8 0 10 -424.02325267042636 +564.0232526704264 20 -169.277244 +198.0 30 0.0 11 -448.02325267042636 +588.0232526704262 21 -169.277244 +198.0 31 0.0 0 @@ -5137,15 +5519,15 @@ LINE 8 0 10 -508.02325267042636 +648.0232526704264 20 -108.27724400000001 +137.00000000000003 30 0.0 11 -448.02325267042636 +588.0232526704262 21 -108.27724400000001 +137.00000000000003 31 0.0 0 @@ -5155,15 +5537,15 @@ LINE 8 0 10 -508.02325267042636 +648.0232526704264 20 -169.277244 +198.0 30 0.0 11 -508.02325267042636 +648.0232526704264 21 -108.27724400000001 +137.00000000000003 31 0.0 0 @@ -5173,15 +5555,15 @@ LINE 8 0 10 -448.02325267042636 +588.0232526704262 20 -169.277244 +198.0 30 0.0 11 -508.02325267042636 +648.0232526704264 21 -169.277244 +198.0 31 0.0 0 @@ -5191,15 +5573,15 @@ LINE 8 0 10 -364.0232526704263 +504.0232526704263 20 -108.27724400000001 +137.00000000000003 30 0.0 11 -340.02325267042636 +480.0232526704263 21 -108.27724400000001 +137.00000000000003 31 0.0 0 @@ -5209,15 +5591,15 @@ LINE 8 0 10 -340.02325267042636 +480.0232526704263 20 -169.277244 +198.0 30 0.0 11 -364.0232526704263 +504.0232526704263 21 -169.277244 +198.0 31 0.0 0 @@ -5229,15 +5611,15 @@ DOTTED 8 0 10 -340.02325267042636 +480.0232526704263 20 -169.277244 +198.0 30 0.0 11 -340.02325267042636 +480.0232526704263 21 -108.27724400000001 +137.00000000000003 31 0.0 0 @@ -5247,15 +5629,15 @@ LINE 8 0 10 -330.02325267042636 +470.0232526704263 20 -169.277244 +198.0 30 0.0 11 -340.02325267042636 +480.0232526704263 21 -169.277244 +198.0 31 0.0 0 @@ -5265,15 +5647,15 @@ LINE 8 0 10 -330.02325267042636 +470.0232526704263 20 -108.27724400000001 +137.00000000000003 30 0.0 11 -330.02325267042636 +470.0232526704263 21 -169.277244 +198.0 31 0.0 0 @@ -5283,15 +5665,15 @@ LINE 8 0 10 -340.02325267042636 +480.0232526704263 20 -108.27724400000001 +137.00000000000003 30 0.0 11 -330.02325267042636 +470.0232526704263 21 -108.27724400000001 +137.00000000000003 31 0.0 0 @@ -5301,15 +5683,15 @@ LINE 8 0 10 -356.02325267042636 +496.0232526704263 20 -108.27724400000001 +137.00000000000003 30 0.0 11 -363.02325267042636 +503.0232526704263 21 -108.27724400000001 +137.00000000000003 31 0.0 0 @@ -5319,15 +5701,15 @@ LINE 8 0 10 -356.02325267042636 +496.0232526704263 20 -84.27724400000001 +113.00000000000001 30 0.0 11 -356.02325267042636 +496.0232526704263 21 -108.27724400000001 +137.00000000000003 31 0.0 0 @@ -5337,15 +5719,15 @@ LINE 8 0 10 -363.02325267042636 +503.0232526704263 20 -84.27724400000001 +113.00000000000001 30 0.0 11 -356.02325267042636 +496.0232526704263 21 -84.27724400000001 +113.00000000000001 31 0.0 0 @@ -5355,15 +5737,15 @@ LINE 8 0 10 -412.1141617613354 +552.1141617613354 20 -79.02724400000001 +107.75000000000001 30 0.0 11 -415.6141617613354 +555.6141617613354 21 -79.02724400000001 +107.75000000000001 31 0.0 0 @@ -5373,15 +5755,15 @@ LINE 8 0 10 -415.6141617613354 +555.6141617613354 20 -79.02724400000001 +107.75000000000001 30 0.0 11 -412.1141617613354 +552.1141617613354 21 -82.52724400000001 +111.25000000000001 31 0.0 0 @@ -5391,15 +5773,15 @@ LINE 8 0 10 -412.1141617613354 +552.1141617613354 20 -82.52724400000001 +111.25000000000001 30 0.0 11 -401.20507085224455 +541.2050708522444 21 -82.52724400000001 +111.25000000000001 31 0.0 0 @@ -5409,15 +5791,15 @@ LINE 8 0 10 -401.20507085224455 +541.2050708522444 20 -82.52724400000001 +111.25000000000001 30 0.0 11 -397.7050708522445 +537.7050708522446 21 -79.02724400000001 +107.75000000000001 31 0.0 0 @@ -5427,15 +5809,15 @@ LINE 8 0 10 -397.7050708522445 +537.7050708522446 20 -79.02724400000001 +107.75000000000001 30 0.0 11 -401.20507085224455 +541.2050708522444 21 -79.02724400000001 +107.75000000000001 31 0.0 0 @@ -5445,15 +5827,15 @@ LINE 8 0 10 -384.8414344886081 +524.8414344886082 20 -79.02724400000001 +107.75000000000001 30 0.0 11 -388.3414344886082 +528.3414344886082 21 -79.02724400000001 +107.75000000000001 31 0.0 0 @@ -5463,15 +5845,15 @@ LINE 8 0 10 -388.3414344886082 +528.3414344886082 20 -79.02724400000001 +107.75000000000001 30 0.0 11 -384.8414344886081 +524.8414344886082 21 -82.52724400000001 +111.25000000000001 31 0.0 0 @@ -5481,15 +5863,15 @@ LINE 8 0 10 -384.8414344886081 +524.8414344886082 20 -82.52724400000001 +111.25000000000001 30 0.0 11 -373.93234357951724 +513.9323435795172 21 -82.52724400000001 +111.25000000000001 31 0.0 0 @@ -5499,15 +5881,15 @@ LINE 8 0 10 -373.93234357951724 +513.9323435795172 20 -82.52724400000001 +111.25000000000001 30 0.0 11 -370.4323435795173 +510.43234357951724 21 -79.02724400000001 +107.75000000000001 31 0.0 0 @@ -5517,15 +5899,15 @@ LINE 8 0 10 -370.4323435795173 +510.43234357951724 20 -79.02724400000001 +107.75000000000001 30 0.0 11 -373.93234357951724 +513.9323435795172 21 -79.02724400000001 +107.75000000000001 31 0.0 0 @@ -5535,15 +5917,15 @@ LINE 8 0 10 -429.27325267042636 +569.2732526704264 20 -100.27724400000001 +129.0 30 0.0 11 -425.77325267042636 +565.7732526704262 21 -100.27724400000001 +129.0 31 0.0 0 @@ -5553,15 +5935,15 @@ LINE 8 0 10 -425.77325267042636 +565.7732526704262 20 -100.27724400000001 +129.0 30 0.0 11 -425.77325267042636 +565.7732526704262 21 -92.27724400000001 +121.00000000000001 31 0.0 0 @@ -5571,15 +5953,15 @@ LINE 8 0 10 -425.77325267042636 +565.7732526704262 20 -92.27724400000001 +121.00000000000001 30 0.0 11 -429.27325267042636 +569.2732526704264 21 -92.27724400000001 +121.00000000000001 31 0.0 0 @@ -5589,15 +5971,15 @@ LINE 8 0 10 -371.52325267042636 +511.5232526704263 20 -159.777244 +188.50000000000003 30 0.0 11 -371.52325267042636 +511.5232526704263 21 -141.777244 +170.5 31 0.0 0 @@ -5607,15 +5989,15 @@ LINE 8 0 10 -371.52325267042636 +511.5232526704263 20 -141.777244 +170.5 30 0.0 11 -406.52325267042636 +546.5232526704264 21 -141.777244 +170.5 31 0.0 0 @@ -5625,15 +6007,15 @@ LINE 8 0 10 -406.52325267042636 +546.5232526704264 20 -141.777244 +170.5 30 0.0 11 -406.52325267042636 +546.5232526704264 21 -159.777244 +188.50000000000003 31 0.0 0 @@ -5643,15 +6025,15 @@ LINE 8 0 10 -406.52325267042636 +546.5232526704264 20 -159.777244 +188.50000000000003 30 0.0 11 -371.52325267042636 +511.5232526704263 21 -159.777244 +188.50000000000003 31 0.0 0 @@ -5661,15 +6043,15 @@ LINE 8 0 10 -424.52325267042636 +564.5232526704264 20 -121.52724400000001 +150.25 30 0.0 11 -424.52325267042636 +564.5232526704264 21 -118.52724400000001 +147.25000000000003 31 0.0 0 @@ -5679,15 +6061,15 @@ LINE 8 0 10 -424.52325267042636 +564.5232526704264 20 -118.52724400000001 +147.25000000000003 30 0.0 11 -427.5232526704263 +567.5232526704262 21 -118.52724400000001 +147.25000000000003 31 0.0 0 @@ -5697,15 +6079,15 @@ LINE 8 0 10 -427.5232526704263 +567.5232526704262 20 -118.52724400000001 +147.25000000000003 30 0.0 11 -427.5232526704263 +567.5232526704262 21 -121.52724400000001 +150.25 31 0.0 0 @@ -5715,15 +6097,15 @@ LINE 8 0 10 -427.5232526704263 +567.5232526704262 20 -121.52724400000001 +150.25 30 0.0 11 -424.52325267042636 +564.5232526704264 21 -121.52724400000001 +150.25 31 0.0 0 @@ -5733,15 +6115,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -120.52724400000001 +149.25000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -119.52724400000001 +148.25 31 0.0 0 @@ -5751,15 +6133,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -119.52724400000001 +148.25 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -119.52724400000001 +148.25 31 0.0 0 @@ -5769,15 +6151,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -119.52724400000001 +148.25 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -120.52724400000001 +149.25000000000003 31 0.0 0 @@ -5787,15 +6169,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -120.52724400000001 +149.25000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -120.52724400000001 +149.25000000000003 31 0.0 0 @@ -5805,15 +6187,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -123.02724400000001 +151.75000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -122.02724400000001 +150.75000000000003 31 0.0 0 @@ -5823,15 +6205,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -122.02724400000001 +150.75000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -122.02724400000001 +150.75000000000003 31 0.0 0 @@ -5841,15 +6223,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -122.02724400000001 +150.75000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -123.02724400000001 +151.75000000000003 31 0.0 0 @@ -5859,15 +6241,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -123.02724400000001 +151.75000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -123.02724400000001 +151.75000000000003 31 0.0 0 @@ -5877,15 +6259,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -123.02724400000001 +151.75000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -122.02724400000001 +150.75000000000003 31 0.0 0 @@ -5895,15 +6277,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -122.02724400000001 +150.75000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -122.02724400000001 +150.75000000000003 31 0.0 0 @@ -5913,15 +6295,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -122.02724400000001 +150.75000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -123.02724400000001 +151.75000000000003 31 0.0 0 @@ -5931,15 +6313,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -123.02724400000001 +151.75000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -123.02724400000001 +151.75000000000003 31 0.0 0 @@ -5949,15 +6331,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -125.52724400000001 +154.25000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -124.52724400000001 +153.25000000000003 31 0.0 0 @@ -5967,15 +6349,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -124.52724400000001 +153.25000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -124.52724400000001 +153.25000000000003 31 0.0 0 @@ -5985,15 +6367,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -124.52724400000001 +153.25000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -125.52724400000001 +154.25000000000003 31 0.0 0 @@ -6003,15 +6385,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -125.52724400000001 +154.25000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -125.52724400000001 +154.25000000000003 31 0.0 0 @@ -6021,15 +6403,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -125.52724400000001 +154.25000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -124.52724400000001 +153.25000000000003 31 0.0 0 @@ -6039,15 +6421,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -124.52724400000001 +153.25000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -124.52724400000001 +153.25000000000003 31 0.0 0 @@ -6057,15 +6439,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -124.52724400000001 +153.25000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -125.52724400000001 +154.25000000000003 31 0.0 0 @@ -6075,15 +6457,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -125.52724400000001 +154.25000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -125.52724400000001 +154.25000000000003 31 0.0 0 @@ -6093,15 +6475,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -128.02724400000002 +156.75 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -127.02724400000001 +155.75000000000003 31 0.0 0 @@ -6111,15 +6493,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -127.02724400000001 +155.75000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -127.02724400000001 +155.75000000000003 31 0.0 0 @@ -6129,15 +6511,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -127.02724400000001 +155.75000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -128.02724400000002 +156.75 31 0.0 0 @@ -6147,15 +6529,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -128.02724400000002 +156.75 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -128.02724400000002 +156.75 31 0.0 0 @@ -6165,15 +6547,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -128.02724400000002 +156.75 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -127.02724400000001 +155.75000000000003 31 0.0 0 @@ -6183,15 +6565,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -127.02724400000001 +155.75000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -127.02724400000001 +155.75000000000003 31 0.0 0 @@ -6201,15 +6583,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -127.02724400000001 +155.75000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -128.02724400000002 +156.75 31 0.0 0 @@ -6219,15 +6601,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -128.02724400000002 +156.75 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -128.02724400000002 +156.75 31 0.0 0 @@ -6237,15 +6619,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -130.52724400000002 +159.25 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -129.527244 +158.25000000000003 31 0.0 0 @@ -6255,15 +6637,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -129.527244 +158.25000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -129.527244 +158.25000000000003 31 0.0 0 @@ -6273,15 +6655,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -129.527244 +158.25000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -130.52724400000002 +159.25 31 0.0 0 @@ -6291,15 +6673,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -130.52724400000002 +159.25 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -130.52724400000002 +159.25 31 0.0 0 @@ -6309,15 +6691,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -130.52724400000002 +159.25 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -129.527244 +158.25000000000003 31 0.0 0 @@ -6327,15 +6709,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -129.527244 +158.25000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -129.527244 +158.25000000000003 31 0.0 0 @@ -6345,15 +6727,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -129.527244 +158.25000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -130.52724400000002 +159.25 31 0.0 0 @@ -6363,15 +6745,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -130.52724400000002 +159.25 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -130.52724400000002 +159.25 31 0.0 0 @@ -6381,15 +6763,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -133.027244 +161.75 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -132.027244 +160.75000000000003 31 0.0 0 @@ -6399,15 +6781,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -132.027244 +160.75000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -132.027244 +160.75000000000003 31 0.0 0 @@ -6417,15 +6799,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -132.027244 +160.75000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -133.027244 +161.75 31 0.0 0 @@ -6435,15 +6817,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -133.027244 +161.75 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -133.027244 +161.75 31 0.0 0 @@ -6453,15 +6835,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -133.027244 +161.75 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -132.027244 +160.75000000000003 31 0.0 0 @@ -6471,15 +6853,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -132.027244 +160.75000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -132.027244 +160.75000000000003 31 0.0 0 @@ -6489,15 +6871,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -132.027244 +160.75000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -133.027244 +161.75 31 0.0 0 @@ -6507,15 +6889,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -133.027244 +161.75 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -133.027244 +161.75 31 0.0 0 @@ -6525,15 +6907,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -135.527244 +164.25000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -134.52724400000002 +163.25000000000003 31 0.0 0 @@ -6543,15 +6925,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -134.52724400000002 +163.25000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -134.52724400000002 +163.25000000000003 31 0.0 0 @@ -6561,15 +6943,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -134.52724400000002 +163.25000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -135.527244 +164.25000000000003 31 0.0 0 @@ -6579,15 +6961,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -135.527244 +164.25000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -135.527244 +164.25000000000003 31 0.0 0 @@ -6597,15 +6979,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -135.527244 +164.25000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -134.52724400000002 +163.25000000000003 31 0.0 0 @@ -6615,15 +6997,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -134.52724400000002 +163.25000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -134.52724400000002 +163.25000000000003 31 0.0 0 @@ -6633,15 +7015,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -134.52724400000002 +163.25000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -135.527244 +164.25000000000003 31 0.0 0 @@ -6651,15 +7033,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -135.527244 +164.25000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -135.527244 +164.25000000000003 31 0.0 0 @@ -6669,15 +7051,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -138.02724400000002 +166.75000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -137.027244 +165.75 31 0.0 0 @@ -6687,15 +7069,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -137.027244 +165.75 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -137.027244 +165.75 31 0.0 0 @@ -6705,15 +7087,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -137.027244 +165.75 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -138.02724400000002 +166.75000000000003 31 0.0 0 @@ -6723,15 +7105,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -138.02724400000002 +166.75000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -138.02724400000002 +166.75000000000003 31 0.0 0 @@ -6741,15 +7123,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -138.02724400000002 +166.75000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -137.027244 +165.75 31 0.0 0 @@ -6759,15 +7141,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -137.027244 +165.75 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -137.027244 +165.75 31 0.0 0 @@ -6777,15 +7159,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -137.027244 +165.75 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -138.02724400000002 +166.75000000000003 31 0.0 0 @@ -6795,15 +7177,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -138.02724400000002 +166.75000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -138.02724400000002 +166.75000000000003 31 0.0 0 @@ -6813,15 +7195,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -140.52724400000002 +169.25000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -139.527244 +168.25 31 0.0 0 @@ -6831,15 +7213,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -139.527244 +168.25 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -139.527244 +168.25 31 0.0 0 @@ -6849,15 +7231,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -139.527244 +168.25 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -140.52724400000002 +169.25000000000003 31 0.0 0 @@ -6867,15 +7249,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -140.52724400000002 +169.25000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -140.52724400000002 +169.25000000000003 31 0.0 0 @@ -6885,15 +7267,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -140.52724400000002 +169.25000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -139.527244 +168.25 31 0.0 0 @@ -6903,15 +7285,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -139.527244 +168.25 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -139.527244 +168.25 31 0.0 0 @@ -6921,15 +7303,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -139.527244 +168.25 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -140.52724400000002 +169.25000000000003 31 0.0 0 @@ -6939,15 +7321,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -140.52724400000002 +169.25000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -140.52724400000002 +169.25000000000003 31 0.0 0 @@ -6957,15 +7339,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -143.02724400000002 +171.75000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -142.027244 +170.75 31 0.0 0 @@ -6975,15 +7357,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -142.027244 +170.75 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -142.027244 +170.75 31 0.0 0 @@ -6993,15 +7375,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -142.027244 +170.75 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -143.02724400000002 +171.75000000000003 31 0.0 0 @@ -7011,15 +7393,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -143.02724400000002 +171.75000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -143.02724400000002 +171.75000000000003 31 0.0 0 @@ -7029,15 +7411,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -143.02724400000002 +171.75000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -142.027244 +170.75 31 0.0 0 @@ -7047,15 +7429,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -142.027244 +170.75 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -142.027244 +170.75 31 0.0 0 @@ -7065,15 +7447,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -142.027244 +170.75 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -143.02724400000002 +171.75000000000003 31 0.0 0 @@ -7083,15 +7465,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -143.02724400000002 +171.75000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -143.02724400000002 +171.75000000000003 31 0.0 0 @@ -7101,15 +7483,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -145.52724400000002 +174.25000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -144.527244 +173.25000000000003 31 0.0 0 @@ -7119,15 +7501,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -144.527244 +173.25000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -144.527244 +173.25000000000003 31 0.0 0 @@ -7137,15 +7519,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -144.527244 +173.25000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -145.52724400000002 +174.25000000000003 31 0.0 0 @@ -7155,15 +7537,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -145.52724400000002 +174.25000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -145.52724400000002 +174.25000000000003 31 0.0 0 @@ -7173,15 +7555,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -145.52724400000002 +174.25000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -144.527244 +173.25000000000003 31 0.0 0 @@ -7191,15 +7573,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -144.527244 +173.25000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -144.527244 +173.25000000000003 31 0.0 0 @@ -7209,15 +7591,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -144.527244 +173.25000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -145.52724400000002 +174.25000000000003 31 0.0 0 @@ -7227,15 +7609,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -145.52724400000002 +174.25000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -145.52724400000002 +174.25000000000003 31 0.0 0 @@ -7245,15 +7627,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -148.02724400000002 +176.75000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -147.02724400000002 +175.75000000000003 31 0.0 0 @@ -7263,15 +7645,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -147.02724400000002 +175.75000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -147.02724400000002 +175.75000000000003 31 0.0 0 @@ -7281,15 +7663,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -147.02724400000002 +175.75000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -148.02724400000002 +176.75000000000003 31 0.0 0 @@ -7299,15 +7681,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -148.02724400000002 +176.75000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -148.02724400000002 +176.75000000000003 31 0.0 0 @@ -7317,15 +7699,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -148.02724400000002 +176.75000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -147.02724400000002 +175.75000000000003 31 0.0 0 @@ -7335,15 +7717,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -147.02724400000002 +175.75000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -147.02724400000002 +175.75000000000003 31 0.0 0 @@ -7353,15 +7735,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -147.02724400000002 +175.75000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -148.02724400000002 +176.75000000000003 31 0.0 0 @@ -7371,15 +7753,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -148.02724400000002 +176.75000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -148.02724400000002 +176.75000000000003 31 0.0 0 @@ -7389,15 +7771,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -150.52724400000002 +179.25000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -149.52724400000002 +178.25000000000003 31 0.0 0 @@ -7407,15 +7789,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -149.52724400000002 +178.25000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -149.52724400000002 +178.25000000000003 31 0.0 0 @@ -7425,15 +7807,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -149.52724400000002 +178.25000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -150.52724400000002 +179.25000000000003 31 0.0 0 @@ -7443,15 +7825,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -150.52724400000002 +179.25000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -150.52724400000002 +179.25000000000003 31 0.0 0 @@ -7461,15 +7843,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -150.52724400000002 +179.25000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -149.52724400000002 +178.25000000000003 31 0.0 0 @@ -7479,15 +7861,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -149.52724400000002 +178.25000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -149.52724400000002 +178.25000000000003 31 0.0 0 @@ -7497,15 +7879,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -149.52724400000002 +178.25000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -150.52724400000002 +179.25000000000003 31 0.0 0 @@ -7515,15 +7897,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -150.52724400000002 +179.25000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -150.52724400000002 +179.25000000000003 31 0.0 0 @@ -7533,15 +7915,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -153.027244 +181.75 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -152.02724400000002 +180.75000000000003 31 0.0 0 @@ -7551,15 +7933,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -152.02724400000002 +180.75000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -152.02724400000002 +180.75000000000003 31 0.0 0 @@ -7569,15 +7951,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -152.02724400000002 +180.75000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -153.027244 +181.75 31 0.0 0 @@ -7587,15 +7969,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -153.027244 +181.75 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -153.027244 +181.75 31 0.0 0 @@ -7605,15 +7987,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -153.027244 +181.75 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -152.02724400000002 +180.75000000000003 31 0.0 0 @@ -7623,15 +8005,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -152.02724400000002 +180.75000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -152.02724400000002 +180.75000000000003 31 0.0 0 @@ -7641,15 +8023,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -152.02724400000002 +180.75000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -153.027244 +181.75 31 0.0 0 @@ -7659,15 +8041,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -153.027244 +181.75 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -153.027244 +181.75 31 0.0 0 @@ -7677,15 +8059,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -155.527244 +184.25 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -154.52724400000002 +183.25000000000003 31 0.0 0 @@ -7695,15 +8077,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -154.52724400000002 +183.25000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -154.52724400000002 +183.25000000000003 31 0.0 0 @@ -7713,15 +8095,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -154.52724400000002 +183.25000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -155.527244 +184.25 31 0.0 0 @@ -7731,15 +8113,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -155.527244 +184.25 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -155.527244 +184.25 31 0.0 0 @@ -7749,15 +8131,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -155.527244 +184.25 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -154.52724400000002 +183.25000000000003 31 0.0 0 @@ -7767,15 +8149,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -154.52724400000002 +183.25000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -154.52724400000002 +183.25000000000003 31 0.0 0 @@ -7785,15 +8167,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -154.52724400000002 +183.25000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -155.527244 +184.25 31 0.0 0 @@ -7803,15 +8185,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -155.527244 +184.25 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -155.527244 +184.25 31 0.0 0 @@ -7821,15 +8203,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -158.027244 +186.75 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -157.02724400000002 +185.75000000000003 31 0.0 0 @@ -7839,15 +8221,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -157.02724400000002 +185.75000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -157.02724400000002 +185.75000000000003 31 0.0 0 @@ -7857,15 +8239,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -157.02724400000002 +185.75000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -158.027244 +186.75 31 0.0 0 @@ -7875,15 +8257,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -158.027244 +186.75 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -158.027244 +186.75 31 0.0 0 @@ -7893,15 +8275,15 @@ LINE 8 0 10 -444.52325267042636 +584.5232526704264 20 -159.02724400000002 +187.75000000000003 30 0.0 11 -444.52325267042636 +584.5232526704264 21 -156.02724400000002 +184.75000000000003 31 0.0 0 @@ -7911,15 +8293,15 @@ LINE 8 0 10 -444.52325267042636 +584.5232526704264 20 -156.02724400000002 +184.75000000000003 30 0.0 11 -447.52325267042636 +587.5232526704262 21 -156.02724400000002 +184.75000000000003 31 0.0 0 @@ -7929,15 +8311,15 @@ LINE 8 0 10 -447.52325267042636 +587.5232526704262 20 -156.02724400000002 +184.75000000000003 30 0.0 11 -447.52325267042636 +587.5232526704262 21 -159.02724400000002 +187.75000000000003 31 0.0 0 @@ -7947,15 +8329,15 @@ LINE 8 0 10 -447.52325267042636 +587.5232526704262 20 -159.02724400000002 +187.75000000000003 30 0.0 11 -444.52325267042636 +584.5232526704264 21 -159.02724400000002 +187.75000000000003 31 0.0 0 @@ -7965,15 +8347,15 @@ LINE 8 0 10 -440.27325267042636 +580.2732526704264 20 -116.02724400000001 +144.75000000000003 30 0.0 11 -431.77325267042636 +571.7732526704262 21 -116.02724400000001 +144.75000000000003 31 0.0 0 @@ -7983,15 +8365,15 @@ LINE 8 0 10 -431.77325267042636 +571.7732526704262 20 -116.02724400000001 +144.75000000000003 30 0.0 11 -431.77325267042636 +571.7732526704262 21 -115.52724400000001 +144.25000000000003 31 0.0 0 @@ -8001,15 +8383,15 @@ LINE 8 0 10 -431.77325267042636 +571.7732526704262 20 -115.52724400000001 +144.25000000000003 30 0.0 11 -440.27325267042636 +580.2732526704264 21 -115.52724400000001 +144.25000000000003 31 0.0 0 @@ -8019,15 +8401,15 @@ LINE 8 0 10 -440.27325267042636 +580.2732526704264 20 -115.52724400000001 +144.25000000000003 30 0.0 11 -440.27325267042636 +580.2732526704264 21 -116.02724400000001 +144.75000000000003 31 0.0 0 @@ -8037,15 +8419,15 @@ LINE 8 0 10 -431.77325267042636 +571.7732526704262 20 -163.77724400000002 +192.50000000000003 30 0.0 11 -440.27325267042636 +580.2732526704264 21 -163.77724400000002 +192.50000000000003 31 0.0 0 @@ -8055,15 +8437,15 @@ LINE 8 0 10 -440.27325267042636 +580.2732526704264 20 -163.77724400000002 +192.50000000000003 30 0.0 11 -440.27325267042636 +580.2732526704264 21 -164.27724400000002 +193.00000000000003 31 0.0 0 @@ -8073,15 +8455,15 @@ LINE 8 0 10 -440.27325267042636 +580.2732526704264 20 -164.27724400000002 +193.00000000000003 30 0.0 11 -431.77325267042636 +571.7732526704262 21 -164.27724400000002 +193.00000000000003 31 0.0 0 @@ -8091,15 +8473,15 @@ LINE 8 0 10 -431.77325267042636 +571.7732526704262 20 -164.27724400000002 +193.00000000000003 30 0.0 11 -431.77325267042636 +571.7732526704262 21 -163.77724400000002 +192.50000000000003 31 0.0 0 @@ -8109,15 +8491,15 @@ LINE 8 0 10 -463.02325267042636 +603.0232526704264 20 -159.27724400000002 +188.00000000000003 30 0.0 11 -463.02325267042636 +603.0232526704264 21 -146.277244 +175.0 31 0.0 0 @@ -8127,15 +8509,15 @@ LINE 8 0 10 -463.02325267042636 +603.0232526704264 20 -146.277244 +175.0 30 0.0 11 -493.02325267042636 +633.0232526704262 21 -146.277244 +175.0 31 0.0 0 @@ -8145,15 +8527,15 @@ LINE 8 0 10 -493.02325267042636 +633.0232526704262 20 -146.277244 +175.0 30 0.0 11 -493.02325267042636 +633.0232526704262 21 -159.27724400000002 +188.00000000000003 31 0.0 0 @@ -8163,15 +8545,15 @@ LINE 8 0 10 -493.02325267042636 +633.0232526704262 20 -159.27724400000002 +188.00000000000003 30 0.0 11 -463.02325267042636 +603.0232526704264 21 -159.27724400000002 +188.00000000000003 31 0.0 0 @@ -8181,15 +8563,15 @@ LINE 8 0 10 -470.0914344886082 +610.0914344886081 20 -113.77724400000001 +142.50000000000003 30 0.0 11 -458.6823435795173 +598.6823435795171 21 -113.77724400000001 +142.50000000000003 31 0.0 0 @@ -8199,15 +8581,15 @@ LINE 8 0 10 -458.6823435795173 +598.6823435795171 20 -113.77724400000001 +142.50000000000003 30 0.0 11 -458.6823435795173 +598.6823435795171 21 -113.27724400000001 +142.00000000000003 31 0.0 0 @@ -8217,15 +8599,15 @@ LINE 8 0 10 -458.6823435795173 +598.6823435795171 20 -113.27724400000001 +142.00000000000003 30 0.0 11 -470.0914344886082 +610.0914344886081 21 -113.27724400000001 +142.00000000000003 31 0.0 0 @@ -8235,15 +8617,15 @@ LINE 8 0 10 -470.0914344886082 +610.0914344886081 20 -113.27724400000001 +142.00000000000003 30 0.0 11 -470.0914344886082 +610.0914344886081 21 -113.77724400000001 +142.50000000000003 31 0.0 0 @@ -8253,15 +8635,15 @@ LINE 8 0 10 -497.3641617613354 +637.3641617613355 20 -113.77724400000001 +142.50000000000003 30 0.0 11 -485.95507085224455 +625.9550708522444 21 -113.77724400000001 +142.50000000000003 31 0.0 0 @@ -8271,15 +8653,15 @@ LINE 8 0 10 -485.95507085224455 +625.9550708522444 20 -113.77724400000001 +142.50000000000003 30 0.0 11 -485.95507085224455 +625.9550708522444 21 -113.27724400000001 +142.00000000000003 31 0.0 0 @@ -8289,15 +8671,15 @@ LINE 8 0 10 -485.95507085224455 +625.9550708522444 20 -113.27724400000001 +142.00000000000003 30 0.0 11 -497.3641617613354 +637.3641617613355 21 -113.27724400000001 +142.00000000000003 31 0.0 0 @@ -8307,15 +8689,15 @@ LINE 8 0 10 -497.3641617613354 +637.3641617613355 20 -113.27724400000001 +142.00000000000003 30 0.0 11 -497.3641617613354 +637.3641617613355 21 -113.77724400000001 +142.50000000000003 31 0.0 0 @@ -8325,15 +8707,15 @@ LINE 8 0 10 -500.27325267042636 +640.2732526704264 20 -130.70906218181818 +159.43181818181822 30 0.0 11 -500.27325267042636 +640.2732526704264 21 -119.1181530909091 +147.84090909090912 31 0.0 0 @@ -8343,15 +8725,15 @@ LINE 8 0 10 -500.27325267042636 +640.2732526704264 20 -119.1181530909091 +147.84090909090912 30 0.0 11 -500.77325267042636 +640.7732526704264 21 -119.1181530909091 +147.84090909090912 31 0.0 0 @@ -8361,15 +8743,15 @@ LINE 8 0 10 -500.77325267042636 +640.7732526704264 20 -119.1181530909091 +147.84090909090912 30 0.0 11 -500.77325267042636 +640.7732526704264 21 -130.70906218181818 +159.43181818181822 31 0.0 0 @@ -8379,15 +8761,15 @@ LINE 8 0 10 -500.77325267042636 +640.7732526704264 20 -130.70906218181818 +159.43181818181822 30 0.0 11 -500.27325267042636 +640.2732526704264 21 -130.70906218181818 +159.43181818181822 31 0.0 0 @@ -8397,15 +8779,15 @@ LINE 8 0 10 -500.27325267042636 +640.2732526704264 20 -158.43633490909093 +187.15909090909093 30 0.0 11 -500.27325267042636 +640.2732526704264 21 -146.8454258181818 +175.5681818181818 31 0.0 0 @@ -8415,15 +8797,15 @@ LINE 8 0 10 -500.27325267042636 +640.2732526704264 20 -146.8454258181818 +175.5681818181818 30 0.0 11 -500.77325267042636 +640.7732526704264 21 -146.8454258181818 +175.5681818181818 31 0.0 0 @@ -8433,15 +8815,15 @@ LINE 8 0 10 -500.77325267042636 +640.7732526704264 20 -146.8454258181818 +175.5681818181818 30 0.0 11 -500.77325267042636 +640.7732526704264 21 -158.43633490909093 +187.15909090909093 31 0.0 0 @@ -8451,15 +8833,15 @@ LINE 8 0 10 -500.77325267042636 +640.7732526704264 20 -158.43633490909093 +187.15909090909093 30 0.0 11 -500.27325267042636 +640.2732526704264 21 -158.43633490909093 +187.15909090909093 31 0.0 0 @@ -8469,15 +8851,15 @@ LINE 8 0 10 -340.52325267042636 +480.5232526704263 20 -121.52724400000001 +150.25 30 0.0 11 -340.52325267042636 +480.5232526704263 21 -118.52724400000001 +147.25000000000003 31 0.0 0 @@ -8487,15 +8869,15 @@ LINE 8 0 10 -340.52325267042636 +480.5232526704263 20 -118.52724400000001 +147.25000000000003 30 0.0 11 -343.52325267042636 +483.5232526704263 21 -118.52724400000001 +147.25000000000003 31 0.0 0 @@ -8505,15 +8887,15 @@ LINE 8 0 10 -343.52325267042636 +483.5232526704263 20 -118.52724400000001 +147.25000000000003 30 0.0 11 -343.52325267042636 +483.5232526704263 21 -121.52724400000001 +150.25 31 0.0 0 @@ -8523,15 +8905,15 @@ LINE 8 0 10 -343.52325267042636 +483.5232526704263 20 -121.52724400000001 +150.25 30 0.0 11 -340.52325267042636 +480.5232526704263 21 -121.52724400000001 +150.25 31 0.0 0 @@ -8541,15 +8923,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -120.52724400000001 +149.25000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -119.52724400000001 +148.25 31 0.0 0 @@ -8559,15 +8941,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -119.52724400000001 +148.25 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -119.52724400000001 +148.25 31 0.0 0 @@ -8577,15 +8959,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -119.52724400000001 +148.25 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -120.52724400000001 +149.25000000000003 31 0.0 0 @@ -8595,15 +8977,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -120.52724400000001 +149.25000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -120.52724400000001 +149.25000000000003 31 0.0 0 @@ -8613,15 +8995,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -123.02724400000001 +151.75000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -122.02724400000001 +150.75000000000003 31 0.0 0 @@ -8631,15 +9013,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -122.02724400000001 +150.75000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -122.02724400000001 +150.75000000000003 31 0.0 0 @@ -8649,15 +9031,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -122.02724400000001 +150.75000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -123.02724400000001 +151.75000000000003 31 0.0 0 @@ -8667,15 +9049,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -123.02724400000001 +151.75000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -123.02724400000001 +151.75000000000003 31 0.0 0 @@ -8685,15 +9067,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -123.02724400000001 +151.75000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -122.02724400000001 +150.75000000000003 31 0.0 0 @@ -8703,15 +9085,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -122.02724400000001 +150.75000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -122.02724400000001 +150.75000000000003 31 0.0 0 @@ -8721,15 +9103,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -122.02724400000001 +150.75000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -123.02724400000001 +151.75000000000003 31 0.0 0 @@ -8739,15 +9121,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -123.02724400000001 +151.75000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -123.02724400000001 +151.75000000000003 31 0.0 0 @@ -8757,15 +9139,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -125.52724400000001 +154.25000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -124.52724400000001 +153.25000000000003 31 0.0 0 @@ -8775,15 +9157,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -124.52724400000001 +153.25000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -124.52724400000001 +153.25000000000003 31 0.0 0 @@ -8793,15 +9175,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -124.52724400000001 +153.25000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -125.52724400000001 +154.25000000000003 31 0.0 0 @@ -8811,15 +9193,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -125.52724400000001 +154.25000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -125.52724400000001 +154.25000000000003 31 0.0 0 @@ -8829,15 +9211,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -125.52724400000001 +154.25000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -124.52724400000001 +153.25000000000003 31 0.0 0 @@ -8847,15 +9229,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -124.52724400000001 +153.25000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -124.52724400000001 +153.25000000000003 31 0.0 0 @@ -8865,15 +9247,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -124.52724400000001 +153.25000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -125.52724400000001 +154.25000000000003 31 0.0 0 @@ -8883,15 +9265,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -125.52724400000001 +154.25000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -125.52724400000001 +154.25000000000003 31 0.0 0 @@ -8901,15 +9283,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -128.02724400000002 +156.75 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -127.02724400000001 +155.75000000000003 31 0.0 0 @@ -8919,15 +9301,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -127.02724400000001 +155.75000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -127.02724400000001 +155.75000000000003 31 0.0 0 @@ -8937,15 +9319,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -127.02724400000001 +155.75000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -128.02724400000002 +156.75 31 0.0 0 @@ -8955,15 +9337,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -128.02724400000002 +156.75 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -128.02724400000002 +156.75 31 0.0 0 @@ -8973,15 +9355,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -128.02724400000002 +156.75 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -127.02724400000001 +155.75000000000003 31 0.0 0 @@ -8991,15 +9373,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -127.02724400000001 +155.75000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -127.02724400000001 +155.75000000000003 31 0.0 0 @@ -9009,15 +9391,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -127.02724400000001 +155.75000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -128.02724400000002 +156.75 31 0.0 0 @@ -9027,15 +9409,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -128.02724400000002 +156.75 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -128.02724400000002 +156.75 31 0.0 0 @@ -9045,15 +9427,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -130.52724400000002 +159.25 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -129.527244 +158.25000000000003 31 0.0 0 @@ -9063,15 +9445,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -129.527244 +158.25000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -129.527244 +158.25000000000003 31 0.0 0 @@ -9081,15 +9463,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -129.527244 +158.25000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -130.52724400000002 +159.25 31 0.0 0 @@ -9099,15 +9481,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -130.52724400000002 +159.25 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -130.52724400000002 +159.25 31 0.0 0 @@ -9117,15 +9499,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -130.52724400000002 +159.25 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -129.527244 +158.25000000000003 31 0.0 0 @@ -9135,15 +9517,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -129.527244 +158.25000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -129.527244 +158.25000000000003 31 0.0 0 @@ -9153,15 +9535,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -129.527244 +158.25000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -130.52724400000002 +159.25 31 0.0 0 @@ -9171,15 +9553,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -130.52724400000002 +159.25 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -130.52724400000002 +159.25 31 0.0 0 @@ -9189,15 +9571,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -133.027244 +161.75 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -132.027244 +160.75000000000003 31 0.0 0 @@ -9207,15 +9589,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -132.027244 +160.75000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -132.027244 +160.75000000000003 31 0.0 0 @@ -9225,15 +9607,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -132.027244 +160.75000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -133.027244 +161.75 31 0.0 0 @@ -9243,15 +9625,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -133.027244 +161.75 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -133.027244 +161.75 31 0.0 0 @@ -9261,15 +9643,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -133.027244 +161.75 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -132.027244 +160.75000000000003 31 0.0 0 @@ -9279,15 +9661,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -132.027244 +160.75000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -132.027244 +160.75000000000003 31 0.0 0 @@ -9297,15 +9679,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -132.027244 +160.75000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -133.027244 +161.75 31 0.0 0 @@ -9315,15 +9697,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -133.027244 +161.75 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -133.027244 +161.75 31 0.0 0 @@ -9333,15 +9715,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -135.527244 +164.25000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -134.52724400000002 +163.25000000000003 31 0.0 0 @@ -9351,15 +9733,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -134.52724400000002 +163.25000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -134.52724400000002 +163.25000000000003 31 0.0 0 @@ -9369,15 +9751,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -134.52724400000002 +163.25000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -135.527244 +164.25000000000003 31 0.0 0 @@ -9387,15 +9769,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -135.527244 +164.25000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -135.527244 +164.25000000000003 31 0.0 0 @@ -9405,15 +9787,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -135.527244 +164.25000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -134.52724400000002 +163.25000000000003 31 0.0 0 @@ -9423,15 +9805,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -134.52724400000002 +163.25000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -134.52724400000002 +163.25000000000003 31 0.0 0 @@ -9441,15 +9823,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -134.52724400000002 +163.25000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -135.527244 +164.25000000000003 31 0.0 0 @@ -9459,15 +9841,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -135.527244 +164.25000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -135.527244 +164.25000000000003 31 0.0 0 @@ -9477,15 +9859,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -138.02724400000002 +166.75000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -137.027244 +165.75 31 0.0 0 @@ -9495,15 +9877,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -137.027244 +165.75 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -137.027244 +165.75 31 0.0 0 @@ -9513,15 +9895,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -137.027244 +165.75 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -138.02724400000002 +166.75000000000003 31 0.0 0 @@ -9531,15 +9913,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -138.02724400000002 +166.75000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -138.02724400000002 +166.75000000000003 31 0.0 0 @@ -9549,15 +9931,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -138.02724400000002 +166.75000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -137.027244 +165.75 31 0.0 0 @@ -9567,15 +9949,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -137.027244 +165.75 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -137.027244 +165.75 31 0.0 0 @@ -9585,15 +9967,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -137.027244 +165.75 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -138.02724400000002 +166.75000000000003 31 0.0 0 @@ -9603,15 +9985,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -138.02724400000002 +166.75000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -138.02724400000002 +166.75000000000003 31 0.0 0 @@ -9621,15 +10003,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -140.52724400000002 +169.25000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -139.527244 +168.25 31 0.0 0 @@ -9639,15 +10021,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -139.527244 +168.25 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -139.527244 +168.25 31 0.0 0 @@ -9657,15 +10039,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -139.527244 +168.25 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -140.52724400000002 +169.25000000000003 31 0.0 0 @@ -9675,15 +10057,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -140.52724400000002 +169.25000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -140.52724400000002 +169.25000000000003 31 0.0 0 @@ -9693,15 +10075,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -140.52724400000002 +169.25000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -139.527244 +168.25 31 0.0 0 @@ -9711,15 +10093,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -139.527244 +168.25 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -139.527244 +168.25 31 0.0 0 @@ -9729,15 +10111,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -139.527244 +168.25 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -140.52724400000002 +169.25000000000003 31 0.0 0 @@ -9747,15 +10129,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -140.52724400000002 +169.25000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -140.52724400000002 +169.25000000000003 31 0.0 0 @@ -9765,15 +10147,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -143.02724400000002 +171.75000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -142.027244 +170.75 31 0.0 0 @@ -9783,15 +10165,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -142.027244 +170.75 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -142.027244 +170.75 31 0.0 0 @@ -9801,15 +10183,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -142.027244 +170.75 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -143.02724400000002 +171.75000000000003 31 0.0 0 @@ -9819,15 +10201,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -143.02724400000002 +171.75000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -143.02724400000002 +171.75000000000003 31 0.0 0 @@ -9837,15 +10219,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -143.02724400000002 +171.75000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -142.027244 +170.75 31 0.0 0 @@ -9855,15 +10237,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -142.027244 +170.75 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -142.027244 +170.75 31 0.0 0 @@ -9873,15 +10255,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -142.027244 +170.75 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -143.02724400000002 +171.75000000000003 31 0.0 0 @@ -9891,15 +10273,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -143.02724400000002 +171.75000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -143.02724400000002 +171.75000000000003 31 0.0 0 @@ -9909,15 +10291,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -145.52724400000002 +174.25000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -144.527244 +173.25000000000003 31 0.0 0 @@ -9927,15 +10309,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -144.527244 +173.25000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -144.527244 +173.25000000000003 31 0.0 0 @@ -9945,15 +10327,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -144.527244 +173.25000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -145.52724400000002 +174.25000000000003 31 0.0 0 @@ -9963,15 +10345,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -145.52724400000002 +174.25000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -145.52724400000002 +174.25000000000003 31 0.0 0 @@ -9981,15 +10363,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -145.52724400000002 +174.25000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -144.527244 +173.25000000000003 31 0.0 0 @@ -9999,15 +10381,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -144.527244 +173.25000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -144.527244 +173.25000000000003 31 0.0 0 @@ -10017,15 +10399,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -144.527244 +173.25000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -145.52724400000002 +174.25000000000003 31 0.0 0 @@ -10035,15 +10417,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -145.52724400000002 +174.25000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -145.52724400000002 +174.25000000000003 31 0.0 0 @@ -10053,15 +10435,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -148.02724400000002 +176.75000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -147.02724400000002 +175.75000000000003 31 0.0 0 @@ -10071,15 +10453,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -147.02724400000002 +175.75000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -147.02724400000002 +175.75000000000003 31 0.0 0 @@ -10089,15 +10471,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -147.02724400000002 +175.75000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -148.02724400000002 +176.75000000000003 31 0.0 0 @@ -10107,15 +10489,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -148.02724400000002 +176.75000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -148.02724400000002 +176.75000000000003 31 0.0 0 @@ -10125,15 +10507,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -148.02724400000002 +176.75000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -147.02724400000002 +175.75000000000003 31 0.0 0 @@ -10143,15 +10525,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -147.02724400000002 +175.75000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -147.02724400000002 +175.75000000000003 31 0.0 0 @@ -10161,15 +10543,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -147.02724400000002 +175.75000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -148.02724400000002 +176.75000000000003 31 0.0 0 @@ -10179,15 +10561,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -148.02724400000002 +176.75000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -148.02724400000002 +176.75000000000003 31 0.0 0 @@ -10197,15 +10579,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -150.52724400000002 +179.25000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -149.52724400000002 +178.25000000000003 31 0.0 0 @@ -10215,15 +10597,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -149.52724400000002 +178.25000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -149.52724400000002 +178.25000000000003 31 0.0 0 @@ -10233,15 +10615,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -149.52724400000002 +178.25000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -150.52724400000002 +179.25000000000003 31 0.0 0 @@ -10251,15 +10633,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -150.52724400000002 +179.25000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -150.52724400000002 +179.25000000000003 31 0.0 0 @@ -10269,15 +10651,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -150.52724400000002 +179.25000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -149.52724400000002 +178.25000000000003 31 0.0 0 @@ -10287,15 +10669,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -149.52724400000002 +178.25000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -149.52724400000002 +178.25000000000003 31 0.0 0 @@ -10305,15 +10687,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -149.52724400000002 +178.25000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -150.52724400000002 +179.25000000000003 31 0.0 0 @@ -10323,15 +10705,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -150.52724400000002 +179.25000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -150.52724400000002 +179.25000000000003 31 0.0 0 @@ -10341,15 +10723,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -153.027244 +181.75 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -152.02724400000002 +180.75000000000003 31 0.0 0 @@ -10359,15 +10741,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -152.02724400000002 +180.75000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -152.02724400000002 +180.75000000000003 31 0.0 0 @@ -10377,15 +10759,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -152.02724400000002 +180.75000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -153.027244 +181.75 31 0.0 0 @@ -10395,15 +10777,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -153.027244 +181.75 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -153.027244 +181.75 31 0.0 0 @@ -10413,15 +10795,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -153.027244 +181.75 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -152.02724400000002 +180.75000000000003 31 0.0 0 @@ -10431,15 +10813,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -152.02724400000002 +180.75000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -152.02724400000002 +180.75000000000003 31 0.0 0 @@ -10449,15 +10831,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -152.02724400000002 +180.75000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -153.027244 +181.75 31 0.0 0 @@ -10467,15 +10849,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -153.027244 +181.75 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -153.027244 +181.75 31 0.0 0 @@ -10485,15 +10867,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -155.527244 +184.25 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -154.52724400000002 +183.25000000000003 31 0.0 0 @@ -10503,15 +10885,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -154.52724400000002 +183.25000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -154.52724400000002 +183.25000000000003 31 0.0 0 @@ -10521,15 +10903,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -154.52724400000002 +183.25000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -155.527244 +184.25 31 0.0 0 @@ -10539,15 +10921,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -155.527244 +184.25 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -155.527244 +184.25 31 0.0 0 @@ -10557,15 +10939,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -155.527244 +184.25 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -154.52724400000002 +183.25000000000003 31 0.0 0 @@ -10575,15 +10957,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -154.52724400000002 +183.25000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -154.52724400000002 +183.25000000000003 31 0.0 0 @@ -10593,15 +10975,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -154.52724400000002 +183.25000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -155.527244 +184.25 31 0.0 0 @@ -10611,15 +10993,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -155.527244 +184.25 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -155.527244 +184.25 31 0.0 0 @@ -10629,15 +11011,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -158.027244 +186.75 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -157.02724400000002 +185.75000000000003 31 0.0 0 @@ -10647,15 +11029,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -157.02724400000002 +185.75000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -157.02724400000002 +185.75000000000003 31 0.0 0 @@ -10665,15 +11047,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -157.02724400000002 +185.75000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -158.027244 +186.75 31 0.0 0 @@ -10683,15 +11065,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -158.027244 +186.75 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -158.027244 +186.75 31 0.0 0 @@ -10701,15 +11083,15 @@ LINE 8 0 10 -360.52325267042636 +500.5232526704263 20 -159.02724400000002 +187.75000000000003 30 0.0 11 -360.52325267042636 +500.5232526704263 21 -156.02724400000002 +184.75000000000003 31 0.0 0 @@ -10719,15 +11101,15 @@ LINE 8 0 10 -360.52325267042636 +500.5232526704263 20 -156.02724400000002 +184.75000000000003 30 0.0 11 -363.5232526704263 +503.5232526704263 21 -156.02724400000002 +184.75000000000003 31 0.0 0 @@ -10737,15 +11119,15 @@ LINE 8 0 10 -363.5232526704263 +503.5232526704263 20 -156.02724400000002 +184.75000000000003 30 0.0 11 -363.5232526704263 +503.5232526704263 21 -159.02724400000002 +187.75000000000003 31 0.0 0 @@ -10755,15 +11137,15 @@ LINE 8 0 10 -363.5232526704263 +503.5232526704263 20 -159.02724400000002 +187.75000000000003 30 0.0 11 -360.52325267042636 +500.5232526704263 21 -159.02724400000002 +187.75000000000003 31 0.0 0 @@ -10773,15 +11155,15 @@ LINE 8 0 10 -356.27325267042636 +496.27325267042636 20 -116.02724400000001 +144.75000000000003 30 0.0 11 -347.77325267042636 +487.7732526704263 21 -116.02724400000001 +144.75000000000003 31 0.0 0 @@ -10791,15 +11173,15 @@ LINE 8 0 10 -347.77325267042636 +487.7732526704263 20 -116.02724400000001 +144.75000000000003 30 0.0 11 -347.77325267042636 +487.7732526704263 21 -115.52724400000001 +144.25000000000003 31 0.0 0 @@ -10809,15 +11191,15 @@ LINE 8 0 10 -347.77325267042636 +487.7732526704263 20 -115.52724400000001 +144.25000000000003 30 0.0 11 -356.27325267042636 +496.27325267042636 21 -115.52724400000001 +144.25000000000003 31 0.0 0 @@ -10827,15 +11209,15 @@ LINE 8 0 10 -356.27325267042636 +496.27325267042636 20 -115.52724400000001 +144.25000000000003 30 0.0 11 -356.27325267042636 +496.27325267042636 21 -116.02724400000001 +144.75000000000003 31 0.0 0 @@ -10845,15 +11227,15 @@ LINE 8 0 10 -347.77325267042636 +487.7732526704263 20 -163.77724400000002 +192.50000000000003 30 0.0 11 -356.27325267042636 +496.27325267042636 21 -163.77724400000002 +192.50000000000003 31 0.0 0 @@ -10863,15 +11245,15 @@ LINE 8 0 10 -356.27325267042636 +496.27325267042636 20 -163.77724400000002 +192.50000000000003 30 0.0 11 -356.27325267042636 +496.27325267042636 21 -164.27724400000002 +193.00000000000003 31 0.0 0 @@ -10881,15 +11263,15 @@ LINE 8 0 10 -356.27325267042636 +496.27325267042636 20 -164.27724400000002 +193.00000000000003 30 0.0 11 -347.77325267042636 +487.7732526704263 21 -164.27724400000002 +193.00000000000003 31 0.0 0 @@ -10899,15 +11281,15 @@ LINE 8 0 10 -347.77325267042636 +487.7732526704263 20 -164.27724400000002 +193.00000000000003 30 0.0 11 -347.77325267042636 +487.7732526704263 21 -163.77724400000002 +192.50000000000003 31 0.0 0 @@ -10917,15 +11299,15 @@ LINE 8 0 10 -332.5232526704263 +472.5232526704263 20 -119.3681530909091 +148.09090909090912 30 0.0 11 -337.52325267042636 +477.5232526704263 21 -119.3681530909091 +148.09090909090912 31 0.0 0 @@ -10935,15 +11317,15 @@ LINE 8 0 10 -337.52325267042636 +477.5232526704263 20 -119.3681530909091 +148.09090909090912 30 0.0 11 -337.52325267042636 +477.5232526704263 21 -130.45906218181818 +159.1818181818182 31 0.0 0 @@ -10953,15 +11335,15 @@ LINE 8 0 10 -337.52325267042636 +477.5232526704263 20 -130.45906218181818 +159.1818181818182 30 0.0 11 -332.5232526704263 +472.5232526704263 21 -130.45906218181818 +159.1818181818182 31 0.0 0 @@ -10971,15 +11353,15 @@ LINE 8 0 10 -332.5232526704263 +472.5232526704263 20 -147.0954258181818 +175.81818181818184 30 0.0 11 -337.52325267042636 +477.5232526704263 21 -147.0954258181818 +175.81818181818184 31 0.0 0 @@ -10989,15 +11371,15 @@ LINE 8 0 10 -337.52325267042636 +477.5232526704263 20 -147.0954258181818 +175.81818181818184 30 0.0 11 -337.52325267042636 +477.5232526704263 21 -158.18633490909093 +186.90909090909093 31 0.0 0 @@ -11007,15 +11389,15 @@ LINE 8 0 10 -337.52325267042636 +477.5232526704263 20 -158.18633490909093 +186.90909090909093 30 0.0 11 -332.5232526704263 +472.5232526704263 21 -158.18633490909093 +186.90909090909093 31 0.0 0 @@ -11025,15 +11407,15 @@ LINE 8 0 10 -357.77325267042636 +497.7732526704263 20 -92.27724400000001 +121.00000000000001 30 0.0 11 -361.27325267042636 +501.2732526704263 21 -92.27724400000001 +121.00000000000001 31 0.0 0 @@ -11043,15 +11425,15 @@ LINE 8 0 10 -361.27325267042636 +501.2732526704263 20 -92.27724400000001 +121.00000000000001 30 0.0 11 -361.27325267042636 +501.2732526704263 21 -100.27724400000001 +129.0 31 0.0 0 @@ -11061,15 +11443,15 @@ LINE 8 0 10 -361.27325267042636 +501.2732526704263 20 -100.27724400000001 +129.0 30 0.0 11 -357.77325267042636 +497.7732526704263 21 -100.27724400000001 +129.0 31 0.0 0 diff --git a/rocolib/output/BoatWithServoMountAndStack/graph-lasercutter.svg b/rocolib/output/BoatWithServoMountAndStack/graph-lasercutter.svg index 6197cbb3631177281bb0e96af7be02d475094d5f..ce1d5220543d4d57c9418b07b191748d47689318 100644 --- a/rocolib/output/BoatWithServoMountAndStack/graph-lasercutter.svg +++ b/rocolib/output/BoatWithServoMountAndStack/graph-lasercutter.svg @@ -1,562 +1,583 @@ <?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="330.277244mm" version="1.1" viewBox="0.000000 0.000000 508.023253 330.277244" width="508.023253mm"> +<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="485.000000mm" version="1.1" viewBox="0.000000 0.000000 648.023253 485.000000" width="648.023253mm"> <defs/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="190.0232526704263" x2="251.0232526704263" y1="96.27724400000001" y2="96.27724400000001"/> - <line stroke="#000000" x1="250.0232526704263" x2="251.0232526704263" y1="96.27724400000001" y2="96.27724400000001"/> - <line stroke="#000000" x1="250.0232526704263" x2="250.0232526704263" y1="96.27724400000001" y2="96.27724400000001"/> - <line stroke="#000000" x1="190.0232526704263" x2="190.0232526704263" y1="96.27724400000001" y2="96.27724400000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="190.0232526704263" x2="251.0232526704263" y1="60.1386220008147" y2="60.1386220008147"/> - <line stroke="#000000" x1="251.0232526704263" x2="251.0232526704263" y1="96.27724400000001" y2="60.1386220008147"/> - <line stroke="#000000" x1="190.0232526704263" x2="190.0232526704263" y1="60.1386220008147" y2="96.27724400000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="251.0232526704263" x2="190.0232526704263" y1="36.1386220008147" y2="36.1386220008147"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="251.0232526704263" x2="251.0232526704263" y1="36.1386220008147" y2="60.1386220008147"/> - <line stroke="#000000" x1="190.0232526704263" x2="190.0232526704263" y1="1.6293881799356315e-09" y2="36.138622000814706"/> - <line stroke="#000000" x1="251.0232526704263" x2="190.0232526704263" y1="1.6293881799356315e-09" y2="1.6293881799356315e-09"/> - <line stroke="#000000" x1="251.0232526704263" x2="251.0232526704263" y1="36.138622000814706" y2="1.6293881799356315e-09"/> - <line stroke="#000000" x1="261.0232526704263" x2="251.0232526704263" y1="36.1386220008147" y2="36.1386220008147"/> - <line stroke="#000000" x1="261.0232526704263" x2="261.0232526704263" y1="60.1386220008147" y2="36.1386220008147"/> - <line stroke="#000000" x1="251.0232526704263" x2="261.0232526704263" y1="60.1386220008147" y2="60.1386220008147"/> - <line stroke="#000000" x1="180.02325267042627" x2="190.0232526704263" y1="60.1386220008147" y2="60.1386220008147"/> - <line stroke="#000000" x1="180.02325267042627" x2="180.02325267042627" y1="36.1386220008147" y2="60.1386220008147"/> - <line stroke="#000000" x1="190.0232526704263" x2="180.02325267042627" y1="36.1386220008147" y2="36.1386220008147"/> - <line stroke="#000000" x1="166.02325267042627" x2="86.02325267042629" y1="96.27724400000001" y2="96.27724400000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="166.02325267042627" x2="190.0232526704263" y1="96.27724400000001" y2="96.27724400000001"/> - <line stroke="#000000" x1="250.0232526704263" x2="250.0232526704263" y1="96.27724400000001" y2="96.27724400000001"/> - <line stroke="#000000" x1="86.02325267042629" x2="86.02325267042629" y1="96.27724400000001" y2="96.27724400000001"/> - <line stroke="#000000" x1="190.0232526704263" x2="166.02325267042627" y1="62.277244" y2="62.277244"/> - <line stroke="#000000" x1="190.0232526704263" x2="190.0232526704263" y1="96.27724400000001" y2="62.277244"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="166.02325267042627" x2="166.02325267042627" y1="62.277244" y2="96.27724400000001"/> - <line stroke="#000000" x1="166.02325267042627" x2="146.02325267042627" y1="62.277244" y2="62.277244"/> - <line stroke="#000000" x1="146.02325267042627" x2="166.02325267042627" y1="96.27724400000001" y2="96.27724400000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="146.02325267042627" x2="146.02325267042627" y1="62.277244" y2="96.27724400000001"/> - <line stroke="#000000" x1="146.02325267042627" x2="122.02325267042629" y1="62.277244" y2="62.277244"/> - <line stroke="#000000" x1="122.02325267042629" x2="146.02325267042627" y1="96.27724400000001" y2="96.27724400000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="122.02325267042629" x2="122.02325267042629" y1="62.277244" y2="96.27724400000001"/> - <line stroke="#000000" x1="122.02325267042629" x2="102.02325267042629" y1="62.277244" y2="62.277244"/> - <line stroke="#000000" x1="102.02325267042629" x2="122.02325267042629" y1="96.27724400000001" y2="96.27724400000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="102.02325267042629" x2="102.02325267042629" y1="96.27724400000001" y2="62.277244"/> - <line stroke="#000000" x1="92.02325267042629" x2="102.02325267042629" y1="96.27724400000001" y2="96.27724400000001"/> - <line stroke="#000000" x1="92.02325267042629" x2="92.02325267042629" y1="62.277244" y2="96.27724400000001"/> - <line stroke="#000000" x1="102.02325267042629" x2="92.02325267042629" y1="62.277244" y2="62.277244"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="250.0232526704263" x2="86.02325267042629" y1="166.27724400000002" y2="166.27724400000002"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="250.0232526704263" x2="250.0232526704263" y1="166.27724400000002" y2="96.27724400000001"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="250.0232526704263" x2="320.0232526704263" y1="96.27724400000001" y2="96.27724400000001"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="250.0232526704263" x2="320.0232526704263" y1="166.27724400000002" y2="96.27724400000001"/> - <line stroke="#000000" x1="250.02325267042633" x2="250.02325267042633" y1="72.94391066666668" y2="96.27724400000001"/> - <line stroke="#000000" x1="320.0232526704263" x2="250.02325267042633" y1="72.94391066666668" y2="72.94391066666668"/> - <line stroke="#000000" x1="320.0232526704263" x2="320.0232526704263" y1="96.27724400000001" y2="72.94391066666668"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="250.02325267042633" x2="320.02325267042636" y1="166.27724400000002" y2="166.27724400000002"/> - <line stroke="#000000" x1="320.02325267042636" x2="320.0232526704263" y1="166.27724400000002" y2="96.27724400000001"/> - <line stroke="#000000" x1="320.02325267042636" x2="320.0232526704263" y1="236.277244" y2="166.27724400000002"/> - <line stroke="#000000" x1="320.0232526704263" x2="320.02325267042636" y1="196.27724400000002" y2="236.277244"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="250.02325267042633" x2="250.02325267042633" y1="196.27724400000002" y2="166.27724400000002"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="250.0232526704263" x2="250.0232526704263" y1="226.27724400000002" y2="196.27724400000002"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="320.0232526704263" x2="250.02325267042633" y1="226.27724400000002" y2="226.27724400000002"/> - <line stroke="#000000" x1="320.0232526704263" x2="320.0232526704263" y1="156.27724400000005" y2="196.27724400000002"/> - <line stroke="#000000" x1="320.0232526704263" x2="320.0232526704263" y1="226.27724400000002" y2="156.27724400000005"/> - <line stroke="#000000" x1="320.0232526704263" x2="320.0232526704263" y1="296.277244" y2="226.27724400000002"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="320.0232526704263" x2="250.02325267042633" y1="296.277244" y2="226.27724400000002"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="250.02325267042633" x2="250.0232526704263" y1="296.277244" y2="226.27724400000002"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="320.0232526704263" x2="250.02325267042633" y1="296.277244" y2="296.277244"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="250.0232526704263" x2="86.02325267042632" y1="226.27724399999997" y2="226.27724400000005"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="190.02325267042633" x2="166.0232526704263" y1="296.277244" y2="296.277244"/> - <line stroke="#000000" x1="86.02325267042634" x2="166.0232526704263" y1="296.277244" y2="296.277244"/> - <line stroke="#000000" x1="86.02325267042634" x2="86.02325267042634" y1="296.277244" y2="296.277244"/> - <line stroke="#000000" x1="250.02325267042633" x2="250.02325267042633" y1="296.277244" y2="296.277244"/> - <line stroke="#000000" x1="251.02325267042633" x2="250.02325267042633" y1="296.277244" y2="296.277244"/> - <line stroke="#000000" x1="190.02325267042633" x2="190.02325267042633" y1="296.277244" y2="296.277244"/> - <line stroke="#000000" x1="250.02325267042633" x2="250.02325267042633" y1="296.277244" y2="296.277244"/> - <line stroke="#000000" x1="251.02325267042633" x2="251.02325267042633" y1="306.277244" y2="296.277244"/> - <line stroke="#000000" x1="190.02325267042633" x2="251.02325267042633" y1="306.277244" y2="306.277244"/> - <line stroke="#000000" x1="190.02325267042633" x2="190.02325267042633" y1="296.277244" y2="306.277244"/> - <line stroke="#000000" x1="190.02325267042636" x2="190.02325267042633" y1="330.27724400000005" y2="296.277244"/> - <line stroke="#000000" x1="166.02325267042633" x2="190.02325267042636" y1="330.27724400000005" y2="330.27724400000005"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="166.0232526704263" x2="166.02325267042633" y1="296.277244" y2="330.27724400000005"/> - <line stroke="#000000" x1="166.0232526704263" x2="146.0232526704263" y1="296.277244" y2="296.277244"/> - <line stroke="#000000" x1="146.02325267042636" x2="166.02325267042633" y1="330.27724400000005" y2="330.27724400000005"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="146.0232526704263" x2="146.02325267042636" y1="296.277244" y2="330.27724400000005"/> - <line stroke="#000000" x1="146.0232526704263" x2="122.02325267042633" y1="296.277244" y2="296.277244"/> - <line stroke="#000000" x1="122.02325267042634" x2="146.02325267042636" y1="330.27724400000005" y2="330.27724400000005"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="122.02325267042633" x2="122.02325267042634" y1="296.277244" y2="330.27724400000005"/> - <line stroke="#000000" x1="122.02325267042634" x2="102.02325267042634" y1="296.277244" y2="296.277244"/> - <line stroke="#000000" x1="102.02325267042634" x2="122.02325267042634" y1="330.27724400000005" y2="330.27724400000005"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="102.02325267042634" x2="102.02325267042634" y1="330.27724400000005" y2="296.277244"/> - <line stroke="#000000" x1="92.02325267042633" x2="102.02325267042634" y1="330.27724400000005" y2="330.27724400000005"/> - <line stroke="#000000" x1="92.02325267042632" x2="92.02325267042633" y1="296.277244" y2="330.27724400000005"/> - <line stroke="#000000" x1="102.02325267042633" x2="92.02325267042632" y1="296.277244" y2="296.277244"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.02325267042632" x2="86.02325267042634" y1="226.27724400000008" y2="296.27724400000005"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.02325267042634" x2="37.52421865697312" y1="296.277244" y2="296.27724400000005"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.02325267042632" x2="37.52421865697312" y1="226.27724400000008" y2="296.27724400000005"/> - <line stroke="#000000" x1="86.02325267042634" x2="86.02325267042634" y1="312.44358867115113" y2="296.277244"/> - <line stroke="#000000" x1="37.52421865697312" x2="86.02325267042634" y1="312.44358867115113" y2="312.44358867115113"/> - <line stroke="#000000" x1="37.52421865697312" x2="37.52421865697312" y1="296.27724400000005" y2="312.44358867115113"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.02325267042633" x2="20.485430034662475" y1="226.27724400000005" y2="250.8697998688633"/> - <line stroke="#000000" x1="20.485430034662475" x2="37.52421865697312" y1="250.8697998688633" y2="296.27724400000005"/> - <line stroke="#000000" x1="3.4466414123517666" x2="20.485430034662446" y1="205.46235573772654" y2="250.8697998688633"/> - <line stroke="#000000" x1="0.0" x2="3.4466414123517666" y1="196.27724400000008" y2="205.46235573772654"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="0.0" x2="86.0232526704263" y1="196.27724400000008" y2="226.27724400000005"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.02325267042629" x2="86.0232526704263" y1="196.27724400000005" y2="226.27724400000008"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.02325267042627" x2="86.02325267042629" y1="166.27724400000005" y2="196.27724400000002"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="2.8421709430404014e-14" x2="86.02325267042629" y1="196.27724400000008" y2="166.27724400000005"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="20.485430034662386" x2="86.02325267042626" y1="141.68468813113688" y2="166.27724400000008"/> - <line stroke="#000000" x1="3.4466414123517386" x2="0.0" y1="187.09213226227365" y2="196.27724400000008"/> - <line stroke="#000000" x1="20.485430034662386" x2="3.4466414123517386" y1="141.68468813113688" y2="187.09213226227365"/> - <line stroke="#000000" x1="37.52421865697301" x2="20.485430034662386" y1="96.27724400000005" y2="141.68468813113688"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="37.52421865697301" x2="86.02325267042626" y1="96.27724400000005" y2="166.27724400000008"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.02325267042627" x2="86.0232526704263" y1="96.27724400000004" y2="166.27724400000008"/> - <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="37.52421865697304" x2="86.02325267042627" y1="96.27724400000005" y2="96.27724400000004"/> - <line stroke="#000000" x1="37.52421865697304" x2="37.52421865697304" y1="80.110899328849" y2="96.27724400000005"/> - <line stroke="#000000" x1="86.02325267042627" x2="37.52421865697304" y1="80.11089932884899" y2="80.110899328849"/> - <line stroke="#000000" x1="86.02325267042627" x2="86.02325267042627" y1="96.27724400000004" y2="80.11089932884899"/> - <line stroke="#000000" x1="320.0232526704263" x2="320.0232526704263" y1="319.61057733333325" y2="296.277244"/> - <line stroke="#000000" x1="250.02325267042633" x2="320.0232526704263" y1="319.61057733333325" y2="319.61057733333325"/> - <line stroke="#000000" x1="250.02325267042633" x2="250.02325267042633" y1="296.277244" y2="319.61057733333325"/> - <line stroke="#888888" x1="208.0232526704263" x2="219.0232526704263" y1="41.63862200081469" y2="41.63862200081469"/> - <line stroke="#888888" x1="219.0232526704263" x2="219.0232526704263" y1="41.63862200081469" y2="54.63862200081469"/> - <line stroke="#888888" x1="219.0232526704263" x2="208.0232526704263" y1="54.63862200081469" y2="54.63862200081469"/> - <line stroke="#888888" x1="208.0232526704263" x2="208.0232526704263" y1="54.63862200081469" y2="41.63862200081469"/> - <line stroke="#888888" x1="239.5232526704263" x2="245.5232526704263" y1="43.1386220008147" y2="43.1386220008147"/> - <line stroke="#888888" x1="245.5232526704263" x2="245.5232526704263" y1="43.1386220008147" y2="53.1386220008147"/> - <line stroke="#888888" x1="245.5232526704263" x2="239.5232526704263" y1="53.1386220008147" y2="53.1386220008147"/> - <line stroke="#888888" x1="239.5232526704263" x2="239.5232526704263" y1="53.1386220008147" y2="43.1386220008147"/> - <line stroke="#888888" x1="212.4550708522445" x2="200.8641617613354" y1="7.750000001629389" y2="7.750000001629389"/> - <line stroke="#888888" x1="200.8641617613354" x2="200.8641617613354" y1="7.750000001629389" y2="7.250000001629389"/> - <line stroke="#888888" x1="200.8641617613354" x2="212.4550708522445" y1="7.250000001629389" y2="7.250000001629389"/> - <line stroke="#888888" x1="212.4550708522445" x2="212.4550708522445" y1="7.250000001629389" y2="7.750000001629389"/> - <line stroke="#888888" x1="240.1823435795172" x2="228.59143448860814" y1="7.750000001629389" y2="7.750000001629389"/> - <line stroke="#888888" x1="228.59143448860814" x2="228.59143448860814" y1="7.750000001629389" y2="7.250000001629389"/> - <line stroke="#888888" x1="228.59143448860814" x2="240.1823435795172" y1="7.250000001629389" y2="7.250000001629389"/> - <line stroke="#888888" x1="240.1823435795172" x2="240.1823435795172" y1="7.250000001629389" y2="7.750000001629389"/> - <line stroke="#888888" x1="258.5232526704263" x2="253.5232526704263" y1="52.1386220008147" y2="52.1386220008147"/> - <line stroke="#888888" x1="253.5232526704263" x2="253.5232526704263" y1="52.1386220008147" y2="44.1386220008147"/> - <line stroke="#888888" x1="253.5232526704263" x2="258.5232526704263" y1="44.1386220008147" y2="44.1386220008147"/> - <line stroke="#888888" x1="182.5232526704263" x2="187.5232526704263" y1="44.1386220008147" y2="44.1386220008147"/> - <line stroke="#888888" x1="187.5232526704263" x2="187.5232526704263" y1="44.1386220008147" y2="52.1386220008147"/> - <line stroke="#888888" x1="187.5232526704263" x2="182.5232526704263" y1="52.1386220008147" y2="52.1386220008147"/> - <line stroke="#888888" x1="182.27325267042627" x2="182.27325267042627" y1="85.19391066666667" y2="73.36057733333335"/> - <line stroke="#888888" x1="182.27325267042627" x2="182.7732526704263" y1="73.36057733333335" y2="73.36057733333335"/> - <line stroke="#888888" x1="182.7732526704263" x2="182.7732526704263" y1="73.36057733333335" y2="85.19391066666667"/> - <line stroke="#888888" x1="182.7732526704263" x2="182.27325267042627" y1="85.19391066666667" y2="85.19391066666667"/> - <line stroke="#888888" x1="147.0232526704263" x2="151.0232526704263" y1="73.27724400000001" y2="73.27724400000001"/> - <line stroke="#888888" x1="151.0232526704263" x2="151.0232526704263" y1="73.27724400000001" y2="85.27724400000001"/> - <line stroke="#888888" x1="151.0232526704263" x2="147.0232526704263" y1="85.27724400000001" y2="85.27724400000001"/> - <line stroke="#888888" x1="147.0232526704263" x2="147.0232526704263" y1="85.27724400000001" y2="73.27724400000001"/> - <line stroke="#888888" x1="159.02325267042627" x2="163.0232526704263" y1="74.777244" y2="74.777244"/> - <line stroke="#888888" x1="163.0232526704263" x2="163.0232526704263" y1="74.777244" y2="83.777244"/> - <line stroke="#888888" x1="163.0232526704263" x2="159.02325267042627" y1="83.777244" y2="83.777244"/> - <line stroke="#888888" x1="159.02325267042627" x2="159.02325267042627" y1="83.777244" y2="74.777244"/> - <line stroke="#888888" x1="122.52325267042629" x2="145.52325267042627" y1="73.27724400000001" y2="73.27724400000001"/> - <line stroke="#888888" x1="145.52325267042627" x2="145.52325267042627" y1="73.27724400000001" y2="85.27724400000001"/> - <line stroke="#888888" x1="145.52325267042627" x2="122.52325267042629" y1="85.27724400000001" y2="85.27724400000001"/> - <line stroke="#888888" x1="122.52325267042629" x2="122.52325267042629" y1="85.27724400000001" y2="73.27724400000001"/> - <line stroke="#888888" x1="117.02325267042629" x2="121.02325267042629" y1="73.27724400000001" y2="73.27724400000001"/> - <line stroke="#888888" x1="121.02325267042629" x2="121.02325267042629" y1="73.27724400000001" y2="85.27724400000001"/> - <line stroke="#888888" x1="121.02325267042629" x2="117.02325267042629" y1="85.27724400000001" y2="85.27724400000001"/> - <line stroke="#888888" x1="117.02325267042629" x2="117.02325267042629" y1="85.27724400000001" y2="73.27724400000001"/> - <line stroke="#888888" x1="94.52325267042627" x2="99.52325267042629" y1="73.61057733333334" y2="73.61057733333334"/> - <line stroke="#888888" x1="99.52325267042629" x2="99.52325267042629" y1="73.61057733333334" y2="84.94391066666667"/> - <line stroke="#888888" x1="99.52325267042629" x2="94.52325267042627" y1="84.94391066666667" y2="84.94391066666667"/> - <line stroke="#888888" x1="296.68991933709293" x2="296.68991933709293" y1="78.77724400000001" y2="90.44391066666668"/> - <line stroke="#888888" x1="296.68991933709293" x2="273.3565860037596" y1="90.44391066666668" y2="90.44391066666668"/> - <line stroke="#888888" x1="273.3565860037596" x2="273.3565860037596" y1="90.44391066666668" y2="78.77724400000001"/> - <line stroke="#888888" x1="302.27325267042636" x2="302.2732526704263" y1="213.19391066666668" y2="189.36057733333334"/> - <line stroke="#888888" x1="302.2732526704263" x2="302.7732526704263" y1="189.36057733333334" y2="189.36057733333334"/> - <line stroke="#888888" x1="302.7732526704263" x2="302.77325267042636" y1="189.36057733333334" y2="213.19391066666668"/> - <line stroke="#888888" x1="302.77325267042636" x2="302.27325267042636" y1="213.19391066666668" y2="213.19391066666668"/> - <line stroke="#888888" x1="302.27325267042636" x2="302.27325267042636" y1="203.19391066666668" y2="179.3605773333334"/> - <line stroke="#888888" x1="302.27325267042636" x2="302.77325267042636" y1="179.3605773333334" y2="179.3605773333334"/> - <line stroke="#888888" x1="302.77325267042636" x2="302.77325267042636" y1="179.3605773333334" y2="203.19391066666668"/> - <line stroke="#888888" x1="302.77325267042636" x2="302.27325267042636" y1="203.19391066666668" y2="203.19391066666668"/> - <line stroke="#888888" x1="201.1141617613354" x2="201.1141617613354" y1="303.77724400000005" y2="298.77724400000005"/> - <line stroke="#888888" x1="201.1141617613354" x2="212.20507085224452" y1="298.77724400000005" y2="298.77724400000005"/> - <line stroke="#888888" x1="212.20507085224452" x2="212.20507085224452" y1="298.77724400000005" y2="303.77724400000005"/> - <line stroke="#888888" x1="228.84143448860814" x2="228.84143448860814" y1="303.77724400000005" y2="298.77724400000005"/> - <line stroke="#888888" x1="228.84143448860814" x2="239.93234357951724" y1="298.77724400000005" y2="298.77724400000005"/> - <line stroke="#888888" x1="239.93234357951724" x2="239.93234357951724" y1="298.77724400000005" y2="303.77724400000005"/> - <line stroke="#888888" x1="182.27325267042636" x2="182.2732526704263" y1="319.1939106666666" y2="307.3605773333334"/> - <line stroke="#888888" x1="182.2732526704263" x2="182.77325267042633" y1="307.3605773333334" y2="307.3605773333334"/> - <line stroke="#888888" x1="182.77325267042633" x2="182.77325267042636" y1="307.3605773333334" y2="319.1939106666666"/> - <line stroke="#888888" x1="182.77325267042636" x2="182.27325267042636" y1="319.1939106666666" y2="319.1939106666666"/> - <line stroke="#888888" x1="147.02325267042633" x2="151.02325267042633" y1="307.27724400000005" y2="307.27724400000005"/> - <line stroke="#888888" x1="151.02325267042633" x2="151.02325267042633" y1="307.27724400000005" y2="319.277244"/> - <line stroke="#888888" x1="151.02325267042633" x2="147.02325267042633" y1="319.277244" y2="319.277244"/> - <line stroke="#888888" x1="147.02325267042633" x2="147.02325267042633" y1="319.277244" y2="307.27724400000005"/> - <line stroke="#888888" x1="159.0232526704263" x2="163.02325267042633" y1="308.77724400000005" y2="308.77724400000005"/> - <line stroke="#888888" x1="163.02325267042633" x2="163.02325267042633" y1="308.77724400000005" y2="317.77724400000005"/> - <line stroke="#888888" x1="163.02325267042633" x2="159.0232526704263" y1="317.77724400000005" y2="317.77724400000005"/> - <line stroke="#888888" x1="159.0232526704263" x2="159.0232526704263" y1="317.77724400000005" y2="308.77724400000005"/> - <line stroke="#888888" x1="122.52325267042634" x2="145.52325267042633" y1="307.27724400000005" y2="307.27724400000005"/> - <line stroke="#888888" x1="145.52325267042633" x2="145.52325267042633" y1="307.27724400000005" y2="319.277244"/> - <line stroke="#888888" x1="145.52325267042633" x2="122.52325267042634" y1="319.277244" y2="319.277244"/> - <line stroke="#888888" x1="122.52325267042634" x2="122.52325267042634" y1="319.277244" y2="307.27724400000005"/> - <line stroke="#888888" x1="117.02325267042634" x2="121.02325267042634" y1="307.27724400000005" y2="307.27724400000005"/> - <line stroke="#888888" x1="121.02325267042634" x2="121.02325267042634" y1="307.27724400000005" y2="319.277244"/> - <line stroke="#888888" x1="121.02325267042634" x2="117.02325267042634" y1="319.277244" y2="319.277244"/> - <line stroke="#888888" x1="117.02325267042634" x2="117.02325267042634" y1="319.277244" y2="307.27724400000005"/> - <line stroke="#888888" x1="94.52325267042633" x2="99.52325267042633" y1="307.6105773333334" y2="307.6105773333334"/> - <line stroke="#888888" x1="99.52325267042633" x2="99.52325267042634" y1="307.6105773333334" y2="318.9439106666666"/> - <line stroke="#888888" x1="99.52325267042634" x2="94.52325267042634" y1="318.9439106666666" y2="318.9439106666666"/> - <line stroke="#888888" x1="53.69056332812418" x2="53.69056332812418" y1="308.4020025033634" y2="300.3188301677879"/> - <line stroke="#888888" x1="53.69056332812418" x2="69.85690799927526" y1="300.3188301677879" y2="300.3188301677879"/> - <line stroke="#888888" x1="69.85690799927526" x2="69.85690799927526" y1="300.3188301677879" y2="308.4020025033634"/> - <line stroke="#888888" x1="20.624331748168913" x2="26.479589068954827" y1="216.0165790835827" y2="231.62052109850282"/> - <line stroke="#888888" x1="26.479589068954827" x2="26.01146176441367" y1="231.62052109850282" y2="231.7961822118518"/> - <line stroke="#888888" x1="26.01146176441367" x2="20.156204443627757" y1="231.7961822118518" y2="216.19224019693172"/> - <line stroke="#888888" x1="20.156204443627757" x2="20.624331748168913" y1="216.19224019693172" y2="216.0165790835827"/> - <line stroke="#888888" x1="26.479589068954795" x2="20.62433174816889" y1="160.9339669014974" y2="176.5379089164175"/> - <line stroke="#888888" x1="20.62433174816889" x2="20.156204443627733" y1="176.5379089164175" y2="176.3622478030685"/> - <line stroke="#888888" x1="20.156204443627733" x2="26.011461764413642" y1="176.3622478030685" y2="160.75830578814833"/> - <line stroke="#888888" x1="26.011461764413642" x2="26.479589068954795" y1="160.75830578814833" y2="160.9339669014974"/> - <line stroke="#888888" x1="69.8569079992752" x2="69.8569079992752" y1="84.15248549663676" y2="92.23565783221228"/> - <line stroke="#888888" x1="69.8569079992752" x2="53.69056332812412" y1="92.23565783221228" y2="92.2356578322123"/> - <line stroke="#888888" x1="53.69056332812412" x2="53.69056332812412" y1="92.2356578322123" y2="84.15248549663677"/> - <line stroke="#888888" x1="273.3565860037596" x2="273.3565860037596" y1="313.77724400000005" y2="302.1105773333333"/> - <line stroke="#888888" x1="273.3565860037596" x2="296.68991933709304" y1="302.1105773333333" y2="302.1105773333333"/> - <line stroke="#888888" x1="296.68991933709304" x2="296.68991933709304" y1="302.1105773333333" y2="313.77724400000005"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="363.02325267042636" x2="424.02325267042636" y1="84.27724400000001" y2="84.27724400000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="424.02325267042636" x2="424.02325267042636" y1="84.27724400000001" y2="108.27724400000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="424.02325267042636" x2="363.02325267042636" y1="108.27724400000001" y2="108.27724400000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="363.02325267042636" x2="363.02325267042636" y1="108.27724400000001" y2="84.27724400000001"/> - <line stroke="#000000" x1="363.02325267042636" x2="363.02325267042636" y1="77.277244" y2="84.27724400000001"/> - <line stroke="#000000" x1="423.0232526704263" x2="363.02325267042636" y1="77.277244" y2="77.277244"/> - <line stroke="#000000" x1="423.0232526704263" x2="423.0232526704263" y1="84.27724400000001" y2="77.277244"/> - <line stroke="#000000" x1="431.02325267042636" x2="424.02325267042636" y1="84.27724400000001" y2="84.27724400000001"/> - <line stroke="#000000" x1="431.02325267042636" x2="431.02325267042636" y1="108.27724400000001" y2="84.27724400000001"/> - <line stroke="#000000" x1="424.02325267042636" x2="431.02325267042636" y1="108.27724400000001" y2="108.27724400000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="424.02325267042636" x2="424.02325267042636" y1="108.27724400000001" y2="169.277244"/> - <line stroke="#000000" x1="364.0232526704263" x2="424.02325267042636" y1="169.277244" y2="169.277244"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="364.0232526704263" x2="364.0232526704263" y1="108.27724400000001" y2="169.277244"/> - <line stroke="#000000" x1="448.02325267042636" x2="424.02325267042636" y1="108.27724400000001" y2="108.27724400000001"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="448.02325267042636" x2="448.02325267042636" y1="108.27724400000001" y2="169.277244"/> - <line stroke="#000000" x1="424.02325267042636" x2="448.02325267042636" y1="169.277244" y2="169.277244"/> - <line stroke="#000000" x1="508.02325267042636" x2="448.02325267042636" y1="108.27724400000001" y2="108.27724400000001"/> - <line stroke="#000000" x1="508.02325267042636" x2="508.02325267042636" y1="169.277244" y2="108.27724400000001"/> - <line stroke="#000000" x1="448.02325267042636" x2="508.02325267042636" y1="169.277244" y2="169.277244"/> - <line stroke="#000000" x1="364.0232526704263" x2="340.02325267042636" y1="108.27724400000001" y2="108.27724400000001"/> - <line stroke="#000000" x1="340.02325267042636" x2="364.0232526704263" y1="169.277244" y2="169.277244"/> - <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="340.02325267042636" x2="340.02325267042636" y1="169.277244" y2="108.27724400000001"/> - <line stroke="#000000" x1="330.02325267042636" x2="340.02325267042636" y1="169.277244" y2="169.277244"/> - <line stroke="#000000" x1="330.02325267042636" x2="330.02325267042636" y1="108.27724400000001" y2="169.277244"/> - <line stroke="#000000" x1="340.02325267042636" x2="330.02325267042636" y1="108.27724400000001" y2="108.27724400000001"/> - <line stroke="#000000" x1="356.02325267042636" x2="363.02325267042636" y1="108.27724400000001" y2="108.27724400000001"/> - <line stroke="#000000" x1="356.02325267042636" x2="356.02325267042636" y1="84.27724400000001" y2="108.27724400000001"/> - <line stroke="#000000" x1="363.02325267042636" x2="356.02325267042636" y1="84.27724400000001" y2="84.27724400000001"/> - <line stroke="#888888" x1="412.1141617613354" x2="415.6141617613354" y1="79.02724400000001" y2="79.02724400000001"/> - <line stroke="#888888" x1="415.6141617613354" x2="412.1141617613354" y1="79.02724400000001" y2="82.52724400000001"/> - <line stroke="#888888" x1="412.1141617613354" x2="401.20507085224455" y1="82.52724400000001" y2="82.52724400000001"/> - <line stroke="#888888" x1="401.20507085224455" x2="397.7050708522445" y1="82.52724400000001" y2="79.02724400000001"/> - <line stroke="#888888" x1="397.7050708522445" x2="401.20507085224455" y1="79.02724400000001" y2="79.02724400000001"/> - <line stroke="#888888" x1="384.8414344886081" x2="388.3414344886082" y1="79.02724400000001" y2="79.02724400000001"/> - <line stroke="#888888" x1="388.3414344886082" x2="384.8414344886081" y1="79.02724400000001" y2="82.52724400000001"/> - <line stroke="#888888" x1="384.8414344886081" x2="373.93234357951724" y1="82.52724400000001" y2="82.52724400000001"/> - <line stroke="#888888" x1="373.93234357951724" x2="370.4323435795173" y1="82.52724400000001" y2="79.02724400000001"/> - <line stroke="#888888" x1="370.4323435795173" x2="373.93234357951724" y1="79.02724400000001" y2="79.02724400000001"/> - <line stroke="#888888" x1="429.27325267042636" x2="425.77325267042636" y1="100.27724400000001" y2="100.27724400000001"/> - <line stroke="#888888" x1="425.77325267042636" x2="425.77325267042636" y1="100.27724400000001" y2="92.27724400000001"/> - <line stroke="#888888" x1="425.77325267042636" x2="429.27325267042636" y1="92.27724400000001" y2="92.27724400000001"/> - <line stroke="#888888" x1="371.52325267042636" x2="371.52325267042636" y1="159.777244" y2="141.777244"/> - <line stroke="#888888" x1="371.52325267042636" x2="406.52325267042636" y1="141.777244" y2="141.777244"/> - <line stroke="#888888" x1="406.52325267042636" x2="406.52325267042636" y1="141.777244" y2="159.777244"/> - <line stroke="#888888" x1="406.52325267042636" x2="371.52325267042636" y1="159.777244" y2="159.777244"/> - <line stroke="#888888" x1="424.52325267042636" x2="424.52325267042636" y1="121.52724400000001" y2="118.52724400000001"/> - <line stroke="#888888" x1="424.52325267042636" x2="427.5232526704263" y1="118.52724400000001" y2="118.52724400000001"/> - <line stroke="#888888" x1="427.5232526704263" x2="427.5232526704263" y1="118.52724400000001" y2="121.52724400000001"/> - <line stroke="#888888" x1="427.5232526704263" x2="424.52325267042636" y1="121.52724400000001" y2="121.52724400000001"/> - <line stroke="#888888" x1="445.52325267042636" x2="445.52325267042636" y1="120.52724400000001" y2="119.52724400000001"/> - <line stroke="#888888" x1="445.52325267042636" x2="446.52325267042636" y1="119.52724400000001" y2="119.52724400000001"/> - <line stroke="#888888" x1="446.52325267042636" x2="446.52325267042636" y1="119.52724400000001" y2="120.52724400000001"/> - <line stroke="#888888" x1="446.52325267042636" x2="445.52325267042636" y1="120.52724400000001" y2="120.52724400000001"/> - <line stroke="#888888" x1="425.52325267042636" x2="425.52325267042636" y1="123.02724400000001" y2="122.02724400000001"/> - <line stroke="#888888" x1="425.52325267042636" x2="426.52325267042636" y1="122.02724400000001" y2="122.02724400000001"/> - <line stroke="#888888" x1="426.52325267042636" x2="426.52325267042636" y1="122.02724400000001" y2="123.02724400000001"/> - <line stroke="#888888" x1="426.52325267042636" x2="425.52325267042636" y1="123.02724400000001" y2="123.02724400000001"/> - <line stroke="#888888" x1="445.52325267042636" x2="445.52325267042636" y1="123.02724400000001" y2="122.02724400000001"/> - <line stroke="#888888" x1="445.52325267042636" x2="446.52325267042636" y1="122.02724400000001" y2="122.02724400000001"/> - <line stroke="#888888" x1="446.52325267042636" x2="446.52325267042636" y1="122.02724400000001" y2="123.02724400000001"/> - <line stroke="#888888" x1="446.52325267042636" x2="445.52325267042636" y1="123.02724400000001" y2="123.02724400000001"/> - <line stroke="#888888" x1="425.52325267042636" x2="425.52325267042636" y1="125.52724400000001" y2="124.52724400000001"/> - <line stroke="#888888" x1="425.52325267042636" x2="426.52325267042636" y1="124.52724400000001" y2="124.52724400000001"/> - <line stroke="#888888" x1="426.52325267042636" x2="426.52325267042636" y1="124.52724400000001" y2="125.52724400000001"/> - <line stroke="#888888" x1="426.52325267042636" x2="425.52325267042636" y1="125.52724400000001" y2="125.52724400000001"/> - <line stroke="#888888" x1="445.52325267042636" x2="445.52325267042636" y1="125.52724400000001" y2="124.52724400000001"/> - <line stroke="#888888" x1="445.52325267042636" x2="446.52325267042636" y1="124.52724400000001" y2="124.52724400000001"/> - <line stroke="#888888" x1="446.52325267042636" x2="446.52325267042636" y1="124.52724400000001" y2="125.52724400000001"/> - <line stroke="#888888" x1="446.52325267042636" x2="445.52325267042636" y1="125.52724400000001" y2="125.52724400000001"/> - <line stroke="#888888" x1="425.52325267042636" x2="425.52325267042636" y1="128.02724400000002" y2="127.02724400000001"/> - <line stroke="#888888" x1="425.52325267042636" x2="426.52325267042636" y1="127.02724400000001" y2="127.02724400000001"/> - <line stroke="#888888" x1="426.52325267042636" x2="426.52325267042636" y1="127.02724400000001" y2="128.02724400000002"/> - <line stroke="#888888" x1="426.52325267042636" x2="425.52325267042636" y1="128.02724400000002" y2="128.02724400000002"/> - <line stroke="#888888" x1="445.52325267042636" x2="445.52325267042636" y1="128.02724400000002" y2="127.02724400000001"/> - <line stroke="#888888" x1="445.52325267042636" x2="446.52325267042636" y1="127.02724400000001" y2="127.02724400000001"/> - <line stroke="#888888" x1="446.52325267042636" x2="446.52325267042636" y1="127.02724400000001" y2="128.02724400000002"/> - <line stroke="#888888" x1="446.52325267042636" x2="445.52325267042636" y1="128.02724400000002" y2="128.02724400000002"/> - <line stroke="#888888" x1="425.52325267042636" x2="425.52325267042636" y1="130.52724400000002" y2="129.527244"/> - <line stroke="#888888" x1="425.52325267042636" x2="426.52325267042636" y1="129.527244" y2="129.527244"/> - <line stroke="#888888" x1="426.52325267042636" x2="426.52325267042636" y1="129.527244" y2="130.52724400000002"/> - <line stroke="#888888" x1="426.52325267042636" x2="425.52325267042636" y1="130.52724400000002" y2="130.52724400000002"/> - <line stroke="#888888" x1="445.52325267042636" x2="445.52325267042636" y1="130.52724400000002" y2="129.527244"/> - <line stroke="#888888" x1="445.52325267042636" x2="446.52325267042636" y1="129.527244" y2="129.527244"/> - <line stroke="#888888" x1="446.52325267042636" x2="446.52325267042636" y1="129.527244" y2="130.52724400000002"/> - <line stroke="#888888" x1="446.52325267042636" x2="445.52325267042636" y1="130.52724400000002" y2="130.52724400000002"/> - <line stroke="#888888" x1="425.52325267042636" x2="425.52325267042636" y1="133.027244" y2="132.027244"/> - <line stroke="#888888" x1="425.52325267042636" x2="426.52325267042636" y1="132.027244" y2="132.027244"/> - <line stroke="#888888" x1="426.52325267042636" x2="426.52325267042636" y1="132.027244" y2="133.027244"/> - <line stroke="#888888" x1="426.52325267042636" x2="425.52325267042636" y1="133.027244" y2="133.027244"/> - <line stroke="#888888" x1="445.52325267042636" x2="445.52325267042636" y1="133.027244" y2="132.027244"/> - <line stroke="#888888" x1="445.52325267042636" x2="446.52325267042636" y1="132.027244" y2="132.027244"/> - <line stroke="#888888" x1="446.52325267042636" x2="446.52325267042636" y1="132.027244" y2="133.027244"/> - <line stroke="#888888" x1="446.52325267042636" x2="445.52325267042636" y1="133.027244" y2="133.027244"/> - <line stroke="#888888" x1="425.52325267042636" x2="425.52325267042636" y1="135.527244" y2="134.52724400000002"/> - <line stroke="#888888" x1="425.52325267042636" x2="426.52325267042636" y1="134.52724400000002" y2="134.52724400000002"/> - <line stroke="#888888" x1="426.52325267042636" x2="426.52325267042636" y1="134.52724400000002" y2="135.527244"/> - <line stroke="#888888" x1="426.52325267042636" x2="425.52325267042636" y1="135.527244" y2="135.527244"/> - <line stroke="#888888" x1="445.52325267042636" x2="445.52325267042636" y1="135.527244" y2="134.52724400000002"/> - <line stroke="#888888" x1="445.52325267042636" x2="446.52325267042636" y1="134.52724400000002" y2="134.52724400000002"/> - <line stroke="#888888" x1="446.52325267042636" x2="446.52325267042636" y1="134.52724400000002" y2="135.527244"/> - <line stroke="#888888" x1="446.52325267042636" x2="445.52325267042636" y1="135.527244" y2="135.527244"/> - <line stroke="#888888" x1="425.52325267042636" x2="425.52325267042636" y1="138.02724400000002" y2="137.027244"/> - <line stroke="#888888" x1="425.52325267042636" x2="426.52325267042636" y1="137.027244" y2="137.027244"/> - <line stroke="#888888" x1="426.52325267042636" x2="426.52325267042636" y1="137.027244" y2="138.02724400000002"/> - <line stroke="#888888" x1="426.52325267042636" x2="425.52325267042636" y1="138.02724400000002" y2="138.02724400000002"/> - <line stroke="#888888" x1="445.52325267042636" x2="445.52325267042636" y1="138.02724400000002" y2="137.027244"/> - <line stroke="#888888" x1="445.52325267042636" x2="446.52325267042636" y1="137.027244" y2="137.027244"/> - <line stroke="#888888" x1="446.52325267042636" x2="446.52325267042636" y1="137.027244" y2="138.02724400000002"/> - <line stroke="#888888" x1="446.52325267042636" x2="445.52325267042636" y1="138.02724400000002" y2="138.02724400000002"/> - <line stroke="#888888" x1="425.52325267042636" x2="425.52325267042636" y1="140.52724400000002" y2="139.527244"/> - <line stroke="#888888" x1="425.52325267042636" x2="426.52325267042636" y1="139.527244" y2="139.527244"/> - <line stroke="#888888" x1="426.52325267042636" x2="426.52325267042636" y1="139.527244" y2="140.52724400000002"/> - <line stroke="#888888" x1="426.52325267042636" x2="425.52325267042636" y1="140.52724400000002" y2="140.52724400000002"/> - <line stroke="#888888" x1="445.52325267042636" x2="445.52325267042636" y1="140.52724400000002" y2="139.527244"/> - <line stroke="#888888" x1="445.52325267042636" x2="446.52325267042636" y1="139.527244" y2="139.527244"/> - <line stroke="#888888" x1="446.52325267042636" x2="446.52325267042636" y1="139.527244" y2="140.52724400000002"/> - <line stroke="#888888" x1="446.52325267042636" x2="445.52325267042636" y1="140.52724400000002" y2="140.52724400000002"/> - <line stroke="#888888" x1="425.52325267042636" x2="425.52325267042636" y1="143.02724400000002" y2="142.027244"/> - <line stroke="#888888" x1="425.52325267042636" x2="426.52325267042636" y1="142.027244" y2="142.027244"/> - <line stroke="#888888" x1="426.52325267042636" x2="426.52325267042636" y1="142.027244" y2="143.02724400000002"/> - <line stroke="#888888" x1="426.52325267042636" x2="425.52325267042636" y1="143.02724400000002" y2="143.02724400000002"/> - <line stroke="#888888" x1="445.52325267042636" x2="445.52325267042636" y1="143.02724400000002" y2="142.027244"/> - <line stroke="#888888" x1="445.52325267042636" x2="446.52325267042636" y1="142.027244" y2="142.027244"/> - <line stroke="#888888" x1="446.52325267042636" x2="446.52325267042636" y1="142.027244" y2="143.02724400000002"/> - <line stroke="#888888" x1="446.52325267042636" x2="445.52325267042636" y1="143.02724400000002" y2="143.02724400000002"/> - <line stroke="#888888" x1="425.52325267042636" x2="425.52325267042636" y1="145.52724400000002" y2="144.527244"/> - <line stroke="#888888" x1="425.52325267042636" x2="426.52325267042636" y1="144.527244" y2="144.527244"/> - <line stroke="#888888" x1="426.52325267042636" x2="426.52325267042636" y1="144.527244" y2="145.52724400000002"/> - <line stroke="#888888" x1="426.52325267042636" x2="425.52325267042636" y1="145.52724400000002" y2="145.52724400000002"/> - <line stroke="#888888" x1="445.52325267042636" x2="445.52325267042636" y1="145.52724400000002" y2="144.527244"/> - <line stroke="#888888" x1="445.52325267042636" x2="446.52325267042636" y1="144.527244" y2="144.527244"/> - <line stroke="#888888" x1="446.52325267042636" x2="446.52325267042636" y1="144.527244" y2="145.52724400000002"/> - <line stroke="#888888" x1="446.52325267042636" x2="445.52325267042636" y1="145.52724400000002" y2="145.52724400000002"/> - <line stroke="#888888" x1="425.52325267042636" x2="425.52325267042636" y1="148.02724400000002" y2="147.02724400000002"/> - <line stroke="#888888" x1="425.52325267042636" x2="426.52325267042636" y1="147.02724400000002" y2="147.02724400000002"/> - <line stroke="#888888" x1="426.52325267042636" x2="426.52325267042636" y1="147.02724400000002" y2="148.02724400000002"/> - <line stroke="#888888" x1="426.52325267042636" x2="425.52325267042636" y1="148.02724400000002" y2="148.02724400000002"/> - <line stroke="#888888" x1="445.52325267042636" x2="445.52325267042636" y1="148.02724400000002" y2="147.02724400000002"/> - <line stroke="#888888" x1="445.52325267042636" x2="446.52325267042636" y1="147.02724400000002" y2="147.02724400000002"/> - <line stroke="#888888" x1="446.52325267042636" x2="446.52325267042636" y1="147.02724400000002" y2="148.02724400000002"/> - <line stroke="#888888" x1="446.52325267042636" x2="445.52325267042636" y1="148.02724400000002" y2="148.02724400000002"/> - <line stroke="#888888" x1="425.52325267042636" x2="425.52325267042636" y1="150.52724400000002" y2="149.52724400000002"/> - <line stroke="#888888" x1="425.52325267042636" x2="426.52325267042636" y1="149.52724400000002" y2="149.52724400000002"/> - <line stroke="#888888" x1="426.52325267042636" x2="426.52325267042636" y1="149.52724400000002" y2="150.52724400000002"/> - <line stroke="#888888" x1="426.52325267042636" x2="425.52325267042636" y1="150.52724400000002" y2="150.52724400000002"/> - <line stroke="#888888" x1="445.52325267042636" x2="445.52325267042636" y1="150.52724400000002" y2="149.52724400000002"/> - <line stroke="#888888" x1="445.52325267042636" x2="446.52325267042636" y1="149.52724400000002" y2="149.52724400000002"/> - <line stroke="#888888" x1="446.52325267042636" x2="446.52325267042636" y1="149.52724400000002" y2="150.52724400000002"/> - <line stroke="#888888" x1="446.52325267042636" x2="445.52325267042636" y1="150.52724400000002" y2="150.52724400000002"/> - <line stroke="#888888" x1="425.52325267042636" x2="425.52325267042636" y1="153.027244" y2="152.02724400000002"/> - <line stroke="#888888" x1="425.52325267042636" x2="426.52325267042636" y1="152.02724400000002" y2="152.02724400000002"/> - <line stroke="#888888" x1="426.52325267042636" x2="426.52325267042636" y1="152.02724400000002" y2="153.027244"/> - <line stroke="#888888" x1="426.52325267042636" x2="425.52325267042636" y1="153.027244" y2="153.027244"/> - <line stroke="#888888" x1="445.52325267042636" x2="445.52325267042636" y1="153.027244" y2="152.02724400000002"/> - <line stroke="#888888" x1="445.52325267042636" x2="446.52325267042636" y1="152.02724400000002" y2="152.02724400000002"/> - <line stroke="#888888" x1="446.52325267042636" x2="446.52325267042636" y1="152.02724400000002" y2="153.027244"/> - <line stroke="#888888" x1="446.52325267042636" x2="445.52325267042636" y1="153.027244" y2="153.027244"/> - <line stroke="#888888" x1="425.52325267042636" x2="425.52325267042636" y1="155.527244" y2="154.52724400000002"/> - <line stroke="#888888" x1="425.52325267042636" x2="426.52325267042636" y1="154.52724400000002" y2="154.52724400000002"/> - <line stroke="#888888" x1="426.52325267042636" x2="426.52325267042636" y1="154.52724400000002" y2="155.527244"/> - <line stroke="#888888" x1="426.52325267042636" x2="425.52325267042636" y1="155.527244" y2="155.527244"/> - <line stroke="#888888" x1="445.52325267042636" x2="445.52325267042636" y1="155.527244" y2="154.52724400000002"/> - <line stroke="#888888" x1="445.52325267042636" x2="446.52325267042636" y1="154.52724400000002" y2="154.52724400000002"/> - <line stroke="#888888" x1="446.52325267042636" x2="446.52325267042636" y1="154.52724400000002" y2="155.527244"/> - <line stroke="#888888" x1="446.52325267042636" x2="445.52325267042636" y1="155.527244" y2="155.527244"/> - <line stroke="#888888" x1="425.52325267042636" x2="425.52325267042636" y1="158.027244" y2="157.02724400000002"/> - <line stroke="#888888" x1="425.52325267042636" x2="426.52325267042636" y1="157.02724400000002" y2="157.02724400000002"/> - <line stroke="#888888" x1="426.52325267042636" x2="426.52325267042636" y1="157.02724400000002" y2="158.027244"/> - <line stroke="#888888" x1="426.52325267042636" x2="425.52325267042636" y1="158.027244" y2="158.027244"/> - <line stroke="#888888" x1="444.52325267042636" x2="444.52325267042636" y1="159.02724400000002" y2="156.02724400000002"/> - <line stroke="#888888" x1="444.52325267042636" x2="447.52325267042636" y1="156.02724400000002" y2="156.02724400000002"/> - <line stroke="#888888" x1="447.52325267042636" x2="447.52325267042636" y1="156.02724400000002" y2="159.02724400000002"/> - <line stroke="#888888" x1="447.52325267042636" x2="444.52325267042636" y1="159.02724400000002" y2="159.02724400000002"/> - <line stroke="#888888" x1="440.27325267042636" x2="431.77325267042636" y1="116.02724400000001" y2="116.02724400000001"/> - <line stroke="#888888" x1="431.77325267042636" x2="431.77325267042636" y1="116.02724400000001" y2="115.52724400000001"/> - <line stroke="#888888" x1="431.77325267042636" x2="440.27325267042636" y1="115.52724400000001" y2="115.52724400000001"/> - <line stroke="#888888" x1="440.27325267042636" x2="440.27325267042636" y1="115.52724400000001" y2="116.02724400000001"/> - <line stroke="#888888" x1="431.77325267042636" x2="440.27325267042636" y1="163.77724400000002" y2="163.77724400000002"/> - <line stroke="#888888" x1="440.27325267042636" x2="440.27325267042636" y1="163.77724400000002" y2="164.27724400000002"/> - <line stroke="#888888" x1="440.27325267042636" x2="431.77325267042636" y1="164.27724400000002" y2="164.27724400000002"/> - <line stroke="#888888" x1="431.77325267042636" x2="431.77325267042636" y1="164.27724400000002" y2="163.77724400000002"/> - <line stroke="#888888" x1="463.02325267042636" x2="463.02325267042636" y1="159.27724400000002" y2="146.277244"/> - <line stroke="#888888" x1="463.02325267042636" x2="493.02325267042636" y1="146.277244" y2="146.277244"/> - <line stroke="#888888" x1="493.02325267042636" x2="493.02325267042636" y1="146.277244" y2="159.27724400000002"/> - <line stroke="#888888" x1="493.02325267042636" x2="463.02325267042636" y1="159.27724400000002" y2="159.27724400000002"/> - <line stroke="#888888" x1="470.0914344886082" x2="458.6823435795173" y1="113.77724400000001" y2="113.77724400000001"/> - <line stroke="#888888" x1="458.6823435795173" x2="458.6823435795173" y1="113.77724400000001" y2="113.27724400000001"/> - <line stroke="#888888" x1="458.6823435795173" x2="470.0914344886082" y1="113.27724400000001" y2="113.27724400000001"/> - <line stroke="#888888" x1="470.0914344886082" x2="470.0914344886082" y1="113.27724400000001" y2="113.77724400000001"/> - <line stroke="#888888" x1="497.3641617613354" x2="485.95507085224455" y1="113.77724400000001" y2="113.77724400000001"/> - <line stroke="#888888" x1="485.95507085224455" x2="485.95507085224455" y1="113.77724400000001" y2="113.27724400000001"/> - <line stroke="#888888" x1="485.95507085224455" x2="497.3641617613354" y1="113.27724400000001" y2="113.27724400000001"/> - <line stroke="#888888" x1="497.3641617613354" x2="497.3641617613354" y1="113.27724400000001" y2="113.77724400000001"/> - <line stroke="#888888" x1="500.27325267042636" x2="500.27325267042636" y1="130.70906218181818" y2="119.1181530909091"/> - <line stroke="#888888" x1="500.27325267042636" x2="500.77325267042636" y1="119.1181530909091" y2="119.1181530909091"/> - <line stroke="#888888" x1="500.77325267042636" x2="500.77325267042636" y1="119.1181530909091" y2="130.70906218181818"/> - <line stroke="#888888" x1="500.77325267042636" x2="500.27325267042636" y1="130.70906218181818" y2="130.70906218181818"/> - <line stroke="#888888" x1="500.27325267042636" x2="500.27325267042636" y1="158.43633490909093" y2="146.8454258181818"/> - <line stroke="#888888" x1="500.27325267042636" x2="500.77325267042636" y1="146.8454258181818" y2="146.8454258181818"/> - <line stroke="#888888" x1="500.77325267042636" x2="500.77325267042636" y1="146.8454258181818" y2="158.43633490909093"/> - <line stroke="#888888" x1="500.77325267042636" x2="500.27325267042636" y1="158.43633490909093" y2="158.43633490909093"/> - <line stroke="#888888" x1="340.52325267042636" x2="340.52325267042636" y1="121.52724400000001" y2="118.52724400000001"/> - <line stroke="#888888" x1="340.52325267042636" x2="343.52325267042636" y1="118.52724400000001" y2="118.52724400000001"/> - <line stroke="#888888" x1="343.52325267042636" x2="343.52325267042636" y1="118.52724400000001" y2="121.52724400000001"/> - <line stroke="#888888" x1="343.52325267042636" x2="340.52325267042636" y1="121.52724400000001" y2="121.52724400000001"/> - <line stroke="#888888" x1="361.52325267042636" x2="361.52325267042636" y1="120.52724400000001" y2="119.52724400000001"/> - <line stroke="#888888" x1="361.52325267042636" x2="362.52325267042636" y1="119.52724400000001" y2="119.52724400000001"/> - <line stroke="#888888" x1="362.52325267042636" x2="362.52325267042636" y1="119.52724400000001" y2="120.52724400000001"/> - <line stroke="#888888" x1="362.52325267042636" x2="361.52325267042636" y1="120.52724400000001" y2="120.52724400000001"/> - <line stroke="#888888" x1="341.5232526704263" x2="341.5232526704263" y1="123.02724400000001" y2="122.02724400000001"/> - <line stroke="#888888" x1="341.5232526704263" x2="342.52325267042636" y1="122.02724400000001" y2="122.02724400000001"/> - <line stroke="#888888" x1="342.52325267042636" x2="342.52325267042636" y1="122.02724400000001" y2="123.02724400000001"/> - <line stroke="#888888" x1="342.52325267042636" x2="341.5232526704263" y1="123.02724400000001" y2="123.02724400000001"/> - <line stroke="#888888" x1="361.52325267042636" x2="361.52325267042636" y1="123.02724400000001" y2="122.02724400000001"/> - <line stroke="#888888" x1="361.52325267042636" x2="362.52325267042636" y1="122.02724400000001" y2="122.02724400000001"/> - <line stroke="#888888" x1="362.52325267042636" x2="362.52325267042636" y1="122.02724400000001" y2="123.02724400000001"/> - <line stroke="#888888" x1="362.52325267042636" x2="361.52325267042636" y1="123.02724400000001" y2="123.02724400000001"/> - <line stroke="#888888" x1="341.5232526704263" x2="341.5232526704263" y1="125.52724400000001" y2="124.52724400000001"/> - <line stroke="#888888" x1="341.5232526704263" x2="342.52325267042636" y1="124.52724400000001" y2="124.52724400000001"/> - <line stroke="#888888" x1="342.52325267042636" x2="342.52325267042636" y1="124.52724400000001" y2="125.52724400000001"/> - <line stroke="#888888" x1="342.52325267042636" x2="341.5232526704263" y1="125.52724400000001" y2="125.52724400000001"/> - <line stroke="#888888" x1="361.52325267042636" x2="361.52325267042636" y1="125.52724400000001" y2="124.52724400000001"/> - <line stroke="#888888" x1="361.52325267042636" x2="362.52325267042636" y1="124.52724400000001" y2="124.52724400000001"/> - <line stroke="#888888" x1="362.52325267042636" x2="362.52325267042636" y1="124.52724400000001" y2="125.52724400000001"/> - <line stroke="#888888" x1="362.52325267042636" x2="361.52325267042636" y1="125.52724400000001" y2="125.52724400000001"/> - <line stroke="#888888" x1="341.5232526704263" x2="341.5232526704263" y1="128.02724400000002" y2="127.02724400000001"/> - <line stroke="#888888" x1="341.5232526704263" x2="342.52325267042636" y1="127.02724400000001" y2="127.02724400000001"/> - <line stroke="#888888" x1="342.52325267042636" x2="342.52325267042636" y1="127.02724400000001" y2="128.02724400000002"/> - <line stroke="#888888" x1="342.52325267042636" x2="341.5232526704263" y1="128.02724400000002" y2="128.02724400000002"/> - <line stroke="#888888" x1="361.52325267042636" x2="361.52325267042636" y1="128.02724400000002" y2="127.02724400000001"/> - <line stroke="#888888" x1="361.52325267042636" x2="362.52325267042636" y1="127.02724400000001" y2="127.02724400000001"/> - <line stroke="#888888" x1="362.52325267042636" x2="362.52325267042636" y1="127.02724400000001" y2="128.02724400000002"/> - <line stroke="#888888" x1="362.52325267042636" x2="361.52325267042636" y1="128.02724400000002" y2="128.02724400000002"/> - <line stroke="#888888" x1="341.5232526704263" x2="341.5232526704263" y1="130.52724400000002" y2="129.527244"/> - <line stroke="#888888" x1="341.5232526704263" x2="342.52325267042636" y1="129.527244" y2="129.527244"/> - <line stroke="#888888" x1="342.52325267042636" x2="342.52325267042636" y1="129.527244" y2="130.52724400000002"/> - <line stroke="#888888" x1="342.52325267042636" x2="341.5232526704263" y1="130.52724400000002" y2="130.52724400000002"/> - <line stroke="#888888" x1="361.52325267042636" x2="361.52325267042636" y1="130.52724400000002" y2="129.527244"/> - <line stroke="#888888" x1="361.52325267042636" x2="362.52325267042636" y1="129.527244" y2="129.527244"/> - <line stroke="#888888" x1="362.52325267042636" x2="362.52325267042636" y1="129.527244" y2="130.52724400000002"/> - <line stroke="#888888" x1="362.52325267042636" x2="361.52325267042636" y1="130.52724400000002" y2="130.52724400000002"/> - <line stroke="#888888" x1="341.5232526704263" x2="341.5232526704263" y1="133.027244" y2="132.027244"/> - <line stroke="#888888" x1="341.5232526704263" x2="342.52325267042636" y1="132.027244" y2="132.027244"/> - <line stroke="#888888" x1="342.52325267042636" x2="342.52325267042636" y1="132.027244" y2="133.027244"/> - <line stroke="#888888" x1="342.52325267042636" x2="341.5232526704263" y1="133.027244" y2="133.027244"/> - <line stroke="#888888" x1="361.52325267042636" x2="361.52325267042636" y1="133.027244" y2="132.027244"/> - <line stroke="#888888" x1="361.52325267042636" x2="362.52325267042636" y1="132.027244" y2="132.027244"/> - <line stroke="#888888" x1="362.52325267042636" x2="362.52325267042636" y1="132.027244" y2="133.027244"/> - <line stroke="#888888" x1="362.52325267042636" x2="361.52325267042636" y1="133.027244" y2="133.027244"/> - <line stroke="#888888" x1="341.5232526704263" x2="341.5232526704263" y1="135.527244" y2="134.52724400000002"/> - <line stroke="#888888" x1="341.5232526704263" x2="342.52325267042636" y1="134.52724400000002" y2="134.52724400000002"/> - <line stroke="#888888" x1="342.52325267042636" x2="342.52325267042636" y1="134.52724400000002" y2="135.527244"/> - <line stroke="#888888" x1="342.52325267042636" x2="341.5232526704263" y1="135.527244" y2="135.527244"/> - <line stroke="#888888" x1="361.52325267042636" x2="361.52325267042636" y1="135.527244" y2="134.52724400000002"/> - <line stroke="#888888" x1="361.52325267042636" x2="362.52325267042636" y1="134.52724400000002" y2="134.52724400000002"/> - <line stroke="#888888" x1="362.52325267042636" x2="362.52325267042636" y1="134.52724400000002" y2="135.527244"/> - <line stroke="#888888" x1="362.52325267042636" x2="361.52325267042636" y1="135.527244" y2="135.527244"/> - <line stroke="#888888" x1="341.5232526704263" x2="341.5232526704263" y1="138.02724400000002" y2="137.027244"/> - <line stroke="#888888" x1="341.5232526704263" x2="342.52325267042636" y1="137.027244" y2="137.027244"/> - <line stroke="#888888" x1="342.52325267042636" x2="342.52325267042636" y1="137.027244" y2="138.02724400000002"/> - <line stroke="#888888" x1="342.52325267042636" x2="341.5232526704263" y1="138.02724400000002" y2="138.02724400000002"/> - <line stroke="#888888" x1="361.52325267042636" x2="361.52325267042636" y1="138.02724400000002" y2="137.027244"/> - <line stroke="#888888" x1="361.52325267042636" x2="362.52325267042636" y1="137.027244" y2="137.027244"/> - <line stroke="#888888" x1="362.52325267042636" x2="362.52325267042636" y1="137.027244" y2="138.02724400000002"/> - <line stroke="#888888" x1="362.52325267042636" x2="361.52325267042636" y1="138.02724400000002" y2="138.02724400000002"/> - <line stroke="#888888" x1="341.5232526704263" x2="341.5232526704263" y1="140.52724400000002" y2="139.527244"/> - <line stroke="#888888" x1="341.5232526704263" x2="342.52325267042636" y1="139.527244" y2="139.527244"/> - <line stroke="#888888" x1="342.52325267042636" x2="342.52325267042636" y1="139.527244" y2="140.52724400000002"/> - <line stroke="#888888" x1="342.52325267042636" x2="341.5232526704263" y1="140.52724400000002" y2="140.52724400000002"/> - <line stroke="#888888" x1="361.52325267042636" x2="361.52325267042636" y1="140.52724400000002" y2="139.527244"/> - <line stroke="#888888" x1="361.52325267042636" x2="362.52325267042636" y1="139.527244" y2="139.527244"/> - <line stroke="#888888" x1="362.52325267042636" x2="362.52325267042636" y1="139.527244" y2="140.52724400000002"/> - <line stroke="#888888" x1="362.52325267042636" x2="361.52325267042636" y1="140.52724400000002" y2="140.52724400000002"/> - <line stroke="#888888" x1="341.5232526704263" x2="341.5232526704263" y1="143.02724400000002" y2="142.027244"/> - <line stroke="#888888" x1="341.5232526704263" x2="342.52325267042636" y1="142.027244" y2="142.027244"/> - <line stroke="#888888" x1="342.52325267042636" x2="342.52325267042636" y1="142.027244" y2="143.02724400000002"/> - <line stroke="#888888" x1="342.52325267042636" x2="341.5232526704263" y1="143.02724400000002" y2="143.02724400000002"/> - <line stroke="#888888" x1="361.52325267042636" x2="361.52325267042636" y1="143.02724400000002" y2="142.027244"/> - <line stroke="#888888" x1="361.52325267042636" x2="362.52325267042636" y1="142.027244" y2="142.027244"/> - <line stroke="#888888" x1="362.52325267042636" x2="362.52325267042636" y1="142.027244" y2="143.02724400000002"/> - <line stroke="#888888" x1="362.52325267042636" x2="361.52325267042636" y1="143.02724400000002" y2="143.02724400000002"/> - <line stroke="#888888" x1="341.5232526704263" x2="341.5232526704263" y1="145.52724400000002" y2="144.527244"/> - <line stroke="#888888" x1="341.5232526704263" x2="342.52325267042636" y1="144.527244" y2="144.527244"/> - <line stroke="#888888" x1="342.52325267042636" x2="342.52325267042636" y1="144.527244" y2="145.52724400000002"/> - <line stroke="#888888" x1="342.52325267042636" x2="341.5232526704263" y1="145.52724400000002" y2="145.52724400000002"/> - <line stroke="#888888" x1="361.52325267042636" x2="361.52325267042636" y1="145.52724400000002" y2="144.527244"/> - <line stroke="#888888" x1="361.52325267042636" x2="362.52325267042636" y1="144.527244" y2="144.527244"/> - <line stroke="#888888" x1="362.52325267042636" x2="362.52325267042636" y1="144.527244" y2="145.52724400000002"/> - <line stroke="#888888" x1="362.52325267042636" x2="361.52325267042636" y1="145.52724400000002" y2="145.52724400000002"/> - <line stroke="#888888" x1="341.5232526704263" x2="341.5232526704263" y1="148.02724400000002" y2="147.02724400000002"/> - <line stroke="#888888" x1="341.5232526704263" x2="342.52325267042636" y1="147.02724400000002" y2="147.02724400000002"/> - <line stroke="#888888" x1="342.52325267042636" x2="342.52325267042636" y1="147.02724400000002" y2="148.02724400000002"/> - <line stroke="#888888" x1="342.52325267042636" x2="341.5232526704263" y1="148.02724400000002" y2="148.02724400000002"/> - <line stroke="#888888" x1="361.52325267042636" x2="361.52325267042636" y1="148.02724400000002" y2="147.02724400000002"/> - <line stroke="#888888" x1="361.52325267042636" x2="362.52325267042636" y1="147.02724400000002" y2="147.02724400000002"/> - <line stroke="#888888" x1="362.52325267042636" x2="362.52325267042636" y1="147.02724400000002" y2="148.02724400000002"/> - <line stroke="#888888" x1="362.52325267042636" x2="361.52325267042636" y1="148.02724400000002" y2="148.02724400000002"/> - <line stroke="#888888" x1="341.5232526704263" x2="341.5232526704263" y1="150.52724400000002" y2="149.52724400000002"/> - <line stroke="#888888" x1="341.5232526704263" x2="342.52325267042636" y1="149.52724400000002" y2="149.52724400000002"/> - <line stroke="#888888" x1="342.52325267042636" x2="342.52325267042636" y1="149.52724400000002" y2="150.52724400000002"/> - <line stroke="#888888" x1="342.52325267042636" x2="341.5232526704263" y1="150.52724400000002" y2="150.52724400000002"/> - <line stroke="#888888" x1="361.52325267042636" x2="361.52325267042636" y1="150.52724400000002" y2="149.52724400000002"/> - <line stroke="#888888" x1="361.52325267042636" x2="362.52325267042636" y1="149.52724400000002" y2="149.52724400000002"/> - <line stroke="#888888" x1="362.52325267042636" x2="362.52325267042636" y1="149.52724400000002" y2="150.52724400000002"/> - <line stroke="#888888" x1="362.52325267042636" x2="361.52325267042636" y1="150.52724400000002" y2="150.52724400000002"/> - <line stroke="#888888" x1="341.5232526704263" x2="341.5232526704263" y1="153.027244" y2="152.02724400000002"/> - <line stroke="#888888" x1="341.5232526704263" x2="342.52325267042636" y1="152.02724400000002" y2="152.02724400000002"/> - <line stroke="#888888" x1="342.52325267042636" x2="342.52325267042636" y1="152.02724400000002" y2="153.027244"/> - <line stroke="#888888" x1="342.52325267042636" x2="341.5232526704263" y1="153.027244" y2="153.027244"/> - <line stroke="#888888" x1="361.52325267042636" x2="361.52325267042636" y1="153.027244" y2="152.02724400000002"/> - <line stroke="#888888" x1="361.52325267042636" x2="362.52325267042636" y1="152.02724400000002" y2="152.02724400000002"/> - <line stroke="#888888" x1="362.52325267042636" x2="362.52325267042636" y1="152.02724400000002" y2="153.027244"/> - <line stroke="#888888" x1="362.52325267042636" x2="361.52325267042636" y1="153.027244" y2="153.027244"/> - <line stroke="#888888" x1="341.5232526704263" x2="341.5232526704263" y1="155.527244" y2="154.52724400000002"/> - <line stroke="#888888" x1="341.5232526704263" x2="342.52325267042636" y1="154.52724400000002" y2="154.52724400000002"/> - <line stroke="#888888" x1="342.52325267042636" x2="342.52325267042636" y1="154.52724400000002" y2="155.527244"/> - <line stroke="#888888" x1="342.52325267042636" x2="341.5232526704263" y1="155.527244" y2="155.527244"/> - <line stroke="#888888" x1="361.52325267042636" x2="361.52325267042636" y1="155.527244" y2="154.52724400000002"/> - <line stroke="#888888" x1="361.52325267042636" x2="362.52325267042636" y1="154.52724400000002" y2="154.52724400000002"/> - <line stroke="#888888" x1="362.52325267042636" x2="362.52325267042636" y1="154.52724400000002" y2="155.527244"/> - <line stroke="#888888" x1="362.52325267042636" x2="361.52325267042636" y1="155.527244" y2="155.527244"/> - <line stroke="#888888" x1="341.5232526704263" x2="341.5232526704263" y1="158.027244" y2="157.02724400000002"/> - <line stroke="#888888" x1="341.5232526704263" x2="342.52325267042636" y1="157.02724400000002" y2="157.02724400000002"/> - <line stroke="#888888" x1="342.52325267042636" x2="342.52325267042636" y1="157.02724400000002" y2="158.027244"/> - <line stroke="#888888" x1="342.52325267042636" x2="341.5232526704263" y1="158.027244" y2="158.027244"/> - <line stroke="#888888" x1="360.52325267042636" x2="360.52325267042636" y1="159.02724400000002" y2="156.02724400000002"/> - <line stroke="#888888" x1="360.52325267042636" x2="363.5232526704263" y1="156.02724400000002" y2="156.02724400000002"/> - <line stroke="#888888" x1="363.5232526704263" x2="363.5232526704263" y1="156.02724400000002" y2="159.02724400000002"/> - <line stroke="#888888" x1="363.5232526704263" x2="360.52325267042636" y1="159.02724400000002" y2="159.02724400000002"/> - <line stroke="#888888" x1="356.27325267042636" x2="347.77325267042636" y1="116.02724400000001" y2="116.02724400000001"/> - <line stroke="#888888" x1="347.77325267042636" x2="347.77325267042636" y1="116.02724400000001" y2="115.52724400000001"/> - <line stroke="#888888" x1="347.77325267042636" x2="356.27325267042636" y1="115.52724400000001" y2="115.52724400000001"/> - <line stroke="#888888" x1="356.27325267042636" x2="356.27325267042636" y1="115.52724400000001" y2="116.02724400000001"/> - <line stroke="#888888" x1="347.77325267042636" x2="356.27325267042636" y1="163.77724400000002" y2="163.77724400000002"/> - <line stroke="#888888" x1="356.27325267042636" x2="356.27325267042636" y1="163.77724400000002" y2="164.27724400000002"/> - <line stroke="#888888" x1="356.27325267042636" x2="347.77325267042636" y1="164.27724400000002" y2="164.27724400000002"/> - <line stroke="#888888" x1="347.77325267042636" x2="347.77325267042636" y1="164.27724400000002" y2="163.77724400000002"/> - <line stroke="#888888" x1="332.5232526704263" x2="337.52325267042636" y1="119.3681530909091" y2="119.3681530909091"/> - <line stroke="#888888" x1="337.52325267042636" x2="337.52325267042636" y1="119.3681530909091" y2="130.45906218181818"/> - <line stroke="#888888" x1="337.52325267042636" x2="332.5232526704263" y1="130.45906218181818" y2="130.45906218181818"/> - <line stroke="#888888" x1="332.5232526704263" x2="337.52325267042636" y1="147.0954258181818" y2="147.0954258181818"/> - <line stroke="#888888" x1="337.52325267042636" x2="337.52325267042636" y1="147.0954258181818" y2="158.18633490909093"/> - <line stroke="#888888" x1="337.52325267042636" x2="332.5232526704263" y1="158.18633490909093" y2="158.18633490909093"/> - <line stroke="#888888" x1="357.77325267042636" x2="361.27325267042636" y1="92.27724400000001" y2="92.27724400000001"/> - <line stroke="#888888" x1="361.27325267042636" x2="361.27325267042636" y1="92.27724400000001" y2="100.27724400000001"/> - <line stroke="#888888" x1="361.27325267042636" x2="357.77325267042636" y1="100.27724400000001" y2="100.27724400000001"/> + <line stroke="#000000" x1="329.02325267042613" x2="210.02325267042616" y1="125.00000000000001" y2="125.00000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="329.02325267042613" x2="390.0232526704262" y1="125.00000000000001" y2="125.00000000000001"/> + <line stroke="#000000" x1="390.0232526704262" x2="390.0232526704262" y1="125.00000000000001" y2="125.00000000000001"/> + <line stroke="#000000" x1="210.02325267042616" x2="210.02325267042616" y1="125.00000000000001" y2="125.00000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="329.02325267042613" x2="390.0232526704262" y1="88.86137800081471" y2="88.86137800081471"/> + <line stroke="#000000" x1="390.0232526704262" x2="390.0232526704262" y1="125.00000000000001" y2="88.86137800081471"/> + <line stroke="#000000" x1="329.02325267042613" x2="329.02325267042613" y1="88.86137800081471" y2="125.00000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="390.0232526704262" x2="329.02325267042613" y1="64.86137800081471" y2="64.86137800081471"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="390.0232526704262" x2="390.0232526704262" y1="64.86137800081471" y2="88.86137800081471"/> + <line stroke="#000000" x1="329.02325267042613" x2="329.02325267042613" y1="28.722756001629396" y2="64.86137800081472"/> + <line stroke="#000000" x1="390.0232526704262" x2="329.02325267042613" y1="28.722756001629396" y2="28.722756001629396"/> + <line stroke="#000000" x1="390.0232526704262" x2="390.0232526704262" y1="64.86137800081472" y2="28.722756001629396"/> + <line stroke="#000000" x1="400.0232526704262" x2="390.0232526704262" y1="64.86137800081471" y2="64.86137800081471"/> + <line stroke="#000000" x1="400.0232526704262" x2="400.0232526704262" y1="88.86137800081471" y2="64.86137800081471"/> + <line stroke="#000000" x1="390.0232526704262" x2="400.0232526704262" y1="88.86137800081471" y2="88.86137800081471"/> + <line stroke="#000000" x1="319.02325267042613" x2="329.02325267042613" y1="88.86137800081471" y2="88.86137800081471"/> + <line stroke="#000000" x1="319.02325267042613" x2="319.02325267042613" y1="64.86137800081471" y2="88.86137800081471"/> + <line stroke="#000000" x1="329.02325267042613" x2="319.02325267042613" y1="64.86137800081471" y2="64.86137800081471"/> + <line stroke="#000000" x1="186.0232526704262" x2="86.02325267042616" y1="125.00000000000001" y2="125.00000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="186.0232526704262" x2="210.02325267042616" y1="125.00000000000001" y2="125.00000000000001"/> + <line stroke="#000000" x1="390.0232526704262" x2="390.0232526704262" y1="125.00000000000001" y2="125.00000000000001"/> + <line stroke="#000000" x1="86.02325267042616" x2="86.02325267042616" y1="125.00000000000001" y2="125.00000000000001"/> + <line stroke="#000000" x1="210.02325267042616" x2="210.02325267042616" y1="125.00000000000001" y2="91.0"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="186.0232526704262" x2="186.0232526704262" y1="91.0" y2="125.00000000000001"/> + <line stroke="#000000" x1="186.0232526704262" x2="186.0232526704262" y1="55.00000000000001" y2="91.0"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="186.0232526704262" x2="210.02325267042616" y1="55.00000000000001" y2="55.00000000000001"/> + <line stroke="#000000" x1="210.02325267042616" x2="210.02325267042616" y1="91.0" y2="55.00000000000001"/> + <line stroke="#000000" x1="210.02325267042616" x2="210.02325267042616" y1="55.00000000000001" y2="5.000000000000001"/> + <line stroke="#000000" x1="186.0232526704262" x2="186.0232526704262" y1="5.000000000000001" y2="55.00000000000001"/> + <line stroke="#000000" x1="186.0232526704262" x2="186.0232526704262" y1="0.0" y2="5.000000000000001"/> + <line stroke="#000000" x1="210.02325267042616" x2="186.0232526704262" y1="0.0" y2="0.0"/> + <line stroke="#000000" x1="210.02325267042616" x2="210.02325267042616" y1="5.000000000000001" y2="0.0"/> + <line stroke="#000000" x1="186.0232526704262" x2="166.0232526704262" y1="91.0" y2="91.0"/> + <line stroke="#000000" x1="166.0232526704262" x2="186.0232526704262" y1="125.00000000000001" y2="125.00000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="166.0232526704262" x2="166.0232526704262" y1="91.0" y2="125.00000000000001"/> + <line stroke="#000000" x1="166.0232526704262" x2="142.02325267042616" y1="91.0" y2="91.0"/> + <line stroke="#000000" x1="142.02325267042616" x2="166.0232526704262" y1="125.00000000000001" y2="125.00000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="142.02325267042616" x2="142.02325267042616" y1="91.0" y2="125.00000000000001"/> + <line stroke="#000000" x1="142.02325267042616" x2="122.02325267042617" y1="91.0" y2="91.0"/> + <line stroke="#000000" x1="122.02325267042617" x2="142.02325267042616" y1="125.00000000000001" y2="125.00000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="122.02325267042617" x2="122.02325267042617" y1="125.00000000000001" y2="91.0"/> + <line stroke="#000000" x1="112.02325267042617" x2="122.02325267042617" y1="125.00000000000001" y2="125.00000000000001"/> + <line stroke="#000000" x1="112.02325267042617" x2="112.02325267042617" y1="91.0" y2="125.00000000000001"/> + <line stroke="#000000" x1="122.02325267042617" x2="112.02325267042617" y1="91.0" y2="91.0"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="390.0232526704262" x2="86.02325267042616" y1="195.00000000000003" y2="195.00000000000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="390.0232526704262" x2="390.0232526704262" y1="195.00000000000003" y2="125.00000000000001"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="390.0232526704262" x2="460.0232526704262" y1="125.00000000000001" y2="125.00000000000001"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="390.0232526704262" x2="460.0232526704262" y1="195.00000000000003" y2="125.00000000000001"/> + <line stroke="#000000" x1="390.0232526704262" x2="390.0232526704262" y1="101.66666666666669" y2="125.00000000000001"/> + <line stroke="#000000" x1="460.0232526704262" x2="390.0232526704262" y1="101.66666666666669" y2="101.66666666666669"/> + <line stroke="#000000" x1="460.0232526704262" x2="460.0232526704262" y1="125.00000000000001" y2="101.66666666666669"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="390.02325267042625" x2="460.0232526704262" y1="195.00000000000003" y2="195.00000000000003"/> + <line stroke="#000000" x1="460.0232526704262" x2="460.0232526704262" y1="195.00000000000003" y2="125.00000000000001"/> + <line stroke="#000000" x1="460.02325267042625" x2="460.0232526704262" y1="265.00000000000006" y2="195.0"/> + <line stroke="#000000" x1="460.0232526704262" x2="460.02325267042625" y1="245.0" y2="265.00000000000006"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="390.0232526704263" x2="390.02325267042625" y1="245.00000000000003" y2="195.00000000000006"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="390.0232526704263" x2="390.0232526704263" y1="295.0" y2="245.00000000000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="460.02325267042625" x2="390.0232526704263" y1="295.0" y2="295.0"/> + <line stroke="#000000" x1="460.02325267042625" x2="460.02325267042625" y1="225.00000000000003" y2="245.00000000000003"/> + <line stroke="#000000" x1="460.02325267042625" x2="460.02325267042625" y1="295.0" y2="225.00000000000003"/> + <line stroke="#000000" x1="460.02325267042625" x2="460.02325267042625" y1="365.0" y2="295.0"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="460.02325267042625" x2="390.0232526704263" y1="365.0" y2="295.0"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="390.0232526704263" x2="390.0232526704263" y1="365.00000000000006" y2="295.0"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="460.02325267042625" x2="390.0232526704263" y1="365.0" y2="365.00000000000006"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="390.0232526704263" x2="86.02325267042634" y1="295.0" y2="295.0000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="210.02325267042633" x2="186.02325267042636" y1="365.0000000000001" y2="365.00000000000017"/> + <line stroke="#000000" x1="86.02325267042634" x2="186.02325267042636" y1="365.00000000000017" y2="365.00000000000017"/> + <line stroke="#000000" x1="86.02325267042634" x2="86.02325267042634" y1="365.00000000000017" y2="365.00000000000017"/> + <line stroke="#000000" x1="390.0232526704263" x2="390.0232526704263" y1="365.00000000000006" y2="365.00000000000006"/> + <line stroke="#000000" x1="210.02325267042633" x2="329.02325267042636" y1="365.0000000000001" y2="365.00000000000006"/> + <line stroke="#000000" x1="210.02325267042633" x2="210.02325267042633" y1="365.0000000000001" y2="365.0000000000001"/> + <line stroke="#000000" x1="390.0232526704263" x2="390.0232526704263" y1="365.00000000000006" y2="365.00000000000006"/> + <line stroke="#000000" x1="390.0232526704263" x2="390.0232526704263" y1="375.00000000000006" y2="365.00000000000006"/> + <line stroke="#000000" x1="329.02325267042636" x2="390.0232526704263" y1="375.00000000000006" y2="375.00000000000006"/> + <line stroke="#000000" x1="329.02325267042636" x2="329.02325267042636" y1="365.00000000000006" y2="375.00000000000006"/> + <line stroke="#000000" x1="210.02325267042636" x2="210.02325267042633" y1="399.0000000000001" y2="365.0000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="186.02325267042633" x2="186.02325267042636" y1="365.0000000000001" y2="399.0000000000001"/> + <line stroke="#000000" x1="210.02325267042636" x2="210.02325267042636" y1="435.0000000000001" y2="399.0000000000001"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="210.02325267042636" x2="186.0232526704264" y1="435.0000000000001" y2="435.0000000000001"/> + <line stroke="#000000" x1="186.02325267042636" x2="186.0232526704264" y1="399.0000000000001" y2="435.0000000000001"/> + <line stroke="#000000" x1="186.0232526704264" x2="186.0232526704264" y1="435.0000000000001" y2="485.0000000000001"/> + <line stroke="#000000" x1="210.0232526704264" x2="210.02325267042636" y1="485.0000000000001" y2="435.0000000000001"/> + <line stroke="#000000" x1="186.0232526704264" x2="210.0232526704264" y1="485.0000000000001" y2="485.0000000000001"/> + <line stroke="#000000" x1="186.02325267042633" x2="166.0232526704263" y1="365.0000000000001" y2="365.0000000000001"/> + <line stroke="#000000" x1="166.02325267042633" x2="186.02325267042636" y1="399.0000000000001" y2="399.0000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="166.0232526704263" x2="166.02325267042633" y1="365.0000000000001" y2="399.0000000000001"/> + <line stroke="#000000" x1="166.0232526704263" x2="142.02325267042633" y1="365.0000000000001" y2="365.0000000000001"/> + <line stroke="#000000" x1="142.02325267042636" x2="166.02325267042633" y1="399.0000000000001" y2="399.0000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="142.02325267042633" x2="142.02325267042636" y1="365.0000000000001" y2="399.0000000000001"/> + <line stroke="#000000" x1="142.02325267042633" x2="122.02325267042634" y1="365.0000000000001" y2="365.0000000000001"/> + <line stroke="#000000" x1="122.02325267042636" x2="142.02325267042636" y1="399.0000000000001" y2="399.0000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="122.02325267042636" x2="122.02325267042634" y1="399.0000000000001" y2="365.0000000000001"/> + <line stroke="#000000" x1="112.02325267042634" x2="122.02325267042634" y1="399.0000000000001" y2="399.0000000000001"/> + <line stroke="#000000" x1="112.02325267042633" x2="112.02325267042634" y1="365.0000000000001" y2="399.0000000000001"/> + <line stroke="#000000" x1="122.02325267042633" x2="112.02325267042633" y1="365.0000000000001" y2="365.0000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.0232526704263" x2="86.02325267042634" y1="295.00000000000017" y2="365.00000000000017"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.02325267042634" x2="32.42924173922606" y1="365.00000000000017" y2="365.0000000000002"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.02325267042632" x2="32.42924173922606" y1="295.00000000000017" y2="365.0000000000002"/> + <line stroke="#000000" x1="86.02325267042634" x2="86.02325267042634" y1="382.8646703104003" y2="365.00000000000017"/> + <line stroke="#000000" x1="32.42924173922606" x2="86.02325267042634" y1="382.8646703104003" y2="382.8646703104003"/> + <line stroke="#000000" x1="32.42924173922606" x2="32.42924173922606" y1="365.0000000000002" y2="382.8646703104003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.02325267042632" x2="18.447362619882885" y1="295.00000000000017" y2="313.2619572849372"/> + <line stroke="#000000" x1="18.447362619882885" x2="32.42924173922606" y1="313.2619572849372" y2="365.0000000000002"/> + <line stroke="#000000" x1="4.465483500539649" x2="18.447362619882853" y1="261.5239145698741" y2="313.2619572849372"/> + <line stroke="#000000" x1="0.0" x2="4.465483500539649" y1="245.00000000000028" y2="261.5239145698741"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="0.0" x2="86.0232526704263" y1="245.00000000000028" y2="295.0000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.02325267042627" x2="86.02325267042632" y1="245.0000000000002" y2="295.0000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.02325267042623" x2="86.02325267042627" y1="195.00000000000017" y2="245.0000000000002"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="0.0" x2="86.02325267042623" y1="245.00000000000026" y2="195.00000000000017"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="18.447362619882743" x2="86.02325267042623" y1="176.73804271506336" y2="195.00000000000017"/> + <line stroke="#000000" x1="4.465483500539619" x2="0.0" y1="228.47608543012643" y2="245.00000000000026"/> + <line stroke="#000000" x1="18.447362619882743" x2="4.465483500539619" y1="176.73804271506336" y2="228.47608543012643"/> + <line stroke="#000000" x1="32.42924173922586" x2="18.447362619882743" y1="125.00000000000027" y2="176.73804271506336"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="32.42924173922586" x2="86.02325267042623" y1="125.00000000000027" y2="195.00000000000017"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="86.02325267042613" x2="86.0232526704262" y1="125.00000000000021" y2="195.00000000000017"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="32.42924173922586" x2="86.02325267042613" y1="125.00000000000027" y2="125.00000000000021"/> + <line stroke="#000000" x1="32.42924173922584" x2="32.42924173922586" y1="107.13532968960016" y2="125.00000000000027"/> + <line stroke="#000000" x1="86.02325267042612" x2="32.42924173922584" y1="107.13532968960011" y2="107.13532968960016"/> + <line stroke="#000000" x1="86.02325267042613" x2="86.02325267042612" y1="125.00000000000021" y2="107.13532968960011"/> + <line stroke="#000000" x1="460.02325267042625" x2="460.02325267042625" y1="388.3333333333333" y2="365.0"/> + <line stroke="#000000" x1="390.0232526704263" x2="460.02325267042625" y1="388.33333333333337" y2="388.3333333333333"/> + <line stroke="#000000" x1="390.0232526704263" x2="390.0232526704263" y1="365.00000000000006" y2="388.33333333333337"/> + <line stroke="#888888" x1="347.02325267042613" x2="358.0232526704262" y1="70.3613780008147" y2="70.3613780008147"/> + <line stroke="#888888" x1="358.0232526704262" x2="358.0232526704262" y1="70.3613780008147" y2="83.36137800081471"/> + <line stroke="#888888" x1="358.0232526704262" x2="347.02325267042613" y1="83.36137800081471" y2="83.36137800081471"/> + <line stroke="#888888" x1="347.02325267042613" x2="347.02325267042613" y1="83.36137800081471" y2="70.3613780008147"/> + <line stroke="#888888" x1="378.52325267042613" x2="384.5232526704262" y1="71.86137800081471" y2="71.86137800081471"/> + <line stroke="#888888" x1="384.5232526704262" x2="384.5232526704262" y1="71.86137800081471" y2="81.86137800081471"/> + <line stroke="#888888" x1="384.5232526704262" x2="378.52325267042613" y1="81.86137800081471" y2="81.86137800081471"/> + <line stroke="#888888" x1="378.52325267042613" x2="378.52325267042613" y1="81.86137800081471" y2="71.86137800081471"/> + <line stroke="#888888" x1="351.45507085224443" x2="339.8641617613353" y1="36.47275600162939" y2="36.47275600162939"/> + <line stroke="#888888" x1="339.8641617613353" x2="339.8641617613353" y1="36.47275600162939" y2="35.9727560016294"/> + <line stroke="#888888" x1="339.8641617613353" x2="351.45507085224443" y1="35.9727560016294" y2="35.9727560016294"/> + <line stroke="#888888" x1="351.45507085224443" x2="351.45507085224443" y1="35.9727560016294" y2="36.47275600162939"/> + <line stroke="#888888" x1="379.18234357951707" x2="367.591434488608" y1="36.47275600162939" y2="36.47275600162939"/> + <line stroke="#888888" x1="367.591434488608" x2="367.591434488608" y1="36.47275600162939" y2="35.9727560016294"/> + <line stroke="#888888" x1="367.591434488608" x2="379.18234357951707" y1="35.9727560016294" y2="35.9727560016294"/> + <line stroke="#888888" x1="379.18234357951707" x2="379.18234357951707" y1="35.9727560016294" y2="36.47275600162939"/> + <line stroke="#888888" x1="397.5232526704262" x2="392.52325267042613" y1="80.86137800081471" y2="80.86137800081471"/> + <line stroke="#888888" x1="392.52325267042613" x2="392.52325267042613" y1="80.86137800081471" y2="72.86137800081471"/> + <line stroke="#888888" x1="392.52325267042613" x2="397.5232526704262" y1="72.86137800081471" y2="72.86137800081471"/> + <line stroke="#888888" x1="321.5232526704262" x2="326.5232526704262" y1="72.86137800081471" y2="72.86137800081471"/> + <line stroke="#888888" x1="326.5232526704262" x2="326.5232526704262" y1="72.86137800081471" y2="80.86137800081471"/> + <line stroke="#888888" x1="326.5232526704262" x2="321.5232526704262" y1="80.86137800081471" y2="80.86137800081471"/> + <line stroke="#888888" x1="202.2732526704262" x2="202.2732526704262" y1="113.91666666666669" y2="102.08333333333336"/> + <line stroke="#888888" x1="202.2732526704262" x2="202.7732526704262" y1="102.08333333333336" y2="102.08333333333336"/> + <line stroke="#888888" x1="202.7732526704262" x2="202.7732526704262" y1="102.08333333333336" y2="113.91666666666669"/> + <line stroke="#888888" x1="202.7732526704262" x2="202.2732526704262" y1="113.91666666666669" y2="113.91666666666669"/> + <line stroke="#888888" x1="202.0232526704262" x2="204.5232526704262" y1="1.2500000000000002" y2="1.2500000000000002"/> + <line stroke="#888888" x1="204.5232526704262" x2="202.0232526704262" y1="1.2500000000000002" y2="3.7500000000000004"/> + <line stroke="#888888" x1="202.0232526704262" x2="194.02325267042616" y1="3.7500000000000004" y2="3.7500000000000004"/> + <line stroke="#888888" x1="194.02325267042616" x2="191.52325267042616" y1="3.7500000000000004" y2="1.2500000000000002"/> + <line stroke="#888888" x1="191.52325267042616" x2="194.02325267042616" y1="1.2500000000000002" y2="1.2500000000000002"/> + <line stroke="#888888" x1="167.02325267042616" x2="171.02325267042616" y1="102.00000000000001" y2="102.00000000000001"/> + <line stroke="#888888" x1="171.02325267042616" x2="171.02325267042616" y1="102.00000000000001" y2="114.00000000000001"/> + <line stroke="#888888" x1="171.02325267042616" x2="167.02325267042616" y1="114.00000000000001" y2="114.00000000000001"/> + <line stroke="#888888" x1="167.02325267042616" x2="167.02325267042616" y1="114.00000000000001" y2="102.00000000000001"/> + <line stroke="#888888" x1="179.0232526704262" x2="183.0232526704262" y1="103.5" y2="103.5"/> + <line stroke="#888888" x1="183.0232526704262" x2="183.0232526704262" y1="103.5" y2="112.50000000000001"/> + <line stroke="#888888" x1="183.0232526704262" x2="179.0232526704262" y1="112.50000000000001" y2="112.50000000000001"/> + <line stroke="#888888" x1="179.0232526704262" x2="179.0232526704262" y1="112.50000000000001" y2="103.5"/> + <line stroke="#888888" x1="142.5232526704262" x2="165.5232526704262" y1="102.00000000000001" y2="102.00000000000001"/> + <line stroke="#888888" x1="165.5232526704262" x2="165.5232526704262" y1="102.00000000000001" y2="114.00000000000001"/> + <line stroke="#888888" x1="165.5232526704262" x2="142.5232526704262" y1="114.00000000000001" y2="114.00000000000001"/> + <line stroke="#888888" x1="142.5232526704262" x2="142.5232526704262" y1="114.00000000000001" y2="102.00000000000001"/> + <line stroke="#888888" x1="137.02325267042616" x2="141.0232526704262" y1="102.00000000000001" y2="102.00000000000001"/> + <line stroke="#888888" x1="141.0232526704262" x2="141.0232526704262" y1="102.00000000000001" y2="114.00000000000001"/> + <line stroke="#888888" x1="141.0232526704262" x2="137.02325267042616" y1="114.00000000000001" y2="114.00000000000001"/> + <line stroke="#888888" x1="137.02325267042616" x2="137.02325267042616" y1="114.00000000000001" y2="102.00000000000001"/> + <line stroke="#888888" x1="114.52325267042617" x2="119.52325267042617" y1="102.33333333333334" y2="102.33333333333334"/> + <line stroke="#888888" x1="119.52325267042617" x2="119.52325267042617" y1="102.33333333333334" y2="113.66666666666669"/> + <line stroke="#888888" x1="119.52325267042617" x2="114.52325267042617" y1="113.66666666666669" y2="113.66666666666669"/> + <line stroke="#888888" x1="436.68991933709293" x2="436.68991933709293" y1="107.50000000000001" y2="119.16666666666669"/> + <line stroke="#888888" x1="436.68991933709293" x2="413.35658600375956" y1="119.16666666666669" y2="119.16666666666669"/> + <line stroke="#888888" x1="413.35658600375956" x2="413.35658600375956" y1="119.16666666666669" y2="107.50000000000001"/> + <line stroke="#888888" x1="442.27325267042625" x2="442.27325267042625" y1="241.91666666666666" y2="218.08333333333334"/> + <line stroke="#888888" x1="442.27325267042625" x2="442.77325267042625" y1="218.08333333333334" y2="218.08333333333334"/> + <line stroke="#888888" x1="442.77325267042625" x2="442.77325267042625" y1="218.08333333333334" y2="241.91666666666666"/> + <line stroke="#888888" x1="442.77325267042625" x2="442.27325267042625" y1="241.91666666666666" y2="241.91666666666666"/> + <line stroke="#888888" x1="442.2732526704263" x2="442.2732526704263" y1="271.9166666666667" y2="248.08333333333337"/> + <line stroke="#888888" x1="442.2732526704263" x2="442.7732526704263" y1="248.08333333333337" y2="248.08333333333337"/> + <line stroke="#888888" x1="442.7732526704263" x2="442.7732526704263" y1="248.08333333333337" y2="271.9166666666667"/> + <line stroke="#888888" x1="442.7732526704263" x2="442.2732526704263" y1="271.9166666666667" y2="271.9166666666667"/> + <line stroke="#888888" x1="340.11416176133537" x2="340.11416176133537" y1="372.50000000000006" y2="367.50000000000006"/> + <line stroke="#888888" x1="340.11416176133537" x2="351.20507085224455" y1="367.50000000000006" y2="367.50000000000006"/> + <line stroke="#888888" x1="351.20507085224455" x2="351.20507085224455" y1="367.50000000000006" y2="372.50000000000006"/> + <line stroke="#888888" x1="367.8414344886082" x2="367.8414344886082" y1="372.50000000000006" y2="367.50000000000006"/> + <line stroke="#888888" x1="367.8414344886082" x2="378.9323435795172" y1="367.50000000000006" y2="367.50000000000006"/> + <line stroke="#888888" x1="378.9323435795172" x2="378.9323435795172" y1="367.50000000000006" y2="372.50000000000006"/> + <line stroke="#888888" x1="202.27325267042633" x2="202.27325267042633" y1="387.9166666666668" y2="376.0833333333334"/> + <line stroke="#888888" x1="202.27325267042633" x2="202.77325267042633" y1="376.0833333333334" y2="376.0833333333334"/> + <line stroke="#888888" x1="202.77325267042633" x2="202.77325267042636" y1="376.0833333333334" y2="387.9166666666668"/> + <line stroke="#888888" x1="202.77325267042636" x2="202.27325267042633" y1="387.9166666666668" y2="387.9166666666668"/> + <line stroke="#888888" x1="193.7732526704264" x2="202.27325267042636" y1="481.0000000000001" y2="481.0000000000001"/> + <line stroke="#888888" x1="202.27325267042636" x2="202.27325267042636" y1="481.0000000000001" y2="481.5000000000001"/> + <line stroke="#888888" x1="202.27325267042636" x2="193.7732526704264" y1="481.5000000000001" y2="481.5000000000001"/> + <line stroke="#888888" x1="193.7732526704264" x2="193.7732526704264" y1="481.5000000000001" y2="481.0000000000001"/> + <line stroke="#888888" x1="167.02325267042633" x2="171.02325267042633" y1="376.0000000000001" y2="376.0000000000001"/> + <line stroke="#888888" x1="171.02325267042633" x2="171.02325267042633" y1="376.0000000000001" y2="388.0000000000001"/> + <line stroke="#888888" x1="171.02325267042633" x2="167.02325267042633" y1="388.0000000000001" y2="388.0000000000001"/> + <line stroke="#888888" x1="167.02325267042633" x2="167.02325267042633" y1="388.0000000000001" y2="376.0000000000001"/> + <line stroke="#888888" x1="179.02325267042633" x2="183.02325267042633" y1="377.50000000000006" y2="377.50000000000006"/> + <line stroke="#888888" x1="183.02325267042633" x2="183.02325267042633" y1="377.50000000000006" y2="386.50000000000006"/> + <line stroke="#888888" x1="183.02325267042633" x2="179.02325267042633" y1="386.50000000000006" y2="386.50000000000006"/> + <line stroke="#888888" x1="179.02325267042633" x2="179.02325267042633" y1="386.50000000000006" y2="377.50000000000006"/> + <line stroke="#888888" x1="142.52325267042636" x2="165.52325267042636" y1="376.0000000000001" y2="376.0000000000001"/> + <line stroke="#888888" x1="165.52325267042636" x2="165.52325267042636" y1="376.0000000000001" y2="388.0000000000001"/> + <line stroke="#888888" x1="165.52325267042636" x2="142.52325267042636" y1="388.0000000000001" y2="388.0000000000001"/> + <line stroke="#888888" x1="142.52325267042636" x2="142.52325267042636" y1="388.0000000000001" y2="376.0000000000001"/> + <line stroke="#888888" x1="137.02325267042636" x2="141.02325267042633" y1="376.0000000000001" y2="376.0000000000001"/> + <line stroke="#888888" x1="141.02325267042633" x2="141.02325267042633" y1="376.0000000000001" y2="388.0000000000001"/> + <line stroke="#888888" x1="141.02325267042633" x2="137.02325267042636" y1="388.0000000000001" y2="388.0000000000001"/> + <line stroke="#888888" x1="137.02325267042636" x2="137.02325267042636" y1="388.0000000000001" y2="376.0000000000001"/> + <line stroke="#888888" x1="114.52325267042633" x2="119.52325267042633" y1="376.3333333333334" y2="376.3333333333334"/> + <line stroke="#888888" x1="119.52325267042633" x2="119.52325267042634" y1="376.3333333333334" y2="387.6666666666668"/> + <line stroke="#888888" x1="119.52325267042634" x2="114.52325267042634" y1="387.6666666666668" y2="387.6666666666668"/> + <line stroke="#888888" x1="50.293912049626165" x2="50.293912049626165" y1="378.3985027328003" y2="369.46616757760023"/> + <line stroke="#888888" x1="50.293912049626165" x2="68.15858236002626" y1="369.46616757760023" y2="369.46616757760023"/> + <line stroke="#888888" x1="68.15858236002626" x2="68.15858236002626" y1="369.46616757760023" y2="378.3985027328003"/> + <line stroke="#888888" x1="22.23674174086841" x2="27.02781066601807" y1="274.96789528790873" y2="292.6965944551955"/> + <line stroke="#888888" x1="27.02781066601807" x2="26.545125737085613" y1="292.6965944551955" y2="292.82703700723084"/> + <line stroke="#888888" x1="26.545125737085613" x2="21.754056811935953" y1="292.82703700723084" y2="275.098337839944"/> + <line stroke="#888888" x1="21.754056811935953" x2="22.23674174086841" y1="275.098337839944" y2="274.96789528790873"/> + <line stroke="#888888" x1="27.027810666018013" x2="22.236741740868357" y1="197.30340554480492" y2="215.0321047120917"/> + <line stroke="#888888" x1="22.236741740868357" x2="21.7540568119359" y1="215.0321047120917" y2="214.90166216005642"/> + <line stroke="#888888" x1="21.7540568119359" x2="26.54512573708556" y1="214.90166216005642" y2="197.17296299276964"/> + <line stroke="#888888" x1="26.54512573708556" x2="27.027810666018013" y1="197.17296299276964" y2="197.30340554480492"/> + <line stroke="#888888" x1="68.15858236002603" x2="68.15858236002603" y1="111.60149726720016" y2="120.5338324224002"/> + <line stroke="#888888" x1="68.15858236002603" x2="50.293912049625966" y1="120.5338324224002" y2="120.53383242240022"/> + <line stroke="#888888" x1="50.293912049625966" x2="50.29391204962594" y1="120.53383242240022" y2="111.60149726720017"/> + <line stroke="#888888" x1="413.3565860037597" x2="413.3565860037597" y1="382.49999999999994" y2="370.83333333333337"/> + <line stroke="#888888" x1="413.3565860037597" x2="436.68991933709293" y1="370.83333333333337" y2="370.8333333333333"/> + <line stroke="#888888" x1="436.68991933709293" x2="436.68991933709293" y1="370.8333333333333" y2="382.49999999999994"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="503.0232526704263" x2="564.0232526704264" y1="113.00000000000001" y2="113.00000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="564.0232526704264" x2="564.0232526704264" y1="113.00000000000001" y2="137.00000000000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="564.0232526704264" x2="503.0232526704263" y1="137.00000000000003" y2="137.00000000000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="503.0232526704263" x2="503.0232526704263" y1="137.00000000000003" y2="113.00000000000001"/> + <line stroke="#000000" x1="503.0232526704263" x2="503.0232526704263" y1="106.00000000000001" y2="113.00000000000001"/> + <line stroke="#000000" x1="563.0232526704264" x2="503.0232526704263" y1="106.00000000000001" y2="106.00000000000001"/> + <line stroke="#000000" x1="563.0232526704264" x2="563.0232526704264" y1="113.00000000000001" y2="106.00000000000001"/> + <line stroke="#000000" x1="571.0232526704264" x2="564.0232526704264" y1="113.00000000000001" y2="113.00000000000001"/> + <line stroke="#000000" x1="571.0232526704264" x2="571.0232526704264" y1="137.00000000000003" y2="113.00000000000001"/> + <line stroke="#000000" x1="564.0232526704264" x2="571.0232526704264" y1="137.00000000000003" y2="137.00000000000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="564.0232526704264" x2="564.0232526704264" y1="137.00000000000003" y2="198.0"/> + <line stroke="#000000" x1="504.0232526704263" x2="564.0232526704264" y1="198.0" y2="198.0"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="504.0232526704263" x2="504.0232526704263" y1="137.00000000000003" y2="198.0"/> + <line stroke="#000000" x1="588.0232526704262" x2="564.0232526704264" y1="137.00000000000003" y2="137.00000000000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="588.0232526704262" x2="588.0232526704262" y1="137.00000000000003" y2="198.0"/> + <line stroke="#000000" x1="564.0232526704264" x2="588.0232526704262" y1="198.0" y2="198.0"/> + <line stroke="#000000" x1="648.0232526704264" x2="588.0232526704262" y1="137.00000000000003" y2="137.00000000000003"/> + <line stroke="#000000" x1="648.0232526704264" x2="648.0232526704264" y1="198.0" y2="137.00000000000003"/> + <line stroke="#000000" x1="588.0232526704262" x2="648.0232526704264" y1="198.0" y2="198.0"/> + <line stroke="#000000" x1="504.0232526704263" x2="480.0232526704263" y1="137.00000000000003" y2="137.00000000000003"/> + <line stroke="#000000" x1="480.0232526704263" x2="504.0232526704263" y1="198.0" y2="198.0"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="480.0232526704263" x2="480.0232526704263" y1="198.0" y2="137.00000000000003"/> + <line stroke="#000000" x1="470.0232526704263" x2="480.0232526704263" y1="198.0" y2="198.0"/> + <line stroke="#000000" x1="470.0232526704263" x2="470.0232526704263" y1="137.00000000000003" y2="198.0"/> + <line stroke="#000000" x1="480.0232526704263" x2="470.0232526704263" y1="137.00000000000003" y2="137.00000000000003"/> + <line stroke="#000000" x1="496.0232526704263" x2="503.0232526704263" y1="137.00000000000003" y2="137.00000000000003"/> + <line stroke="#000000" x1="496.0232526704263" x2="496.0232526704263" y1="113.00000000000001" y2="137.00000000000003"/> + <line stroke="#000000" x1="503.0232526704263" x2="496.0232526704263" y1="113.00000000000001" y2="113.00000000000001"/> + <line stroke="#888888" x1="552.1141617613354" x2="555.6141617613354" y1="107.75000000000001" y2="107.75000000000001"/> + <line stroke="#888888" x1="555.6141617613354" x2="552.1141617613354" y1="107.75000000000001" y2="111.25000000000001"/> + <line stroke="#888888" x1="552.1141617613354" x2="541.2050708522444" y1="111.25000000000001" y2="111.25000000000001"/> + <line stroke="#888888" x1="541.2050708522444" x2="537.7050708522446" y1="111.25000000000001" y2="107.75000000000001"/> + <line stroke="#888888" x1="537.7050708522446" x2="541.2050708522444" y1="107.75000000000001" y2="107.75000000000001"/> + <line stroke="#888888" x1="524.8414344886082" x2="528.3414344886082" y1="107.75000000000001" y2="107.75000000000001"/> + <line stroke="#888888" x1="528.3414344886082" x2="524.8414344886082" y1="107.75000000000001" y2="111.25000000000001"/> + <line stroke="#888888" x1="524.8414344886082" x2="513.9323435795172" y1="111.25000000000001" y2="111.25000000000001"/> + <line stroke="#888888" x1="513.9323435795172" x2="510.43234357951724" y1="111.25000000000001" y2="107.75000000000001"/> + <line stroke="#888888" x1="510.43234357951724" x2="513.9323435795172" y1="107.75000000000001" y2="107.75000000000001"/> + <line stroke="#888888" x1="569.2732526704264" x2="565.7732526704262" y1="129.0" y2="129.0"/> + <line stroke="#888888" x1="565.7732526704262" x2="565.7732526704262" y1="129.0" y2="121.00000000000001"/> + <line stroke="#888888" x1="565.7732526704262" x2="569.2732526704264" y1="121.00000000000001" y2="121.00000000000001"/> + <line stroke="#888888" x1="511.5232526704263" x2="511.5232526704263" y1="188.50000000000003" y2="170.5"/> + <line stroke="#888888" x1="511.5232526704263" x2="546.5232526704264" y1="170.5" y2="170.5"/> + <line stroke="#888888" x1="546.5232526704264" x2="546.5232526704264" y1="170.5" y2="188.50000000000003"/> + <line stroke="#888888" x1="546.5232526704264" x2="511.5232526704263" y1="188.50000000000003" y2="188.50000000000003"/> + <line stroke="#888888" x1="564.5232526704264" x2="564.5232526704264" y1="150.25" y2="147.25000000000003"/> + <line stroke="#888888" x1="564.5232526704264" x2="567.5232526704262" y1="147.25000000000003" y2="147.25000000000003"/> + <line stroke="#888888" x1="567.5232526704262" x2="567.5232526704262" y1="147.25000000000003" y2="150.25"/> + <line stroke="#888888" x1="567.5232526704262" x2="564.5232526704264" y1="150.25" y2="150.25"/> + <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="149.25000000000003" y2="148.25"/> + <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="148.25" y2="148.25"/> + <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="148.25" y2="149.25000000000003"/> + <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="149.25000000000003" y2="149.25000000000003"/> + <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="151.75000000000003" y2="150.75000000000003"/> + <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="150.75000000000003" y2="150.75000000000003"/> + <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="150.75000000000003" y2="151.75000000000003"/> + <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="151.75000000000003" y2="151.75000000000003"/> + <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="151.75000000000003" y2="150.75000000000003"/> + <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="150.75000000000003" y2="150.75000000000003"/> + <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="150.75000000000003" y2="151.75000000000003"/> + <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="151.75000000000003" y2="151.75000000000003"/> + <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="154.25000000000003" y2="153.25000000000003"/> + <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="153.25000000000003" y2="153.25000000000003"/> + <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="153.25000000000003" y2="154.25000000000003"/> + <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="154.25000000000003" y2="154.25000000000003"/> + <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="154.25000000000003" y2="153.25000000000003"/> + <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="153.25000000000003" y2="153.25000000000003"/> + <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="153.25000000000003" y2="154.25000000000003"/> + <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="154.25000000000003" y2="154.25000000000003"/> + <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="156.75" y2="155.75000000000003"/> + <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="155.75000000000003" y2="155.75000000000003"/> + <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="155.75000000000003" y2="156.75"/> + <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="156.75" y2="156.75"/> + <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="156.75" y2="155.75000000000003"/> + <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="155.75000000000003" y2="155.75000000000003"/> + <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="155.75000000000003" y2="156.75"/> + <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="156.75" y2="156.75"/> + <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="159.25" y2="158.25000000000003"/> + <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="158.25000000000003" y2="158.25000000000003"/> + <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="158.25000000000003" y2="159.25"/> + <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="159.25" y2="159.25"/> + <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="159.25" y2="158.25000000000003"/> + <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="158.25000000000003" y2="158.25000000000003"/> + <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="158.25000000000003" y2="159.25"/> + <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="159.25" y2="159.25"/> + <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="161.75" y2="160.75000000000003"/> + <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="160.75000000000003" y2="160.75000000000003"/> + <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="160.75000000000003" y2="161.75"/> + <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="161.75" y2="161.75"/> + <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="161.75" y2="160.75000000000003"/> + <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="160.75000000000003" y2="160.75000000000003"/> + <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="160.75000000000003" y2="161.75"/> + <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="161.75" y2="161.75"/> + <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="164.25000000000003" y2="163.25000000000003"/> + <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="163.25000000000003" y2="163.25000000000003"/> + <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="163.25000000000003" y2="164.25000000000003"/> + <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="164.25000000000003" y2="164.25000000000003"/> + <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="164.25000000000003" y2="163.25000000000003"/> + <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="163.25000000000003" y2="163.25000000000003"/> + <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="163.25000000000003" y2="164.25000000000003"/> + <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="164.25000000000003" y2="164.25000000000003"/> + <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="166.75000000000003" y2="165.75"/> + <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="165.75" y2="165.75"/> + <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="165.75" y2="166.75000000000003"/> + <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="166.75000000000003" y2="166.75000000000003"/> + <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="166.75000000000003" y2="165.75"/> + <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="165.75" y2="165.75"/> + <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="165.75" y2="166.75000000000003"/> + <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="166.75000000000003" y2="166.75000000000003"/> + <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="169.25000000000003" y2="168.25"/> + <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="168.25" y2="168.25"/> + <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="168.25" y2="169.25000000000003"/> + <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="169.25000000000003" y2="169.25000000000003"/> + <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="169.25000000000003" y2="168.25"/> + <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="168.25" y2="168.25"/> + <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="168.25" y2="169.25000000000003"/> + <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="169.25000000000003" y2="169.25000000000003"/> + <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="171.75000000000003" y2="170.75"/> + <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="170.75" y2="170.75"/> + <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="170.75" y2="171.75000000000003"/> + <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="171.75000000000003" y2="171.75000000000003"/> + <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="171.75000000000003" y2="170.75"/> + <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="170.75" y2="170.75"/> + <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="170.75" y2="171.75000000000003"/> + <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="171.75000000000003" y2="171.75000000000003"/> + <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="174.25000000000003" y2="173.25000000000003"/> + <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="173.25000000000003" y2="173.25000000000003"/> + <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="173.25000000000003" y2="174.25000000000003"/> + <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="174.25000000000003" y2="174.25000000000003"/> + <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="174.25000000000003" y2="173.25000000000003"/> + <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="173.25000000000003" y2="173.25000000000003"/> + <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="173.25000000000003" y2="174.25000000000003"/> + <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="174.25000000000003" y2="174.25000000000003"/> + <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="176.75000000000003" y2="175.75000000000003"/> + <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="175.75000000000003" y2="175.75000000000003"/> + <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="175.75000000000003" y2="176.75000000000003"/> + <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="176.75000000000003" y2="176.75000000000003"/> + <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="176.75000000000003" y2="175.75000000000003"/> + <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="175.75000000000003" y2="175.75000000000003"/> + <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="175.75000000000003" y2="176.75000000000003"/> + <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="176.75000000000003" y2="176.75000000000003"/> + <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="179.25000000000003" y2="178.25000000000003"/> + <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="178.25000000000003" y2="178.25000000000003"/> + <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="178.25000000000003" y2="179.25000000000003"/> + <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="179.25000000000003" y2="179.25000000000003"/> + <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="179.25000000000003" y2="178.25000000000003"/> + <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="178.25000000000003" y2="178.25000000000003"/> + <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="178.25000000000003" y2="179.25000000000003"/> + <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="179.25000000000003" y2="179.25000000000003"/> + <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="181.75" y2="180.75000000000003"/> + <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="180.75000000000003" y2="180.75000000000003"/> + <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="180.75000000000003" y2="181.75"/> + <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="181.75" y2="181.75"/> + <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="181.75" y2="180.75000000000003"/> + <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="180.75000000000003" y2="180.75000000000003"/> + <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="180.75000000000003" y2="181.75"/> + <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="181.75" y2="181.75"/> + <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="184.25" y2="183.25000000000003"/> + <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="183.25000000000003" y2="183.25000000000003"/> + <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="183.25000000000003" y2="184.25"/> + <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="184.25" y2="184.25"/> + <line stroke="#888888" x1="585.5232526704262" x2="585.5232526704262" y1="184.25" y2="183.25000000000003"/> + <line stroke="#888888" x1="585.5232526704262" x2="586.5232526704262" y1="183.25000000000003" y2="183.25000000000003"/> + <line stroke="#888888" x1="586.5232526704262" x2="586.5232526704262" y1="183.25000000000003" y2="184.25"/> + <line stroke="#888888" x1="586.5232526704262" x2="585.5232526704262" y1="184.25" y2="184.25"/> + <line stroke="#888888" x1="565.5232526704264" x2="565.5232526704264" y1="186.75" y2="185.75000000000003"/> + <line stroke="#888888" x1="565.5232526704264" x2="566.5232526704264" y1="185.75000000000003" y2="185.75000000000003"/> + <line stroke="#888888" x1="566.5232526704264" x2="566.5232526704264" y1="185.75000000000003" y2="186.75"/> + <line stroke="#888888" x1="566.5232526704264" x2="565.5232526704264" y1="186.75" y2="186.75"/> + <line stroke="#888888" x1="584.5232526704264" x2="584.5232526704264" y1="187.75000000000003" y2="184.75000000000003"/> + <line stroke="#888888" x1="584.5232526704264" x2="587.5232526704262" y1="184.75000000000003" y2="184.75000000000003"/> + <line stroke="#888888" x1="587.5232526704262" x2="587.5232526704262" y1="184.75000000000003" y2="187.75000000000003"/> + <line stroke="#888888" x1="587.5232526704262" x2="584.5232526704264" y1="187.75000000000003" y2="187.75000000000003"/> + <line stroke="#888888" x1="580.2732526704264" x2="571.7732526704262" y1="144.75000000000003" y2="144.75000000000003"/> + <line stroke="#888888" x1="571.7732526704262" x2="571.7732526704262" y1="144.75000000000003" y2="144.25000000000003"/> + <line stroke="#888888" x1="571.7732526704262" x2="580.2732526704264" y1="144.25000000000003" y2="144.25000000000003"/> + <line stroke="#888888" x1="580.2732526704264" x2="580.2732526704264" y1="144.25000000000003" y2="144.75000000000003"/> + <line stroke="#888888" x1="571.7732526704262" x2="580.2732526704264" y1="192.50000000000003" y2="192.50000000000003"/> + <line stroke="#888888" x1="580.2732526704264" x2="580.2732526704264" y1="192.50000000000003" y2="193.00000000000003"/> + <line stroke="#888888" x1="580.2732526704264" x2="571.7732526704262" y1="193.00000000000003" y2="193.00000000000003"/> + <line stroke="#888888" x1="571.7732526704262" x2="571.7732526704262" y1="193.00000000000003" y2="192.50000000000003"/> + <line stroke="#888888" x1="603.0232526704264" x2="603.0232526704264" y1="188.00000000000003" y2="175.0"/> + <line stroke="#888888" x1="603.0232526704264" x2="633.0232526704262" y1="175.0" y2="175.0"/> + <line stroke="#888888" x1="633.0232526704262" x2="633.0232526704262" y1="175.0" y2="188.00000000000003"/> + <line stroke="#888888" x1="633.0232526704262" x2="603.0232526704264" y1="188.00000000000003" y2="188.00000000000003"/> + <line stroke="#888888" x1="610.0914344886081" x2="598.6823435795171" y1="142.50000000000003" y2="142.50000000000003"/> + <line stroke="#888888" x1="598.6823435795171" x2="598.6823435795171" y1="142.50000000000003" y2="142.00000000000003"/> + <line stroke="#888888" x1="598.6823435795171" x2="610.0914344886081" y1="142.00000000000003" y2="142.00000000000003"/> + <line stroke="#888888" x1="610.0914344886081" x2="610.0914344886081" y1="142.00000000000003" y2="142.50000000000003"/> + <line stroke="#888888" x1="637.3641617613355" x2="625.9550708522444" y1="142.50000000000003" y2="142.50000000000003"/> + <line stroke="#888888" x1="625.9550708522444" x2="625.9550708522444" y1="142.50000000000003" y2="142.00000000000003"/> + <line stroke="#888888" x1="625.9550708522444" x2="637.3641617613355" y1="142.00000000000003" y2="142.00000000000003"/> + <line stroke="#888888" x1="637.3641617613355" x2="637.3641617613355" y1="142.00000000000003" y2="142.50000000000003"/> + <line stroke="#888888" x1="640.2732526704264" x2="640.2732526704264" y1="159.43181818181822" y2="147.84090909090912"/> + <line stroke="#888888" x1="640.2732526704264" x2="640.7732526704264" y1="147.84090909090912" y2="147.84090909090912"/> + <line stroke="#888888" x1="640.7732526704264" x2="640.7732526704264" y1="147.84090909090912" y2="159.43181818181822"/> + <line stroke="#888888" x1="640.7732526704264" x2="640.2732526704264" y1="159.43181818181822" y2="159.43181818181822"/> + <line stroke="#888888" x1="640.2732526704264" x2="640.2732526704264" y1="187.15909090909093" y2="175.5681818181818"/> + <line stroke="#888888" x1="640.2732526704264" x2="640.7732526704264" y1="175.5681818181818" y2="175.5681818181818"/> + <line stroke="#888888" x1="640.7732526704264" x2="640.7732526704264" y1="175.5681818181818" y2="187.15909090909093"/> + <line stroke="#888888" x1="640.7732526704264" x2="640.2732526704264" y1="187.15909090909093" y2="187.15909090909093"/> + <line stroke="#888888" x1="480.5232526704263" x2="480.5232526704263" y1="150.25" y2="147.25000000000003"/> + <line stroke="#888888" x1="480.5232526704263" x2="483.5232526704263" y1="147.25000000000003" y2="147.25000000000003"/> + <line stroke="#888888" x1="483.5232526704263" x2="483.5232526704263" y1="147.25000000000003" y2="150.25"/> + <line stroke="#888888" x1="483.5232526704263" x2="480.5232526704263" y1="150.25" y2="150.25"/> + <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="149.25000000000003" y2="148.25"/> + <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="148.25" y2="148.25"/> + <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="148.25" y2="149.25000000000003"/> + <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="149.25000000000003" y2="149.25000000000003"/> + <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="151.75000000000003" y2="150.75000000000003"/> + <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="150.75000000000003" y2="150.75000000000003"/> + <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="150.75000000000003" y2="151.75000000000003"/> + <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="151.75000000000003" y2="151.75000000000003"/> + <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="151.75000000000003" y2="150.75000000000003"/> + <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="150.75000000000003" y2="150.75000000000003"/> + <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="150.75000000000003" y2="151.75000000000003"/> + <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="151.75000000000003" y2="151.75000000000003"/> + <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="154.25000000000003" y2="153.25000000000003"/> + <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="153.25000000000003" y2="153.25000000000003"/> + <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="153.25000000000003" y2="154.25000000000003"/> + <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="154.25000000000003" y2="154.25000000000003"/> + <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="154.25000000000003" y2="153.25000000000003"/> + <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="153.25000000000003" y2="153.25000000000003"/> + <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="153.25000000000003" y2="154.25000000000003"/> + <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="154.25000000000003" y2="154.25000000000003"/> + <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="156.75" y2="155.75000000000003"/> + <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="155.75000000000003" y2="155.75000000000003"/> + <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="155.75000000000003" y2="156.75"/> + <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="156.75" y2="156.75"/> + <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="156.75" y2="155.75000000000003"/> + <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="155.75000000000003" y2="155.75000000000003"/> + <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="155.75000000000003" y2="156.75"/> + <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="156.75" y2="156.75"/> + <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="159.25" y2="158.25000000000003"/> + <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="158.25000000000003" y2="158.25000000000003"/> + <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="158.25000000000003" y2="159.25"/> + <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="159.25" y2="159.25"/> + <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="159.25" y2="158.25000000000003"/> + <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="158.25000000000003" y2="158.25000000000003"/> + <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="158.25000000000003" y2="159.25"/> + <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="159.25" y2="159.25"/> + <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="161.75" y2="160.75000000000003"/> + <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="160.75000000000003" y2="160.75000000000003"/> + <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="160.75000000000003" y2="161.75"/> + <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="161.75" y2="161.75"/> + <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="161.75" y2="160.75000000000003"/> + <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="160.75000000000003" y2="160.75000000000003"/> + <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="160.75000000000003" y2="161.75"/> + <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="161.75" y2="161.75"/> + <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="164.25000000000003" y2="163.25000000000003"/> + <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="163.25000000000003" y2="163.25000000000003"/> + <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="163.25000000000003" y2="164.25000000000003"/> + <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="164.25000000000003" y2="164.25000000000003"/> + <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="164.25000000000003" y2="163.25000000000003"/> + <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="163.25000000000003" y2="163.25000000000003"/> + <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="163.25000000000003" y2="164.25000000000003"/> + <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="164.25000000000003" y2="164.25000000000003"/> + <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="166.75000000000003" y2="165.75"/> + <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="165.75" y2="165.75"/> + <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="165.75" y2="166.75000000000003"/> + <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="166.75000000000003" y2="166.75000000000003"/> + <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="166.75000000000003" y2="165.75"/> + <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="165.75" y2="165.75"/> + <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="165.75" y2="166.75000000000003"/> + <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="166.75000000000003" y2="166.75000000000003"/> + <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="169.25000000000003" y2="168.25"/> + <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="168.25" y2="168.25"/> + <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="168.25" y2="169.25000000000003"/> + <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="169.25000000000003" y2="169.25000000000003"/> + <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="169.25000000000003" y2="168.25"/> + <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="168.25" y2="168.25"/> + <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="168.25" y2="169.25000000000003"/> + <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="169.25000000000003" y2="169.25000000000003"/> + <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="171.75000000000003" y2="170.75"/> + <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="170.75" y2="170.75"/> + <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="170.75" y2="171.75000000000003"/> + <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="171.75000000000003" y2="171.75000000000003"/> + <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="171.75000000000003" y2="170.75"/> + <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="170.75" y2="170.75"/> + <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="170.75" y2="171.75000000000003"/> + <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="171.75000000000003" y2="171.75000000000003"/> + <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="174.25000000000003" y2="173.25000000000003"/> + <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="173.25000000000003" y2="173.25000000000003"/> + <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="173.25000000000003" y2="174.25000000000003"/> + <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="174.25000000000003" y2="174.25000000000003"/> + <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="174.25000000000003" y2="173.25000000000003"/> + <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="173.25000000000003" y2="173.25000000000003"/> + <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="173.25000000000003" y2="174.25000000000003"/> + <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="174.25000000000003" y2="174.25000000000003"/> + <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="176.75000000000003" y2="175.75000000000003"/> + <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="175.75000000000003" y2="175.75000000000003"/> + <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="175.75000000000003" y2="176.75000000000003"/> + <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="176.75000000000003" y2="176.75000000000003"/> + <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="176.75000000000003" y2="175.75000000000003"/> + <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="175.75000000000003" y2="175.75000000000003"/> + <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="175.75000000000003" y2="176.75000000000003"/> + <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="176.75000000000003" y2="176.75000000000003"/> + <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="179.25000000000003" y2="178.25000000000003"/> + <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="178.25000000000003" y2="178.25000000000003"/> + <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="178.25000000000003" y2="179.25000000000003"/> + <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="179.25000000000003" y2="179.25000000000003"/> + <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="179.25000000000003" y2="178.25000000000003"/> + <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="178.25000000000003" y2="178.25000000000003"/> + <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="178.25000000000003" y2="179.25000000000003"/> + <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="179.25000000000003" y2="179.25000000000003"/> + <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="181.75" y2="180.75000000000003"/> + <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="180.75000000000003" y2="180.75000000000003"/> + <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="180.75000000000003" y2="181.75"/> + <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="181.75" y2="181.75"/> + <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="181.75" y2="180.75000000000003"/> + <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="180.75000000000003" y2="180.75000000000003"/> + <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="180.75000000000003" y2="181.75"/> + <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="181.75" y2="181.75"/> + <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="184.25" y2="183.25000000000003"/> + <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="183.25000000000003" y2="183.25000000000003"/> + <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="183.25000000000003" y2="184.25"/> + <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="184.25" y2="184.25"/> + <line stroke="#888888" x1="501.5232526704263" x2="501.5232526704263" y1="184.25" y2="183.25000000000003"/> + <line stroke="#888888" x1="501.5232526704263" x2="502.5232526704263" y1="183.25000000000003" y2="183.25000000000003"/> + <line stroke="#888888" x1="502.5232526704263" x2="502.5232526704263" y1="183.25000000000003" y2="184.25"/> + <line stroke="#888888" x1="502.5232526704263" x2="501.5232526704263" y1="184.25" y2="184.25"/> + <line stroke="#888888" x1="481.5232526704263" x2="481.5232526704263" y1="186.75" y2="185.75000000000003"/> + <line stroke="#888888" x1="481.5232526704263" x2="482.52325267042636" y1="185.75000000000003" y2="185.75000000000003"/> + <line stroke="#888888" x1="482.52325267042636" x2="482.52325267042636" y1="185.75000000000003" y2="186.75"/> + <line stroke="#888888" x1="482.52325267042636" x2="481.5232526704263" y1="186.75" y2="186.75"/> + <line stroke="#888888" x1="500.5232526704263" x2="500.5232526704263" y1="187.75000000000003" y2="184.75000000000003"/> + <line stroke="#888888" x1="500.5232526704263" x2="503.5232526704263" y1="184.75000000000003" y2="184.75000000000003"/> + <line stroke="#888888" x1="503.5232526704263" x2="503.5232526704263" y1="184.75000000000003" y2="187.75000000000003"/> + <line stroke="#888888" x1="503.5232526704263" x2="500.5232526704263" y1="187.75000000000003" y2="187.75000000000003"/> + <line stroke="#888888" x1="496.27325267042636" x2="487.7732526704263" y1="144.75000000000003" y2="144.75000000000003"/> + <line stroke="#888888" x1="487.7732526704263" x2="487.7732526704263" y1="144.75000000000003" y2="144.25000000000003"/> + <line stroke="#888888" x1="487.7732526704263" x2="496.27325267042636" y1="144.25000000000003" y2="144.25000000000003"/> + <line stroke="#888888" x1="496.27325267042636" x2="496.27325267042636" y1="144.25000000000003" y2="144.75000000000003"/> + <line stroke="#888888" x1="487.7732526704263" x2="496.27325267042636" y1="192.50000000000003" y2="192.50000000000003"/> + <line stroke="#888888" x1="496.27325267042636" x2="496.27325267042636" y1="192.50000000000003" y2="193.00000000000003"/> + <line stroke="#888888" x1="496.27325267042636" x2="487.7732526704263" y1="193.00000000000003" y2="193.00000000000003"/> + <line stroke="#888888" x1="487.7732526704263" x2="487.7732526704263" y1="193.00000000000003" y2="192.50000000000003"/> + <line stroke="#888888" x1="472.5232526704263" x2="477.5232526704263" y1="148.09090909090912" y2="148.09090909090912"/> + <line stroke="#888888" x1="477.5232526704263" x2="477.5232526704263" y1="148.09090909090912" y2="159.1818181818182"/> + <line stroke="#888888" x1="477.5232526704263" x2="472.5232526704263" y1="159.1818181818182" y2="159.1818181818182"/> + <line stroke="#888888" x1="472.5232526704263" x2="477.5232526704263" y1="175.81818181818184" y2="175.81818181818184"/> + <line stroke="#888888" x1="477.5232526704263" x2="477.5232526704263" y1="175.81818181818184" y2="186.90909090909093"/> + <line stroke="#888888" x1="477.5232526704263" x2="472.5232526704263" y1="186.90909090909093" y2="186.90909090909093"/> + <line stroke="#888888" x1="497.7732526704263" x2="501.2732526704263" y1="121.00000000000001" y2="121.00000000000001"/> + <line stroke="#888888" x1="501.2732526704263" x2="501.2732526704263" y1="121.00000000000001" y2="129.0"/> + <line stroke="#888888" x1="501.2732526704263" x2="497.7732526704263" y1="129.0" y2="129.0"/> </svg> diff --git a/rocolib/output/BoatWithServoMountAndStack/graph-model.png b/rocolib/output/BoatWithServoMountAndStack/graph-model.png index 38e63e43ec420911d60ce62a2a6df4e11f7a2e4c..4479e9daed86b679d4a2fd4140d25d41a814e7e5 100644 Binary files a/rocolib/output/BoatWithServoMountAndStack/graph-model.png and b/rocolib/output/BoatWithServoMountAndStack/graph-model.png differ diff --git a/rocolib/output/BoatWithServoMountAndStack/graph-model.stl b/rocolib/output/BoatWithServoMountAndStack/graph-model.stl index 114ede5afa57cdc6943e93923e178ac86533e35f..08929f574edda207740c9441fd3ec92a3462ed5f 100644 --- a/rocolib/output/BoatWithServoMountAndStack/graph-model.stl +++ b/rocolib/output/BoatWithServoMountAndStack/graph-model.stl @@ -1,170 +1,226 @@ solid python facet normal 0 0 0 outer loop -vertex -0.1040 0.0700 -0.0000 -vertex 0.0600 0.0700 0.0000 -vertex 0.0600 0.0700 -0.0600 +vertex 0.0000 0.0340 -0.0000 +vertex -0.0240 0.0340 -0.0000 +vertex -0.0240 0.0700 -0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0240 0.0700 -0.0000 +vertex 0.0000 0.0700 -0.0000 +vertex 0.0000 0.0340 -0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0240 0.0340 -0.1000 +vertex -0.0000 0.0340 -0.1000 +vertex -0.0000 0.0700 -0.1000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0000 0.0700 -0.1000 +vertex -0.0240 0.0700 -0.1000 +vertex -0.0240 0.0340 -0.1000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.1240 0.0700 -0.0000 +vertex 0.1800 0.0700 0.0000 +vertex 0.1800 0.0700 -0.1000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1800 0.0700 -0.1000 +vertex -0.1240 0.0700 -0.1000 +vertex -0.1240 0.0700 -0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0600 0.0700 -0.0600 -vertex -0.1040 0.0700 -0.0600 -vertex -0.1040 0.0700 -0.0000 +vertex -0.1240 0.0000 0.0000 +vertex 0.1800 0.0000 0.0000 +vertex 0.1800 0.0700 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.1040 0.0000 0.0000 -vertex 0.0600 0.0000 0.0000 -vertex 0.0600 0.0700 0.0000 +vertex 0.1800 0.0700 0.0000 +vertex -0.1240 0.0700 0.0000 +vertex -0.1240 0.0000 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0600 0.0700 0.0000 -vertex -0.1040 0.0700 0.0000 -vertex -0.1040 0.0000 0.0000 +vertex -0.1240 0.0700 -0.1000 +vertex 0.1800 0.0700 -0.1000 +vertex 0.1800 0.0000 -0.1000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.1040 0.0700 -0.0600 -vertex 0.0600 0.0700 -0.0600 -vertex 0.0600 0.0000 -0.0600 +vertex 0.1800 0.0000 -0.1000 +vertex -0.1240 0.0000 -0.1000 +vertex -0.1240 0.0700 -0.1000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0600 0.0000 -0.0600 -vertex -0.1040 0.0000 -0.0600 -vertex -0.1040 0.0700 -0.0600 +vertex 0.1800 0.0700 0.0000 +vertex 0.1800 0.0000 0.0000 +vertex 0.1800 0.0000 -0.0500 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0600 0.0700 0.0000 -vertex 0.0600 0.0000 0.0000 -vertex 0.0600 0.0000 -0.0300 +vertex 0.1800 0.0700 -0.0500 +vertex 0.1800 0.0700 -0.0000 +vertex 0.1800 0.0000 -0.0500 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0600 0.0700 -0.0300 -vertex 0.0600 0.0700 0.0000 -vertex 0.0600 0.0000 -0.0300 +vertex 0.1800 0.0700 -0.0500 +vertex 0.1800 0.0000 -0.0500 +vertex 0.1800 0.0700 -0.1000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0600 0.0700 -0.0300 -vertex 0.0600 0.0000 -0.0300 -vertex 0.0600 0.0700 -0.0600 +vertex 0.1800 -0.0000 -0.0500 +vertex 0.1800 0.0000 -0.1000 +vertex 0.1800 0.0700 -0.1000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0600 0.0000 -0.0300 -vertex 0.0600 0.0000 -0.0600 -vertex 0.0600 0.0700 -0.0600 +vertex 0.1800 -0.0000 -0.0000 +vertex 0.1800 0.0700 -0.0000 +vertex 0.1800 -0.0000 -0.0700 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0600 -0.0000 -0.0000 -vertex 0.0600 0.0700 -0.0000 -vertex 0.0600 -0.0000 -0.0700 +vertex 0.1800 0.0000 0.0000 +vertex 0.1800 0.0000 -0.0700 +vertex 0.1800 0.0700 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0600 0.0000 0.0000 -vertex 0.0600 0.0000 -0.0700 -vertex 0.0600 0.0700 0.0000 +vertex 0.1800 0.0000 -0.1000 +vertex 0.1800 -0.0000 -0.0300 +vertex 0.1800 0.0700 -0.1000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0600 0.0000 -0.0600 -vertex 0.0600 0.0000 0.0100 -vertex 0.0600 0.0700 -0.0600 +vertex 0.1800 0.0000 -0.1000 +vertex 0.1800 0.0700 -0.1000 +vertex 0.1800 -0.0000 -0.0300 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0600 0.0000 -0.0600 -vertex 0.0600 0.0700 -0.0600 -vertex 0.0600 0.0000 0.0100 +vertex -0.1240 0.0700 -0.1000 +vertex -0.1240 0.0000 -0.1000 +vertex -0.1619 0.0000 -0.0621 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.1040 0.0700 -0.0600 -vertex -0.1040 0.0000 -0.0600 -vertex -0.1456 0.0000 -0.0350 +vertex -0.1619 0.0000 -0.0621 +vertex -0.1740 0.0000 -0.0500 +vertex -0.1240 0.0700 -0.1000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.1456 0.0000 -0.0350 -vertex -0.1540 0.0000 -0.0300 -vertex -0.1040 0.0700 -0.0600 +vertex -0.1240 0.0700 -0.0500 +vertex -0.1240 0.0700 -0.1000 +vertex -0.1740 0.0000 -0.0500 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.1040 0.0700 -0.0300 -vertex -0.1040 0.0700 -0.0600 -vertex -0.1540 0.0000 -0.0300 +vertex -0.1240 0.0700 -0.0500 +vertex -0.1740 0.0000 -0.0500 +vertex -0.1240 0.0700 -0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.1040 0.0700 -0.0300 -vertex -0.1540 0.0000 -0.0300 -vertex -0.1040 0.0700 -0.0000 +vertex -0.1619 0.0000 -0.0379 +vertex -0.1240 0.0000 -0.0000 +vertex -0.1240 0.0700 -0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.1456 0.0000 -0.0250 -vertex -0.1040 0.0000 -0.0000 -vertex -0.1040 0.0700 -0.0000 +vertex -0.1240 0.0700 -0.0000 +vertex -0.1740 0.0000 -0.0500 +vertex -0.1619 0.0000 -0.0379 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.1040 0.0700 -0.0000 -vertex -0.1540 0.0000 -0.0300 -vertex -0.1456 0.0000 -0.0250 +vertex -0.1240 0.0000 -0.1000 +vertex -0.1240 0.0700 -0.1000 +vertex -0.1619 0.0000 -0.0621 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.1040 0.0000 -0.0600 -vertex -0.1040 0.0700 -0.0600 -vertex -0.1456 0.0000 -0.0350 +vertex -0.1240 0.0000 -0.1000 +vertex -0.1619 0.0000 -0.0621 +vertex -0.1240 0.0700 -0.1000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.1040 0.0000 -0.0600 -vertex -0.1456 0.0000 -0.0350 -vertex -0.1040 0.0700 -0.0600 +vertex -0.1240 0.0000 -0.0000 +vertex -0.1619 0.0000 -0.0379 +vertex -0.1240 0.0700 -0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.1040 0.0000 -0.0000 -vertex -0.1456 0.0000 -0.0250 -vertex -0.1040 0.0700 -0.0000 +vertex -0.1240 0.0000 -0.0000 +vertex -0.1240 0.0700 -0.0000 +vertex -0.1619 0.0000 -0.0379 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.1040 0.0000 -0.0000 -vertex -0.1040 0.0700 -0.0000 -vertex -0.1456 0.0000 -0.0250 +vertex -0.0240 0.0700 -0.0500 +vertex 0.0000 0.0700 -0.0500 +vertex 0.0000 0.0700 -0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0000 0.0700 -0.0000 +vertex -0.0240 0.0700 -0.0000 +vertex -0.0240 0.0700 -0.0500 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0000 0.0700 -0.0500 +vertex -0.0240 0.0700 -0.0500 +vertex -0.0240 0.0700 -0.1000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0240 0.0700 -0.1000 +vertex -0.0000 0.0700 -0.1000 +vertex -0.0000 0.0700 -0.0500 endloop endfacet facet normal 0 0 0 @@ -393,226 +449,226 @@ endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0000 0.0000 -0.0600 -vertex 0.0000 0.0110 -0.0750 -vertex 0.0000 0.0230 -0.0750 +vertex -0.0000 0.0000 -0.1000 +vertex -0.0000 0.0110 -0.1150 +vertex -0.0000 0.0230 -0.1150 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0000 0.0110 -0.0750 -vertex 0.0000 0.0000 -0.0600 -vertex 0.0000 0.0000 -0.0800 +vertex -0.0000 0.0110 -0.1150 +vertex -0.0000 0.0000 -0.1000 +vertex -0.0000 0.0000 -0.1200 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0000 0.0340 -0.0600 -vertex 0.0000 0.0230 -0.0750 -vertex 0.0000 0.0340 -0.0800 +vertex -0.0000 0.0340 -0.1000 +vertex -0.0000 0.0230 -0.1150 +vertex -0.0000 0.0340 -0.1200 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0000 0.0230 -0.0750 -vertex 0.0000 0.0340 -0.0600 -vertex 0.0000 0.0000 -0.0600 +vertex -0.0000 0.0230 -0.1150 +vertex -0.0000 0.0340 -0.1000 +vertex -0.0000 0.0000 -0.1000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0000 0.0110 -0.0790 -vertex 0.0000 0.0000 -0.0800 -vertex 0.0000 0.0340 -0.0800 +vertex -0.0000 0.0110 -0.1190 +vertex -0.0000 0.0000 -0.1200 +vertex -0.0000 0.0340 -0.1200 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0000 0.0000 -0.0800 -vertex 0.0000 0.0110 -0.0790 -vertex 0.0000 0.0110 -0.0750 +vertex -0.0000 0.0000 -0.1200 +vertex -0.0000 0.0110 -0.1190 +vertex -0.0000 0.0110 -0.1150 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0000 0.0230 -0.0790 -vertex 0.0000 0.0340 -0.0800 -vertex 0.0000 0.0230 -0.0750 +vertex -0.0000 0.0230 -0.1190 +vertex -0.0000 0.0340 -0.1200 +vertex -0.0000 0.0230 -0.1150 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0000 0.0340 -0.0800 -vertex 0.0000 0.0230 -0.0790 -vertex 0.0000 0.0110 -0.0790 +vertex -0.0000 0.0340 -0.1200 +vertex -0.0000 0.0230 -0.1190 +vertex -0.0000 0.0110 -0.1190 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0000 0.0000 -0.0800 -vertex -0.0005 0.0110 -0.0800 -vertex -0.0005 0.0230 -0.0800 +vertex -0.0000 0.0000 -0.1200 +vertex -0.0005 0.0110 -0.1200 +vertex -0.0005 0.0230 -0.1200 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0005 0.0110 -0.0800 -vertex 0.0000 0.0000 -0.0800 -vertex -0.0240 0.0000 -0.0800 +vertex -0.0005 0.0110 -0.1200 +vertex -0.0000 0.0000 -0.1200 +vertex -0.0240 0.0000 -0.1200 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0000 0.0340 -0.0800 -vertex -0.0005 0.0230 -0.0800 -vertex -0.0235 0.0230 -0.0800 +vertex -0.0000 0.0340 -0.1200 +vertex -0.0005 0.0230 -0.1200 +vertex -0.0235 0.0230 -0.1200 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0005 0.0230 -0.0800 -vertex 0.0000 0.0340 -0.0800 -vertex 0.0000 0.0000 -0.0800 +vertex -0.0005 0.0230 -0.1200 +vertex -0.0000 0.0340 -0.1200 +vertex -0.0000 0.0000 -0.1200 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0235 0.0110 -0.0800 -vertex -0.0240 0.0000 -0.0800 -vertex -0.0240 0.0340 -0.0800 +vertex -0.0235 0.0110 -0.1200 +vertex -0.0240 0.0000 -0.1200 +vertex -0.0240 0.0340 -0.1200 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0240 0.0000 -0.0800 -vertex -0.0235 0.0110 -0.0800 -vertex -0.0005 0.0110 -0.0800 +vertex -0.0240 0.0000 -0.1200 +vertex -0.0235 0.0110 -0.1200 +vertex -0.0005 0.0110 -0.1200 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0235 0.0230 -0.0800 -vertex -0.0240 0.0340 -0.0800 -vertex 0.0000 0.0340 -0.0800 +vertex -0.0235 0.0230 -0.1200 +vertex -0.0240 0.0340 -0.1200 +vertex -0.0000 0.0340 -0.1200 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0240 0.0340 -0.0800 -vertex -0.0235 0.0230 -0.0800 -vertex -0.0235 0.0110 -0.0800 +vertex -0.0240 0.0340 -0.1200 +vertex -0.0235 0.0230 -0.1200 +vertex -0.0235 0.0110 -0.1200 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0240 0.0000 -0.0800 -vertex -0.0240 0.0110 -0.0750 -vertex -0.0240 0.0110 -0.0790 +vertex -0.0240 0.0000 -0.1200 +vertex -0.0240 0.0110 -0.1150 +vertex -0.0240 0.0110 -0.1190 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0240 0.0110 -0.0750 -vertex -0.0240 0.0000 -0.0800 -vertex -0.0240 0.0000 -0.0600 +vertex -0.0240 0.0110 -0.1150 +vertex -0.0240 0.0000 -0.1200 +vertex -0.0240 0.0000 -0.1000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0240 0.0000 -0.0800 -vertex -0.0240 0.0110 -0.0790 -vertex -0.0240 0.0230 -0.0790 +vertex -0.0240 0.0000 -0.1200 +vertex -0.0240 0.0110 -0.1190 +vertex -0.0240 0.0230 -0.1190 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0240 0.0340 -0.0800 -vertex -0.0240 0.0230 -0.0790 -vertex -0.0240 0.0230 -0.0750 +vertex -0.0240 0.0340 -0.1200 +vertex -0.0240 0.0230 -0.1190 +vertex -0.0240 0.0230 -0.1150 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0240 0.0230 -0.0790 -vertex -0.0240 0.0340 -0.0800 -vertex -0.0240 0.0000 -0.0800 +vertex -0.0240 0.0230 -0.1190 +vertex -0.0240 0.0340 -0.1200 +vertex -0.0240 0.0000 -0.1200 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0240 0.0340 -0.0800 -vertex -0.0240 0.0230 -0.0750 -vertex -0.0240 0.0340 -0.0600 +vertex -0.0240 0.0340 -0.1200 +vertex -0.0240 0.0230 -0.1150 +vertex -0.0240 0.0340 -0.1000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0240 0.0110 -0.0750 -vertex -0.0240 0.0125 -0.0670 -vertex -0.0240 0.0230 -0.0750 +vertex -0.0240 0.0110 -0.1150 +vertex -0.0240 0.0125 -0.1070 +vertex -0.0240 0.0230 -0.1150 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0240 0.0125 -0.0670 -vertex -0.0240 0.0000 -0.0600 -vertex -0.0240 0.0125 -0.0630 +vertex -0.0240 0.0125 -0.1070 +vertex -0.0240 0.0000 -0.1000 +vertex -0.0240 0.0125 -0.1030 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0240 0.0000 -0.0600 -vertex -0.0240 0.0125 -0.0670 -vertex -0.0240 0.0110 -0.0750 +vertex -0.0240 0.0000 -0.1000 +vertex -0.0240 0.0125 -0.1070 +vertex -0.0240 0.0110 -0.1150 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0240 0.0125 -0.0630 -vertex -0.0240 0.0000 -0.0600 -vertex -0.0240 0.0340 -0.0600 +vertex -0.0240 0.0125 -0.1030 +vertex -0.0240 0.0000 -0.1000 +vertex -0.0240 0.0340 -0.1000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0240 0.0215 -0.0670 -vertex -0.0240 0.0215 -0.0630 -vertex -0.0240 0.0340 -0.0600 +vertex -0.0240 0.0215 -0.1070 +vertex -0.0240 0.0215 -0.1030 +vertex -0.0240 0.0340 -0.1000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0240 0.0340 -0.0600 -vertex -0.0240 0.0215 -0.0630 -vertex -0.0240 0.0125 -0.0630 +vertex -0.0240 0.0340 -0.1000 +vertex -0.0240 0.0215 -0.1030 +vertex -0.0240 0.0125 -0.1030 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0240 0.0215 -0.0670 -vertex -0.0240 0.0340 -0.0600 -vertex -0.0240 0.0230 -0.0750 +vertex -0.0240 0.0215 -0.1070 +vertex -0.0240 0.0340 -0.1000 +vertex -0.0240 0.0230 -0.1150 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0240 0.0125 -0.0670 -vertex -0.0240 0.0215 -0.0670 -vertex -0.0240 0.0230 -0.0750 +vertex -0.0240 0.0125 -0.1070 +vertex -0.0240 0.0215 -0.1070 +vertex -0.0240 0.0230 -0.1150 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0240 0.0340 -0.0600 -vertex -0.0240 0.0000 -0.0600 -vertex 0.0000 0.0000 -0.0600 +vertex -0.0240 0.0340 -0.1000 +vertex -0.0240 0.0000 -0.1000 +vertex -0.0000 0.0000 -0.1000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0000 0.0000 -0.0600 -vertex 0.0000 0.0340 -0.0600 -vertex -0.0240 0.0340 -0.0600 +vertex -0.0000 0.0000 -0.1000 +vertex -0.0000 0.0340 -0.1000 +vertex -0.0240 0.0340 -0.1000 endloop endfacet facet normal 0 0 0 @@ -631,128 +687,128 @@ endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0000 0.0000 0.0000 -vertex 0.0000 -0.0256 -0.0256 -vertex 0.0610 -0.0256 -0.0256 +vertex 0.1190 0.0000 0.0000 +vertex 0.1190 -0.0256 -0.0256 +vertex 0.1800 -0.0256 -0.0256 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0610 -0.0256 -0.0256 -vertex 0.0610 0.0000 0.0000 -vertex 0.0000 0.0000 0.0000 +vertex 0.1800 -0.0256 -0.0256 +vertex 0.1800 0.0000 0.0000 +vertex 0.1190 0.0000 0.0000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0610 -0.0000 -0.0751 -vertex 0.0610 -0.0256 -0.0496 -vertex 0.0000 -0.0256 -0.0496 +vertex 0.1800 -0.0000 -0.0751 +vertex 0.1800 -0.0256 -0.0496 +vertex 0.1190 -0.0256 -0.0496 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0000 -0.0256 -0.0496 -vertex 0.0000 -0.0000 -0.0751 -vertex 0.0610 -0.0000 -0.0751 +vertex 0.1190 -0.0256 -0.0496 +vertex 0.1190 -0.0000 -0.0751 +vertex 0.1800 -0.0000 -0.0751 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0000 -0.0256 -0.0496 -vertex 0.0290 -0.0256 -0.0441 -vertex 0.0180 -0.0256 -0.0441 +vertex 0.1190 -0.0256 -0.0496 +vertex 0.1480 -0.0256 -0.0441 +vertex 0.1370 -0.0256 -0.0441 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0290 -0.0256 -0.0441 -vertex 0.0000 -0.0256 -0.0496 -vertex 0.0610 -0.0256 -0.0496 +vertex 0.1480 -0.0256 -0.0441 +vertex 0.1190 -0.0256 -0.0496 +vertex 0.1800 -0.0256 -0.0496 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0000 -0.0256 -0.0496 -vertex 0.0180 -0.0256 -0.0441 -vertex 0.0180 -0.0256 -0.0311 +vertex 0.1190 -0.0256 -0.0496 +vertex 0.1370 -0.0256 -0.0441 +vertex 0.1370 -0.0256 -0.0311 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0000 -0.0256 -0.0256 -vertex 0.0180 -0.0256 -0.0311 -vertex 0.0290 -0.0256 -0.0311 +vertex 0.1190 -0.0256 -0.0256 +vertex 0.1370 -0.0256 -0.0311 +vertex 0.1480 -0.0256 -0.0311 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0180 -0.0256 -0.0311 -vertex 0.0000 -0.0256 -0.0256 -vertex 0.0000 -0.0256 -0.0496 +vertex 0.1370 -0.0256 -0.0311 +vertex 0.1190 -0.0256 -0.0256 +vertex 0.1190 -0.0256 -0.0496 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0000 -0.0256 -0.0256 -vertex 0.0290 -0.0256 -0.0311 -vertex 0.0610 -0.0256 -0.0256 +vertex 0.1190 -0.0256 -0.0256 +vertex 0.1480 -0.0256 -0.0311 +vertex 0.1800 -0.0256 -0.0256 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0290 -0.0256 -0.0441 -vertex 0.0495 -0.0256 -0.0426 -vertex 0.0290 -0.0256 -0.0311 +vertex 0.1480 -0.0256 -0.0441 +vertex 0.1685 -0.0256 -0.0426 +vertex 0.1480 -0.0256 -0.0311 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0495 -0.0256 -0.0426 -vertex 0.0610 -0.0256 -0.0496 -vertex 0.0555 -0.0256 -0.0426 +vertex 0.1685 -0.0256 -0.0426 +vertex 0.1800 -0.0256 -0.0496 +vertex 0.1745 -0.0256 -0.0426 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0610 -0.0256 -0.0496 -vertex 0.0495 -0.0256 -0.0426 -vertex 0.0290 -0.0256 -0.0441 +vertex 0.1800 -0.0256 -0.0496 +vertex 0.1685 -0.0256 -0.0426 +vertex 0.1480 -0.0256 -0.0441 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0555 -0.0256 -0.0426 -vertex 0.0610 -0.0256 -0.0496 -vertex 0.0610 -0.0256 -0.0256 +vertex 0.1745 -0.0256 -0.0426 +vertex 0.1800 -0.0256 -0.0496 +vertex 0.1800 -0.0256 -0.0256 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0495 -0.0256 -0.0326 -vertex 0.0555 -0.0256 -0.0326 -vertex 0.0610 -0.0256 -0.0256 +vertex 0.1685 -0.0256 -0.0326 +vertex 0.1745 -0.0256 -0.0326 +vertex 0.1800 -0.0256 -0.0256 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0610 -0.0256 -0.0256 -vertex 0.0555 -0.0256 -0.0326 -vertex 0.0555 -0.0256 -0.0426 +vertex 0.1800 -0.0256 -0.0256 +vertex 0.1745 -0.0256 -0.0326 +vertex 0.1745 -0.0256 -0.0426 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0495 -0.0256 -0.0326 -vertex 0.0610 -0.0256 -0.0256 -vertex 0.0290 -0.0256 -0.0311 +vertex 0.1685 -0.0256 -0.0326 +vertex 0.1800 -0.0256 -0.0256 +vertex 0.1480 -0.0256 -0.0311 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0495 -0.0256 -0.0426 -vertex 0.0495 -0.0256 -0.0326 -vertex 0.0290 -0.0256 -0.0311 +vertex 0.1685 -0.0256 -0.0426 +vertex 0.1685 -0.0256 -0.0326 +vertex 0.1480 -0.0256 -0.0311 endloop endfacet facet normal 0 0 0 @@ -3585,58 +3641,72 @@ endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0624 0.0232 -0.0700 -vertex 0.0600 0.0000 -0.0700 -vertex 0.0600 0.0000 0.0000 +vertex 0.1824 0.0232 -0.0700 +vertex 0.1800 0.0000 -0.0700 +vertex 0.1800 0.0000 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1800 0.0000 0.0000 +vertex 0.1824 0.0232 0.0000 +vertex 0.1824 0.0232 -0.0700 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.1824 0.0232 -0.1000 +vertex 0.1800 0.0000 -0.1000 +vertex 0.1800 -0.0000 -0.0300 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0600 0.0000 0.0000 -vertex 0.0624 0.0232 0.0000 -vertex 0.0624 0.0232 -0.0700 +vertex 0.1800 -0.0000 -0.0300 +vertex 0.1824 0.0232 -0.0300 +vertex 0.1824 0.0232 -0.1000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0624 0.0232 -0.0600 -vertex 0.0600 0.0000 -0.0600 -vertex 0.0600 0.0000 0.0100 +vertex -0.1632 0.0178 -0.0634 +vertex -0.1619 0.0000 -0.0621 +vertex -0.1240 0.0000 -0.1000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0600 0.0000 0.0100 -vertex 0.0624 0.0232 0.0100 -vertex 0.0624 0.0232 -0.0600 +vertex -0.1240 0.0000 -0.1000 +vertex -0.1253 0.0178 -0.1013 +vertex -0.1632 0.0178 -0.0634 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.1465 0.0161 -0.0365 -vertex -0.1456 0.0000 -0.0350 -vertex -0.1040 0.0000 -0.0600 +vertex -0.1253 0.0178 0.0013 +vertex -0.1240 0.0000 -0.0000 +vertex -0.1619 0.0000 -0.0379 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.1040 0.0000 -0.0600 -vertex -0.1049 0.0161 -0.0614 -vertex -0.1465 0.0161 -0.0365 +vertex -0.1619 0.0000 -0.0379 +vertex -0.1632 0.0178 -0.0366 +vertex -0.1253 0.0178 0.0013 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.1049 0.0161 0.0014 -vertex -0.1040 0.0000 -0.0000 -vertex -0.1456 0.0000 -0.0250 +vertex 0.0000 0.0700 -0.0550 +vertex 0.0000 0.0700 -0.0500 +vertex -0.0240 0.0700 -0.0500 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.1456 0.0000 -0.0250 -vertex -0.1465 0.0161 -0.0235 -vertex -0.1049 0.0161 0.0014 +vertex -0.0240 0.0700 -0.0500 +vertex -0.0240 0.0700 -0.0550 +vertex 0.0000 0.0700 -0.0550 endloop endfacet facet normal 0 0 0 @@ -3655,44 +3725,44 @@ endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0100 0.0000 -0.0600 -vertex 0.0000 0.0000 -0.0600 -vertex 0.0000 0.0340 -0.0600 +vertex -0.0100 0.0000 -0.1000 +vertex -0.0000 0.0000 -0.1000 +vertex -0.0000 0.0340 -0.1000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0000 0.0340 -0.0600 -vertex -0.0100 0.0340 -0.0600 -vertex -0.0100 0.0000 -0.0600 +vertex -0.0000 0.0340 -0.1000 +vertex -0.0100 0.0340 -0.1000 +vertex -0.0100 0.0000 -0.1000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0000 -0.0100 -0.0600 -vertex 0.0000 0.0000 -0.0600 -vertex 0.0610 0.0000 -0.0600 +vertex 0.1190 -0.0100 -0.1000 +vertex 0.1190 0.0000 -0.1000 +vertex 0.1800 0.0000 -0.1000 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0610 0.0000 -0.0600 -vertex 0.0610 -0.0100 -0.0600 -vertex -0.0000 -0.0100 -0.0600 +vertex 0.1800 0.0000 -0.1000 +vertex 0.1800 -0.0100 -0.1000 +vertex 0.1190 -0.0100 -0.1000 endloop endfacet facet normal 0 0 0 outer loop -vertex -0.0100 -0.0256 -0.0496 -vertex 0.0000 -0.0256 -0.0496 -vertex 0.0000 -0.0256 -0.0256 +vertex 0.1090 -0.0256 -0.0496 +vertex 0.1190 -0.0256 -0.0496 +vertex 0.1190 -0.0256 -0.0256 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0000 -0.0256 -0.0256 -vertex -0.0100 -0.0256 -0.0256 -vertex -0.0100 -0.0256 -0.0496 +vertex 0.1190 -0.0256 -0.0256 +vertex 0.1090 -0.0256 -0.0256 +vertex 0.1090 -0.0256 -0.0496 endloop endfacet facet normal 0 0 0 @@ -3711,16 +3781,16 @@ endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0610 -0.0156 -0.0256 -vertex 0.0610 -0.0256 -0.0256 -vertex 0.0610 -0.0256 -0.0496 +vertex 0.1800 -0.0156 -0.0256 +vertex 0.1800 -0.0256 -0.0256 +vertex 0.1800 -0.0256 -0.0496 endloop endfacet facet normal 0 0 0 outer loop -vertex 0.0610 -0.0256 -0.0496 -vertex 0.0610 -0.0156 -0.0496 -vertex 0.0610 -0.0156 -0.0256 +vertex 0.1800 -0.0256 -0.0496 +vertex 0.1800 -0.0156 -0.0496 +vertex 0.1800 -0.0156 -0.0256 endloop endfacet facet normal 0 0 0 diff --git a/rocolib/output/BoatWithServoMountAndStack/graph-silhouette.dxf b/rocolib/output/BoatWithServoMountAndStack/graph-silhouette.dxf index 786b6ad6e8f1f863f27e9e1ea6a3ba8ae85da183..4476ad1dfde5d180ba1c3ea660268009631e3f36 100644 --- a/rocolib/output/BoatWithServoMountAndStack/graph-silhouette.dxf +++ b/rocolib/output/BoatWithServoMountAndStack/graph-silhouette.dxf @@ -938,40 +938,40 @@ MVIEW } 0 LINE - 6 -DOTTED 62 -1 +5 8 0 10 -190.0232526704263 +329.02325267042613 20 -96.27724400000001 +125.00000000000001 30 0.0 11 -251.0232526704263 +210.02325267042616 21 -96.27724400000001 +125.00000000000001 31 0.0 0 LINE + 6 +DOTTED 62 -5 +1 8 0 10 -250.0232526704263 +329.02325267042613 20 -96.27724400000001 +125.00000000000001 30 0.0 11 -251.0232526704263 +390.0232526704262 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -981,15 +981,15 @@ LINE 8 0 10 -250.0232526704263 +390.0232526704262 20 -96.27724400000001 +125.00000000000001 30 0.0 11 -250.0232526704263 +390.0232526704262 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -999,15 +999,15 @@ LINE 8 0 10 -190.0232526704263 +210.02325267042616 20 -96.27724400000001 +125.00000000000001 30 0.0 11 -190.0232526704263 +210.02325267042616 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1019,15 +1019,15 @@ DOTTED 8 0 10 -190.0232526704263 +329.02325267042613 20 -60.1386220008147 +88.86137800081471 30 0.0 11 -251.0232526704263 +390.0232526704262 21 -60.1386220008147 +88.86137800081471 31 0.0 0 @@ -1037,15 +1037,15 @@ LINE 8 0 10 -251.0232526704263 +390.0232526704262 20 -96.27724400000001 +125.00000000000001 30 0.0 11 -251.0232526704263 +390.0232526704262 21 -60.1386220008147 +88.86137800081471 31 0.0 0 @@ -1055,15 +1055,15 @@ LINE 8 0 10 -190.0232526704263 +329.02325267042613 20 -60.1386220008147 +88.86137800081471 30 0.0 11 -190.0232526704263 +329.02325267042613 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1075,15 +1075,15 @@ DOTTED 8 0 10 -251.0232526704263 +390.0232526704262 20 -36.1386220008147 +64.86137800081471 30 0.0 11 -190.0232526704263 +329.02325267042613 21 -36.1386220008147 +64.86137800081471 31 0.0 0 @@ -1095,15 +1095,15 @@ DOTTED 8 0 10 -251.0232526704263 +390.0232526704262 20 -36.1386220008147 +64.86137800081471 30 0.0 11 -251.0232526704263 +390.0232526704262 21 -60.1386220008147 +88.86137800081471 31 0.0 0 @@ -1113,15 +1113,15 @@ LINE 8 0 10 -190.0232526704263 +329.02325267042613 20 -1.6293881799356315e-09 +28.722756001629396 30 0.0 11 -190.0232526704263 +329.02325267042613 21 -36.138622000814706 +64.86137800081472 31 0.0 0 @@ -1131,15 +1131,15 @@ LINE 8 0 10 -251.0232526704263 +390.0232526704262 20 -1.6293881799356315e-09 +28.722756001629396 30 0.0 11 -190.0232526704263 +329.02325267042613 21 -1.6293881799356315e-09 +28.722756001629396 31 0.0 0 @@ -1149,15 +1149,15 @@ LINE 8 0 10 -251.0232526704263 +390.0232526704262 20 -36.138622000814706 +64.86137800081472 30 0.0 11 -251.0232526704263 +390.0232526704262 21 -1.6293881799356315e-09 +28.722756001629396 31 0.0 0 @@ -1167,15 +1167,15 @@ LINE 8 0 10 -261.0232526704263 +400.0232526704262 20 -36.1386220008147 +64.86137800081471 30 0.0 11 -251.0232526704263 +390.0232526704262 21 -36.1386220008147 +64.86137800081471 31 0.0 0 @@ -1185,15 +1185,15 @@ LINE 8 0 10 -261.0232526704263 +400.0232526704262 20 -60.1386220008147 +88.86137800081471 30 0.0 11 -261.0232526704263 +400.0232526704262 21 -36.1386220008147 +64.86137800081471 31 0.0 0 @@ -1203,15 +1203,15 @@ LINE 8 0 10 -251.0232526704263 +390.0232526704262 20 -60.1386220008147 +88.86137800081471 30 0.0 11 -261.0232526704263 +400.0232526704262 21 -60.1386220008147 +88.86137800081471 31 0.0 0 @@ -1221,15 +1221,15 @@ LINE 8 0 10 -180.02325267042627 +319.02325267042613 20 -60.1386220008147 +88.86137800081471 30 0.0 11 -190.0232526704263 +329.02325267042613 21 -60.1386220008147 +88.86137800081471 31 0.0 0 @@ -1239,15 +1239,15 @@ LINE 8 0 10 -180.02325267042627 +319.02325267042613 20 -36.1386220008147 +64.86137800081471 30 0.0 11 -180.02325267042627 +319.02325267042613 21 -60.1386220008147 +88.86137800081471 31 0.0 0 @@ -1257,15 +1257,15 @@ LINE 8 0 10 -190.0232526704263 +329.02325267042613 20 -36.1386220008147 +64.86137800081471 30 0.0 11 -180.02325267042627 +319.02325267042613 21 -36.1386220008147 +64.86137800081471 31 0.0 0 @@ -1275,15 +1275,15 @@ LINE 8 0 10 -166.02325267042627 +186.0232526704262 20 -96.27724400000001 +125.00000000000001 30 0.0 11 -86.02325267042629 +86.02325267042616 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1295,15 +1295,15 @@ DOTTED 8 0 10 -166.02325267042627 +186.0232526704262 20 -96.27724400000001 +125.00000000000001 30 0.0 11 -190.0232526704263 +210.02325267042616 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1313,15 +1313,15 @@ LINE 8 0 10 -250.0232526704263 +390.0232526704262 20 -96.27724400000001 +125.00000000000001 30 0.0 11 -250.0232526704263 +390.0232526704262 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1331,15 +1331,15 @@ LINE 8 0 10 -86.02325267042629 +86.02325267042616 20 -96.27724400000001 +125.00000000000001 30 0.0 11 -86.02325267042629 +86.02325267042616 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1349,15 +1349,35 @@ LINE 8 0 10 -190.0232526704263 +210.02325267042616 + 20 +125.00000000000001 + 30 +0.0 + 11 +210.02325267042616 + 21 +91.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +186.0232526704262 20 -62.277244 +91.0 30 0.0 11 -166.02325267042627 +186.0232526704262 21 -62.277244 +125.00000000000001 31 0.0 0 @@ -1367,15 +1387,15 @@ LINE 8 0 10 -190.0232526704263 +186.0232526704262 20 -96.27724400000001 +55.00000000000001 30 0.0 11 -190.0232526704263 +186.0232526704262 21 -62.277244 +91.0 31 0.0 0 @@ -1383,19 +1403,127 @@ LINE 6 DOTTED 62 -1 +3 + 8 +0 + 10 +186.0232526704262 + 20 +55.00000000000001 + 30 +0.0 + 11 +210.02325267042616 + 21 +55.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +210.02325267042616 + 20 +91.0 + 30 +0.0 + 11 +210.02325267042616 + 21 +55.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +210.02325267042616 + 20 +55.00000000000001 + 30 +0.0 + 11 +210.02325267042616 + 21 +5.000000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +186.0232526704262 + 20 +5.000000000000001 + 30 +0.0 + 11 +186.0232526704262 + 21 +55.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +186.0232526704262 + 20 +0.0 + 30 +0.0 + 11 +186.0232526704262 + 21 +5.000000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +210.02325267042616 + 20 +0.0 + 30 +0.0 + 11 +186.0232526704262 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 8 0 10 -166.02325267042627 +210.02325267042616 20 -62.277244 +5.000000000000001 30 0.0 11 -166.02325267042627 +210.02325267042616 21 -96.27724400000001 +0.0 31 0.0 0 @@ -1405,15 +1533,15 @@ LINE 8 0 10 -166.02325267042627 +186.0232526704262 20 -62.277244 +91.0 30 0.0 11 -146.02325267042627 +166.0232526704262 21 -62.277244 +91.0 31 0.0 0 @@ -1423,15 +1551,15 @@ LINE 8 0 10 -146.02325267042627 +166.0232526704262 20 -96.27724400000001 +125.00000000000001 30 0.0 11 -166.02325267042627 +186.0232526704262 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1443,15 +1571,15 @@ DOTTED 8 0 10 -146.02325267042627 +166.0232526704262 20 -62.277244 +91.0 30 0.0 11 -146.02325267042627 +166.0232526704262 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1461,15 +1589,15 @@ LINE 8 0 10 -146.02325267042627 +166.0232526704262 20 -62.277244 +91.0 30 0.0 11 -122.02325267042629 +142.02325267042616 21 -62.277244 +91.0 31 0.0 0 @@ -1479,15 +1607,15 @@ LINE 8 0 10 -122.02325267042629 +142.02325267042616 20 -96.27724400000001 +125.00000000000001 30 0.0 11 -146.02325267042627 +166.0232526704262 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1499,15 +1627,15 @@ DOTTED 8 0 10 -122.02325267042629 +142.02325267042616 20 -62.277244 +91.0 30 0.0 11 -122.02325267042629 +142.02325267042616 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1517,15 +1645,15 @@ LINE 8 0 10 -122.02325267042629 +142.02325267042616 20 -62.277244 +91.0 30 0.0 11 -102.02325267042629 +122.02325267042617 21 -62.277244 +91.0 31 0.0 0 @@ -1535,15 +1663,15 @@ LINE 8 0 10 -102.02325267042629 +122.02325267042617 20 -96.27724400000001 +125.00000000000001 30 0.0 11 -122.02325267042629 +142.02325267042616 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1555,15 +1683,15 @@ DOTTED 8 0 10 -102.02325267042629 +122.02325267042617 20 -96.27724400000001 +125.00000000000001 30 0.0 11 -102.02325267042629 +122.02325267042617 21 -62.277244 +91.0 31 0.0 0 @@ -1573,15 +1701,15 @@ LINE 8 0 10 -92.02325267042629 +112.02325267042617 20 -96.27724400000001 +125.00000000000001 30 0.0 11 -102.02325267042629 +122.02325267042617 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1591,15 +1719,15 @@ LINE 8 0 10 -92.02325267042629 +112.02325267042617 20 -62.277244 +91.0 30 0.0 11 -92.02325267042629 +112.02325267042617 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1609,15 +1737,15 @@ LINE 8 0 10 -102.02325267042629 +122.02325267042617 20 -62.277244 +91.0 30 0.0 11 -92.02325267042629 +112.02325267042617 21 -62.277244 +91.0 31 0.0 0 @@ -1629,15 +1757,15 @@ DOTTED 8 0 10 -250.0232526704263 +390.0232526704262 20 -166.27724400000002 +195.00000000000003 30 0.0 11 -86.02325267042629 +86.02325267042616 21 -166.27724400000002 +195.00000000000003 31 0.0 0 @@ -1649,15 +1777,15 @@ DOTTED 8 0 10 -250.0232526704263 +390.0232526704262 20 -166.27724400000002 +195.00000000000003 30 0.0 11 -250.0232526704263 +390.0232526704262 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1669,15 +1797,15 @@ DOTTED 8 0 10 -250.0232526704263 +390.0232526704262 20 -96.27724400000001 +125.00000000000001 30 0.0 11 -320.0232526704263 +460.0232526704262 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1689,15 +1817,15 @@ DOTTED 8 0 10 -250.0232526704263 +390.0232526704262 20 -166.27724400000002 +195.00000000000003 30 0.0 11 -320.0232526704263 +460.0232526704262 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1707,15 +1835,15 @@ LINE 8 0 10 -250.02325267042633 +390.0232526704262 20 -72.94391066666668 +101.66666666666669 30 0.0 11 -250.02325267042633 +390.0232526704262 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1725,15 +1853,15 @@ LINE 8 0 10 -320.0232526704263 +460.0232526704262 20 -72.94391066666668 +101.66666666666669 30 0.0 11 -250.02325267042633 +390.0232526704262 21 -72.94391066666668 +101.66666666666669 31 0.0 0 @@ -1743,15 +1871,15 @@ LINE 8 0 10 -320.0232526704263 +460.0232526704262 20 -96.27724400000001 +125.00000000000001 30 0.0 11 -320.0232526704263 +460.0232526704262 21 -72.94391066666668 +101.66666666666669 31 0.0 0 @@ -1763,15 +1891,15 @@ DOTTED 8 0 10 -250.02325267042633 +390.02325267042625 20 -166.27724400000002 +195.00000000000003 30 0.0 11 -320.02325267042636 +460.0232526704262 21 -166.27724400000002 +195.00000000000003 31 0.0 0 @@ -1781,15 +1909,15 @@ LINE 8 0 10 -320.02325267042636 +460.0232526704262 20 -166.27724400000002 +195.00000000000003 30 0.0 11 -320.0232526704263 +460.0232526704262 21 -96.27724400000001 +125.00000000000001 31 0.0 0 @@ -1799,15 +1927,15 @@ LINE 8 0 10 -320.02325267042636 +460.02325267042625 20 -236.277244 +265.00000000000006 30 0.0 11 -320.0232526704263 +460.0232526704262 21 -166.27724400000002 +195.0 31 0.0 0 @@ -1817,15 +1945,15 @@ LINE 8 0 10 -320.0232526704263 +460.0232526704262 20 -196.27724400000002 +245.0 30 0.0 11 -320.02325267042636 +460.02325267042625 21 -236.277244 +265.00000000000006 31 0.0 0 @@ -1837,15 +1965,15 @@ DOTTED 8 0 10 -250.02325267042633 +390.0232526704263 20 -196.27724400000002 +245.00000000000003 30 0.0 11 -250.02325267042633 +390.02325267042625 21 -166.27724400000002 +195.00000000000006 31 0.0 0 @@ -1857,15 +1985,15 @@ DOTTED 8 0 10 -250.0232526704263 +390.0232526704263 20 -226.27724400000002 +295.0 30 0.0 11 -250.0232526704263 +390.0232526704263 21 -196.27724400000002 +245.00000000000003 31 0.0 0 @@ -1877,15 +2005,15 @@ DOTTED 8 0 10 -320.0232526704263 +460.02325267042625 20 -226.27724400000002 +295.0 30 0.0 11 -250.02325267042633 +390.0232526704263 21 -226.27724400000002 +295.0 31 0.0 0 @@ -1895,15 +2023,15 @@ LINE 8 0 10 -320.0232526704263 +460.02325267042625 20 -156.27724400000005 +225.00000000000003 30 0.0 11 -320.0232526704263 +460.02325267042625 21 -196.27724400000002 +245.00000000000003 31 0.0 0 @@ -1913,15 +2041,15 @@ LINE 8 0 10 -320.0232526704263 +460.02325267042625 20 -226.27724400000002 +295.0 30 0.0 11 -320.0232526704263 +460.02325267042625 21 -156.27724400000005 +225.00000000000003 31 0.0 0 @@ -1931,15 +2059,15 @@ LINE 8 0 10 -320.0232526704263 +460.02325267042625 20 -296.277244 +365.0 30 0.0 11 -320.0232526704263 +460.02325267042625 21 -226.27724400000002 +295.0 31 0.0 0 @@ -1951,15 +2079,15 @@ DOTTED 8 0 10 -320.0232526704263 +460.02325267042625 20 -296.277244 +365.0 30 0.0 11 -250.02325267042633 +390.0232526704263 21 -226.27724400000002 +295.0 31 0.0 0 @@ -1971,15 +2099,15 @@ DOTTED 8 0 10 -250.02325267042633 +390.0232526704263 20 -296.277244 +365.00000000000006 30 0.0 11 -250.0232526704263 +390.0232526704263 21 -226.27724400000002 +295.0 31 0.0 0 @@ -1991,15 +2119,15 @@ DOTTED 8 0 10 -320.0232526704263 +460.02325267042625 20 -296.277244 +365.0 30 0.0 11 -250.02325267042633 +390.0232526704263 21 -296.277244 +365.00000000000006 31 0.0 0 @@ -2011,15 +2139,15 @@ DOTTED 8 0 10 -250.0232526704263 +390.0232526704263 20 -226.27724399999997 +295.0 30 0.0 11 -86.02325267042632 +86.02325267042634 21 -226.27724400000005 +295.0000000000001 31 0.0 0 @@ -2031,15 +2159,15 @@ DOTTED 8 0 10 -190.02325267042633 +210.02325267042633 20 -296.277244 +365.0000000000001 30 0.0 11 -166.0232526704263 +186.02325267042636 21 -296.277244 +365.00000000000017 31 0.0 0 @@ -2051,13 +2179,13 @@ LINE 10 86.02325267042634 20 -296.277244 +365.00000000000017 30 0.0 11 -166.0232526704263 +186.02325267042636 21 -296.277244 +365.00000000000017 31 0.0 0 @@ -2069,13 +2197,13 @@ LINE 10 86.02325267042634 20 -296.277244 +365.00000000000017 30 0.0 11 86.02325267042634 21 -296.277244 +365.00000000000017 31 0.0 0 @@ -2085,15 +2213,15 @@ LINE 8 0 10 -250.02325267042633 +390.0232526704263 20 -296.277244 +365.00000000000006 30 0.0 11 -250.02325267042633 +390.0232526704263 21 -296.277244 +365.00000000000006 31 0.0 0 @@ -2103,15 +2231,15 @@ LINE 8 0 10 -251.02325267042633 +210.02325267042633 20 -296.277244 +365.0000000000001 30 0.0 11 -250.02325267042633 +329.02325267042636 21 -296.277244 +365.00000000000006 31 0.0 0 @@ -2121,15 +2249,15 @@ LINE 8 0 10 -190.02325267042633 +210.02325267042633 20 -296.277244 +365.0000000000001 30 0.0 11 -190.02325267042633 +210.02325267042633 21 -296.277244 +365.0000000000001 31 0.0 0 @@ -2139,15 +2267,15 @@ LINE 8 0 10 -250.02325267042633 +390.0232526704263 20 -296.277244 +365.00000000000006 30 0.0 11 -250.02325267042633 +390.0232526704263 21 -296.277244 +365.00000000000006 31 0.0 0 @@ -2157,15 +2285,15 @@ LINE 8 0 10 -251.02325267042633 +390.0232526704263 20 -306.277244 +375.00000000000006 30 0.0 11 -251.02325267042633 +390.0232526704263 21 -296.277244 +365.00000000000006 31 0.0 0 @@ -2175,15 +2303,15 @@ LINE 8 0 10 -190.02325267042633 +329.02325267042636 20 -306.277244 +375.00000000000006 30 0.0 11 -251.02325267042633 +390.0232526704263 21 -306.277244 +375.00000000000006 31 0.0 0 @@ -2193,15 +2321,15 @@ LINE 8 0 10 -190.02325267042633 +329.02325267042636 20 -296.277244 +365.00000000000006 30 0.0 11 -190.02325267042633 +329.02325267042636 21 -306.277244 +375.00000000000006 31 0.0 0 @@ -2211,15 +2339,35 @@ LINE 8 0 10 -190.02325267042636 +210.02325267042636 + 20 +399.0000000000001 + 30 +0.0 + 11 +210.02325267042633 + 21 +365.0000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +186.02325267042633 20 -330.27724400000005 +365.0000000000001 30 0.0 11 -190.02325267042633 +186.02325267042636 21 -296.277244 +399.0000000000001 31 0.0 0 @@ -2229,15 +2377,15 @@ LINE 8 0 10 -166.02325267042633 +210.02325267042636 20 -330.27724400000005 +435.0000000000001 30 0.0 11 -190.02325267042636 +210.02325267042636 21 -330.27724400000005 +399.0000000000001 31 0.0 0 @@ -2245,19 +2393,19 @@ LINE 6 DOTTED 62 -1 +3 8 0 10 -166.0232526704263 +210.02325267042636 20 -296.277244 +435.0000000000001 30 0.0 11 -166.02325267042633 +186.0232526704264 21 -330.27724400000005 +435.0000000000001 31 0.0 0 @@ -2267,15 +2415,69 @@ LINE 8 0 10 -166.0232526704263 +186.02325267042636 + 20 +399.0000000000001 + 30 +0.0 + 11 +186.0232526704264 + 21 +435.0000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +186.0232526704264 + 20 +435.0000000000001 + 30 +0.0 + 11 +186.0232526704264 + 21 +485.0000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +210.0232526704264 + 20 +485.0000000000001 + 30 +0.0 + 11 +210.02325267042636 + 21 +435.0000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +186.0232526704264 20 -296.277244 +485.0000000000001 30 0.0 11 -146.0232526704263 +210.0232526704264 21 -296.277244 +485.0000000000001 31 0.0 0 @@ -2285,15 +2487,33 @@ LINE 8 0 10 -146.02325267042636 +186.02325267042633 20 -330.27724400000005 +365.0000000000001 30 0.0 11 +166.0232526704263 + 21 +365.0000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 166.02325267042633 + 20 +399.0000000000001 + 30 +0.0 + 11 +186.02325267042636 21 -330.27724400000005 +399.0000000000001 31 0.0 0 @@ -2305,15 +2525,15 @@ DOTTED 8 0 10 -146.0232526704263 +166.0232526704263 20 -296.277244 +365.0000000000001 30 0.0 11 -146.02325267042636 +166.02325267042633 21 -330.27724400000005 +399.0000000000001 31 0.0 0 @@ -2323,15 +2543,15 @@ LINE 8 0 10 -146.0232526704263 +166.0232526704263 20 -296.277244 +365.0000000000001 30 0.0 11 -122.02325267042633 +142.02325267042633 21 -296.277244 +365.0000000000001 31 0.0 0 @@ -2341,15 +2561,15 @@ LINE 8 0 10 -122.02325267042634 +142.02325267042636 20 -330.27724400000005 +399.0000000000001 30 0.0 11 -146.02325267042636 +166.02325267042633 21 -330.27724400000005 +399.0000000000001 31 0.0 0 @@ -2361,15 +2581,15 @@ DOTTED 8 0 10 -122.02325267042633 +142.02325267042633 20 -296.277244 +365.0000000000001 30 0.0 11 -122.02325267042634 +142.02325267042636 21 -330.27724400000005 +399.0000000000001 31 0.0 0 @@ -2379,15 +2599,15 @@ LINE 8 0 10 -122.02325267042634 +142.02325267042633 20 -296.277244 +365.0000000000001 30 0.0 11 -102.02325267042634 +122.02325267042634 21 -296.277244 +365.0000000000001 31 0.0 0 @@ -2397,15 +2617,15 @@ LINE 8 0 10 -102.02325267042634 +122.02325267042636 20 -330.27724400000005 +399.0000000000001 30 0.0 11 -122.02325267042634 +142.02325267042636 21 -330.27724400000005 +399.0000000000001 31 0.0 0 @@ -2417,15 +2637,15 @@ DOTTED 8 0 10 -102.02325267042634 +122.02325267042636 20 -330.27724400000005 +399.0000000000001 30 0.0 11 -102.02325267042634 +122.02325267042634 21 -296.277244 +365.0000000000001 31 0.0 0 @@ -2435,15 +2655,15 @@ LINE 8 0 10 -92.02325267042633 +112.02325267042634 20 -330.27724400000005 +399.0000000000001 30 0.0 11 -102.02325267042634 +122.02325267042634 21 -330.27724400000005 +399.0000000000001 31 0.0 0 @@ -2453,15 +2673,15 @@ LINE 8 0 10 -92.02325267042632 +112.02325267042633 20 -296.277244 +365.0000000000001 30 0.0 11 -92.02325267042633 +112.02325267042634 21 -330.27724400000005 +399.0000000000001 31 0.0 0 @@ -2471,15 +2691,15 @@ LINE 8 0 10 -102.02325267042633 +122.02325267042633 20 -296.277244 +365.0000000000001 30 0.0 11 -92.02325267042632 +112.02325267042633 21 -296.277244 +365.0000000000001 31 0.0 0 @@ -2491,15 +2711,15 @@ DOTTED 8 0 10 -86.02325267042632 +86.0232526704263 20 -226.27724400000008 +295.00000000000017 30 0.0 11 86.02325267042634 21 -296.27724400000005 +365.00000000000017 31 0.0 0 @@ -2513,13 +2733,13 @@ DOTTED 10 86.02325267042634 20 -296.277244 +365.00000000000017 30 0.0 11 -37.52421865697312 +32.42924173922606 21 -296.27724400000005 +365.0000000000002 31 0.0 0 @@ -2533,13 +2753,13 @@ DOTTED 10 86.02325267042632 20 -226.27724400000008 +295.00000000000017 30 0.0 11 -37.52421865697312 +32.42924173922606 21 -296.27724400000005 +365.0000000000002 31 0.0 0 @@ -2551,13 +2771,13 @@ LINE 10 86.02325267042634 20 -312.44358867115113 +382.8646703104003 30 0.0 11 86.02325267042634 21 -296.277244 +365.00000000000017 31 0.0 0 @@ -2567,15 +2787,15 @@ LINE 8 0 10 -37.52421865697312 +32.42924173922606 20 -312.44358867115113 +382.8646703104003 30 0.0 11 86.02325267042634 21 -312.44358867115113 +382.8646703104003 31 0.0 0 @@ -2585,15 +2805,15 @@ LINE 8 0 10 -37.52421865697312 +32.42924173922606 20 -296.27724400000005 +365.0000000000002 30 0.0 11 -37.52421865697312 +32.42924173922606 21 -312.44358867115113 +382.8646703104003 31 0.0 0 @@ -2605,15 +2825,15 @@ DOTTED 8 0 10 -86.02325267042633 +86.02325267042632 20 -226.27724400000005 +295.00000000000017 30 0.0 11 -20.485430034662475 +18.447362619882885 21 -250.8697998688633 +313.2619572849372 31 0.0 0 @@ -2623,15 +2843,15 @@ LINE 8 0 10 -20.485430034662475 +18.447362619882885 20 -250.8697998688633 +313.2619572849372 30 0.0 11 -37.52421865697312 +32.42924173922606 21 -296.27724400000005 +365.0000000000002 31 0.0 0 @@ -2641,15 +2861,15 @@ LINE 8 0 10 -3.4466414123517666 +4.465483500539649 20 -205.46235573772654 +261.5239145698741 30 0.0 11 -20.485430034662446 +18.447362619882853 21 -250.8697998688633 +313.2619572849372 31 0.0 0 @@ -2661,13 +2881,13 @@ LINE 10 0.0 20 -196.27724400000008 +245.00000000000028 30 0.0 11 -3.4466414123517666 +4.465483500539649 21 -205.46235573772654 +261.5239145698741 31 0.0 0 @@ -2681,13 +2901,13 @@ DOTTED 10 0.0 20 -196.27724400000008 +245.00000000000028 30 0.0 11 86.0232526704263 21 -226.27724400000005 +295.0000000000001 31 0.0 0 @@ -2699,15 +2919,15 @@ DOTTED 8 0 10 -86.02325267042629 +86.02325267042627 20 -196.27724400000005 +245.0000000000002 30 0.0 11 -86.0232526704263 +86.02325267042632 21 -226.27724400000008 +295.0000000000001 31 0.0 0 @@ -2719,15 +2939,15 @@ DOTTED 8 0 10 -86.02325267042627 +86.02325267042623 20 -166.27724400000005 +195.00000000000017 30 0.0 11 -86.02325267042629 +86.02325267042627 21 -196.27724400000002 +245.0000000000002 31 0.0 0 @@ -2739,15 +2959,15 @@ DOTTED 8 0 10 -2.8421709430404014e-14 +0.0 20 -196.27724400000008 +245.00000000000026 30 0.0 11 -86.02325267042629 +86.02325267042623 21 -166.27724400000005 +195.00000000000017 31 0.0 0 @@ -2759,15 +2979,15 @@ DOTTED 8 0 10 -20.485430034662386 +18.447362619882743 20 -141.68468813113688 +176.73804271506336 30 0.0 11 -86.02325267042626 +86.02325267042623 21 -166.27724400000008 +195.00000000000017 31 0.0 0 @@ -2777,15 +2997,15 @@ LINE 8 0 10 -3.4466414123517386 +4.465483500539619 20 -187.09213226227365 +228.47608543012643 30 0.0 11 0.0 21 -196.27724400000008 +245.00000000000026 31 0.0 0 @@ -2795,15 +3015,15 @@ LINE 8 0 10 -20.485430034662386 +18.447362619882743 20 -141.68468813113688 +176.73804271506336 30 0.0 11 -3.4466414123517386 +4.465483500539619 21 -187.09213226227365 +228.47608543012643 31 0.0 0 @@ -2813,15 +3033,15 @@ LINE 8 0 10 -37.52421865697301 +32.42924173922586 20 -96.27724400000005 +125.00000000000027 30 0.0 11 -20.485430034662386 +18.447362619882743 21 -141.68468813113688 +176.73804271506336 31 0.0 0 @@ -2833,15 +3053,15 @@ DOTTED 8 0 10 -37.52421865697301 +32.42924173922586 20 -96.27724400000005 +125.00000000000027 30 0.0 11 -86.02325267042626 +86.02325267042623 21 -166.27724400000008 +195.00000000000017 31 0.0 0 @@ -2853,15 +3073,15 @@ DOTTED 8 0 10 -86.02325267042627 +86.02325267042613 20 -96.27724400000004 +125.00000000000021 30 0.0 11 -86.0232526704263 +86.0232526704262 21 -166.27724400000008 +195.00000000000017 31 0.0 0 @@ -2873,15 +3093,15 @@ DOTTED 8 0 10 -37.52421865697304 +32.42924173922586 20 -96.27724400000005 +125.00000000000027 30 0.0 11 -86.02325267042627 +86.02325267042613 21 -96.27724400000004 +125.00000000000021 31 0.0 0 @@ -2891,15 +3111,15 @@ LINE 8 0 10 -37.52421865697304 +32.42924173922584 20 -80.110899328849 +107.13532968960016 30 0.0 11 -37.52421865697304 +32.42924173922586 21 -96.27724400000005 +125.00000000000027 31 0.0 0 @@ -2909,15 +3129,15 @@ LINE 8 0 10 -86.02325267042627 +86.02325267042612 20 -80.11089932884899 +107.13532968960011 30 0.0 11 -37.52421865697304 +32.42924173922584 21 -80.110899328849 +107.13532968960016 31 0.0 0 @@ -2927,15 +3147,177 @@ LINE 8 0 10 -86.02325267042627 +86.02325267042613 20 -96.27724400000004 +125.00000000000021 30 0.0 11 -86.02325267042627 +86.02325267042612 + 21 +107.13532968960011 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +460.02325267042625 + 20 +388.3333333333333 + 30 +0.0 + 11 +460.02325267042625 + 21 +365.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +390.0232526704263 + 20 +388.33333333333337 + 30 +0.0 + 11 +460.02325267042625 + 21 +388.3333333333333 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +390.0232526704263 + 20 +365.00000000000006 + 30 +0.0 + 11 +390.0232526704263 + 21 +388.33333333333337 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +347.02325267042613 + 20 +70.3613780008147 + 30 +0.0 + 11 +358.0232526704262 + 21 +70.3613780008147 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +358.0232526704262 + 20 +70.3613780008147 + 30 +0.0 + 11 +358.0232526704262 + 21 +83.36137800081471 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +358.0232526704262 + 20 +83.36137800081471 + 30 +0.0 + 11 +347.02325267042613 + 21 +83.36137800081471 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +347.02325267042613 + 20 +83.36137800081471 + 30 +0.0 + 11 +347.02325267042613 + 21 +70.3613780008147 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +378.52325267042613 + 20 +71.86137800081471 + 30 +0.0 + 11 +384.5232526704262 + 21 +71.86137800081471 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +384.5232526704262 + 20 +71.86137800081471 + 30 +0.0 + 11 +384.5232526704262 21 -80.11089932884899 +81.86137800081471 31 0.0 0 @@ -2945,15 +3327,15 @@ LINE 8 0 10 -320.0232526704263 +384.5232526704262 20 -319.61057733333325 +81.86137800081471 30 0.0 11 -320.0232526704263 +378.52325267042613 21 -296.277244 +81.86137800081471 31 0.0 0 @@ -2963,15 +3345,15 @@ LINE 8 0 10 -250.02325267042633 +378.52325267042613 20 -319.61057733333325 +81.86137800081471 30 0.0 11 -320.0232526704263 +378.52325267042613 21 -319.61057733333325 +71.86137800081471 31 0.0 0 @@ -2981,15 +3363,15 @@ LINE 8 0 10 -250.02325267042633 +351.45507085224443 20 -296.277244 +36.47275600162939 30 0.0 11 -250.02325267042633 +339.8641617613353 21 -319.61057733333325 +36.47275600162939 31 0.0 0 @@ -2999,15 +3381,15 @@ LINE 8 0 10 -208.0232526704263 +339.8641617613353 20 -41.63862200081469 +36.47275600162939 30 0.0 11 -219.0232526704263 +339.8641617613353 21 -41.63862200081469 +35.9727560016294 31 0.0 0 @@ -3017,15 +3399,15 @@ LINE 8 0 10 -219.0232526704263 +339.8641617613353 20 -41.63862200081469 +35.9727560016294 30 0.0 11 -219.0232526704263 +351.45507085224443 21 -54.63862200081469 +35.9727560016294 31 0.0 0 @@ -3035,15 +3417,15 @@ LINE 8 0 10 -219.0232526704263 +351.45507085224443 20 -54.63862200081469 +35.9727560016294 30 0.0 11 -208.0232526704263 +351.45507085224443 21 -54.63862200081469 +36.47275600162939 31 0.0 0 @@ -3053,15 +3435,15 @@ LINE 8 0 10 -208.0232526704263 +379.18234357951707 20 -54.63862200081469 +36.47275600162939 30 0.0 11 -208.0232526704263 +367.591434488608 21 -41.63862200081469 +36.47275600162939 31 0.0 0 @@ -3071,15 +3453,15 @@ LINE 8 0 10 -239.5232526704263 +367.591434488608 20 -43.1386220008147 +36.47275600162939 30 0.0 11 -245.5232526704263 +367.591434488608 21 -43.1386220008147 +35.9727560016294 31 0.0 0 @@ -3089,15 +3471,15 @@ LINE 8 0 10 -245.5232526704263 +367.591434488608 20 -43.1386220008147 +35.9727560016294 30 0.0 11 -245.5232526704263 +379.18234357951707 21 -53.1386220008147 +35.9727560016294 31 0.0 0 @@ -3107,15 +3489,15 @@ LINE 8 0 10 -245.5232526704263 +379.18234357951707 20 -53.1386220008147 +35.9727560016294 30 0.0 11 -239.5232526704263 +379.18234357951707 21 -53.1386220008147 +36.47275600162939 31 0.0 0 @@ -3125,15 +3507,15 @@ LINE 8 0 10 -239.5232526704263 +397.5232526704262 20 -53.1386220008147 +80.86137800081471 30 0.0 11 -239.5232526704263 +392.52325267042613 21 -43.1386220008147 +80.86137800081471 31 0.0 0 @@ -3143,15 +3525,15 @@ LINE 8 0 10 -212.4550708522445 +392.52325267042613 20 -7.750000001629389 +80.86137800081471 30 0.0 11 -200.8641617613354 +392.52325267042613 21 -7.750000001629389 +72.86137800081471 31 0.0 0 @@ -3161,15 +3543,15 @@ LINE 8 0 10 -200.8641617613354 +392.52325267042613 20 -7.750000001629389 +72.86137800081471 30 0.0 11 -200.8641617613354 +397.5232526704262 21 -7.250000001629389 +72.86137800081471 31 0.0 0 @@ -3179,15 +3561,15 @@ LINE 8 0 10 -200.8641617613354 +321.5232526704262 20 -7.250000001629389 +72.86137800081471 30 0.0 11 -212.4550708522445 +326.5232526704262 21 -7.250000001629389 +72.86137800081471 31 0.0 0 @@ -3197,15 +3579,15 @@ LINE 8 0 10 -212.4550708522445 +326.5232526704262 20 -7.250000001629389 +72.86137800081471 30 0.0 11 -212.4550708522445 +326.5232526704262 21 -7.750000001629389 +80.86137800081471 31 0.0 0 @@ -3215,15 +3597,15 @@ LINE 8 0 10 -240.1823435795172 +326.5232526704262 20 -7.750000001629389 +80.86137800081471 30 0.0 11 -228.59143448860814 +321.5232526704262 21 -7.750000001629389 +80.86137800081471 31 0.0 0 @@ -3233,15 +3615,15 @@ LINE 8 0 10 -228.59143448860814 +202.2732526704262 20 -7.750000001629389 +113.91666666666669 30 0.0 11 -228.59143448860814 +202.2732526704262 21 -7.250000001629389 +102.08333333333336 31 0.0 0 @@ -3251,15 +3633,15 @@ LINE 8 0 10 -228.59143448860814 +202.2732526704262 20 -7.250000001629389 +102.08333333333336 30 0.0 11 -240.1823435795172 +202.7732526704262 21 -7.250000001629389 +102.08333333333336 31 0.0 0 @@ -3269,15 +3651,15 @@ LINE 8 0 10 -240.1823435795172 +202.7732526704262 20 -7.250000001629389 +102.08333333333336 30 0.0 11 -240.1823435795172 +202.7732526704262 21 -7.750000001629389 +113.91666666666669 31 0.0 0 @@ -3287,15 +3669,15 @@ LINE 8 0 10 -258.5232526704263 +202.7732526704262 20 -52.1386220008147 +113.91666666666669 30 0.0 11 -253.5232526704263 +202.2732526704262 21 -52.1386220008147 +113.91666666666669 31 0.0 0 @@ -3305,15 +3687,15 @@ LINE 8 0 10 -253.5232526704263 +202.0232526704262 20 -52.1386220008147 +1.2500000000000002 30 0.0 11 -253.5232526704263 +204.5232526704262 21 -44.1386220008147 +1.2500000000000002 31 0.0 0 @@ -3323,15 +3705,15 @@ LINE 8 0 10 -253.5232526704263 +204.5232526704262 20 -44.1386220008147 +1.2500000000000002 30 0.0 11 -258.5232526704263 +202.0232526704262 21 -44.1386220008147 +3.7500000000000004 31 0.0 0 @@ -3341,15 +3723,15 @@ LINE 8 0 10 -182.5232526704263 +202.0232526704262 20 -44.1386220008147 +3.7500000000000004 30 0.0 11 -187.5232526704263 +194.02325267042616 21 -44.1386220008147 +3.7500000000000004 31 0.0 0 @@ -3359,15 +3741,15 @@ LINE 8 0 10 -187.5232526704263 +194.02325267042616 20 -44.1386220008147 +3.7500000000000004 30 0.0 11 -187.5232526704263 +191.52325267042616 21 -52.1386220008147 +1.2500000000000002 31 0.0 0 @@ -3377,15 +3759,15 @@ LINE 8 0 10 -187.5232526704263 +191.52325267042616 20 -52.1386220008147 +1.2500000000000002 30 0.0 11 -182.5232526704263 +194.02325267042616 21 -52.1386220008147 +1.2500000000000002 31 0.0 0 @@ -3395,15 +3777,15 @@ LINE 8 0 10 -182.27325267042627 +167.02325267042616 20 -85.19391066666667 +102.00000000000001 30 0.0 11 -182.27325267042627 +171.02325267042616 21 -73.36057733333335 +102.00000000000001 31 0.0 0 @@ -3413,15 +3795,15 @@ LINE 8 0 10 -182.27325267042627 +171.02325267042616 20 -73.36057733333335 +102.00000000000001 30 0.0 11 -182.7732526704263 +171.02325267042616 21 -73.36057733333335 +114.00000000000001 31 0.0 0 @@ -3431,15 +3813,15 @@ LINE 8 0 10 -182.7732526704263 +171.02325267042616 20 -73.36057733333335 +114.00000000000001 30 0.0 11 -182.7732526704263 +167.02325267042616 21 -85.19391066666667 +114.00000000000001 31 0.0 0 @@ -3449,15 +3831,15 @@ LINE 8 0 10 -182.7732526704263 +167.02325267042616 20 -85.19391066666667 +114.00000000000001 30 0.0 11 -182.27325267042627 +167.02325267042616 21 -85.19391066666667 +102.00000000000001 31 0.0 0 @@ -3467,15 +3849,15 @@ LINE 8 0 10 -147.0232526704263 +179.0232526704262 20 -73.27724400000001 +103.5 30 0.0 11 -151.0232526704263 +183.0232526704262 21 -73.27724400000001 +103.5 31 0.0 0 @@ -3485,15 +3867,15 @@ LINE 8 0 10 -151.0232526704263 +183.0232526704262 20 -73.27724400000001 +103.5 30 0.0 11 -151.0232526704263 +183.0232526704262 21 -85.27724400000001 +112.50000000000001 31 0.0 0 @@ -3503,15 +3885,15 @@ LINE 8 0 10 -151.0232526704263 +183.0232526704262 20 -85.27724400000001 +112.50000000000001 30 0.0 11 -147.0232526704263 +179.0232526704262 21 -85.27724400000001 +112.50000000000001 31 0.0 0 @@ -3521,15 +3903,15 @@ LINE 8 0 10 -147.0232526704263 +179.0232526704262 20 -85.27724400000001 +112.50000000000001 30 0.0 11 -147.0232526704263 +179.0232526704262 21 -73.27724400000001 +103.5 31 0.0 0 @@ -3539,15 +3921,15 @@ LINE 8 0 10 -159.02325267042627 +142.5232526704262 20 -74.777244 +102.00000000000001 30 0.0 11 -163.0232526704263 +165.5232526704262 21 -74.777244 +102.00000000000001 31 0.0 0 @@ -3557,15 +3939,15 @@ LINE 8 0 10 -163.0232526704263 +165.5232526704262 20 -74.777244 +102.00000000000001 30 0.0 11 -163.0232526704263 +165.5232526704262 21 -83.777244 +114.00000000000001 31 0.0 0 @@ -3575,15 +3957,15 @@ LINE 8 0 10 -163.0232526704263 +165.5232526704262 20 -83.777244 +114.00000000000001 30 0.0 11 -159.02325267042627 +142.5232526704262 21 -83.777244 +114.00000000000001 31 0.0 0 @@ -3593,15 +3975,15 @@ LINE 8 0 10 -159.02325267042627 +142.5232526704262 20 -83.777244 +114.00000000000001 30 0.0 11 -159.02325267042627 +142.5232526704262 21 -74.777244 +102.00000000000001 31 0.0 0 @@ -3611,15 +3993,15 @@ LINE 8 0 10 -122.52325267042629 +137.02325267042616 20 -73.27724400000001 +102.00000000000001 30 0.0 11 -145.52325267042627 +141.0232526704262 21 -73.27724400000001 +102.00000000000001 31 0.0 0 @@ -3629,15 +4011,15 @@ LINE 8 0 10 -145.52325267042627 +141.0232526704262 20 -73.27724400000001 +102.00000000000001 30 0.0 11 -145.52325267042627 +141.0232526704262 21 -85.27724400000001 +114.00000000000001 31 0.0 0 @@ -3647,15 +4029,15 @@ LINE 8 0 10 -145.52325267042627 +141.0232526704262 20 -85.27724400000001 +114.00000000000001 30 0.0 11 -122.52325267042629 +137.02325267042616 21 -85.27724400000001 +114.00000000000001 31 0.0 0 @@ -3665,15 +4047,15 @@ LINE 8 0 10 -122.52325267042629 +137.02325267042616 20 -85.27724400000001 +114.00000000000001 30 0.0 11 -122.52325267042629 +137.02325267042616 21 -73.27724400000001 +102.00000000000001 31 0.0 0 @@ -3683,15 +4065,15 @@ LINE 8 0 10 -117.02325267042629 +114.52325267042617 20 -73.27724400000001 +102.33333333333334 30 0.0 11 -121.02325267042629 +119.52325267042617 21 -73.27724400000001 +102.33333333333334 31 0.0 0 @@ -3701,15 +4083,15 @@ LINE 8 0 10 -121.02325267042629 +119.52325267042617 20 -73.27724400000001 +102.33333333333334 30 0.0 11 -121.02325267042629 +119.52325267042617 21 -85.27724400000001 +113.66666666666669 31 0.0 0 @@ -3719,15 +4101,15 @@ LINE 8 0 10 -121.02325267042629 +119.52325267042617 20 -85.27724400000001 +113.66666666666669 30 0.0 11 -117.02325267042629 +114.52325267042617 21 -85.27724400000001 +113.66666666666669 31 0.0 0 @@ -3737,15 +4119,15 @@ LINE 8 0 10 -117.02325267042629 +436.68991933709293 20 -85.27724400000001 +107.50000000000001 30 0.0 11 -117.02325267042629 +436.68991933709293 21 -73.27724400000001 +119.16666666666669 31 0.0 0 @@ -3755,15 +4137,15 @@ LINE 8 0 10 -94.52325267042627 +436.68991933709293 20 -73.61057733333334 +119.16666666666669 30 0.0 11 -99.52325267042629 +413.35658600375956 21 -73.61057733333334 +119.16666666666669 31 0.0 0 @@ -3773,15 +4155,15 @@ LINE 8 0 10 -99.52325267042629 +413.35658600375956 20 -73.61057733333334 +119.16666666666669 30 0.0 11 -99.52325267042629 +413.35658600375956 21 -84.94391066666667 +107.50000000000001 31 0.0 0 @@ -3791,15 +4173,15 @@ LINE 8 0 10 -99.52325267042629 +442.27325267042625 20 -84.94391066666667 +241.91666666666666 30 0.0 11 -94.52325267042627 +442.27325267042625 21 -84.94391066666667 +218.08333333333334 31 0.0 0 @@ -3809,15 +4191,15 @@ LINE 8 0 10 -296.68991933709293 +442.27325267042625 20 -78.77724400000001 +218.08333333333334 30 0.0 11 -296.68991933709293 +442.77325267042625 21 -90.44391066666668 +218.08333333333334 31 0.0 0 @@ -3827,15 +4209,15 @@ LINE 8 0 10 -296.68991933709293 +442.77325267042625 20 -90.44391066666668 +218.08333333333334 30 0.0 11 -273.3565860037596 +442.77325267042625 21 -90.44391066666668 +241.91666666666666 31 0.0 0 @@ -3845,15 +4227,15 @@ LINE 8 0 10 -273.3565860037596 +442.77325267042625 20 -90.44391066666668 +241.91666666666666 30 0.0 11 -273.3565860037596 +442.27325267042625 21 -78.77724400000001 +241.91666666666666 31 0.0 0 @@ -3863,15 +4245,15 @@ LINE 8 0 10 -302.27325267042636 +442.2732526704263 20 -213.19391066666668 +271.9166666666667 30 0.0 11 -302.2732526704263 +442.2732526704263 21 -189.36057733333334 +248.08333333333337 31 0.0 0 @@ -3881,15 +4263,15 @@ LINE 8 0 10 -302.2732526704263 +442.2732526704263 20 -189.36057733333334 +248.08333333333337 30 0.0 11 -302.7732526704263 +442.7732526704263 21 -189.36057733333334 +248.08333333333337 31 0.0 0 @@ -3899,15 +4281,15 @@ LINE 8 0 10 -302.7732526704263 +442.7732526704263 20 -189.36057733333334 +248.08333333333337 30 0.0 11 -302.77325267042636 +442.7732526704263 21 -213.19391066666668 +271.9166666666667 31 0.0 0 @@ -3917,15 +4299,15 @@ LINE 8 0 10 -302.77325267042636 +442.7732526704263 20 -213.19391066666668 +271.9166666666667 30 0.0 11 -302.27325267042636 +442.2732526704263 21 -213.19391066666668 +271.9166666666667 31 0.0 0 @@ -3935,15 +4317,15 @@ LINE 8 0 10 -302.27325267042636 +340.11416176133537 20 -203.19391066666668 +372.50000000000006 30 0.0 11 -302.27325267042636 +340.11416176133537 21 -179.3605773333334 +367.50000000000006 31 0.0 0 @@ -3953,15 +4335,15 @@ LINE 8 0 10 -302.27325267042636 +340.11416176133537 20 -179.3605773333334 +367.50000000000006 30 0.0 11 -302.77325267042636 +351.20507085224455 21 -179.3605773333334 +367.50000000000006 31 0.0 0 @@ -3971,15 +4353,15 @@ LINE 8 0 10 -302.77325267042636 +351.20507085224455 20 -179.3605773333334 +367.50000000000006 30 0.0 11 -302.77325267042636 +351.20507085224455 21 -203.19391066666668 +372.50000000000006 31 0.0 0 @@ -3989,15 +4371,15 @@ LINE 8 0 10 -302.77325267042636 +367.8414344886082 20 -203.19391066666668 +372.50000000000006 30 0.0 11 -302.27325267042636 +367.8414344886082 21 -203.19391066666668 +367.50000000000006 31 0.0 0 @@ -4007,15 +4389,15 @@ LINE 8 0 10 -201.1141617613354 +367.8414344886082 20 -303.77724400000005 +367.50000000000006 30 0.0 11 -201.1141617613354 +378.9323435795172 21 -298.77724400000005 +367.50000000000006 31 0.0 0 @@ -4025,15 +4407,15 @@ LINE 8 0 10 -201.1141617613354 +378.9323435795172 20 -298.77724400000005 +367.50000000000006 30 0.0 11 -212.20507085224452 +378.9323435795172 21 -298.77724400000005 +372.50000000000006 31 0.0 0 @@ -4043,15 +4425,15 @@ LINE 8 0 10 -212.20507085224452 +202.27325267042633 20 -298.77724400000005 +387.9166666666668 30 0.0 11 -212.20507085224452 +202.27325267042633 21 -303.77724400000005 +376.0833333333334 31 0.0 0 @@ -4061,15 +4443,15 @@ LINE 8 0 10 -228.84143448860814 +202.27325267042633 20 -303.77724400000005 +376.0833333333334 30 0.0 11 -228.84143448860814 +202.77325267042633 21 -298.77724400000005 +376.0833333333334 31 0.0 0 @@ -4079,15 +4461,15 @@ LINE 8 0 10 -228.84143448860814 +202.77325267042633 20 -298.77724400000005 +376.0833333333334 30 0.0 11 -239.93234357951724 +202.77325267042636 21 -298.77724400000005 +387.9166666666668 31 0.0 0 @@ -4097,15 +4479,15 @@ LINE 8 0 10 -239.93234357951724 +202.77325267042636 20 -298.77724400000005 +387.9166666666668 30 0.0 11 -239.93234357951724 +202.27325267042633 21 -303.77724400000005 +387.9166666666668 31 0.0 0 @@ -4115,15 +4497,15 @@ LINE 8 0 10 -182.27325267042636 +193.7732526704264 20 -319.1939106666666 +481.0000000000001 30 0.0 11 -182.2732526704263 +202.27325267042636 21 -307.3605773333334 +481.0000000000001 31 0.0 0 @@ -4133,15 +4515,15 @@ LINE 8 0 10 -182.2732526704263 +202.27325267042636 20 -307.3605773333334 +481.0000000000001 30 0.0 11 -182.77325267042633 +202.27325267042636 21 -307.3605773333334 +481.5000000000001 31 0.0 0 @@ -4151,15 +4533,15 @@ LINE 8 0 10 -182.77325267042633 +202.27325267042636 20 -307.3605773333334 +481.5000000000001 30 0.0 11 -182.77325267042636 +193.7732526704264 21 -319.1939106666666 +481.5000000000001 31 0.0 0 @@ -4169,15 +4551,15 @@ LINE 8 0 10 -182.77325267042636 +193.7732526704264 20 -319.1939106666666 +481.5000000000001 30 0.0 11 -182.27325267042636 +193.7732526704264 21 -319.1939106666666 +481.0000000000001 31 0.0 0 @@ -4187,15 +4569,15 @@ LINE 8 0 10 -147.02325267042633 +167.02325267042633 20 -307.27724400000005 +376.0000000000001 30 0.0 11 -151.02325267042633 +171.02325267042633 21 -307.27724400000005 +376.0000000000001 31 0.0 0 @@ -4205,15 +4587,15 @@ LINE 8 0 10 -151.02325267042633 +171.02325267042633 20 -307.27724400000005 +376.0000000000001 30 0.0 11 -151.02325267042633 +171.02325267042633 21 -319.277244 +388.0000000000001 31 0.0 0 @@ -4223,15 +4605,15 @@ LINE 8 0 10 -151.02325267042633 +171.02325267042633 20 -319.277244 +388.0000000000001 30 0.0 11 -147.02325267042633 +167.02325267042633 21 -319.277244 +388.0000000000001 31 0.0 0 @@ -4241,15 +4623,15 @@ LINE 8 0 10 -147.02325267042633 +167.02325267042633 20 -319.277244 +388.0000000000001 30 0.0 11 -147.02325267042633 +167.02325267042633 21 -307.27724400000005 +376.0000000000001 31 0.0 0 @@ -4259,15 +4641,15 @@ LINE 8 0 10 -159.0232526704263 +179.02325267042633 20 -308.77724400000005 +377.50000000000006 30 0.0 11 -163.02325267042633 +183.02325267042633 21 -308.77724400000005 +377.50000000000006 31 0.0 0 @@ -4277,15 +4659,15 @@ LINE 8 0 10 -163.02325267042633 +183.02325267042633 20 -308.77724400000005 +377.50000000000006 30 0.0 11 -163.02325267042633 +183.02325267042633 21 -317.77724400000005 +386.50000000000006 31 0.0 0 @@ -4295,15 +4677,15 @@ LINE 8 0 10 -163.02325267042633 +183.02325267042633 20 -317.77724400000005 +386.50000000000006 30 0.0 11 -159.0232526704263 +179.02325267042633 21 -317.77724400000005 +386.50000000000006 31 0.0 0 @@ -4313,15 +4695,15 @@ LINE 8 0 10 -159.0232526704263 +179.02325267042633 20 -317.77724400000005 +386.50000000000006 30 0.0 11 -159.0232526704263 +179.02325267042633 21 -308.77724400000005 +377.50000000000006 31 0.0 0 @@ -4331,15 +4713,15 @@ LINE 8 0 10 -122.52325267042634 +142.52325267042636 20 -307.27724400000005 +376.0000000000001 30 0.0 11 -145.52325267042633 +165.52325267042636 21 -307.27724400000005 +376.0000000000001 31 0.0 0 @@ -4349,15 +4731,15 @@ LINE 8 0 10 -145.52325267042633 +165.52325267042636 20 -307.27724400000005 +376.0000000000001 30 0.0 11 -145.52325267042633 +165.52325267042636 21 -319.277244 +388.0000000000001 31 0.0 0 @@ -4367,15 +4749,15 @@ LINE 8 0 10 -145.52325267042633 +165.52325267042636 20 -319.277244 +388.0000000000001 30 0.0 11 -122.52325267042634 +142.52325267042636 21 -319.277244 +388.0000000000001 31 0.0 0 @@ -4385,15 +4767,15 @@ LINE 8 0 10 -122.52325267042634 +142.52325267042636 20 -319.277244 +388.0000000000001 30 0.0 11 -122.52325267042634 +142.52325267042636 21 -307.27724400000005 +376.0000000000001 31 0.0 0 @@ -4403,15 +4785,15 @@ LINE 8 0 10 -117.02325267042634 +137.02325267042636 20 -307.27724400000005 +376.0000000000001 30 0.0 11 -121.02325267042634 +141.02325267042633 21 -307.27724400000005 +376.0000000000001 31 0.0 0 @@ -4421,15 +4803,15 @@ LINE 8 0 10 -121.02325267042634 +141.02325267042633 20 -307.27724400000005 +376.0000000000001 30 0.0 11 -121.02325267042634 +141.02325267042633 21 -319.277244 +388.0000000000001 31 0.0 0 @@ -4439,15 +4821,15 @@ LINE 8 0 10 -121.02325267042634 +141.02325267042633 20 -319.277244 +388.0000000000001 30 0.0 11 -117.02325267042634 +137.02325267042636 21 -319.277244 +388.0000000000001 31 0.0 0 @@ -4457,15 +4839,15 @@ LINE 8 0 10 -117.02325267042634 +137.02325267042636 20 -319.277244 +388.0000000000001 30 0.0 11 -117.02325267042634 +137.02325267042636 21 -307.27724400000005 +376.0000000000001 31 0.0 0 @@ -4475,15 +4857,15 @@ LINE 8 0 10 -94.52325267042633 +114.52325267042633 20 -307.6105773333334 +376.3333333333334 30 0.0 11 -99.52325267042633 +119.52325267042633 21 -307.6105773333334 +376.3333333333334 31 0.0 0 @@ -4493,15 +4875,15 @@ LINE 8 0 10 -99.52325267042633 +119.52325267042633 20 -307.6105773333334 +376.3333333333334 30 0.0 11 -99.52325267042634 +119.52325267042634 21 -318.9439106666666 +387.6666666666668 31 0.0 0 @@ -4511,15 +4893,15 @@ LINE 8 0 10 -99.52325267042634 +119.52325267042634 20 -318.9439106666666 +387.6666666666668 30 0.0 11 -94.52325267042634 +114.52325267042634 21 -318.9439106666666 +387.6666666666668 31 0.0 0 @@ -4529,15 +4911,15 @@ LINE 8 0 10 -53.69056332812418 +50.293912049626165 20 -308.4020025033634 +378.3985027328003 30 0.0 11 -53.69056332812418 +50.293912049626165 21 -300.3188301677879 +369.46616757760023 31 0.0 0 @@ -4547,15 +4929,15 @@ LINE 8 0 10 -53.69056332812418 +50.293912049626165 20 -300.3188301677879 +369.46616757760023 30 0.0 11 -69.85690799927526 +68.15858236002626 21 -300.3188301677879 +369.46616757760023 31 0.0 0 @@ -4565,15 +4947,15 @@ LINE 8 0 10 -69.85690799927526 +68.15858236002626 20 -300.3188301677879 +369.46616757760023 30 0.0 11 -69.85690799927526 +68.15858236002626 21 -308.4020025033634 +378.3985027328003 31 0.0 0 @@ -4583,15 +4965,15 @@ LINE 8 0 10 -20.624331748168913 +22.23674174086841 20 -216.0165790835827 +274.96789528790873 30 0.0 11 -26.479589068954827 +27.02781066601807 21 -231.62052109850282 +292.6965944551955 31 0.0 0 @@ -4601,15 +4983,15 @@ LINE 8 0 10 -26.479589068954827 +27.02781066601807 20 -231.62052109850282 +292.6965944551955 30 0.0 11 -26.01146176441367 +26.545125737085613 21 -231.7961822118518 +292.82703700723084 31 0.0 0 @@ -4619,15 +5001,15 @@ LINE 8 0 10 -26.01146176441367 +26.545125737085613 20 -231.7961822118518 +292.82703700723084 30 0.0 11 -20.156204443627757 +21.754056811935953 21 -216.19224019693172 +275.098337839944 31 0.0 0 @@ -4637,15 +5019,15 @@ LINE 8 0 10 -20.156204443627757 +21.754056811935953 20 -216.19224019693172 +275.098337839944 30 0.0 11 -20.624331748168913 +22.23674174086841 21 -216.0165790835827 +274.96789528790873 31 0.0 0 @@ -4655,15 +5037,15 @@ LINE 8 0 10 -26.479589068954795 +27.027810666018013 20 -160.9339669014974 +197.30340554480492 30 0.0 11 -20.62433174816889 +22.236741740868357 21 -176.5379089164175 +215.0321047120917 31 0.0 0 @@ -4673,15 +5055,15 @@ LINE 8 0 10 -20.62433174816889 +22.236741740868357 20 -176.5379089164175 +215.0321047120917 30 0.0 11 -20.156204443627733 +21.7540568119359 21 -176.3622478030685 +214.90166216005642 31 0.0 0 @@ -4691,15 +5073,15 @@ LINE 8 0 10 -20.156204443627733 +21.7540568119359 20 -176.3622478030685 +214.90166216005642 30 0.0 11 -26.011461764413642 +26.54512573708556 21 -160.75830578814833 +197.17296299276964 31 0.0 0 @@ -4709,15 +5091,15 @@ LINE 8 0 10 -26.011461764413642 +26.54512573708556 20 -160.75830578814833 +197.17296299276964 30 0.0 11 -26.479589068954795 +27.027810666018013 21 -160.9339669014974 +197.30340554480492 31 0.0 0 @@ -4727,15 +5109,15 @@ LINE 8 0 10 -69.8569079992752 +68.15858236002603 20 -84.15248549663676 +111.60149726720016 30 0.0 11 -69.8569079992752 +68.15858236002603 21 -92.23565783221228 +120.5338324224002 31 0.0 0 @@ -4745,15 +5127,15 @@ LINE 8 0 10 -69.8569079992752 +68.15858236002603 20 -92.23565783221228 +120.5338324224002 30 0.0 11 -53.69056332812412 +50.293912049625966 21 -92.2356578322123 +120.53383242240022 31 0.0 0 @@ -4763,15 +5145,15 @@ LINE 8 0 10 -53.69056332812412 +50.293912049625966 20 -92.2356578322123 +120.53383242240022 30 0.0 11 -53.69056332812412 +50.29391204962594 21 -84.15248549663677 +111.60149726720017 31 0.0 0 @@ -4781,15 +5163,15 @@ LINE 8 0 10 -273.3565860037596 +413.3565860037597 20 -313.77724400000005 +382.49999999999994 30 0.0 11 -273.3565860037596 +413.3565860037597 21 -302.1105773333333 +370.83333333333337 31 0.0 0 @@ -4799,15 +5181,15 @@ LINE 8 0 10 -273.3565860037596 +413.3565860037597 20 -302.1105773333333 +370.83333333333337 30 0.0 11 -296.68991933709304 +436.68991933709293 21 -302.1105773333333 +370.8333333333333 31 0.0 0 @@ -4817,15 +5199,15 @@ LINE 8 0 10 -296.68991933709304 +436.68991933709293 20 -302.1105773333333 +370.8333333333333 30 0.0 11 -296.68991933709304 +436.68991933709293 21 -313.77724400000005 +382.49999999999994 31 0.0 0 @@ -4837,15 +5219,15 @@ DOTTED 8 0 10 -363.02325267042636 +503.0232526704263 20 -84.27724400000001 +113.00000000000001 30 0.0 11 -424.02325267042636 +564.0232526704264 21 -84.27724400000001 +113.00000000000001 31 0.0 0 @@ -4857,15 +5239,15 @@ DOTTED 8 0 10 -424.02325267042636 +564.0232526704264 20 -84.27724400000001 +113.00000000000001 30 0.0 11 -424.02325267042636 +564.0232526704264 21 -108.27724400000001 +137.00000000000003 31 0.0 0 @@ -4877,15 +5259,15 @@ DOTTED 8 0 10 -424.02325267042636 +564.0232526704264 20 -108.27724400000001 +137.00000000000003 30 0.0 11 -363.02325267042636 +503.0232526704263 21 -108.27724400000001 +137.00000000000003 31 0.0 0 @@ -4897,15 +5279,15 @@ DOTTED 8 0 10 -363.02325267042636 +503.0232526704263 20 -108.27724400000001 +137.00000000000003 30 0.0 11 -363.02325267042636 +503.0232526704263 21 -84.27724400000001 +113.00000000000001 31 0.0 0 @@ -4915,15 +5297,15 @@ LINE 8 0 10 -363.02325267042636 +503.0232526704263 20 -77.277244 +106.00000000000001 30 0.0 11 -363.02325267042636 +503.0232526704263 21 -84.27724400000001 +113.00000000000001 31 0.0 0 @@ -4933,15 +5315,15 @@ LINE 8 0 10 -423.0232526704263 +563.0232526704264 20 -77.277244 +106.00000000000001 30 0.0 11 -363.02325267042636 +503.0232526704263 21 -77.277244 +106.00000000000001 31 0.0 0 @@ -4951,15 +5333,15 @@ LINE 8 0 10 -423.0232526704263 +563.0232526704264 20 -84.27724400000001 +113.00000000000001 30 0.0 11 -423.0232526704263 +563.0232526704264 21 -77.277244 +106.00000000000001 31 0.0 0 @@ -4969,15 +5351,15 @@ LINE 8 0 10 -431.02325267042636 +571.0232526704264 20 -84.27724400000001 +113.00000000000001 30 0.0 11 -424.02325267042636 +564.0232526704264 21 -84.27724400000001 +113.00000000000001 31 0.0 0 @@ -4987,15 +5369,15 @@ LINE 8 0 10 -431.02325267042636 +571.0232526704264 20 -108.27724400000001 +137.00000000000003 30 0.0 11 -431.02325267042636 +571.0232526704264 21 -84.27724400000001 +113.00000000000001 31 0.0 0 @@ -5005,15 +5387,15 @@ LINE 8 0 10 -424.02325267042636 +564.0232526704264 20 -108.27724400000001 +137.00000000000003 30 0.0 11 -431.02325267042636 +571.0232526704264 21 -108.27724400000001 +137.00000000000003 31 0.0 0 @@ -5025,15 +5407,15 @@ DOTTED 8 0 10 -424.02325267042636 +564.0232526704264 20 -108.27724400000001 +137.00000000000003 30 0.0 11 -424.02325267042636 +564.0232526704264 21 -169.277244 +198.0 31 0.0 0 @@ -5043,15 +5425,15 @@ LINE 8 0 10 -364.0232526704263 +504.0232526704263 20 -169.277244 +198.0 30 0.0 11 -424.02325267042636 +564.0232526704264 21 -169.277244 +198.0 31 0.0 0 @@ -5063,15 +5445,15 @@ DOTTED 8 0 10 -364.0232526704263 +504.0232526704263 20 -108.27724400000001 +137.00000000000003 30 0.0 11 -364.0232526704263 +504.0232526704263 21 -169.277244 +198.0 31 0.0 0 @@ -5081,15 +5463,15 @@ LINE 8 0 10 -448.02325267042636 +588.0232526704262 20 -108.27724400000001 +137.00000000000003 30 0.0 11 -424.02325267042636 +564.0232526704264 21 -108.27724400000001 +137.00000000000003 31 0.0 0 @@ -5101,15 +5483,15 @@ DOTTED 8 0 10 -448.02325267042636 +588.0232526704262 20 -108.27724400000001 +137.00000000000003 30 0.0 11 -448.02325267042636 +588.0232526704262 21 -169.277244 +198.0 31 0.0 0 @@ -5119,15 +5501,15 @@ LINE 8 0 10 -424.02325267042636 +564.0232526704264 20 -169.277244 +198.0 30 0.0 11 -448.02325267042636 +588.0232526704262 21 -169.277244 +198.0 31 0.0 0 @@ -5137,15 +5519,15 @@ LINE 8 0 10 -508.02325267042636 +648.0232526704264 20 -108.27724400000001 +137.00000000000003 30 0.0 11 -448.02325267042636 +588.0232526704262 21 -108.27724400000001 +137.00000000000003 31 0.0 0 @@ -5155,15 +5537,15 @@ LINE 8 0 10 -508.02325267042636 +648.0232526704264 20 -169.277244 +198.0 30 0.0 11 -508.02325267042636 +648.0232526704264 21 -108.27724400000001 +137.00000000000003 31 0.0 0 @@ -5173,15 +5555,15 @@ LINE 8 0 10 -448.02325267042636 +588.0232526704262 20 -169.277244 +198.0 30 0.0 11 -508.02325267042636 +648.0232526704264 21 -169.277244 +198.0 31 0.0 0 @@ -5191,15 +5573,15 @@ LINE 8 0 10 -364.0232526704263 +504.0232526704263 20 -108.27724400000001 +137.00000000000003 30 0.0 11 -340.02325267042636 +480.0232526704263 21 -108.27724400000001 +137.00000000000003 31 0.0 0 @@ -5209,15 +5591,15 @@ LINE 8 0 10 -340.02325267042636 +480.0232526704263 20 -169.277244 +198.0 30 0.0 11 -364.0232526704263 +504.0232526704263 21 -169.277244 +198.0 31 0.0 0 @@ -5229,15 +5611,15 @@ DOTTED 8 0 10 -340.02325267042636 +480.0232526704263 20 -169.277244 +198.0 30 0.0 11 -340.02325267042636 +480.0232526704263 21 -108.27724400000001 +137.00000000000003 31 0.0 0 @@ -5247,15 +5629,15 @@ LINE 8 0 10 -330.02325267042636 +470.0232526704263 20 -169.277244 +198.0 30 0.0 11 -340.02325267042636 +480.0232526704263 21 -169.277244 +198.0 31 0.0 0 @@ -5265,15 +5647,15 @@ LINE 8 0 10 -330.02325267042636 +470.0232526704263 20 -108.27724400000001 +137.00000000000003 30 0.0 11 -330.02325267042636 +470.0232526704263 21 -169.277244 +198.0 31 0.0 0 @@ -5283,15 +5665,15 @@ LINE 8 0 10 -340.02325267042636 +480.0232526704263 20 -108.27724400000001 +137.00000000000003 30 0.0 11 -330.02325267042636 +470.0232526704263 21 -108.27724400000001 +137.00000000000003 31 0.0 0 @@ -5301,15 +5683,15 @@ LINE 8 0 10 -356.02325267042636 +496.0232526704263 20 -108.27724400000001 +137.00000000000003 30 0.0 11 -363.02325267042636 +503.0232526704263 21 -108.27724400000001 +137.00000000000003 31 0.0 0 @@ -5319,15 +5701,15 @@ LINE 8 0 10 -356.02325267042636 +496.0232526704263 20 -84.27724400000001 +113.00000000000001 30 0.0 11 -356.02325267042636 +496.0232526704263 21 -108.27724400000001 +137.00000000000003 31 0.0 0 @@ -5337,15 +5719,15 @@ LINE 8 0 10 -363.02325267042636 +503.0232526704263 20 -84.27724400000001 +113.00000000000001 30 0.0 11 -356.02325267042636 +496.0232526704263 21 -84.27724400000001 +113.00000000000001 31 0.0 0 @@ -5355,15 +5737,15 @@ LINE 8 0 10 -412.1141617613354 +552.1141617613354 20 -79.02724400000001 +107.75000000000001 30 0.0 11 -415.6141617613354 +555.6141617613354 21 -79.02724400000001 +107.75000000000001 31 0.0 0 @@ -5373,15 +5755,15 @@ LINE 8 0 10 -415.6141617613354 +555.6141617613354 20 -79.02724400000001 +107.75000000000001 30 0.0 11 -412.1141617613354 +552.1141617613354 21 -82.52724400000001 +111.25000000000001 31 0.0 0 @@ -5391,15 +5773,15 @@ LINE 8 0 10 -412.1141617613354 +552.1141617613354 20 -82.52724400000001 +111.25000000000001 30 0.0 11 -401.20507085224455 +541.2050708522444 21 -82.52724400000001 +111.25000000000001 31 0.0 0 @@ -5409,15 +5791,15 @@ LINE 8 0 10 -401.20507085224455 +541.2050708522444 20 -82.52724400000001 +111.25000000000001 30 0.0 11 -397.7050708522445 +537.7050708522446 21 -79.02724400000001 +107.75000000000001 31 0.0 0 @@ -5427,15 +5809,15 @@ LINE 8 0 10 -397.7050708522445 +537.7050708522446 20 -79.02724400000001 +107.75000000000001 30 0.0 11 -401.20507085224455 +541.2050708522444 21 -79.02724400000001 +107.75000000000001 31 0.0 0 @@ -5445,15 +5827,15 @@ LINE 8 0 10 -384.8414344886081 +524.8414344886082 20 -79.02724400000001 +107.75000000000001 30 0.0 11 -388.3414344886082 +528.3414344886082 21 -79.02724400000001 +107.75000000000001 31 0.0 0 @@ -5463,15 +5845,15 @@ LINE 8 0 10 -388.3414344886082 +528.3414344886082 20 -79.02724400000001 +107.75000000000001 30 0.0 11 -384.8414344886081 +524.8414344886082 21 -82.52724400000001 +111.25000000000001 31 0.0 0 @@ -5481,15 +5863,15 @@ LINE 8 0 10 -384.8414344886081 +524.8414344886082 20 -82.52724400000001 +111.25000000000001 30 0.0 11 -373.93234357951724 +513.9323435795172 21 -82.52724400000001 +111.25000000000001 31 0.0 0 @@ -5499,15 +5881,15 @@ LINE 8 0 10 -373.93234357951724 +513.9323435795172 20 -82.52724400000001 +111.25000000000001 30 0.0 11 -370.4323435795173 +510.43234357951724 21 -79.02724400000001 +107.75000000000001 31 0.0 0 @@ -5517,15 +5899,15 @@ LINE 8 0 10 -370.4323435795173 +510.43234357951724 20 -79.02724400000001 +107.75000000000001 30 0.0 11 -373.93234357951724 +513.9323435795172 21 -79.02724400000001 +107.75000000000001 31 0.0 0 @@ -5535,15 +5917,15 @@ LINE 8 0 10 -429.27325267042636 +569.2732526704264 20 -100.27724400000001 +129.0 30 0.0 11 -425.77325267042636 +565.7732526704262 21 -100.27724400000001 +129.0 31 0.0 0 @@ -5553,15 +5935,15 @@ LINE 8 0 10 -425.77325267042636 +565.7732526704262 20 -100.27724400000001 +129.0 30 0.0 11 -425.77325267042636 +565.7732526704262 21 -92.27724400000001 +121.00000000000001 31 0.0 0 @@ -5571,15 +5953,15 @@ LINE 8 0 10 -425.77325267042636 +565.7732526704262 20 -92.27724400000001 +121.00000000000001 30 0.0 11 -429.27325267042636 +569.2732526704264 21 -92.27724400000001 +121.00000000000001 31 0.0 0 @@ -5589,15 +5971,15 @@ LINE 8 0 10 -371.52325267042636 +511.5232526704263 20 -159.777244 +188.50000000000003 30 0.0 11 -371.52325267042636 +511.5232526704263 21 -141.777244 +170.5 31 0.0 0 @@ -5607,15 +5989,15 @@ LINE 8 0 10 -371.52325267042636 +511.5232526704263 20 -141.777244 +170.5 30 0.0 11 -406.52325267042636 +546.5232526704264 21 -141.777244 +170.5 31 0.0 0 @@ -5625,15 +6007,15 @@ LINE 8 0 10 -406.52325267042636 +546.5232526704264 20 -141.777244 +170.5 30 0.0 11 -406.52325267042636 +546.5232526704264 21 -159.777244 +188.50000000000003 31 0.0 0 @@ -5643,15 +6025,15 @@ LINE 8 0 10 -406.52325267042636 +546.5232526704264 20 -159.777244 +188.50000000000003 30 0.0 11 -371.52325267042636 +511.5232526704263 21 -159.777244 +188.50000000000003 31 0.0 0 @@ -5661,15 +6043,15 @@ LINE 8 0 10 -424.52325267042636 +564.5232526704264 20 -121.52724400000001 +150.25 30 0.0 11 -424.52325267042636 +564.5232526704264 21 -118.52724400000001 +147.25000000000003 31 0.0 0 @@ -5679,15 +6061,15 @@ LINE 8 0 10 -424.52325267042636 +564.5232526704264 20 -118.52724400000001 +147.25000000000003 30 0.0 11 -427.5232526704263 +567.5232526704262 21 -118.52724400000001 +147.25000000000003 31 0.0 0 @@ -5697,15 +6079,15 @@ LINE 8 0 10 -427.5232526704263 +567.5232526704262 20 -118.52724400000001 +147.25000000000003 30 0.0 11 -427.5232526704263 +567.5232526704262 21 -121.52724400000001 +150.25 31 0.0 0 @@ -5715,15 +6097,15 @@ LINE 8 0 10 -427.5232526704263 +567.5232526704262 20 -121.52724400000001 +150.25 30 0.0 11 -424.52325267042636 +564.5232526704264 21 -121.52724400000001 +150.25 31 0.0 0 @@ -5733,15 +6115,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -120.52724400000001 +149.25000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -119.52724400000001 +148.25 31 0.0 0 @@ -5751,15 +6133,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -119.52724400000001 +148.25 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -119.52724400000001 +148.25 31 0.0 0 @@ -5769,15 +6151,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -119.52724400000001 +148.25 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -120.52724400000001 +149.25000000000003 31 0.0 0 @@ -5787,15 +6169,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -120.52724400000001 +149.25000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -120.52724400000001 +149.25000000000003 31 0.0 0 @@ -5805,15 +6187,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -123.02724400000001 +151.75000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -122.02724400000001 +150.75000000000003 31 0.0 0 @@ -5823,15 +6205,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -122.02724400000001 +150.75000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -122.02724400000001 +150.75000000000003 31 0.0 0 @@ -5841,15 +6223,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -122.02724400000001 +150.75000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -123.02724400000001 +151.75000000000003 31 0.0 0 @@ -5859,15 +6241,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -123.02724400000001 +151.75000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -123.02724400000001 +151.75000000000003 31 0.0 0 @@ -5877,15 +6259,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -123.02724400000001 +151.75000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -122.02724400000001 +150.75000000000003 31 0.0 0 @@ -5895,15 +6277,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -122.02724400000001 +150.75000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -122.02724400000001 +150.75000000000003 31 0.0 0 @@ -5913,15 +6295,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -122.02724400000001 +150.75000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -123.02724400000001 +151.75000000000003 31 0.0 0 @@ -5931,15 +6313,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -123.02724400000001 +151.75000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -123.02724400000001 +151.75000000000003 31 0.0 0 @@ -5949,15 +6331,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -125.52724400000001 +154.25000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -124.52724400000001 +153.25000000000003 31 0.0 0 @@ -5967,15 +6349,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -124.52724400000001 +153.25000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -124.52724400000001 +153.25000000000003 31 0.0 0 @@ -5985,15 +6367,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -124.52724400000001 +153.25000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -125.52724400000001 +154.25000000000003 31 0.0 0 @@ -6003,15 +6385,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -125.52724400000001 +154.25000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -125.52724400000001 +154.25000000000003 31 0.0 0 @@ -6021,15 +6403,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -125.52724400000001 +154.25000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -124.52724400000001 +153.25000000000003 31 0.0 0 @@ -6039,15 +6421,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -124.52724400000001 +153.25000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -124.52724400000001 +153.25000000000003 31 0.0 0 @@ -6057,15 +6439,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -124.52724400000001 +153.25000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -125.52724400000001 +154.25000000000003 31 0.0 0 @@ -6075,15 +6457,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -125.52724400000001 +154.25000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -125.52724400000001 +154.25000000000003 31 0.0 0 @@ -6093,15 +6475,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -128.02724400000002 +156.75 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -127.02724400000001 +155.75000000000003 31 0.0 0 @@ -6111,15 +6493,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -127.02724400000001 +155.75000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -127.02724400000001 +155.75000000000003 31 0.0 0 @@ -6129,15 +6511,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -127.02724400000001 +155.75000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -128.02724400000002 +156.75 31 0.0 0 @@ -6147,15 +6529,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -128.02724400000002 +156.75 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -128.02724400000002 +156.75 31 0.0 0 @@ -6165,15 +6547,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -128.02724400000002 +156.75 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -127.02724400000001 +155.75000000000003 31 0.0 0 @@ -6183,15 +6565,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -127.02724400000001 +155.75000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -127.02724400000001 +155.75000000000003 31 0.0 0 @@ -6201,15 +6583,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -127.02724400000001 +155.75000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -128.02724400000002 +156.75 31 0.0 0 @@ -6219,15 +6601,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -128.02724400000002 +156.75 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -128.02724400000002 +156.75 31 0.0 0 @@ -6237,15 +6619,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -130.52724400000002 +159.25 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -129.527244 +158.25000000000003 31 0.0 0 @@ -6255,15 +6637,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -129.527244 +158.25000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -129.527244 +158.25000000000003 31 0.0 0 @@ -6273,15 +6655,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -129.527244 +158.25000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -130.52724400000002 +159.25 31 0.0 0 @@ -6291,15 +6673,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -130.52724400000002 +159.25 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -130.52724400000002 +159.25 31 0.0 0 @@ -6309,15 +6691,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -130.52724400000002 +159.25 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -129.527244 +158.25000000000003 31 0.0 0 @@ -6327,15 +6709,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -129.527244 +158.25000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -129.527244 +158.25000000000003 31 0.0 0 @@ -6345,15 +6727,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -129.527244 +158.25000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -130.52724400000002 +159.25 31 0.0 0 @@ -6363,15 +6745,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -130.52724400000002 +159.25 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -130.52724400000002 +159.25 31 0.0 0 @@ -6381,15 +6763,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -133.027244 +161.75 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -132.027244 +160.75000000000003 31 0.0 0 @@ -6399,15 +6781,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -132.027244 +160.75000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -132.027244 +160.75000000000003 31 0.0 0 @@ -6417,15 +6799,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -132.027244 +160.75000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -133.027244 +161.75 31 0.0 0 @@ -6435,15 +6817,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -133.027244 +161.75 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -133.027244 +161.75 31 0.0 0 @@ -6453,15 +6835,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -133.027244 +161.75 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -132.027244 +160.75000000000003 31 0.0 0 @@ -6471,15 +6853,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -132.027244 +160.75000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -132.027244 +160.75000000000003 31 0.0 0 @@ -6489,15 +6871,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -132.027244 +160.75000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -133.027244 +161.75 31 0.0 0 @@ -6507,15 +6889,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -133.027244 +161.75 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -133.027244 +161.75 31 0.0 0 @@ -6525,15 +6907,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -135.527244 +164.25000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -134.52724400000002 +163.25000000000003 31 0.0 0 @@ -6543,15 +6925,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -134.52724400000002 +163.25000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -134.52724400000002 +163.25000000000003 31 0.0 0 @@ -6561,15 +6943,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -134.52724400000002 +163.25000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -135.527244 +164.25000000000003 31 0.0 0 @@ -6579,15 +6961,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -135.527244 +164.25000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -135.527244 +164.25000000000003 31 0.0 0 @@ -6597,15 +6979,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -135.527244 +164.25000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -134.52724400000002 +163.25000000000003 31 0.0 0 @@ -6615,15 +6997,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -134.52724400000002 +163.25000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -134.52724400000002 +163.25000000000003 31 0.0 0 @@ -6633,15 +7015,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -134.52724400000002 +163.25000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -135.527244 +164.25000000000003 31 0.0 0 @@ -6651,15 +7033,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -135.527244 +164.25000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -135.527244 +164.25000000000003 31 0.0 0 @@ -6669,15 +7051,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -138.02724400000002 +166.75000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -137.027244 +165.75 31 0.0 0 @@ -6687,15 +7069,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -137.027244 +165.75 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -137.027244 +165.75 31 0.0 0 @@ -6705,15 +7087,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -137.027244 +165.75 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -138.02724400000002 +166.75000000000003 31 0.0 0 @@ -6723,15 +7105,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -138.02724400000002 +166.75000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -138.02724400000002 +166.75000000000003 31 0.0 0 @@ -6741,15 +7123,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -138.02724400000002 +166.75000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -137.027244 +165.75 31 0.0 0 @@ -6759,15 +7141,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -137.027244 +165.75 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -137.027244 +165.75 31 0.0 0 @@ -6777,15 +7159,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -137.027244 +165.75 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -138.02724400000002 +166.75000000000003 31 0.0 0 @@ -6795,15 +7177,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -138.02724400000002 +166.75000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -138.02724400000002 +166.75000000000003 31 0.0 0 @@ -6813,15 +7195,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -140.52724400000002 +169.25000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -139.527244 +168.25 31 0.0 0 @@ -6831,15 +7213,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -139.527244 +168.25 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -139.527244 +168.25 31 0.0 0 @@ -6849,15 +7231,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -139.527244 +168.25 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -140.52724400000002 +169.25000000000003 31 0.0 0 @@ -6867,15 +7249,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -140.52724400000002 +169.25000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -140.52724400000002 +169.25000000000003 31 0.0 0 @@ -6885,15 +7267,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -140.52724400000002 +169.25000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -139.527244 +168.25 31 0.0 0 @@ -6903,15 +7285,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -139.527244 +168.25 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -139.527244 +168.25 31 0.0 0 @@ -6921,15 +7303,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -139.527244 +168.25 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -140.52724400000002 +169.25000000000003 31 0.0 0 @@ -6939,15 +7321,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -140.52724400000002 +169.25000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -140.52724400000002 +169.25000000000003 31 0.0 0 @@ -6957,15 +7339,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -143.02724400000002 +171.75000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -142.027244 +170.75 31 0.0 0 @@ -6975,15 +7357,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -142.027244 +170.75 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -142.027244 +170.75 31 0.0 0 @@ -6993,15 +7375,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -142.027244 +170.75 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -143.02724400000002 +171.75000000000003 31 0.0 0 @@ -7011,15 +7393,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -143.02724400000002 +171.75000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -143.02724400000002 +171.75000000000003 31 0.0 0 @@ -7029,15 +7411,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -143.02724400000002 +171.75000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -142.027244 +170.75 31 0.0 0 @@ -7047,15 +7429,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -142.027244 +170.75 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -142.027244 +170.75 31 0.0 0 @@ -7065,15 +7447,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -142.027244 +170.75 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -143.02724400000002 +171.75000000000003 31 0.0 0 @@ -7083,15 +7465,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -143.02724400000002 +171.75000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -143.02724400000002 +171.75000000000003 31 0.0 0 @@ -7101,15 +7483,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -145.52724400000002 +174.25000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -144.527244 +173.25000000000003 31 0.0 0 @@ -7119,15 +7501,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -144.527244 +173.25000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -144.527244 +173.25000000000003 31 0.0 0 @@ -7137,15 +7519,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -144.527244 +173.25000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -145.52724400000002 +174.25000000000003 31 0.0 0 @@ -7155,15 +7537,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -145.52724400000002 +174.25000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -145.52724400000002 +174.25000000000003 31 0.0 0 @@ -7173,15 +7555,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -145.52724400000002 +174.25000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -144.527244 +173.25000000000003 31 0.0 0 @@ -7191,15 +7573,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -144.527244 +173.25000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -144.527244 +173.25000000000003 31 0.0 0 @@ -7209,15 +7591,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -144.527244 +173.25000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -145.52724400000002 +174.25000000000003 31 0.0 0 @@ -7227,15 +7609,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -145.52724400000002 +174.25000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -145.52724400000002 +174.25000000000003 31 0.0 0 @@ -7245,15 +7627,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -148.02724400000002 +176.75000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -147.02724400000002 +175.75000000000003 31 0.0 0 @@ -7263,15 +7645,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -147.02724400000002 +175.75000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -147.02724400000002 +175.75000000000003 31 0.0 0 @@ -7281,15 +7663,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -147.02724400000002 +175.75000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -148.02724400000002 +176.75000000000003 31 0.0 0 @@ -7299,15 +7681,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -148.02724400000002 +176.75000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -148.02724400000002 +176.75000000000003 31 0.0 0 @@ -7317,15 +7699,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -148.02724400000002 +176.75000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -147.02724400000002 +175.75000000000003 31 0.0 0 @@ -7335,15 +7717,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -147.02724400000002 +175.75000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -147.02724400000002 +175.75000000000003 31 0.0 0 @@ -7353,15 +7735,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -147.02724400000002 +175.75000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -148.02724400000002 +176.75000000000003 31 0.0 0 @@ -7371,15 +7753,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -148.02724400000002 +176.75000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -148.02724400000002 +176.75000000000003 31 0.0 0 @@ -7389,15 +7771,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -150.52724400000002 +179.25000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -149.52724400000002 +178.25000000000003 31 0.0 0 @@ -7407,15 +7789,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -149.52724400000002 +178.25000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -149.52724400000002 +178.25000000000003 31 0.0 0 @@ -7425,15 +7807,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -149.52724400000002 +178.25000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -150.52724400000002 +179.25000000000003 31 0.0 0 @@ -7443,15 +7825,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -150.52724400000002 +179.25000000000003 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -150.52724400000002 +179.25000000000003 31 0.0 0 @@ -7461,15 +7843,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -150.52724400000002 +179.25000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -149.52724400000002 +178.25000000000003 31 0.0 0 @@ -7479,15 +7861,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -149.52724400000002 +178.25000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -149.52724400000002 +178.25000000000003 31 0.0 0 @@ -7497,15 +7879,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -149.52724400000002 +178.25000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -150.52724400000002 +179.25000000000003 31 0.0 0 @@ -7515,15 +7897,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -150.52724400000002 +179.25000000000003 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -150.52724400000002 +179.25000000000003 31 0.0 0 @@ -7533,15 +7915,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -153.027244 +181.75 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -152.02724400000002 +180.75000000000003 31 0.0 0 @@ -7551,15 +7933,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -152.02724400000002 +180.75000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -152.02724400000002 +180.75000000000003 31 0.0 0 @@ -7569,15 +7951,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -152.02724400000002 +180.75000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -153.027244 +181.75 31 0.0 0 @@ -7587,15 +7969,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -153.027244 +181.75 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -153.027244 +181.75 31 0.0 0 @@ -7605,15 +7987,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -153.027244 +181.75 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -152.02724400000002 +180.75000000000003 31 0.0 0 @@ -7623,15 +8005,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -152.02724400000002 +180.75000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -152.02724400000002 +180.75000000000003 31 0.0 0 @@ -7641,15 +8023,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -152.02724400000002 +180.75000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -153.027244 +181.75 31 0.0 0 @@ -7659,15 +8041,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -153.027244 +181.75 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -153.027244 +181.75 31 0.0 0 @@ -7677,15 +8059,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -155.527244 +184.25 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -154.52724400000002 +183.25000000000003 31 0.0 0 @@ -7695,15 +8077,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -154.52724400000002 +183.25000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -154.52724400000002 +183.25000000000003 31 0.0 0 @@ -7713,15 +8095,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -154.52724400000002 +183.25000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -155.527244 +184.25 31 0.0 0 @@ -7731,15 +8113,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -155.527244 +184.25 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -155.527244 +184.25 31 0.0 0 @@ -7749,15 +8131,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -155.527244 +184.25 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -154.52724400000002 +183.25000000000003 31 0.0 0 @@ -7767,15 +8149,15 @@ LINE 8 0 10 -445.52325267042636 +585.5232526704262 20 -154.52724400000002 +183.25000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -154.52724400000002 +183.25000000000003 31 0.0 0 @@ -7785,15 +8167,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -154.52724400000002 +183.25000000000003 30 0.0 11 -446.52325267042636 +586.5232526704262 21 -155.527244 +184.25 31 0.0 0 @@ -7803,15 +8185,15 @@ LINE 8 0 10 -446.52325267042636 +586.5232526704262 20 -155.527244 +184.25 30 0.0 11 -445.52325267042636 +585.5232526704262 21 -155.527244 +184.25 31 0.0 0 @@ -7821,15 +8203,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -158.027244 +186.75 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -157.02724400000002 +185.75000000000003 31 0.0 0 @@ -7839,15 +8221,15 @@ LINE 8 0 10 -425.52325267042636 +565.5232526704264 20 -157.02724400000002 +185.75000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -157.02724400000002 +185.75000000000003 31 0.0 0 @@ -7857,15 +8239,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -157.02724400000002 +185.75000000000003 30 0.0 11 -426.52325267042636 +566.5232526704264 21 -158.027244 +186.75 31 0.0 0 @@ -7875,15 +8257,15 @@ LINE 8 0 10 -426.52325267042636 +566.5232526704264 20 -158.027244 +186.75 30 0.0 11 -425.52325267042636 +565.5232526704264 21 -158.027244 +186.75 31 0.0 0 @@ -7893,15 +8275,15 @@ LINE 8 0 10 -444.52325267042636 +584.5232526704264 20 -159.02724400000002 +187.75000000000003 30 0.0 11 -444.52325267042636 +584.5232526704264 21 -156.02724400000002 +184.75000000000003 31 0.0 0 @@ -7911,15 +8293,15 @@ LINE 8 0 10 -444.52325267042636 +584.5232526704264 20 -156.02724400000002 +184.75000000000003 30 0.0 11 -447.52325267042636 +587.5232526704262 21 -156.02724400000002 +184.75000000000003 31 0.0 0 @@ -7929,15 +8311,15 @@ LINE 8 0 10 -447.52325267042636 +587.5232526704262 20 -156.02724400000002 +184.75000000000003 30 0.0 11 -447.52325267042636 +587.5232526704262 21 -159.02724400000002 +187.75000000000003 31 0.0 0 @@ -7947,15 +8329,15 @@ LINE 8 0 10 -447.52325267042636 +587.5232526704262 20 -159.02724400000002 +187.75000000000003 30 0.0 11 -444.52325267042636 +584.5232526704264 21 -159.02724400000002 +187.75000000000003 31 0.0 0 @@ -7965,15 +8347,15 @@ LINE 8 0 10 -440.27325267042636 +580.2732526704264 20 -116.02724400000001 +144.75000000000003 30 0.0 11 -431.77325267042636 +571.7732526704262 21 -116.02724400000001 +144.75000000000003 31 0.0 0 @@ -7983,15 +8365,15 @@ LINE 8 0 10 -431.77325267042636 +571.7732526704262 20 -116.02724400000001 +144.75000000000003 30 0.0 11 -431.77325267042636 +571.7732526704262 21 -115.52724400000001 +144.25000000000003 31 0.0 0 @@ -8001,15 +8383,15 @@ LINE 8 0 10 -431.77325267042636 +571.7732526704262 20 -115.52724400000001 +144.25000000000003 30 0.0 11 -440.27325267042636 +580.2732526704264 21 -115.52724400000001 +144.25000000000003 31 0.0 0 @@ -8019,15 +8401,15 @@ LINE 8 0 10 -440.27325267042636 +580.2732526704264 20 -115.52724400000001 +144.25000000000003 30 0.0 11 -440.27325267042636 +580.2732526704264 21 -116.02724400000001 +144.75000000000003 31 0.0 0 @@ -8037,15 +8419,15 @@ LINE 8 0 10 -431.77325267042636 +571.7732526704262 20 -163.77724400000002 +192.50000000000003 30 0.0 11 -440.27325267042636 +580.2732526704264 21 -163.77724400000002 +192.50000000000003 31 0.0 0 @@ -8055,15 +8437,15 @@ LINE 8 0 10 -440.27325267042636 +580.2732526704264 20 -163.77724400000002 +192.50000000000003 30 0.0 11 -440.27325267042636 +580.2732526704264 21 -164.27724400000002 +193.00000000000003 31 0.0 0 @@ -8073,15 +8455,15 @@ LINE 8 0 10 -440.27325267042636 +580.2732526704264 20 -164.27724400000002 +193.00000000000003 30 0.0 11 -431.77325267042636 +571.7732526704262 21 -164.27724400000002 +193.00000000000003 31 0.0 0 @@ -8091,15 +8473,15 @@ LINE 8 0 10 -431.77325267042636 +571.7732526704262 20 -164.27724400000002 +193.00000000000003 30 0.0 11 -431.77325267042636 +571.7732526704262 21 -163.77724400000002 +192.50000000000003 31 0.0 0 @@ -8109,15 +8491,15 @@ LINE 8 0 10 -463.02325267042636 +603.0232526704264 20 -159.27724400000002 +188.00000000000003 30 0.0 11 -463.02325267042636 +603.0232526704264 21 -146.277244 +175.0 31 0.0 0 @@ -8127,15 +8509,15 @@ LINE 8 0 10 -463.02325267042636 +603.0232526704264 20 -146.277244 +175.0 30 0.0 11 -493.02325267042636 +633.0232526704262 21 -146.277244 +175.0 31 0.0 0 @@ -8145,15 +8527,15 @@ LINE 8 0 10 -493.02325267042636 +633.0232526704262 20 -146.277244 +175.0 30 0.0 11 -493.02325267042636 +633.0232526704262 21 -159.27724400000002 +188.00000000000003 31 0.0 0 @@ -8163,15 +8545,15 @@ LINE 8 0 10 -493.02325267042636 +633.0232526704262 20 -159.27724400000002 +188.00000000000003 30 0.0 11 -463.02325267042636 +603.0232526704264 21 -159.27724400000002 +188.00000000000003 31 0.0 0 @@ -8181,15 +8563,15 @@ LINE 8 0 10 -470.0914344886082 +610.0914344886081 20 -113.77724400000001 +142.50000000000003 30 0.0 11 -458.6823435795173 +598.6823435795171 21 -113.77724400000001 +142.50000000000003 31 0.0 0 @@ -8199,15 +8581,15 @@ LINE 8 0 10 -458.6823435795173 +598.6823435795171 20 -113.77724400000001 +142.50000000000003 30 0.0 11 -458.6823435795173 +598.6823435795171 21 -113.27724400000001 +142.00000000000003 31 0.0 0 @@ -8217,15 +8599,15 @@ LINE 8 0 10 -458.6823435795173 +598.6823435795171 20 -113.27724400000001 +142.00000000000003 30 0.0 11 -470.0914344886082 +610.0914344886081 21 -113.27724400000001 +142.00000000000003 31 0.0 0 @@ -8235,15 +8617,15 @@ LINE 8 0 10 -470.0914344886082 +610.0914344886081 20 -113.27724400000001 +142.00000000000003 30 0.0 11 -470.0914344886082 +610.0914344886081 21 -113.77724400000001 +142.50000000000003 31 0.0 0 @@ -8253,15 +8635,15 @@ LINE 8 0 10 -497.3641617613354 +637.3641617613355 20 -113.77724400000001 +142.50000000000003 30 0.0 11 -485.95507085224455 +625.9550708522444 21 -113.77724400000001 +142.50000000000003 31 0.0 0 @@ -8271,15 +8653,15 @@ LINE 8 0 10 -485.95507085224455 +625.9550708522444 20 -113.77724400000001 +142.50000000000003 30 0.0 11 -485.95507085224455 +625.9550708522444 21 -113.27724400000001 +142.00000000000003 31 0.0 0 @@ -8289,15 +8671,15 @@ LINE 8 0 10 -485.95507085224455 +625.9550708522444 20 -113.27724400000001 +142.00000000000003 30 0.0 11 -497.3641617613354 +637.3641617613355 21 -113.27724400000001 +142.00000000000003 31 0.0 0 @@ -8307,15 +8689,15 @@ LINE 8 0 10 -497.3641617613354 +637.3641617613355 20 -113.27724400000001 +142.00000000000003 30 0.0 11 -497.3641617613354 +637.3641617613355 21 -113.77724400000001 +142.50000000000003 31 0.0 0 @@ -8325,15 +8707,15 @@ LINE 8 0 10 -500.27325267042636 +640.2732526704264 20 -130.70906218181818 +159.43181818181822 30 0.0 11 -500.27325267042636 +640.2732526704264 21 -119.1181530909091 +147.84090909090912 31 0.0 0 @@ -8343,15 +8725,15 @@ LINE 8 0 10 -500.27325267042636 +640.2732526704264 20 -119.1181530909091 +147.84090909090912 30 0.0 11 -500.77325267042636 +640.7732526704264 21 -119.1181530909091 +147.84090909090912 31 0.0 0 @@ -8361,15 +8743,15 @@ LINE 8 0 10 -500.77325267042636 +640.7732526704264 20 -119.1181530909091 +147.84090909090912 30 0.0 11 -500.77325267042636 +640.7732526704264 21 -130.70906218181818 +159.43181818181822 31 0.0 0 @@ -8379,15 +8761,15 @@ LINE 8 0 10 -500.77325267042636 +640.7732526704264 20 -130.70906218181818 +159.43181818181822 30 0.0 11 -500.27325267042636 +640.2732526704264 21 -130.70906218181818 +159.43181818181822 31 0.0 0 @@ -8397,15 +8779,15 @@ LINE 8 0 10 -500.27325267042636 +640.2732526704264 20 -158.43633490909093 +187.15909090909093 30 0.0 11 -500.27325267042636 +640.2732526704264 21 -146.8454258181818 +175.5681818181818 31 0.0 0 @@ -8415,15 +8797,15 @@ LINE 8 0 10 -500.27325267042636 +640.2732526704264 20 -146.8454258181818 +175.5681818181818 30 0.0 11 -500.77325267042636 +640.7732526704264 21 -146.8454258181818 +175.5681818181818 31 0.0 0 @@ -8433,15 +8815,15 @@ LINE 8 0 10 -500.77325267042636 +640.7732526704264 20 -146.8454258181818 +175.5681818181818 30 0.0 11 -500.77325267042636 +640.7732526704264 21 -158.43633490909093 +187.15909090909093 31 0.0 0 @@ -8451,15 +8833,15 @@ LINE 8 0 10 -500.77325267042636 +640.7732526704264 20 -158.43633490909093 +187.15909090909093 30 0.0 11 -500.27325267042636 +640.2732526704264 21 -158.43633490909093 +187.15909090909093 31 0.0 0 @@ -8469,15 +8851,15 @@ LINE 8 0 10 -340.52325267042636 +480.5232526704263 20 -121.52724400000001 +150.25 30 0.0 11 -340.52325267042636 +480.5232526704263 21 -118.52724400000001 +147.25000000000003 31 0.0 0 @@ -8487,15 +8869,15 @@ LINE 8 0 10 -340.52325267042636 +480.5232526704263 20 -118.52724400000001 +147.25000000000003 30 0.0 11 -343.52325267042636 +483.5232526704263 21 -118.52724400000001 +147.25000000000003 31 0.0 0 @@ -8505,15 +8887,15 @@ LINE 8 0 10 -343.52325267042636 +483.5232526704263 20 -118.52724400000001 +147.25000000000003 30 0.0 11 -343.52325267042636 +483.5232526704263 21 -121.52724400000001 +150.25 31 0.0 0 @@ -8523,15 +8905,15 @@ LINE 8 0 10 -343.52325267042636 +483.5232526704263 20 -121.52724400000001 +150.25 30 0.0 11 -340.52325267042636 +480.5232526704263 21 -121.52724400000001 +150.25 31 0.0 0 @@ -8541,15 +8923,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -120.52724400000001 +149.25000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -119.52724400000001 +148.25 31 0.0 0 @@ -8559,15 +8941,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -119.52724400000001 +148.25 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -119.52724400000001 +148.25 31 0.0 0 @@ -8577,15 +8959,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -119.52724400000001 +148.25 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -120.52724400000001 +149.25000000000003 31 0.0 0 @@ -8595,15 +8977,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -120.52724400000001 +149.25000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -120.52724400000001 +149.25000000000003 31 0.0 0 @@ -8613,15 +8995,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -123.02724400000001 +151.75000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -122.02724400000001 +150.75000000000003 31 0.0 0 @@ -8631,15 +9013,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -122.02724400000001 +150.75000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -122.02724400000001 +150.75000000000003 31 0.0 0 @@ -8649,15 +9031,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -122.02724400000001 +150.75000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -123.02724400000001 +151.75000000000003 31 0.0 0 @@ -8667,15 +9049,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -123.02724400000001 +151.75000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -123.02724400000001 +151.75000000000003 31 0.0 0 @@ -8685,15 +9067,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -123.02724400000001 +151.75000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -122.02724400000001 +150.75000000000003 31 0.0 0 @@ -8703,15 +9085,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -122.02724400000001 +150.75000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -122.02724400000001 +150.75000000000003 31 0.0 0 @@ -8721,15 +9103,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -122.02724400000001 +150.75000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -123.02724400000001 +151.75000000000003 31 0.0 0 @@ -8739,15 +9121,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -123.02724400000001 +151.75000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -123.02724400000001 +151.75000000000003 31 0.0 0 @@ -8757,15 +9139,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -125.52724400000001 +154.25000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -124.52724400000001 +153.25000000000003 31 0.0 0 @@ -8775,15 +9157,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -124.52724400000001 +153.25000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -124.52724400000001 +153.25000000000003 31 0.0 0 @@ -8793,15 +9175,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -124.52724400000001 +153.25000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -125.52724400000001 +154.25000000000003 31 0.0 0 @@ -8811,15 +9193,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -125.52724400000001 +154.25000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -125.52724400000001 +154.25000000000003 31 0.0 0 @@ -8829,15 +9211,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -125.52724400000001 +154.25000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -124.52724400000001 +153.25000000000003 31 0.0 0 @@ -8847,15 +9229,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -124.52724400000001 +153.25000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -124.52724400000001 +153.25000000000003 31 0.0 0 @@ -8865,15 +9247,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -124.52724400000001 +153.25000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -125.52724400000001 +154.25000000000003 31 0.0 0 @@ -8883,15 +9265,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -125.52724400000001 +154.25000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -125.52724400000001 +154.25000000000003 31 0.0 0 @@ -8901,15 +9283,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -128.02724400000002 +156.75 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -127.02724400000001 +155.75000000000003 31 0.0 0 @@ -8919,15 +9301,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -127.02724400000001 +155.75000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -127.02724400000001 +155.75000000000003 31 0.0 0 @@ -8937,15 +9319,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -127.02724400000001 +155.75000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -128.02724400000002 +156.75 31 0.0 0 @@ -8955,15 +9337,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -128.02724400000002 +156.75 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -128.02724400000002 +156.75 31 0.0 0 @@ -8973,15 +9355,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -128.02724400000002 +156.75 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -127.02724400000001 +155.75000000000003 31 0.0 0 @@ -8991,15 +9373,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -127.02724400000001 +155.75000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -127.02724400000001 +155.75000000000003 31 0.0 0 @@ -9009,15 +9391,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -127.02724400000001 +155.75000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -128.02724400000002 +156.75 31 0.0 0 @@ -9027,15 +9409,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -128.02724400000002 +156.75 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -128.02724400000002 +156.75 31 0.0 0 @@ -9045,15 +9427,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -130.52724400000002 +159.25 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -129.527244 +158.25000000000003 31 0.0 0 @@ -9063,15 +9445,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -129.527244 +158.25000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -129.527244 +158.25000000000003 31 0.0 0 @@ -9081,15 +9463,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -129.527244 +158.25000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -130.52724400000002 +159.25 31 0.0 0 @@ -9099,15 +9481,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -130.52724400000002 +159.25 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -130.52724400000002 +159.25 31 0.0 0 @@ -9117,15 +9499,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -130.52724400000002 +159.25 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -129.527244 +158.25000000000003 31 0.0 0 @@ -9135,15 +9517,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -129.527244 +158.25000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -129.527244 +158.25000000000003 31 0.0 0 @@ -9153,15 +9535,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -129.527244 +158.25000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -130.52724400000002 +159.25 31 0.0 0 @@ -9171,15 +9553,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -130.52724400000002 +159.25 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -130.52724400000002 +159.25 31 0.0 0 @@ -9189,15 +9571,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -133.027244 +161.75 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -132.027244 +160.75000000000003 31 0.0 0 @@ -9207,15 +9589,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -132.027244 +160.75000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -132.027244 +160.75000000000003 31 0.0 0 @@ -9225,15 +9607,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -132.027244 +160.75000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -133.027244 +161.75 31 0.0 0 @@ -9243,15 +9625,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -133.027244 +161.75 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -133.027244 +161.75 31 0.0 0 @@ -9261,15 +9643,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -133.027244 +161.75 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -132.027244 +160.75000000000003 31 0.0 0 @@ -9279,15 +9661,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -132.027244 +160.75000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -132.027244 +160.75000000000003 31 0.0 0 @@ -9297,15 +9679,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -132.027244 +160.75000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -133.027244 +161.75 31 0.0 0 @@ -9315,15 +9697,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -133.027244 +161.75 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -133.027244 +161.75 31 0.0 0 @@ -9333,15 +9715,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -135.527244 +164.25000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -134.52724400000002 +163.25000000000003 31 0.0 0 @@ -9351,15 +9733,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -134.52724400000002 +163.25000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -134.52724400000002 +163.25000000000003 31 0.0 0 @@ -9369,15 +9751,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -134.52724400000002 +163.25000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -135.527244 +164.25000000000003 31 0.0 0 @@ -9387,15 +9769,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -135.527244 +164.25000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -135.527244 +164.25000000000003 31 0.0 0 @@ -9405,15 +9787,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -135.527244 +164.25000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -134.52724400000002 +163.25000000000003 31 0.0 0 @@ -9423,15 +9805,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -134.52724400000002 +163.25000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -134.52724400000002 +163.25000000000003 31 0.0 0 @@ -9441,15 +9823,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -134.52724400000002 +163.25000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -135.527244 +164.25000000000003 31 0.0 0 @@ -9459,15 +9841,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -135.527244 +164.25000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -135.527244 +164.25000000000003 31 0.0 0 @@ -9477,15 +9859,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -138.02724400000002 +166.75000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -137.027244 +165.75 31 0.0 0 @@ -9495,15 +9877,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -137.027244 +165.75 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -137.027244 +165.75 31 0.0 0 @@ -9513,15 +9895,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -137.027244 +165.75 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -138.02724400000002 +166.75000000000003 31 0.0 0 @@ -9531,15 +9913,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -138.02724400000002 +166.75000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -138.02724400000002 +166.75000000000003 31 0.0 0 @@ -9549,15 +9931,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -138.02724400000002 +166.75000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -137.027244 +165.75 31 0.0 0 @@ -9567,15 +9949,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -137.027244 +165.75 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -137.027244 +165.75 31 0.0 0 @@ -9585,15 +9967,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -137.027244 +165.75 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -138.02724400000002 +166.75000000000003 31 0.0 0 @@ -9603,15 +9985,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -138.02724400000002 +166.75000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -138.02724400000002 +166.75000000000003 31 0.0 0 @@ -9621,15 +10003,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -140.52724400000002 +169.25000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -139.527244 +168.25 31 0.0 0 @@ -9639,15 +10021,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -139.527244 +168.25 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -139.527244 +168.25 31 0.0 0 @@ -9657,15 +10039,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -139.527244 +168.25 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -140.52724400000002 +169.25000000000003 31 0.0 0 @@ -9675,15 +10057,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -140.52724400000002 +169.25000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -140.52724400000002 +169.25000000000003 31 0.0 0 @@ -9693,15 +10075,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -140.52724400000002 +169.25000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -139.527244 +168.25 31 0.0 0 @@ -9711,15 +10093,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -139.527244 +168.25 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -139.527244 +168.25 31 0.0 0 @@ -9729,15 +10111,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -139.527244 +168.25 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -140.52724400000002 +169.25000000000003 31 0.0 0 @@ -9747,15 +10129,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -140.52724400000002 +169.25000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -140.52724400000002 +169.25000000000003 31 0.0 0 @@ -9765,15 +10147,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -143.02724400000002 +171.75000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -142.027244 +170.75 31 0.0 0 @@ -9783,15 +10165,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -142.027244 +170.75 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -142.027244 +170.75 31 0.0 0 @@ -9801,15 +10183,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -142.027244 +170.75 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -143.02724400000002 +171.75000000000003 31 0.0 0 @@ -9819,15 +10201,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -143.02724400000002 +171.75000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -143.02724400000002 +171.75000000000003 31 0.0 0 @@ -9837,15 +10219,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -143.02724400000002 +171.75000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -142.027244 +170.75 31 0.0 0 @@ -9855,15 +10237,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -142.027244 +170.75 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -142.027244 +170.75 31 0.0 0 @@ -9873,15 +10255,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -142.027244 +170.75 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -143.02724400000002 +171.75000000000003 31 0.0 0 @@ -9891,15 +10273,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -143.02724400000002 +171.75000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -143.02724400000002 +171.75000000000003 31 0.0 0 @@ -9909,15 +10291,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -145.52724400000002 +174.25000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -144.527244 +173.25000000000003 31 0.0 0 @@ -9927,15 +10309,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -144.527244 +173.25000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -144.527244 +173.25000000000003 31 0.0 0 @@ -9945,15 +10327,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -144.527244 +173.25000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -145.52724400000002 +174.25000000000003 31 0.0 0 @@ -9963,15 +10345,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -145.52724400000002 +174.25000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -145.52724400000002 +174.25000000000003 31 0.0 0 @@ -9981,15 +10363,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -145.52724400000002 +174.25000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -144.527244 +173.25000000000003 31 0.0 0 @@ -9999,15 +10381,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -144.527244 +173.25000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -144.527244 +173.25000000000003 31 0.0 0 @@ -10017,15 +10399,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -144.527244 +173.25000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -145.52724400000002 +174.25000000000003 31 0.0 0 @@ -10035,15 +10417,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -145.52724400000002 +174.25000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -145.52724400000002 +174.25000000000003 31 0.0 0 @@ -10053,15 +10435,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -148.02724400000002 +176.75000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -147.02724400000002 +175.75000000000003 31 0.0 0 @@ -10071,15 +10453,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -147.02724400000002 +175.75000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -147.02724400000002 +175.75000000000003 31 0.0 0 @@ -10089,15 +10471,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -147.02724400000002 +175.75000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -148.02724400000002 +176.75000000000003 31 0.0 0 @@ -10107,15 +10489,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -148.02724400000002 +176.75000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -148.02724400000002 +176.75000000000003 31 0.0 0 @@ -10125,15 +10507,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -148.02724400000002 +176.75000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -147.02724400000002 +175.75000000000003 31 0.0 0 @@ -10143,15 +10525,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -147.02724400000002 +175.75000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -147.02724400000002 +175.75000000000003 31 0.0 0 @@ -10161,15 +10543,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -147.02724400000002 +175.75000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -148.02724400000002 +176.75000000000003 31 0.0 0 @@ -10179,15 +10561,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -148.02724400000002 +176.75000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -148.02724400000002 +176.75000000000003 31 0.0 0 @@ -10197,15 +10579,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -150.52724400000002 +179.25000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -149.52724400000002 +178.25000000000003 31 0.0 0 @@ -10215,15 +10597,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -149.52724400000002 +178.25000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -149.52724400000002 +178.25000000000003 31 0.0 0 @@ -10233,15 +10615,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -149.52724400000002 +178.25000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -150.52724400000002 +179.25000000000003 31 0.0 0 @@ -10251,15 +10633,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -150.52724400000002 +179.25000000000003 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -150.52724400000002 +179.25000000000003 31 0.0 0 @@ -10269,15 +10651,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -150.52724400000002 +179.25000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -149.52724400000002 +178.25000000000003 31 0.0 0 @@ -10287,15 +10669,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -149.52724400000002 +178.25000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -149.52724400000002 +178.25000000000003 31 0.0 0 @@ -10305,15 +10687,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -149.52724400000002 +178.25000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -150.52724400000002 +179.25000000000003 31 0.0 0 @@ -10323,15 +10705,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -150.52724400000002 +179.25000000000003 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -150.52724400000002 +179.25000000000003 31 0.0 0 @@ -10341,15 +10723,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -153.027244 +181.75 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -152.02724400000002 +180.75000000000003 31 0.0 0 @@ -10359,15 +10741,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -152.02724400000002 +180.75000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -152.02724400000002 +180.75000000000003 31 0.0 0 @@ -10377,15 +10759,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -152.02724400000002 +180.75000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -153.027244 +181.75 31 0.0 0 @@ -10395,15 +10777,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -153.027244 +181.75 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -153.027244 +181.75 31 0.0 0 @@ -10413,15 +10795,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -153.027244 +181.75 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -152.02724400000002 +180.75000000000003 31 0.0 0 @@ -10431,15 +10813,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -152.02724400000002 +180.75000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -152.02724400000002 +180.75000000000003 31 0.0 0 @@ -10449,15 +10831,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -152.02724400000002 +180.75000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -153.027244 +181.75 31 0.0 0 @@ -10467,15 +10849,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -153.027244 +181.75 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -153.027244 +181.75 31 0.0 0 @@ -10485,15 +10867,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -155.527244 +184.25 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -154.52724400000002 +183.25000000000003 31 0.0 0 @@ -10503,15 +10885,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -154.52724400000002 +183.25000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -154.52724400000002 +183.25000000000003 31 0.0 0 @@ -10521,15 +10903,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -154.52724400000002 +183.25000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -155.527244 +184.25 31 0.0 0 @@ -10539,15 +10921,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -155.527244 +184.25 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -155.527244 +184.25 31 0.0 0 @@ -10557,15 +10939,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -155.527244 +184.25 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -154.52724400000002 +183.25000000000003 31 0.0 0 @@ -10575,15 +10957,15 @@ LINE 8 0 10 -361.52325267042636 +501.5232526704263 20 -154.52724400000002 +183.25000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -154.52724400000002 +183.25000000000003 31 0.0 0 @@ -10593,15 +10975,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -154.52724400000002 +183.25000000000003 30 0.0 11 -362.52325267042636 +502.5232526704263 21 -155.527244 +184.25 31 0.0 0 @@ -10611,15 +10993,15 @@ LINE 8 0 10 -362.52325267042636 +502.5232526704263 20 -155.527244 +184.25 30 0.0 11 -361.52325267042636 +501.5232526704263 21 -155.527244 +184.25 31 0.0 0 @@ -10629,15 +11011,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -158.027244 +186.75 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -157.02724400000002 +185.75000000000003 31 0.0 0 @@ -10647,15 +11029,15 @@ LINE 8 0 10 -341.5232526704263 +481.5232526704263 20 -157.02724400000002 +185.75000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -157.02724400000002 +185.75000000000003 31 0.0 0 @@ -10665,15 +11047,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -157.02724400000002 +185.75000000000003 30 0.0 11 -342.52325267042636 +482.52325267042636 21 -158.027244 +186.75 31 0.0 0 @@ -10683,15 +11065,15 @@ LINE 8 0 10 -342.52325267042636 +482.52325267042636 20 -158.027244 +186.75 30 0.0 11 -341.5232526704263 +481.5232526704263 21 -158.027244 +186.75 31 0.0 0 @@ -10701,15 +11083,15 @@ LINE 8 0 10 -360.52325267042636 +500.5232526704263 20 -159.02724400000002 +187.75000000000003 30 0.0 11 -360.52325267042636 +500.5232526704263 21 -156.02724400000002 +184.75000000000003 31 0.0 0 @@ -10719,15 +11101,15 @@ LINE 8 0 10 -360.52325267042636 +500.5232526704263 20 -156.02724400000002 +184.75000000000003 30 0.0 11 -363.5232526704263 +503.5232526704263 21 -156.02724400000002 +184.75000000000003 31 0.0 0 @@ -10737,15 +11119,15 @@ LINE 8 0 10 -363.5232526704263 +503.5232526704263 20 -156.02724400000002 +184.75000000000003 30 0.0 11 -363.5232526704263 +503.5232526704263 21 -159.02724400000002 +187.75000000000003 31 0.0 0 @@ -10755,15 +11137,15 @@ LINE 8 0 10 -363.5232526704263 +503.5232526704263 20 -159.02724400000002 +187.75000000000003 30 0.0 11 -360.52325267042636 +500.5232526704263 21 -159.02724400000002 +187.75000000000003 31 0.0 0 @@ -10773,15 +11155,15 @@ LINE 8 0 10 -356.27325267042636 +496.27325267042636 20 -116.02724400000001 +144.75000000000003 30 0.0 11 -347.77325267042636 +487.7732526704263 21 -116.02724400000001 +144.75000000000003 31 0.0 0 @@ -10791,15 +11173,15 @@ LINE 8 0 10 -347.77325267042636 +487.7732526704263 20 -116.02724400000001 +144.75000000000003 30 0.0 11 -347.77325267042636 +487.7732526704263 21 -115.52724400000001 +144.25000000000003 31 0.0 0 @@ -10809,15 +11191,15 @@ LINE 8 0 10 -347.77325267042636 +487.7732526704263 20 -115.52724400000001 +144.25000000000003 30 0.0 11 -356.27325267042636 +496.27325267042636 21 -115.52724400000001 +144.25000000000003 31 0.0 0 @@ -10827,15 +11209,15 @@ LINE 8 0 10 -356.27325267042636 +496.27325267042636 20 -115.52724400000001 +144.25000000000003 30 0.0 11 -356.27325267042636 +496.27325267042636 21 -116.02724400000001 +144.75000000000003 31 0.0 0 @@ -10845,15 +11227,15 @@ LINE 8 0 10 -347.77325267042636 +487.7732526704263 20 -163.77724400000002 +192.50000000000003 30 0.0 11 -356.27325267042636 +496.27325267042636 21 -163.77724400000002 +192.50000000000003 31 0.0 0 @@ -10863,15 +11245,15 @@ LINE 8 0 10 -356.27325267042636 +496.27325267042636 20 -163.77724400000002 +192.50000000000003 30 0.0 11 -356.27325267042636 +496.27325267042636 21 -164.27724400000002 +193.00000000000003 31 0.0 0 @@ -10881,15 +11263,15 @@ LINE 8 0 10 -356.27325267042636 +496.27325267042636 20 -164.27724400000002 +193.00000000000003 30 0.0 11 -347.77325267042636 +487.7732526704263 21 -164.27724400000002 +193.00000000000003 31 0.0 0 @@ -10899,15 +11281,15 @@ LINE 8 0 10 -347.77325267042636 +487.7732526704263 20 -164.27724400000002 +193.00000000000003 30 0.0 11 -347.77325267042636 +487.7732526704263 21 -163.77724400000002 +192.50000000000003 31 0.0 0 @@ -10917,15 +11299,15 @@ LINE 8 0 10 -332.5232526704263 +472.5232526704263 20 -119.3681530909091 +148.09090909090912 30 0.0 11 -337.52325267042636 +477.5232526704263 21 -119.3681530909091 +148.09090909090912 31 0.0 0 @@ -10935,15 +11317,15 @@ LINE 8 0 10 -337.52325267042636 +477.5232526704263 20 -119.3681530909091 +148.09090909090912 30 0.0 11 -337.52325267042636 +477.5232526704263 21 -130.45906218181818 +159.1818181818182 31 0.0 0 @@ -10953,15 +11335,15 @@ LINE 8 0 10 -337.52325267042636 +477.5232526704263 20 -130.45906218181818 +159.1818181818182 30 0.0 11 -332.5232526704263 +472.5232526704263 21 -130.45906218181818 +159.1818181818182 31 0.0 0 @@ -10971,15 +11353,15 @@ LINE 8 0 10 -332.5232526704263 +472.5232526704263 20 -147.0954258181818 +175.81818181818184 30 0.0 11 -337.52325267042636 +477.5232526704263 21 -147.0954258181818 +175.81818181818184 31 0.0 0 @@ -10989,15 +11371,15 @@ LINE 8 0 10 -337.52325267042636 +477.5232526704263 20 -147.0954258181818 +175.81818181818184 30 0.0 11 -337.52325267042636 +477.5232526704263 21 -158.18633490909093 +186.90909090909093 31 0.0 0 @@ -11007,15 +11389,15 @@ LINE 8 0 10 -337.52325267042636 +477.5232526704263 20 -158.18633490909093 +186.90909090909093 30 0.0 11 -332.5232526704263 +472.5232526704263 21 -158.18633490909093 +186.90909090909093 31 0.0 0 @@ -11025,15 +11407,15 @@ LINE 8 0 10 -357.77325267042636 +497.7732526704263 20 -92.27724400000001 +121.00000000000001 30 0.0 11 -361.27325267042636 +501.2732526704263 21 -92.27724400000001 +121.00000000000001 31 0.0 0 @@ -11043,15 +11425,15 @@ LINE 8 0 10 -361.27325267042636 +501.2732526704263 20 -92.27724400000001 +121.00000000000001 30 0.0 11 -361.27325267042636 +501.2732526704263 21 -100.27724400000001 +129.0 31 0.0 0 @@ -11061,15 +11443,15 @@ LINE 8 0 10 -361.27325267042636 +501.2732526704263 20 -100.27724400000001 +129.0 30 0.0 11 -357.77325267042636 +497.7732526704263 21 -100.27724400000001 +129.0 31 0.0 0 diff --git a/rocolib/output/BoatWithServoMountAndStack/tree.png b/rocolib/output/BoatWithServoMountAndStack/tree.png index 283aaab5899549394022e9af6e29d24a5929becb..04f76ca4cbd0f299b4f52d8a34a18fa34ea12992 100644 Binary files a/rocolib/output/BoatWithServoMountAndStack/tree.png and b/rocolib/output/BoatWithServoMountAndStack/tree.png differ diff --git a/rocolib/output/ServoMountWithArms/graph-anim.svg b/rocolib/output/ServoMountWithArms/graph-anim.svg new file mode 100644 index 0000000000000000000000000000000000000000..0ee3a00b498f44c45a48eba4a3c99971f65335e4 --- /dev/null +++ b/rocolib/output/ServoMountWithArms/graph-anim.svg @@ -0,0 +1,53 @@ +<?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="98.000000mm" version="1.1" viewBox="0.000000 0.000000 214.000000 98.000000" width="214.000000mm"> + <defs/> + <line stroke="#000000" x1="57.00000000000001" x2="0.0" y1="0.0" y2="0.0"/> + <line opacity="0.5" stroke="#ff0000" x1="57.00000000000001" x2="57.00000000000001" y1="0.0" y2="24.000000000000004"/> + <line stroke="#000000" x1="0.0" x2="57.00000000000001" y1="24.000000000000004" y2="24.000000000000004"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="0.0" y2="24.000000000000004"/> + <line stroke="#000000" x1="57.00000000000001" x2="90.0" y1="24.000000000000004" y2="24.000000000000004"/> + <line stroke="#000000" x1="90.0" x2="57.00000000000001" y1="0.0" y2="0.0"/> + <line stroke="#000000" x1="124.00000000000003" x2="90.0" y1="0.0" y2="0.0"/> + <line opacity="0.5" stroke="#0000ff" x1="90.0" x2="124.00000000000003" y1="24.000000000000004" y2="24.000000000000004"/> + <line stroke="#000000" x1="157.0" x2="124.00000000000003" y1="0.0" y2="0.0"/> + <line opacity="0.5" stroke="#ff0000" x1="157.0" x2="157.0" y1="24.000000000000004" y2="0.0"/> + <line stroke="#000000" x1="124.00000000000003" x2="157.0" y1="24.000000000000004" y2="24.000000000000004"/> + <line stroke="#000000" x1="157.0" x2="214.0" y1="24.000000000000004" y2="24.000000000000004"/> + <line stroke="#000000" x1="214.0" x2="157.0" y1="0.0" y2="0.0"/> + <line stroke="#000000" x1="214.0" x2="214.0" y1="24.000000000000004" y2="0.0"/> + <line stroke="#000000" x1="90.0" x2="90.0" y1="24.000000000000004" y2="44.00000000000001"/> + <line stroke="#000000" x1="124.00000000000003" x2="124.00000000000003" y1="44.00000000000001" y2="24.000000000000004"/> + <line opacity="0.5" stroke="#0000ff" x1="90.0" x2="124.00000000000003" y1="44.00000000000001" y2="44.00000000000001"/> + <line stroke="#000000" x1="90.0" x2="90.0" y1="44.00000000000001" y2="68.0"/> + <line stroke="#000000" x1="124.00000000000003" x2="124.00000000000003" y1="68.0" y2="44.00000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="90.0" x2="124.00000000000003" y1="68.0" y2="68.0"/> + <line stroke="#000000" x1="90.0" x2="90.0" y1="68.0" y2="88.00000000000001"/> + <line stroke="#000000" x1="124.00000000000003" x2="124.00000000000003" y1="88.00000000000001" y2="68.0"/> + <line opacity="0.5" stroke="#0000ff" x1="124.00000000000003" x2="90.0" y1="88.00000000000001" y2="88.00000000000001"/> + <line stroke="#000000" x1="124.00000000000003" x2="124.00000000000003" y1="98.00000000000001" y2="88.00000000000001"/> + <line stroke="#000000" x1="90.0" x2="124.00000000000003" y1="98.00000000000001" y2="98.00000000000001"/> + <line stroke="#000000" x1="90.0" x2="90.0" y1="88.00000000000001" y2="98.00000000000001"/> + <line stroke="#888888" x1="112.91666666666669" x2="101.08333333333336" y1="7.749999999999998" y2="7.750000000000002"/> + <line stroke="#888888" x1="101.08333333333336" x2="101.08333333333336" y1="7.750000000000002" y2="7.25"/> + <line stroke="#888888" x1="101.08333333333336" x2="112.91666666666669" y1="7.25" y2="7.249999999999998"/> + <line stroke="#888888" x1="112.91666666666669" x2="112.91666666666669" y1="7.249999999999998" y2="7.749999999999998"/> + <line stroke="#888888" x1="101.00000000000001" x2="101.00000000000001" y1="43.00000000000001" y2="39.00000000000001"/> + <line stroke="#888888" x1="101.00000000000001" x2="113.00000000000001" y1="39.00000000000001" y2="39.00000000000001"/> + <line stroke="#888888" x1="113.00000000000001" x2="113.00000000000001" y1="39.00000000000001" y2="43.00000000000001"/> + <line stroke="#888888" x1="113.00000000000001" x2="101.00000000000001" y1="43.00000000000001" y2="43.00000000000001"/> + <line stroke="#888888" x1="102.50000000000001" x2="102.50000000000001" y1="31.000000000000007" y2="27.000000000000004"/> + <line stroke="#888888" x1="102.50000000000001" x2="111.5" y1="27.000000000000004" y2="27.000000000000004"/> + <line stroke="#888888" x1="111.5" x2="111.5" y1="27.000000000000004" y2="31.000000000000007"/> + <line stroke="#888888" x1="111.5" x2="102.50000000000001" y1="31.000000000000007" y2="31.000000000000007"/> + <line stroke="#888888" x1="101.00000000000001" x2="101.00000000000001" y1="67.50000000000001" y2="44.50000000000001"/> + <line stroke="#888888" x1="101.00000000000001" x2="113.00000000000001" y1="44.50000000000001" y2="44.50000000000001"/> + <line stroke="#888888" x1="113.00000000000001" x2="113.00000000000001" y1="44.50000000000001" y2="67.50000000000001"/> + <line stroke="#888888" x1="113.00000000000001" x2="101.00000000000001" y1="67.50000000000001" y2="67.50000000000001"/> + <line stroke="#888888" x1="101.00000000000001" x2="101.00000000000001" y1="73.0" y2="69.00000000000001"/> + <line stroke="#888888" x1="101.00000000000001" x2="113.00000000000001" y1="69.00000000000001" y2="69.00000000000001"/> + <line stroke="#888888" x1="113.00000000000001" x2="113.00000000000001" y1="69.00000000000001" y2="73.0"/> + <line stroke="#888888" x1="113.00000000000001" x2="101.00000000000001" y1="73.0" y2="73.0"/> + <line stroke="#888888" x1="101.33333333333336" x2="101.33333333333336" y1="95.5" y2="90.50000000000001"/> + <line stroke="#888888" x1="101.33333333333336" x2="112.66666666666669" y1="90.50000000000001" y2="90.50000000000001"/> + <line stroke="#888888" x1="112.66666666666669" x2="112.66666666666669" y1="90.50000000000001" y2="95.5"/> +</svg> diff --git a/rocolib/output/ServoMountWithArms/graph-autofold-default.dxf b/rocolib/output/ServoMountWithArms/graph-autofold-default.dxf new file mode 100644 index 0000000000000000000000000000000000000000..fbf6a63243aed24a267e4f97ccb37dc7694366dc --- /dev/null +++ b/rocolib/output/ServoMountWithArms/graph-autofold-default.dxf @@ -0,0 +1,1866 @@ + 0 +SECTION + 2 +HEADER + 9 +$ACADVER + 1 +AC1009 + 9 +$INSBASE + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMIN + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMAX + 10 +100.0 + 20 +100.0 + 30 +0.0 + 9 +$UNITMODE + 70 +0 + 9 +$AUNITS + 70 +0 + 9 +$ANGBASE + 50 +0.0 + 9 +$ANGDIR + 70 +0 + 0 +ENDSEC + 0 +SECTION + 2 +TABLES + 0 +TABLE + 2 +LTYPE + 70 +20 + 0 +LTYPE + 2 +CONTINUOUS + 70 +0 + 3 +Solid + 72 +65 + 73 +0 + 40 +0.0 + 0 +LTYPE + 2 +CENTER + 70 +0 + 3 +Center ____ _ ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +2.0 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +CENTERX2 + 70 +0 + 3 +Center (2x) ________ __ ________ __ ________ + 72 +65 + 73 +4 + 40 +3.5 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +CENTER2 + 70 +0 + 3 +Center (.5x) ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +1.0 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHED + 70 +0 + 3 +Dashed __ __ __ __ __ __ __ __ __ __ __ __ __ _ + 72 +65 + 73 +2 + 40 +0.6 + 49 +0.5 + 49 +-0.1 + 0 +LTYPE + 2 +DASHEDX2 + 70 +0 + 3 +Dashed (2x) ____ ____ ____ ____ ____ ____ + 72 +65 + 73 +2 + 40 +1.2 + 49 +1.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHED2 + 70 +0 + 3 +Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 +65 + 73 +2 + 40 +0.3 + 49 +0.25 + 49 +-0.05 + 0 +LTYPE + 2 +PHANTOM + 70 +0 + 3 +Phantom ______ __ __ ______ __ __ ______ + 72 +65 + 73 +6 + 40 +2.5 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOMX2 + 70 +0 + 3 +Phantom (2x)____________ ____ ____ ____________ + 72 +65 + 73 +6 + 40 +4.25 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOM2 + 70 +0 + 3 +Phantom (.5x) ___ _ _ ___ _ _ ___ _ _ ___ _ _ ___ + 72 +65 + 73 +6 + 40 +1.25 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHDOT + 70 +0 + 3 +Dash dot __ . __ . __ . __ . __ . __ . __ . __ + 72 +65 + 73 +4 + 40 +1.4 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOTX2 + 70 +0 + 3 +Dash dot (2x) ____ . ____ . ____ . ____ + 72 +65 + 73 +4 + 40 +2.4 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOT2 + 70 +0 + 3 +Dash dot (.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +4 + 40 +0.7 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOT + 70 +0 + 3 +Dot . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DOTX2 + 70 +0 + 3 +Dot (2x) . . . . . . . . + 72 +65 + 73 +2 + 40 +0.4 + 49 +0.0 + 49 +-0.4 + 0 +LTYPE + 2 +DOT2 + 70 +0 + 3 +Dot (.5) . . . . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DIVIDE + 70 +0 + 3 +Divide __ . . __ . . __ . . __ . . __ . . __ + 72 +65 + 73 +6 + 40 +1.6 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDEX2 + 70 +0 + 3 +Divide (2x) ____ . . ____ . . ____ . . ____ + 72 +65 + 73 +6 + 40 +2.6 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDE2 + 70 +0 + 3 +Divide(.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +6 + 40 +0.8 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOTTED + 70 +0 + 3 + + 72 +65 + 73 +2 + 40 +1.0 + 49 +0.0 + 49 +-1.0 + 0 +ENDTAB + 0 +TABLE + 2 +LAYER + 70 +8 + 0 +LAYER + 2 +DIMENSIONS + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEBACKGROUND + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLECONTENT + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEGRID + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +VIEWPORTS + 70 +0 + 62 +7 + 6 +CONTINUOUS + 0 +LAYER + 2 +0 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +-90 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +90 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +ENDTAB + 0 +TABLE + 2 +STYLE + 70 +12 + 0 +STYLE + 2 +STANDARD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbd.ttf + 4 + + 0 +STYLE + 2 +ARIAL_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariali.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbi.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BLACK + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariblk.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeur.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeui.ttf + 4 + + 0 +STYLE + 2 +TIMES + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +times.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbd.ttf + 4 + + 0 +STYLE + 2 +TIMES_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesi.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbi.ttf + 4 + + 0 +ENDTAB + 0 +TABLE + 2 +VIEW + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +APPID + 70 +1 + 0 +APPID + 2 +DXFWRITE + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +VPORT + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +UCS + 70 +0 + 0 +ENDTAB + 0 +ENDSEC + 0 +SECTION + 2 +BLOCKS + 0 +ENDSEC + 0 +SECTION + 2 +ENTITIES + 0 +VIEWPORT + 8 +VIEWPORTS + 67 +1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +1.0 + 41 +1.0 + 68 +1 + 69 +1 +1001 +ACAD +1000 +MVIEW +1002 +{ +1070 +16 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1040 +0.0 +1040 +1.0 +1040 +0.0 +1040 +0.0 +1040 +50.0 +1040 +0.0 +1040 +0.0 +1070 +0 +1070 +100 +1070 +1 +1070 +3 +1070 +0 +1070 +0 +1070 +0 +1070 +0 +1040 +0.0 +1040 +0.0 +1040 +0.0 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1070 +0 +1002 +{ +1002 +} +1002 +} + 0 +LINE + 62 +5 + 8 +cut + 10 +57.00000000000001 + 20 +0.0 + 30 +0.0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-90 + 10 +57.00000000000001 + 20 +0.0 + 30 +0.0 + 11 +57.00000000000001 + 21 +24.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +0.0 + 20 +24.000000000000004 + 30 +0.0 + 11 +57.00000000000001 + 21 +24.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +0.0 + 20 +0.0 + 30 +0.0 + 11 +0.0 + 21 +24.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +57.00000000000001 + 20 +24.000000000000004 + 30 +0.0 + 11 +90.0 + 21 +24.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +90.0 + 20 +0.0 + 30 +0.0 + 11 +57.00000000000001 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +124.00000000000003 + 20 +0.0 + 30 +0.0 + 11 +90.0 + 21 +0.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +90.0 + 20 +24.000000000000004 + 30 +0.0 + 11 +124.00000000000003 + 21 +24.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +157.0 + 20 +0.0 + 30 +0.0 + 11 +124.00000000000003 + 21 +0.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-90 + 10 +157.0 + 20 +24.000000000000004 + 30 +0.0 + 11 +157.0 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +124.00000000000003 + 20 +24.000000000000004 + 30 +0.0 + 11 +157.0 + 21 +24.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +157.0 + 20 +24.000000000000004 + 30 +0.0 + 11 +214.0 + 21 +24.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +214.0 + 20 +0.0 + 30 +0.0 + 11 +157.0 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +214.0 + 20 +24.000000000000004 + 30 +0.0 + 11 +214.0 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +90.0 + 20 +24.000000000000004 + 30 +0.0 + 11 +90.0 + 21 +44.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +124.00000000000003 + 20 +44.00000000000001 + 30 +0.0 + 11 +124.00000000000003 + 21 +24.000000000000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +90.0 + 20 +44.00000000000001 + 30 +0.0 + 11 +124.00000000000003 + 21 +44.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +90.0 + 20 +44.00000000000001 + 30 +0.0 + 11 +90.0 + 21 +68.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +124.00000000000003 + 20 +68.0 + 30 +0.0 + 11 +124.00000000000003 + 21 +44.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +90.0 + 20 +68.0 + 30 +0.0 + 11 +124.00000000000003 + 21 +68.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +90.0 + 20 +68.0 + 30 +0.0 + 11 +90.0 + 21 +88.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +124.00000000000003 + 20 +88.00000000000001 + 30 +0.0 + 11 +124.00000000000003 + 21 +68.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +124.00000000000003 + 20 +88.00000000000001 + 30 +0.0 + 11 +90.0 + 21 +88.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +124.00000000000003 + 20 +98.00000000000001 + 30 +0.0 + 11 +124.00000000000003 + 21 +88.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +90.0 + 20 +98.00000000000001 + 30 +0.0 + 11 +124.00000000000003 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +90.0 + 20 +88.00000000000001 + 30 +0.0 + 11 +90.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +112.91666666666669 + 20 +7.749999999999998 + 30 +0.0 + 11 +101.08333333333336 + 21 +7.750000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +101.08333333333336 + 20 +7.750000000000002 + 30 +0.0 + 11 +101.08333333333336 + 21 +7.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +101.08333333333336 + 20 +7.25 + 30 +0.0 + 11 +112.91666666666669 + 21 +7.249999999999998 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +112.91666666666669 + 20 +7.249999999999998 + 30 +0.0 + 11 +112.91666666666669 + 21 +7.749999999999998 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +101.00000000000001 + 20 +43.00000000000001 + 30 +0.0 + 11 +101.00000000000001 + 21 +39.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +101.00000000000001 + 20 +39.00000000000001 + 30 +0.0 + 11 +113.00000000000001 + 21 +39.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +113.00000000000001 + 20 +39.00000000000001 + 30 +0.0 + 11 +113.00000000000001 + 21 +43.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +113.00000000000001 + 20 +43.00000000000001 + 30 +0.0 + 11 +101.00000000000001 + 21 +43.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +102.50000000000001 + 20 +31.000000000000007 + 30 +0.0 + 11 +102.50000000000001 + 21 +27.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +102.50000000000001 + 20 +27.000000000000004 + 30 +0.0 + 11 +111.5 + 21 +27.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +111.5 + 20 +27.000000000000004 + 30 +0.0 + 11 +111.5 + 21 +31.000000000000007 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +111.5 + 20 +31.000000000000007 + 30 +0.0 + 11 +102.50000000000001 + 21 +31.000000000000007 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +101.00000000000001 + 20 +67.50000000000001 + 30 +0.0 + 11 +101.00000000000001 + 21 +44.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +101.00000000000001 + 20 +44.50000000000001 + 30 +0.0 + 11 +113.00000000000001 + 21 +44.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +113.00000000000001 + 20 +44.50000000000001 + 30 +0.0 + 11 +113.00000000000001 + 21 +67.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +113.00000000000001 + 20 +67.50000000000001 + 30 +0.0 + 11 +101.00000000000001 + 21 +67.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +101.00000000000001 + 20 +73.0 + 30 +0.0 + 11 +101.00000000000001 + 21 +69.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +101.00000000000001 + 20 +69.00000000000001 + 30 +0.0 + 11 +113.00000000000001 + 21 +69.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +113.00000000000001 + 20 +69.00000000000001 + 30 +0.0 + 11 +113.00000000000001 + 21 +73.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +113.00000000000001 + 20 +73.0 + 30 +0.0 + 11 +101.00000000000001 + 21 +73.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +101.33333333333336 + 20 +95.5 + 30 +0.0 + 11 +101.33333333333336 + 21 +90.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +101.33333333333336 + 20 +90.50000000000001 + 30 +0.0 + 11 +112.66666666666669 + 21 +90.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +112.66666666666669 + 20 +90.50000000000001 + 30 +0.0 + 11 +112.66666666666669 + 21 +95.5 + 31 +0.0 + 0 +ENDSEC + 0 +EOF diff --git a/rocolib/output/ServoMountWithArms/graph-autofold-graph.dxf b/rocolib/output/ServoMountWithArms/graph-autofold-graph.dxf new file mode 100644 index 0000000000000000000000000000000000000000..5535d60344e461fa2008710b4071a0f5d1e79a4b --- /dev/null +++ b/rocolib/output/ServoMountWithArms/graph-autofold-graph.dxf @@ -0,0 +1,1836 @@ + 0 +SECTION + 2 +HEADER + 9 +$ACADVER + 1 +AC1009 + 9 +$INSBASE + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMIN + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMAX + 10 +100.0 + 20 +100.0 + 30 +0.0 + 9 +$UNITMODE + 70 +0 + 9 +$AUNITS + 70 +0 + 9 +$ANGBASE + 50 +0.0 + 9 +$ANGDIR + 70 +0 + 0 +ENDSEC + 0 +SECTION + 2 +TABLES + 0 +TABLE + 2 +LTYPE + 70 +20 + 0 +LTYPE + 2 +CONTINUOUS + 70 +0 + 3 +Solid + 72 +65 + 73 +0 + 40 +0.0 + 0 +LTYPE + 2 +CENTER + 70 +0 + 3 +Center ____ _ ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +2.0 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +CENTERX2 + 70 +0 + 3 +Center (2x) ________ __ ________ __ ________ + 72 +65 + 73 +4 + 40 +3.5 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +CENTER2 + 70 +0 + 3 +Center (.5x) ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +1.0 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHED + 70 +0 + 3 +Dashed __ __ __ __ __ __ __ __ __ __ __ __ __ _ + 72 +65 + 73 +2 + 40 +0.6 + 49 +0.5 + 49 +-0.1 + 0 +LTYPE + 2 +DASHEDX2 + 70 +0 + 3 +Dashed (2x) ____ ____ ____ ____ ____ ____ + 72 +65 + 73 +2 + 40 +1.2 + 49 +1.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHED2 + 70 +0 + 3 +Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 +65 + 73 +2 + 40 +0.3 + 49 +0.25 + 49 +-0.05 + 0 +LTYPE + 2 +PHANTOM + 70 +0 + 3 +Phantom ______ __ __ ______ __ __ ______ + 72 +65 + 73 +6 + 40 +2.5 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOMX2 + 70 +0 + 3 +Phantom (2x)____________ ____ ____ ____________ + 72 +65 + 73 +6 + 40 +4.25 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOM2 + 70 +0 + 3 +Phantom (.5x) ___ _ _ ___ _ _ ___ _ _ ___ _ _ ___ + 72 +65 + 73 +6 + 40 +1.25 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHDOT + 70 +0 + 3 +Dash dot __ . __ . __ . __ . __ . __ . __ . __ + 72 +65 + 73 +4 + 40 +1.4 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOTX2 + 70 +0 + 3 +Dash dot (2x) ____ . ____ . ____ . ____ + 72 +65 + 73 +4 + 40 +2.4 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOT2 + 70 +0 + 3 +Dash dot (.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +4 + 40 +0.7 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOT + 70 +0 + 3 +Dot . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DOTX2 + 70 +0 + 3 +Dot (2x) . . . . . . . . + 72 +65 + 73 +2 + 40 +0.4 + 49 +0.0 + 49 +-0.4 + 0 +LTYPE + 2 +DOT2 + 70 +0 + 3 +Dot (.5) . . . . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DIVIDE + 70 +0 + 3 +Divide __ . . __ . . __ . . __ . . __ . . __ + 72 +65 + 73 +6 + 40 +1.6 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDEX2 + 70 +0 + 3 +Divide (2x) ____ . . ____ . . ____ . . ____ + 72 +65 + 73 +6 + 40 +2.6 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDE2 + 70 +0 + 3 +Divide(.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +6 + 40 +0.8 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOTTED + 70 +0 + 3 + + 72 +65 + 73 +2 + 40 +1.0 + 49 +0.0 + 49 +-1.0 + 0 +ENDTAB + 0 +TABLE + 2 +LAYER + 70 +5 + 0 +LAYER + 2 +DIMENSIONS + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEBACKGROUND + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLECONTENT + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEGRID + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +VIEWPORTS + 70 +0 + 62 +7 + 6 +CONTINUOUS + 0 +ENDTAB + 0 +TABLE + 2 +STYLE + 70 +12 + 0 +STYLE + 2 +STANDARD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbd.ttf + 4 + + 0 +STYLE + 2 +ARIAL_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariali.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbi.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BLACK + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariblk.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeur.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeui.ttf + 4 + + 0 +STYLE + 2 +TIMES + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +times.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbd.ttf + 4 + + 0 +STYLE + 2 +TIMES_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesi.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbi.ttf + 4 + + 0 +ENDTAB + 0 +TABLE + 2 +VIEW + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +APPID + 70 +1 + 0 +APPID + 2 +DXFWRITE + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +VPORT + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +UCS + 70 +0 + 0 +ENDTAB + 0 +ENDSEC + 0 +SECTION + 2 +BLOCKS + 0 +ENDSEC + 0 +SECTION + 2 +ENTITIES + 0 +VIEWPORT + 8 +VIEWPORTS + 67 +1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +1.0 + 41 +1.0 + 68 +1 + 69 +1 +1001 +ACAD +1000 +MVIEW +1002 +{ +1070 +16 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1040 +0.0 +1040 +1.0 +1040 +0.0 +1040 +0.0 +1040 +50.0 +1040 +0.0 +1040 +0.0 +1070 +0 +1070 +100 +1070 +1 +1070 +3 +1070 +0 +1070 +0 +1070 +0 +1070 +0 +1040 +0.0 +1040 +0.0 +1040 +0.0 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1070 +0 +1002 +{ +1002 +} +1002 +} + 0 +LINE + 62 +5 + 8 +0 + 10 +57.00000000000001 + 20 +0.0 + 30 +0.0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +57.00000000000001 + 20 +0.0 + 30 +0.0 + 11 +57.00000000000001 + 21 +24.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +24.000000000000004 + 30 +0.0 + 11 +57.00000000000001 + 21 +24.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 11 +0.0 + 21 +24.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +57.00000000000001 + 20 +24.000000000000004 + 30 +0.0 + 11 +90.0 + 21 +24.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +90.0 + 20 +0.0 + 30 +0.0 + 11 +57.00000000000001 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +124.00000000000003 + 20 +0.0 + 30 +0.0 + 11 +90.0 + 21 +0.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +90.0 + 20 +24.000000000000004 + 30 +0.0 + 11 +124.00000000000003 + 21 +24.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +157.0 + 20 +0.0 + 30 +0.0 + 11 +124.00000000000003 + 21 +0.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +157.0 + 20 +24.000000000000004 + 30 +0.0 + 11 +157.0 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +124.00000000000003 + 20 +24.000000000000004 + 30 +0.0 + 11 +157.0 + 21 +24.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +157.0 + 20 +24.000000000000004 + 30 +0.0 + 11 +214.0 + 21 +24.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +214.0 + 20 +0.0 + 30 +0.0 + 11 +157.0 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +214.0 + 20 +24.000000000000004 + 30 +0.0 + 11 +214.0 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +90.0 + 20 +24.000000000000004 + 30 +0.0 + 11 +90.0 + 21 +44.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +124.00000000000003 + 20 +44.00000000000001 + 30 +0.0 + 11 +124.00000000000003 + 21 +24.000000000000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +90.0 + 20 +44.00000000000001 + 30 +0.0 + 11 +124.00000000000003 + 21 +44.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +90.0 + 20 +44.00000000000001 + 30 +0.0 + 11 +90.0 + 21 +68.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +124.00000000000003 + 20 +68.0 + 30 +0.0 + 11 +124.00000000000003 + 21 +44.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +90.0 + 20 +68.0 + 30 +0.0 + 11 +124.00000000000003 + 21 +68.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +90.0 + 20 +68.0 + 30 +0.0 + 11 +90.0 + 21 +88.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +124.00000000000003 + 20 +88.00000000000001 + 30 +0.0 + 11 +124.00000000000003 + 21 +68.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +124.00000000000003 + 20 +88.00000000000001 + 30 +0.0 + 11 +90.0 + 21 +88.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +124.00000000000003 + 20 +98.00000000000001 + 30 +0.0 + 11 +124.00000000000003 + 21 +88.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +90.0 + 20 +98.00000000000001 + 30 +0.0 + 11 +124.00000000000003 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +90.0 + 20 +88.00000000000001 + 30 +0.0 + 11 +90.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +112.91666666666669 + 20 +7.749999999999998 + 30 +0.0 + 11 +101.08333333333336 + 21 +7.750000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +101.08333333333336 + 20 +7.750000000000002 + 30 +0.0 + 11 +101.08333333333336 + 21 +7.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +101.08333333333336 + 20 +7.25 + 30 +0.0 + 11 +112.91666666666669 + 21 +7.249999999999998 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +112.91666666666669 + 20 +7.249999999999998 + 30 +0.0 + 11 +112.91666666666669 + 21 +7.749999999999998 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +101.00000000000001 + 20 +43.00000000000001 + 30 +0.0 + 11 +101.00000000000001 + 21 +39.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +101.00000000000001 + 20 +39.00000000000001 + 30 +0.0 + 11 +113.00000000000001 + 21 +39.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +113.00000000000001 + 20 +39.00000000000001 + 30 +0.0 + 11 +113.00000000000001 + 21 +43.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +113.00000000000001 + 20 +43.00000000000001 + 30 +0.0 + 11 +101.00000000000001 + 21 +43.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +102.50000000000001 + 20 +31.000000000000007 + 30 +0.0 + 11 +102.50000000000001 + 21 +27.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +102.50000000000001 + 20 +27.000000000000004 + 30 +0.0 + 11 +111.5 + 21 +27.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +111.5 + 20 +27.000000000000004 + 30 +0.0 + 11 +111.5 + 21 +31.000000000000007 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +111.5 + 20 +31.000000000000007 + 30 +0.0 + 11 +102.50000000000001 + 21 +31.000000000000007 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +101.00000000000001 + 20 +67.50000000000001 + 30 +0.0 + 11 +101.00000000000001 + 21 +44.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +101.00000000000001 + 20 +44.50000000000001 + 30 +0.0 + 11 +113.00000000000001 + 21 +44.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +113.00000000000001 + 20 +44.50000000000001 + 30 +0.0 + 11 +113.00000000000001 + 21 +67.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +113.00000000000001 + 20 +67.50000000000001 + 30 +0.0 + 11 +101.00000000000001 + 21 +67.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +101.00000000000001 + 20 +73.0 + 30 +0.0 + 11 +101.00000000000001 + 21 +69.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +101.00000000000001 + 20 +69.00000000000001 + 30 +0.0 + 11 +113.00000000000001 + 21 +69.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +113.00000000000001 + 20 +69.00000000000001 + 30 +0.0 + 11 +113.00000000000001 + 21 +73.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +113.00000000000001 + 20 +73.0 + 30 +0.0 + 11 +101.00000000000001 + 21 +73.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +101.33333333333336 + 20 +95.5 + 30 +0.0 + 11 +101.33333333333336 + 21 +90.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +101.33333333333336 + 20 +90.50000000000001 + 30 +0.0 + 11 +112.66666666666669 + 21 +90.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +112.66666666666669 + 20 +90.50000000000001 + 30 +0.0 + 11 +112.66666666666669 + 21 +95.5 + 31 +0.0 + 0 +ENDSEC + 0 +EOF diff --git a/rocolib/output/ServoMountWithArms/graph-lasercutter.svg b/rocolib/output/ServoMountWithArms/graph-lasercutter.svg new file mode 100644 index 0000000000000000000000000000000000000000..8d834018b05c2410bc40f124e59c14359ed9092f --- /dev/null +++ b/rocolib/output/ServoMountWithArms/graph-lasercutter.svg @@ -0,0 +1,53 @@ +<?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="98.000000mm" version="1.1" viewBox="0.000000 0.000000 214.000000 98.000000" width="214.000000mm"> + <defs/> + <line stroke="#000000" x1="57.00000000000001" x2="0.0" y1="0.0" y2="0.0"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="57.00000000000001" x2="57.00000000000001" y1="0.0" y2="24.000000000000004"/> + <line stroke="#000000" x1="0.0" x2="57.00000000000001" y1="24.000000000000004" y2="24.000000000000004"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="0.0" y2="24.000000000000004"/> + <line stroke="#000000" x1="57.00000000000001" x2="90.0" y1="24.000000000000004" y2="24.000000000000004"/> + <line stroke="#000000" x1="90.0" x2="57.00000000000001" y1="0.0" y2="0.0"/> + <line stroke="#000000" x1="124.00000000000003" x2="90.0" y1="0.0" y2="0.0"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="90.0" x2="124.00000000000003" y1="24.000000000000004" y2="24.000000000000004"/> + <line stroke="#000000" x1="157.0" x2="124.00000000000003" y1="0.0" y2="0.0"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="157.0" x2="157.0" y1="24.000000000000004" y2="0.0"/> + <line stroke="#000000" x1="124.00000000000003" x2="157.0" y1="24.000000000000004" y2="24.000000000000004"/> + <line stroke="#000000" x1="157.0" x2="214.0" y1="24.000000000000004" y2="24.000000000000004"/> + <line stroke="#000000" x1="214.0" x2="157.0" y1="0.0" y2="0.0"/> + <line stroke="#000000" x1="214.0" x2="214.0" y1="24.000000000000004" y2="0.0"/> + <line stroke="#000000" x1="90.0" x2="90.0" y1="24.000000000000004" y2="44.00000000000001"/> + <line stroke="#000000" x1="124.00000000000003" x2="124.00000000000003" y1="44.00000000000001" y2="24.000000000000004"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="90.0" x2="124.00000000000003" y1="44.00000000000001" y2="44.00000000000001"/> + <line stroke="#000000" x1="90.0" x2="90.0" y1="44.00000000000001" y2="68.0"/> + <line stroke="#000000" x1="124.00000000000003" x2="124.00000000000003" y1="68.0" y2="44.00000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="90.0" x2="124.00000000000003" y1="68.0" y2="68.0"/> + <line stroke="#000000" x1="90.0" x2="90.0" y1="68.0" y2="88.00000000000001"/> + <line stroke="#000000" x1="124.00000000000003" x2="124.00000000000003" y1="88.00000000000001" y2="68.0"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="124.00000000000003" x2="90.0" y1="88.00000000000001" y2="88.00000000000001"/> + <line stroke="#000000" x1="124.00000000000003" x2="124.00000000000003" y1="98.00000000000001" y2="88.00000000000001"/> + <line stroke="#000000" x1="90.0" x2="124.00000000000003" y1="98.00000000000001" y2="98.00000000000001"/> + <line stroke="#000000" x1="90.0" x2="90.0" y1="88.00000000000001" y2="98.00000000000001"/> + <line stroke="#888888" x1="112.91666666666669" x2="101.08333333333336" y1="7.749999999999998" y2="7.750000000000002"/> + <line stroke="#888888" x1="101.08333333333336" x2="101.08333333333336" y1="7.750000000000002" y2="7.25"/> + <line stroke="#888888" x1="101.08333333333336" x2="112.91666666666669" y1="7.25" y2="7.249999999999998"/> + <line stroke="#888888" x1="112.91666666666669" x2="112.91666666666669" y1="7.249999999999998" y2="7.749999999999998"/> + <line stroke="#888888" x1="101.00000000000001" x2="101.00000000000001" y1="43.00000000000001" y2="39.00000000000001"/> + <line stroke="#888888" x1="101.00000000000001" x2="113.00000000000001" y1="39.00000000000001" y2="39.00000000000001"/> + <line stroke="#888888" x1="113.00000000000001" x2="113.00000000000001" y1="39.00000000000001" y2="43.00000000000001"/> + <line stroke="#888888" x1="113.00000000000001" x2="101.00000000000001" y1="43.00000000000001" y2="43.00000000000001"/> + <line stroke="#888888" x1="102.50000000000001" x2="102.50000000000001" y1="31.000000000000007" y2="27.000000000000004"/> + <line stroke="#888888" x1="102.50000000000001" x2="111.5" y1="27.000000000000004" y2="27.000000000000004"/> + <line stroke="#888888" x1="111.5" x2="111.5" y1="27.000000000000004" y2="31.000000000000007"/> + <line stroke="#888888" x1="111.5" x2="102.50000000000001" y1="31.000000000000007" y2="31.000000000000007"/> + <line stroke="#888888" x1="101.00000000000001" x2="101.00000000000001" y1="67.50000000000001" y2="44.50000000000001"/> + <line stroke="#888888" x1="101.00000000000001" x2="113.00000000000001" y1="44.50000000000001" y2="44.50000000000001"/> + <line stroke="#888888" x1="113.00000000000001" x2="113.00000000000001" y1="44.50000000000001" y2="67.50000000000001"/> + <line stroke="#888888" x1="113.00000000000001" x2="101.00000000000001" y1="67.50000000000001" y2="67.50000000000001"/> + <line stroke="#888888" x1="101.00000000000001" x2="101.00000000000001" y1="73.0" y2="69.00000000000001"/> + <line stroke="#888888" x1="101.00000000000001" x2="113.00000000000001" y1="69.00000000000001" y2="69.00000000000001"/> + <line stroke="#888888" x1="113.00000000000001" x2="113.00000000000001" y1="69.00000000000001" y2="73.0"/> + <line stroke="#888888" x1="113.00000000000001" x2="101.00000000000001" y1="73.0" y2="73.0"/> + <line stroke="#888888" x1="101.33333333333336" x2="101.33333333333336" y1="95.5" y2="90.50000000000001"/> + <line stroke="#888888" x1="101.33333333333336" x2="112.66666666666669" y1="90.50000000000001" y2="90.50000000000001"/> + <line stroke="#888888" x1="112.66666666666669" x2="112.66666666666669" y1="90.50000000000001" y2="95.5"/> +</svg> diff --git a/rocolib/output/ServoMountWithArms/graph-model.png b/rocolib/output/ServoMountWithArms/graph-model.png new file mode 100644 index 0000000000000000000000000000000000000000..d2aee0d615689a9aba237d81ea248a900624bf66 Binary files /dev/null and b/rocolib/output/ServoMountWithArms/graph-model.png differ diff --git a/rocolib/output/ServoMountWithArms/graph-model.stl b/rocolib/output/ServoMountWithArms/graph-model.stl new file mode 100644 index 0000000000000000000000000000000000000000..1ece27a6b4858a95913166a460e7078c5ff9e492 --- /dev/null +++ b/rocolib/output/ServoMountWithArms/graph-model.stl @@ -0,0 +1,296 @@ +solid python +facet normal 0 0 0 +outer loop +vertex -0.0285 0.0120 0.0000 +vertex -0.0285 -0.0120 0.0000 +vertex 0.0285 -0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0285 -0.0120 0.0000 +vertex 0.0285 0.0120 0.0000 +vertex -0.0285 0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0285 -0.0120 0.1000 +vertex -0.0285 0.0120 0.1000 +vertex 0.0285 0.0120 0.1000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0285 0.0120 0.1000 +vertex 0.0285 -0.0120 0.1000 +vertex -0.0285 -0.0120 0.1000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0285 -0.0120 0.0330 +vertex 0.0435 -0.0120 0.0440 +vertex 0.0435 -0.0120 0.0560 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0435 -0.0120 0.0440 +vertex 0.0285 -0.0120 0.0330 +vertex 0.0485 -0.0120 0.0330 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0285 -0.0120 0.0670 +vertex 0.0435 -0.0120 0.0560 +vertex 0.0485 -0.0120 0.0670 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0435 -0.0120 0.0560 +vertex 0.0285 -0.0120 0.0670 +vertex 0.0285 -0.0120 0.0330 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0475 -0.0120 0.0440 +vertex 0.0485 -0.0120 0.0330 +vertex 0.0485 -0.0120 0.0670 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0485 -0.0120 0.0330 +vertex 0.0475 -0.0120 0.0440 +vertex 0.0435 -0.0120 0.0440 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0475 -0.0120 0.0560 +vertex 0.0485 -0.0120 0.0670 +vertex 0.0435 -0.0120 0.0560 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0485 -0.0120 0.0670 +vertex 0.0475 -0.0120 0.0560 +vertex 0.0475 -0.0120 0.0440 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0485 -0.0120 0.0330 +vertex 0.0485 -0.0115 0.0440 +vertex 0.0485 -0.0115 0.0560 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0485 -0.0115 0.0440 +vertex 0.0485 -0.0120 0.0330 +vertex 0.0485 0.0120 0.0330 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0485 -0.0120 0.0670 +vertex 0.0485 -0.0115 0.0560 +vertex 0.0485 0.0115 0.0560 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0485 -0.0115 0.0560 +vertex 0.0485 -0.0120 0.0670 +vertex 0.0485 -0.0120 0.0330 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0485 0.0115 0.0440 +vertex 0.0485 0.0120 0.0330 +vertex 0.0485 0.0120 0.0670 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0485 0.0120 0.0330 +vertex 0.0485 0.0115 0.0440 +vertex 0.0485 -0.0115 0.0440 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0485 0.0115 0.0560 +vertex 0.0485 0.0120 0.0670 +vertex 0.0485 -0.0120 0.0670 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0485 0.0120 0.0670 +vertex 0.0485 0.0115 0.0560 +vertex 0.0485 0.0115 0.0440 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0485 0.0120 0.0330 +vertex 0.0435 0.0120 0.0440 +vertex 0.0475 0.0120 0.0440 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0435 0.0120 0.0440 +vertex 0.0485 0.0120 0.0330 +vertex 0.0285 0.0120 0.0330 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0485 0.0120 0.0330 +vertex 0.0475 0.0120 0.0440 +vertex 0.0475 0.0120 0.0560 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0485 0.0120 0.0670 +vertex 0.0475 0.0120 0.0560 +vertex 0.0435 0.0120 0.0560 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0475 0.0120 0.0560 +vertex 0.0485 0.0120 0.0670 +vertex 0.0485 0.0120 0.0330 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0485 0.0120 0.0670 +vertex 0.0435 0.0120 0.0560 +vertex 0.0285 0.0120 0.0670 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0435 0.0120 0.0440 +vertex 0.0355 0.0120 0.0455 +vertex 0.0435 0.0120 0.0560 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0355 0.0120 0.0455 +vertex 0.0285 0.0120 0.0330 +vertex 0.0315 0.0120 0.0455 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0285 0.0120 0.0330 +vertex 0.0355 0.0120 0.0455 +vertex 0.0435 0.0120 0.0440 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0315 0.0120 0.0455 +vertex 0.0285 0.0120 0.0330 +vertex 0.0285 0.0120 0.0670 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0355 0.0120 0.0545 +vertex 0.0315 0.0120 0.0545 +vertex 0.0285 0.0120 0.0670 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0285 0.0120 0.0670 +vertex 0.0315 0.0120 0.0545 +vertex 0.0315 0.0120 0.0455 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0355 0.0120 0.0545 +vertex 0.0285 0.0120 0.0670 +vertex 0.0435 0.0120 0.0560 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0355 0.0120 0.0455 +vertex 0.0355 0.0120 0.0545 +vertex 0.0435 0.0120 0.0560 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0285 0.0120 0.0670 +vertex 0.0285 0.0120 0.0330 +vertex 0.0285 -0.0120 0.0330 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0285 -0.0120 0.0330 +vertex 0.0285 -0.0120 0.0670 +vertex 0.0285 0.0120 0.0670 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0285 -0.0120 0.0330 +vertex 0.0285 0.0120 0.0330 +vertex 0.0285 0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0285 0.0120 0.0000 +vertex 0.0285 -0.0120 0.0000 +vertex 0.0285 -0.0120 0.0330 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0285 0.0120 0.0670 +vertex 0.0285 -0.0120 0.0670 +vertex 0.0285 -0.0120 0.1000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0285 -0.0120 0.1000 +vertex 0.0285 0.0120 0.1000 +vertex 0.0285 0.0120 0.0670 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0285 -0.0020 0.0330 +vertex 0.0285 -0.0120 0.0330 +vertex 0.0285 -0.0120 0.0670 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0285 -0.0120 0.0670 +vertex 0.0285 -0.0020 0.0670 +vertex 0.0285 -0.0020 0.0330 +endloop +endfacet +endsolid python diff --git a/rocolib/output/ServoMountWithArms/graph-silhouette.dxf b/rocolib/output/ServoMountWithArms/graph-silhouette.dxf new file mode 100644 index 0000000000000000000000000000000000000000..4d9aba0b98a2ea72258b447b3574fe2bcc4ac413 --- /dev/null +++ b/rocolib/output/ServoMountWithArms/graph-silhouette.dxf @@ -0,0 +1,1836 @@ + 0 +SECTION + 2 +HEADER + 9 +$ACADVER + 1 +AC1009 + 9 +$INSBASE + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMIN + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMAX + 10 +100.0 + 20 +100.0 + 30 +0.0 + 9 +$UNITMODE + 70 +0 + 9 +$AUNITS + 70 +0 + 9 +$ANGBASE + 50 +0.0 + 9 +$ANGDIR + 70 +0 + 0 +ENDSEC + 0 +SECTION + 2 +TABLES + 0 +TABLE + 2 +LTYPE + 70 +20 + 0 +LTYPE + 2 +CONTINUOUS + 70 +0 + 3 +Solid + 72 +65 + 73 +0 + 40 +0.0 + 0 +LTYPE + 2 +CENTER + 70 +0 + 3 +Center ____ _ ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +2.0 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +CENTERX2 + 70 +0 + 3 +Center (2x) ________ __ ________ __ ________ + 72 +65 + 73 +4 + 40 +3.5 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +CENTER2 + 70 +0 + 3 +Center (.5x) ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +1.0 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHED + 70 +0 + 3 +Dashed __ __ __ __ __ __ __ __ __ __ __ __ __ _ + 72 +65 + 73 +2 + 40 +0.6 + 49 +0.5 + 49 +-0.1 + 0 +LTYPE + 2 +DASHEDX2 + 70 +0 + 3 +Dashed (2x) ____ ____ ____ ____ ____ ____ + 72 +65 + 73 +2 + 40 +1.2 + 49 +1.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHED2 + 70 +0 + 3 +Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 +65 + 73 +2 + 40 +0.3 + 49 +0.25 + 49 +-0.05 + 0 +LTYPE + 2 +PHANTOM + 70 +0 + 3 +Phantom ______ __ __ ______ __ __ ______ + 72 +65 + 73 +6 + 40 +2.5 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOMX2 + 70 +0 + 3 +Phantom (2x)____________ ____ ____ ____________ + 72 +65 + 73 +6 + 40 +4.25 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOM2 + 70 +0 + 3 +Phantom (.5x) ___ _ _ ___ _ _ ___ _ _ ___ _ _ ___ + 72 +65 + 73 +6 + 40 +1.25 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHDOT + 70 +0 + 3 +Dash dot __ . __ . __ . __ . __ . __ . __ . __ + 72 +65 + 73 +4 + 40 +1.4 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOTX2 + 70 +0 + 3 +Dash dot (2x) ____ . ____ . ____ . ____ + 72 +65 + 73 +4 + 40 +2.4 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOT2 + 70 +0 + 3 +Dash dot (.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +4 + 40 +0.7 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOT + 70 +0 + 3 +Dot . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DOTX2 + 70 +0 + 3 +Dot (2x) . . . . . . . . + 72 +65 + 73 +2 + 40 +0.4 + 49 +0.0 + 49 +-0.4 + 0 +LTYPE + 2 +DOT2 + 70 +0 + 3 +Dot (.5) . . . . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DIVIDE + 70 +0 + 3 +Divide __ . . __ . . __ . . __ . . __ . . __ + 72 +65 + 73 +6 + 40 +1.6 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDEX2 + 70 +0 + 3 +Divide (2x) ____ . . ____ . . ____ . . ____ + 72 +65 + 73 +6 + 40 +2.6 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDE2 + 70 +0 + 3 +Divide(.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +6 + 40 +0.8 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOTTED + 70 +0 + 3 + + 72 +65 + 73 +2 + 40 +1.0 + 49 +0.0 + 49 +-1.0 + 0 +ENDTAB + 0 +TABLE + 2 +LAYER + 70 +5 + 0 +LAYER + 2 +DIMENSIONS + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEBACKGROUND + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLECONTENT + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEGRID + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +VIEWPORTS + 70 +0 + 62 +7 + 6 +CONTINUOUS + 0 +ENDTAB + 0 +TABLE + 2 +STYLE + 70 +12 + 0 +STYLE + 2 +STANDARD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbd.ttf + 4 + + 0 +STYLE + 2 +ARIAL_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariali.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbi.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BLACK + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariblk.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeur.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeui.ttf + 4 + + 0 +STYLE + 2 +TIMES + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +times.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbd.ttf + 4 + + 0 +STYLE + 2 +TIMES_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesi.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbi.ttf + 4 + + 0 +ENDTAB + 0 +TABLE + 2 +VIEW + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +APPID + 70 +1 + 0 +APPID + 2 +DXFWRITE + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +VPORT + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +UCS + 70 +0 + 0 +ENDTAB + 0 +ENDSEC + 0 +SECTION + 2 +BLOCKS + 0 +ENDSEC + 0 +SECTION + 2 +ENTITIES + 0 +VIEWPORT + 8 +VIEWPORTS + 67 +1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +1.0 + 41 +1.0 + 68 +1 + 69 +1 +1001 +ACAD +1000 +MVIEW +1002 +{ +1070 +16 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1040 +0.0 +1040 +1.0 +1040 +0.0 +1040 +0.0 +1040 +50.0 +1040 +0.0 +1040 +0.0 +1070 +0 +1070 +100 +1070 +1 +1070 +3 +1070 +0 +1070 +0 +1070 +0 +1070 +0 +1040 +0.0 +1040 +0.0 +1040 +0.0 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1070 +0 +1002 +{ +1002 +} +1002 +} + 0 +LINE + 62 +5 + 8 +0 + 10 +57.00000000000001 + 20 +0.0 + 30 +0.0 + 11 +0.0 + 21 +0.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +57.00000000000001 + 20 +0.0 + 30 +0.0 + 11 +57.00000000000001 + 21 +24.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +24.000000000000004 + 30 +0.0 + 11 +57.00000000000001 + 21 +24.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 11 +0.0 + 21 +24.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +57.00000000000001 + 20 +24.000000000000004 + 30 +0.0 + 11 +90.0 + 21 +24.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +90.0 + 20 +0.0 + 30 +0.0 + 11 +57.00000000000001 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +124.00000000000003 + 20 +0.0 + 30 +0.0 + 11 +90.0 + 21 +0.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +90.0 + 20 +24.000000000000004 + 30 +0.0 + 11 +124.00000000000003 + 21 +24.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +157.0 + 20 +0.0 + 30 +0.0 + 11 +124.00000000000003 + 21 +0.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +157.0 + 20 +24.000000000000004 + 30 +0.0 + 11 +157.0 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +124.00000000000003 + 20 +24.000000000000004 + 30 +0.0 + 11 +157.0 + 21 +24.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +157.0 + 20 +24.000000000000004 + 30 +0.0 + 11 +214.0 + 21 +24.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +214.0 + 20 +0.0 + 30 +0.0 + 11 +157.0 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +214.0 + 20 +24.000000000000004 + 30 +0.0 + 11 +214.0 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +90.0 + 20 +24.000000000000004 + 30 +0.0 + 11 +90.0 + 21 +44.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +124.00000000000003 + 20 +44.00000000000001 + 30 +0.0 + 11 +124.00000000000003 + 21 +24.000000000000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +90.0 + 20 +44.00000000000001 + 30 +0.0 + 11 +124.00000000000003 + 21 +44.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +90.0 + 20 +44.00000000000001 + 30 +0.0 + 11 +90.0 + 21 +68.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +124.00000000000003 + 20 +68.0 + 30 +0.0 + 11 +124.00000000000003 + 21 +44.00000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +90.0 + 20 +68.0 + 30 +0.0 + 11 +124.00000000000003 + 21 +68.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +90.0 + 20 +68.0 + 30 +0.0 + 11 +90.0 + 21 +88.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +124.00000000000003 + 20 +88.00000000000001 + 30 +0.0 + 11 +124.00000000000003 + 21 +68.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +124.00000000000003 + 20 +88.00000000000001 + 30 +0.0 + 11 +90.0 + 21 +88.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +124.00000000000003 + 20 +98.00000000000001 + 30 +0.0 + 11 +124.00000000000003 + 21 +88.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +90.0 + 20 +98.00000000000001 + 30 +0.0 + 11 +124.00000000000003 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +90.0 + 20 +88.00000000000001 + 30 +0.0 + 11 +90.0 + 21 +98.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +112.91666666666669 + 20 +7.749999999999998 + 30 +0.0 + 11 +101.08333333333336 + 21 +7.750000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +101.08333333333336 + 20 +7.750000000000002 + 30 +0.0 + 11 +101.08333333333336 + 21 +7.25 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +101.08333333333336 + 20 +7.25 + 30 +0.0 + 11 +112.91666666666669 + 21 +7.249999999999998 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +112.91666666666669 + 20 +7.249999999999998 + 30 +0.0 + 11 +112.91666666666669 + 21 +7.749999999999998 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +101.00000000000001 + 20 +43.00000000000001 + 30 +0.0 + 11 +101.00000000000001 + 21 +39.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +101.00000000000001 + 20 +39.00000000000001 + 30 +0.0 + 11 +113.00000000000001 + 21 +39.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +113.00000000000001 + 20 +39.00000000000001 + 30 +0.0 + 11 +113.00000000000001 + 21 +43.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +113.00000000000001 + 20 +43.00000000000001 + 30 +0.0 + 11 +101.00000000000001 + 21 +43.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +102.50000000000001 + 20 +31.000000000000007 + 30 +0.0 + 11 +102.50000000000001 + 21 +27.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +102.50000000000001 + 20 +27.000000000000004 + 30 +0.0 + 11 +111.5 + 21 +27.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +111.5 + 20 +27.000000000000004 + 30 +0.0 + 11 +111.5 + 21 +31.000000000000007 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +111.5 + 20 +31.000000000000007 + 30 +0.0 + 11 +102.50000000000001 + 21 +31.000000000000007 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +101.00000000000001 + 20 +67.50000000000001 + 30 +0.0 + 11 +101.00000000000001 + 21 +44.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +101.00000000000001 + 20 +44.50000000000001 + 30 +0.0 + 11 +113.00000000000001 + 21 +44.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +113.00000000000001 + 20 +44.50000000000001 + 30 +0.0 + 11 +113.00000000000001 + 21 +67.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +113.00000000000001 + 20 +67.50000000000001 + 30 +0.0 + 11 +101.00000000000001 + 21 +67.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +101.00000000000001 + 20 +73.0 + 30 +0.0 + 11 +101.00000000000001 + 21 +69.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +101.00000000000001 + 20 +69.00000000000001 + 30 +0.0 + 11 +113.00000000000001 + 21 +69.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +113.00000000000001 + 20 +69.00000000000001 + 30 +0.0 + 11 +113.00000000000001 + 21 +73.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +113.00000000000001 + 20 +73.0 + 30 +0.0 + 11 +101.00000000000001 + 21 +73.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +101.33333333333336 + 20 +95.5 + 30 +0.0 + 11 +101.33333333333336 + 21 +90.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +101.33333333333336 + 20 +90.50000000000001 + 30 +0.0 + 11 +112.66666666666669 + 21 +90.50000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +112.66666666666669 + 20 +90.50000000000001 + 30 +0.0 + 11 +112.66666666666669 + 21 +95.5 + 31 +0.0 + 0 +ENDSEC + 0 +EOF diff --git a/rocolib/output/ServoMountWithArms/tree.png b/rocolib/output/ServoMountWithArms/tree.png new file mode 100644 index 0000000000000000000000000000000000000000..57da09031d1522c36cfcbeabccc8aa5b568d44a2 Binary files /dev/null and b/rocolib/output/ServoMountWithArms/tree.png differ