diff --git a/rocolib/builders/boat/BatteryStackMountBuilder.py b/rocolib/builders/boat/BatteryStackMountBuilder.py index 7f1077545a1ce2179874fa2ce85f32318192f8df..00da714f48ded9f725f377edb801095836f925ea 100644 --- a/rocolib/builders/boat/BatteryStackMountBuilder.py +++ b/rocolib/builders/boat/BatteryStackMountBuilder.py @@ -5,9 +5,17 @@ from rocolib.api.Function import Function c = Component() c.addSubcomponent("holder", "SimpleRectBeam", inherit=True, prefix=None) - c.addConstConstraint(("holder", "length"), 60) -c.addConstConstraint(("holder", "width"), 60) -c.addConstConstraint(("holder", "depth"), 60) +c.addConstConstraint(("holder", "width"), 8) +c.addConstConstraint(("holder", "depth"), 17) + +c.addSubcomponent("bottom", "Rectangle", inherit=True) +c.addConstConstraint(("bottom", "l"), 8) +c.addConstConstraint(("bottom", "w"), 17) + +c.addConnection(("bottom", "t"), ("holder", "botedge0"), angle=90) +c.addConnection(("bottom", "l"), ("holder", "botedge1"), tabWidth=5, angle=90) +c.addConnection(("bottom", "r"), ("holder", "botedge3"),tabWidth=5, angle=90) +c.addConnection(("bottom", "b"), ("holder", "botedge2"), tabWidth=5, angle=90) c.toLibrary("BatteryStackMount") diff --git a/rocolib/builders/boat/ESP32StackBoatBuilder.py b/rocolib/builders/boat/BoatWithStackBuilder.py similarity index 62% rename from rocolib/builders/boat/ESP32StackBoatBuilder.py rename to rocolib/builders/boat/BoatWithStackBuilder.py index 2435d0c31f81de25491988c8062508acac0f6e60..51da8832d93d8b507c9cd10185a33b9cb912d0a4 100644 --- a/rocolib/builders/boat/ESP32StackBoatBuilder.py +++ b/rocolib/builders/boat/BoatWithStackBuilder.py @@ -5,11 +5,16 @@ c = Component() c.addParameter("length", 130, paramType="length") c.addParameter("width", 70, paramType="length") -c.addParameter("depth", 70, paramType="length") +c.addParameter("depth", 60, paramType="length") + +c.addSubcomponent("boat", "BoatBase", inherit=True) + +c.addConstraint(("boat", "boat.length"), "length") +c.addConstraint(("boat", "boat.width"), "width") +c.addConstraint(("boat", "boat.depth"), "depth") -c.addSubcomponent("boat", "BoatBaseFlat", inherit=True) c.inheritAllInterfaces("boat") -c.addSubcomponent("stack", "Boat_StackMount", inherit=True) +c.addSubcomponent("stack", "StackMount", inherit=True) c.inheritAllInterfaces("stack") c.addSubcomponent("split0", "SplitEdge", inherit=True) @@ -18,4 +23,4 @@ c.addSubcomponent("split1", "SplitEdge", inherit=True) #the length of the both should always be a multiple of the width of the motor #as of now i will be setting the length to 117 (so that means 9 * width of the motor which is 13) -c.toLibrary("ESP32StackBoat") +c.toLibrary("BoatWithStack") diff --git a/rocolib/library/BatteryStackMount.yaml b/rocolib/library/BatteryStackMount.yaml new file mode 100644 index 0000000000000000000000000000000000000000..245a24ce8346572a6e3dfed53cd67c2895ad81e8 --- /dev/null +++ b/rocolib/library/BatteryStackMount.yaml @@ -0,0 +1,181 @@ +connections: + connection0: + - - bottom + - t + - - holder + - botedge0 + - angle: 90 + connection1: + - - bottom + - l + - - holder + - botedge1 + - angle: 90 + tabWidth: 5 + connection2: + - - bottom + - r + - - holder + - botedge3 + - angle: 90 + tabWidth: 5 + connection3: + - - bottom + - b + - - holder + - botedge2 + - angle: 90 + tabWidth: 5 +interfaces: {} +parameters: + _dx: + defaultValue: 0 + spec: + minValue: null + units: mm + valueType: (float, int) + _dy: + defaultValue: 0 + spec: + minValue: null + units: mm + valueType: (float, int) + _dz: + defaultValue: 0 + spec: + minValue: null + units: mm + valueType: (float, int) + _q_a: + defaultValue: 1 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + _q_i: + defaultValue: 0 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + _q_j: + defaultValue: 0 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + _q_k: + defaultValue: 0 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + addTabs: + defaultValue: true + spec: + valueType: bool + bottom._dx: + defaultValue: 0 + spec: + minValue: null + units: mm + valueType: (float, int) + bottom._dy: + defaultValue: 0 + spec: + minValue: null + units: mm + valueType: (float, int) + bottom._dz: + defaultValue: 0 + spec: + minValue: null + units: mm + valueType: (float, int) + bottom._q_a: + defaultValue: 1 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + bottom._q_i: + defaultValue: 0 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + bottom._q_j: + defaultValue: 0 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + bottom._q_k: + defaultValue: 0 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + depth: + defaultValue: 50 + spec: + minValue: 0 + units: mm + valueType: (float, int) + length: + defaultValue: 100 + spec: + minValue: 0 + units: mm + valueType: (float, int) + width: + defaultValue: 20 + spec: + minValue: 0 + units: mm + valueType: (float, int) +source: ../builders/boat/BatteryStackMountBuilder.py +subcomponents: + bottom: + classname: Rectangle + kwargs: {} + parameters: + _dx: + parameter: bottom._dx + _dy: + parameter: bottom._dy + _dz: + parameter: bottom._dz + _q_a: + parameter: bottom._q_a + _q_i: + parameter: bottom._q_i + _q_j: + parameter: bottom._q_j + _q_k: + parameter: bottom._q_k + l: 8 + w: 17 + holder: + classname: SimpleRectBeam + kwargs: {} + parameters: + _dx: + parameter: _dx + _dy: + parameter: _dy + _dz: + parameter: _dz + _q_a: + parameter: _q_a + _q_i: + parameter: _q_i + _q_j: + parameter: _q_j + _q_k: + parameter: _q_k + addTabs: + parameter: addTabs + depth: 17 + length: 60 + width: 8 diff --git a/rocolib/library/BoatWithStack.yaml b/rocolib/library/BoatWithStack.yaml new file mode 100644 index 0000000000000000000000000000000000000000..f2661e86e50efa636a7a8289d379d294e1c28471 --- /dev/null +++ b/rocolib/library/BoatWithStack.yaml @@ -0,0 +1,370 @@ +connections: {} +interfaces: + boat.portedge: + interface: portedge + subcomponent: boat + boat.staredge: + interface: staredge + subcomponent: boat + stack.leftArmInterface: + interface: leftArmInterface + subcomponent: stack + stack.rightArmInterface: + interface: rightArmInterface + subcomponent: stack +parameters: + boat.bow.point: + defaultValue: 50 + spec: + minValue: 0 + units: mm + valueType: (float, int) + boat.stern.point: + defaultValue: 50 + spec: + minValue: 0 + units: mm + valueType: (float, int) + depth: + defaultValue: 60 + spec: + minValue: 0 + units: mm + valueType: (float, int) + length: + defaultValue: 130 + spec: + minValue: 0 + units: mm + valueType: (float, int) + split0._dx: + defaultValue: 0 + spec: + minValue: null + units: mm + valueType: (float, int) + split0._dy: + defaultValue: 0 + spec: + minValue: null + units: mm + valueType: (float, int) + split0._dz: + defaultValue: 0 + spec: + minValue: null + units: mm + valueType: (float, int) + split0._q_a: + defaultValue: 1 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + split0._q_i: + defaultValue: 0 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + split0._q_j: + defaultValue: 0 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + split0._q_k: + defaultValue: 0 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + split0.botlength: + defaultValue: &id001 + - 100 + spec: + valueType: (tuple, list) + split0.toplength: + defaultValue: &id002 + - 50 + - 50 + spec: + valueType: (tuple, list) + split0.width: + defaultValue: 0 + spec: {} + split1._dx: + defaultValue: 0 + spec: + minValue: null + units: mm + valueType: (float, int) + split1._dy: + defaultValue: 0 + spec: + minValue: null + units: mm + valueType: (float, int) + split1._dz: + defaultValue: 0 + spec: + minValue: null + units: mm + valueType: (float, int) + split1._q_a: + defaultValue: 1 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + split1._q_i: + defaultValue: 0 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + split1._q_j: + defaultValue: 0 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + split1._q_k: + defaultValue: 0 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + split1.botlength: + defaultValue: *id001 + spec: + valueType: (tuple, list) + split1.toplength: + defaultValue: *id002 + spec: + valueType: (tuple, list) + split1.width: + defaultValue: 0 + spec: {} + stack.depth: + defaultValue: 70 + spec: + minValue: 0 + units: mm + valueType: (float, int) + stack.lArm._dx: + defaultValue: 0 + spec: + minValue: null + units: mm + valueType: (float, int) + stack.lArm._dy: + defaultValue: 0 + spec: + minValue: null + units: mm + valueType: (float, int) + stack.lArm._dz: + defaultValue: 0 + spec: + minValue: null + units: mm + valueType: (float, int) + stack.lArm._q_a: + defaultValue: 1 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + stack.lArm._q_i: + defaultValue: 0 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + stack.lArm._q_j: + defaultValue: 0 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + stack.lArm._q_k: + defaultValue: 0 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + stack.rArm._dx: + defaultValue: 0 + spec: + minValue: null + units: mm + valueType: (float, int) + stack.rArm._dy: + defaultValue: 0 + spec: + minValue: null + units: mm + valueType: (float, int) + stack.rArm._dz: + defaultValue: 0 + spec: + minValue: null + units: mm + valueType: (float, int) + stack.rArm._q_a: + defaultValue: 1 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + stack.rArm._q_i: + defaultValue: 0 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + stack.rArm._q_j: + defaultValue: 0 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + stack.rArm._q_k: + defaultValue: 0 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + stack.stack.brains: + defaultValue: esp32stack + spec: + valueType: str + stack.stack.dy1: + defaultValue: 18 + spec: + parameterType: length + stack.stack.length: + defaultValue: 61 + spec: + minValue: 0 + units: mm + valueType: (float, int) + stack.width: + defaultValue: 70 + spec: + minValue: 0 + units: mm + valueType: (float, int) + width: + defaultValue: 70 + spec: + minValue: 0 + units: mm + valueType: (float, int) +source: ../builders/boat/BoatWithStackBuilder.py +subcomponents: + boat: + classname: BoatBase + kwargs: {} + parameters: + boat.depth: + parameter: depth + boat.length: + parameter: length + boat.width: + parameter: width + bow.point: + parameter: boat.bow.point + stern.point: + parameter: boat.stern.point + split0: + classname: SplitEdge + kwargs: {} + parameters: + _dx: + parameter: split0._dx + _dy: + parameter: split0._dy + _dz: + parameter: split0._dz + _q_a: + parameter: split0._q_a + _q_i: + parameter: split0._q_i + _q_j: + parameter: split0._q_j + _q_k: + parameter: split0._q_k + botlength: + parameter: split0.botlength + toplength: + parameter: split0.toplength + width: + parameter: split0.width + split1: + classname: SplitEdge + kwargs: {} + parameters: + _dx: + parameter: split1._dx + _dy: + parameter: split1._dy + _dz: + parameter: split1._dz + _q_a: + parameter: split1._q_a + _q_i: + parameter: split1._q_i + _q_j: + parameter: split1._q_j + _q_k: + parameter: split1._q_k + botlength: + parameter: split1.botlength + toplength: + parameter: split1.toplength + width: + parameter: split1.width + stack: + classname: StackMount + kwargs: {} + parameters: + depth: + parameter: stack.depth + lArm._dx: + parameter: stack.lArm._dx + lArm._dy: + parameter: stack.lArm._dy + lArm._dz: + parameter: stack.lArm._dz + lArm._q_a: + parameter: stack.lArm._q_a + lArm._q_i: + parameter: stack.lArm._q_i + lArm._q_j: + parameter: stack.lArm._q_j + lArm._q_k: + parameter: stack.lArm._q_k + rArm._dx: + parameter: stack.rArm._dx + rArm._dy: + parameter: stack.rArm._dy + rArm._dz: + parameter: stack.rArm._dz + rArm._q_a: + parameter: stack.rArm._q_a + rArm._q_i: + parameter: stack.rArm._q_i + rArm._q_j: + parameter: stack.rArm._q_j + rArm._q_k: + parameter: stack.rArm._q_k + stack.brains: + parameter: stack.stack.brains + stack.dy1: + parameter: stack.stack.dy1 + stack.length: + parameter: stack.stack.length + width: + parameter: stack.width diff --git a/rocolib/library/ESP32StackBoat.yaml b/rocolib/library/ESP32StackBoat.yaml index 7349178251dfaf0c362ca816b6d1e7e16395b40f..8de2d7f18cbd78530555fefb5d1444526386950d 100644 --- a/rocolib/library/ESP32StackBoat.yaml +++ b/rocolib/library/ESP32StackBoat.yaml @@ -1,183 +1,240 @@ connections: {} -interfaces: {} +interfaces: + stack.leftArmInterface: + interface: leftArmInterface + subcomponent: stack + stack.rightArmInterface: + interface: rightArmInterface + subcomponent: stack parameters: - boat.boat._dx: + boat.dx1: + defaultValue: 8 + spec: + parameterType: length + boat.dy1: + defaultValue: 8 + spec: + parameterType: length + depth: + defaultValue: 60 + spec: + minValue: 0 + units: mm + valueType: (float, int) + length: + defaultValue: 130 + spec: + minValue: 0 + units: mm + valueType: (float, int) + split0._dx: defaultValue: 0 spec: minValue: null units: mm valueType: (float, int) - boat.boat._dy: + split0._dy: defaultValue: 0 spec: minValue: null units: mm valueType: (float, int) - boat.boat._dz: + split0._dz: defaultValue: 0 spec: minValue: null units: mm valueType: (float, int) - boat.boat._q_a: + split0._q_a: defaultValue: 1 spec: maxValue: 1 minValue: -1 valueType: (int, float) - boat.boat._q_i: + split0._q_i: defaultValue: 0 spec: maxValue: 1 minValue: -1 valueType: (int, float) - boat.boat._q_j: + split0._q_j: defaultValue: 0 spec: maxValue: 1 minValue: -1 valueType: (int, float) - boat.boat._q_k: + split0._q_k: defaultValue: 0 spec: maxValue: 1 minValue: -1 valueType: (int, float) - boat.bow._dx: + split0.botlength: + defaultValue: &id001 + - 100 + spec: + valueType: (tuple, list) + split0.toplength: + defaultValue: &id002 + - 50 + - 50 + spec: + valueType: (tuple, list) + split0.width: + defaultValue: 0 + spec: {} + split1._dx: defaultValue: 0 spec: minValue: null units: mm valueType: (float, int) - boat.bow._dy: + split1._dy: defaultValue: 0 spec: minValue: null units: mm valueType: (float, int) - boat.bow._dz: + split1._dz: defaultValue: 0 spec: minValue: null units: mm valueType: (float, int) - boat.bow._q_a: + split1._q_a: defaultValue: 1 spec: maxValue: 1 minValue: -1 valueType: (int, float) - boat.bow._q_i: + split1._q_i: defaultValue: 0 spec: maxValue: 1 minValue: -1 valueType: (int, float) - boat.bow._q_j: + split1._q_j: defaultValue: 0 spec: maxValue: 1 minValue: -1 valueType: (int, float) - boat.bow._q_k: + split1._q_k: defaultValue: 0 spec: maxValue: 1 minValue: -1 valueType: (int, float) - boat.bow.point: - defaultValue: 50 + split1.botlength: + defaultValue: *id001 spec: - minValue: 0 - units: mm - valueType: (float, int) - boat.depth: - defaultValue: 80 + valueType: (tuple, list) + split1.toplength: + defaultValue: *id002 spec: - minValue: 0 - units: mm - valueType: (float, int) - boat.length: - defaultValue: 130 + valueType: (tuple, list) + split1.width: + defaultValue: 0 + spec: {} + stack.depth: + defaultValue: 70 spec: minValue: 0 units: mm valueType: (float, int) - boat.stern._dx: + stack.lArm._dx: defaultValue: 0 spec: minValue: null units: mm valueType: (float, int) - boat.stern._dy: + stack.lArm._dy: defaultValue: 0 spec: minValue: null units: mm valueType: (float, int) - boat.stern._dz: + stack.lArm._dz: defaultValue: 0 spec: minValue: null units: mm valueType: (float, int) - boat.stern._q_a: + stack.lArm._q_a: defaultValue: 1 spec: maxValue: 1 minValue: -1 valueType: (int, float) - boat.stern._q_i: + stack.lArm._q_i: defaultValue: 0 spec: maxValue: 1 minValue: -1 valueType: (int, float) - boat.stern._q_j: + stack.lArm._q_j: defaultValue: 0 spec: maxValue: 1 minValue: -1 valueType: (int, float) - boat.stern._q_k: + stack.lArm._q_k: defaultValue: 0 spec: maxValue: 1 minValue: -1 valueType: (int, float) - boat.width: - defaultValue: 70 + stack.rArm._dx: + defaultValue: 0 spec: - minValue: 0 + minValue: null units: mm valueType: (float, int) - depth: - defaultValue: 70 + stack.rArm._dy: + defaultValue: 0 spec: - minValue: 0 + minValue: null units: mm valueType: (float, int) - length: - defaultValue: 130 + stack.rArm._dz: + defaultValue: 0 spec: - minValue: 0 + minValue: null units: mm valueType: (float, int) - stack.brains: + stack.rArm._q_a: + defaultValue: 1 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + stack.rArm._q_i: + defaultValue: 0 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + stack.rArm._q_j: + defaultValue: 0 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + stack.rArm._q_k: + defaultValue: 0 + spec: + maxValue: 1 + minValue: -1 + valueType: (int, float) + stack.stack.brains: defaultValue: esp32stack spec: valueType: str - stack.depth: - defaultValue: 70 - spec: - minValue: 0 - units: mm - valueType: (float, int) - stack.dy1: + stack.stack.dy1: defaultValue: 18 spec: parameterType: length - stack.length: + stack.stack.length: defaultValue: 61 spec: minValue: 0 @@ -195,73 +252,103 @@ parameters: minValue: 0 units: mm valueType: (float, int) -source: ../builders/ESP32StackBoatBuilder.py +source: ../builders/boat/ESP32StackBoatBuilder.py subcomponents: boat: classname: BoatBaseFlat kwargs: {} parameters: - boat._dx: - parameter: boat.boat._dx - boat._dy: - parameter: boat.boat._dy - boat._dz: - parameter: boat.boat._dz - boat._q_a: - parameter: boat.boat._q_a - boat._q_i: - parameter: boat.boat._q_i - boat._q_j: - parameter: boat.boat._q_j - boat._q_k: - parameter: boat.boat._q_k - bow._dx: - parameter: boat.bow._dx - bow._dy: - parameter: boat.bow._dy - bow._dz: - parameter: boat.bow._dz - bow._q_a: - parameter: boat.bow._q_a - bow._q_i: - parameter: boat.bow._q_i - bow._q_j: - parameter: boat.bow._q_j - bow._q_k: - parameter: boat.bow._q_k - bow.point: - parameter: boat.bow.point - depth: - parameter: boat.depth - length: - parameter: boat.length - stern._dx: - parameter: boat.stern._dx - stern._dy: - parameter: boat.stern._dy - stern._dz: - parameter: boat.stern._dz - stern._q_a: - parameter: boat.stern._q_a - stern._q_i: - parameter: boat.stern._q_i - stern._q_j: - parameter: boat.stern._q_j - stern._q_k: - parameter: boat.stern._q_k + dx1: + parameter: boat.dx1 + dy1: + parameter: boat.dy1 + split0: + classname: SplitEdge + kwargs: {} + parameters: + _dx: + parameter: split0._dx + _dy: + parameter: split0._dy + _dz: + parameter: split0._dz + _q_a: + parameter: split0._q_a + _q_i: + parameter: split0._q_i + _q_j: + parameter: split0._q_j + _q_k: + parameter: split0._q_k + botlength: + parameter: split0.botlength + toplength: + parameter: split0.toplength width: - parameter: boat.width + parameter: split0.width + split1: + classname: SplitEdge + kwargs: {} + parameters: + _dx: + parameter: split1._dx + _dy: + parameter: split1._dy + _dz: + parameter: split1._dz + _q_a: + parameter: split1._q_a + _q_i: + parameter: split1._q_i + _q_j: + parameter: split1._q_j + _q_k: + parameter: split1._q_k + botlength: + parameter: split1.botlength + toplength: + parameter: split1.toplength + width: + parameter: split1.width stack: - classname: Boat_StackMount + classname: StackMount kwargs: {} parameters: - brains: - parameter: stack.brains depth: parameter: stack.depth - dy1: - parameter: stack.dy1 - length: - parameter: stack.length + lArm._dx: + parameter: stack.lArm._dx + lArm._dy: + parameter: stack.lArm._dy + lArm._dz: + parameter: stack.lArm._dz + lArm._q_a: + parameter: stack.lArm._q_a + lArm._q_i: + parameter: stack.lArm._q_i + lArm._q_j: + parameter: stack.lArm._q_j + lArm._q_k: + parameter: stack.lArm._q_k + rArm._dx: + parameter: stack.rArm._dx + rArm._dy: + parameter: stack.rArm._dy + rArm._dz: + parameter: stack.rArm._dz + rArm._q_a: + parameter: stack.rArm._q_a + rArm._q_i: + parameter: stack.rArm._q_i + rArm._q_j: + parameter: stack.rArm._q_j + rArm._q_k: + parameter: stack.rArm._q_k + stack.brains: + parameter: stack.stack.brains + stack.dy1: + parameter: stack.stack.dy1 + stack.length: + parameter: stack.stack.length width: parameter: stack.width diff --git a/rocolib/output/BatteryStackMount/graph-anim.svg b/rocolib/output/BatteryStackMount/graph-anim.svg new file mode 100644 index 0000000000000000000000000000000000000000..307ade939b07b6f71b88c2eb03461008f012055a --- /dev/null +++ b/rocolib/output/BatteryStackMount/graph-anim.svg @@ -0,0 +1,62 @@ +<?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="82.000000mm" version="1.1" viewBox="0.000000 0.000000 60.000000 82.000000" width="60.000000mm"> + <defs/> + <line opacity="0.5" stroke="#0000ff" x1="42.0" x2="50.0" y1="5.000000000000001" y2="5.000000000000001"/> + <line opacity="0.5" stroke="#0000ff" x1="50.0" x2="50.0" y1="5.000000000000001" y2="22.000000000000004"/> + <line opacity="0.5" stroke="#0000ff" x1="50.0" x2="42.0" y1="22.000000000000004" y2="22.000000000000004"/> + <line opacity="0.5" stroke="#0000ff" x1="42.0" x2="42.0" y1="22.000000000000004" y2="5.000000000000001"/> + <line stroke="#000000" x1="42.0" x2="42.0" y1="0.0" y2="5.000000000000001"/> + <line stroke="#000000" x1="50.0" x2="42.0" y1="0.0" y2="0.0"/> + <line stroke="#000000" x1="50.0" x2="50.0" y1="5.000000000000001" y2="0.0"/> + <line stroke="#000000" x1="55.00000000000001" x2="50.0" y1="5.000000000000001" y2="5.000000000000001"/> + <line stroke="#000000" x1="55.00000000000001" x2="55.00000000000001" y1="22.000000000000004" y2="5.000000000000001"/> + <line stroke="#000000" x1="50.0" x2="55.00000000000001" y1="22.000000000000004" y2="22.000000000000004"/> + <line stroke="#000000" x1="42.0" x2="50.0" y1="82.0" y2="82.0"/> + <line opacity="0.5" stroke="#0000ff" x1="42.0" x2="42.0" y1="82.0" y2="22.000000000000004"/> + <line opacity="0.5" stroke="#0000ff" x1="50.0" x2="50.0" y1="22.000000000000004" y2="82.0"/> + <line stroke="#000000" x1="25.0" x2="42.0" y1="82.0" y2="82.0"/> + <line opacity="0.5" stroke="#0000ff" x1="25.0" x2="25.0" y1="82.0" y2="22.000000000000004"/> + <line stroke="#000000" x1="42.0" x2="25.0" y1="22.000000000000004" y2="22.000000000000004"/> + <line stroke="#000000" x1="17.0" x2="25.0" y1="82.0" y2="82.0"/> + <line opacity="0.5" stroke="#0000ff" x1="17.0" x2="17.0" y1="82.0" y2="22.000000000000004"/> + <line stroke="#000000" x1="25.0" x2="17.0" y1="22.000000000000004" y2="22.000000000000004"/> + <line stroke="#000000" x1="0.0" x2="17.0" y1="82.0" y2="82.0"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="22.000000000000004" y2="82.0"/> + <line stroke="#000000" x1="17.0" x2="0.0" y1="22.000000000000004" y2="22.000000000000004"/> + <line stroke="#000000" x1="60.00000000000001" x2="50.0" y1="22.000000000000004" y2="22.000000000000004"/> + <line stroke="#000000" x1="60.00000000000001" x2="60.00000000000001" y1="82.0" y2="22.000000000000004"/> + <line stroke="#000000" x1="50.0" x2="60.00000000000001" y1="82.0" y2="82.0"/> + <line stroke="#000000" x1="37.0" x2="42.0" y1="22.000000000000004" y2="22.000000000000004"/> + <line stroke="#000000" x1="37.0" x2="37.0" y1="5.000000000000001" y2="22.000000000000004"/> + <line stroke="#000000" x1="42.0" x2="37.0" y1="5.000000000000001" y2="5.000000000000001"/> + <line stroke="#888888" x1="47.33333333333334" x2="47.33333333333334" y1="1.2500000000000002" y2="3.7500000000000004"/> + <line stroke="#888888" x1="47.33333333333334" x2="44.66666666666668" y1="3.7500000000000004" y2="3.7500000000000004"/> + <line stroke="#888888" x1="44.66666666666668" x2="44.66666666666667" y1="3.7500000000000004" y2="1.2500000000000002"/> + <line stroke="#888888" x1="53.75000000000001" x2="51.25000000000001" y1="16.333333333333336" y2="16.333333333333336"/> + <line stroke="#888888" x1="51.25000000000001" x2="51.25000000000001" y1="16.333333333333336" y2="10.666666666666666"/> + <line stroke="#888888" x1="51.25000000000001" x2="53.75000000000001" y1="10.666666666666666" y2="10.666666666666666"/> + <line stroke="#888888" x1="36.58333333333334" x2="30.416666666666675" y1="26.000000000000004" y2="26.000000000000004"/> + <line stroke="#888888" x1="30.416666666666675" x2="30.416666666666675" y1="26.000000000000004" y2="25.500000000000004"/> + <line stroke="#888888" x1="30.416666666666675" x2="36.58333333333334" y1="25.500000000000004" y2="25.500000000000004"/> + <line stroke="#888888" x1="36.58333333333334" x2="36.58333333333334" y1="25.500000000000004" y2="26.000000000000004"/> + <line stroke="#888888" x1="22.58333333333334" x2="19.41666666666667" y1="26.000000000000004" y2="26.000000000000004"/> + <line stroke="#888888" x1="19.41666666666667" x2="19.41666666666667" y1="26.000000000000004" y2="25.500000000000004"/> + <line stroke="#888888" x1="19.41666666666667" x2="22.583333333333336" y1="25.500000000000004" y2="25.500000000000004"/> + <line stroke="#888888" x1="22.583333333333336" x2="22.58333333333334" y1="25.500000000000004" y2="26.000000000000004"/> + <line stroke="#888888" x1="7.749999999999994" x2="7.750000000000002" y1="41.75000000000001" y2="62.25000000000001"/> + <line stroke="#888888" x1="7.750000000000002" x2="7.25" y1="62.25000000000001" y2="62.25000000000001"/> + <line stroke="#888888" x1="7.25" x2="7.249999999999994" y1="62.25000000000001" y2="41.75000000000001"/> + <line stroke="#888888" x1="7.249999999999994" x2="7.749999999999994" y1="41.75000000000001" y2="41.75000000000001"/> + <line stroke="#888888" x1="11.583333333333337" x2="5.416666666666672" y1="26.000000000000004" y2="26.000000000000004"/> + <line stroke="#888888" x1="5.416666666666672" x2="5.416666666666672" y1="26.000000000000004" y2="25.500000000000004"/> + <line stroke="#888888" x1="5.416666666666672" x2="11.583333333333337" y1="25.500000000000004" y2="25.500000000000004"/> + <line stroke="#888888" x1="11.583333333333337" x2="11.583333333333337" y1="25.500000000000004" y2="26.000000000000004"/> + <line stroke="#888888" x1="57.50000000000001" x2="57.50000000000001" y1="62.000000000000014" y2="67.00000000000001"/> + <line stroke="#888888" x1="57.50000000000001" x2="52.50000000000001" y1="67.00000000000001" y2="62.000000000000014"/> + <line stroke="#888888" x1="52.50000000000001" x2="52.50000000000001" y1="62.000000000000014" y2="42.0"/> + <line stroke="#888888" x1="52.50000000000001" x2="57.50000000000001" y1="42.0" y2="37.0"/> + <line stroke="#888888" x1="57.50000000000001" x2="57.50000000000001" y1="37.0" y2="42.0"/> + <line stroke="#888888" x1="38.25000000000001" x2="40.75000000000001" y1="10.666666666666668" y2="10.666666666666668"/> + <line stroke="#888888" x1="40.75000000000001" x2="40.75000000000001" y1="10.666666666666668" y2="16.33333333333334"/> + <line stroke="#888888" x1="40.75000000000001" x2="38.25000000000001" y1="16.33333333333334" y2="16.33333333333334"/> +</svg> diff --git a/rocolib/output/BatteryStackMount/graph-autofold-default.dxf b/rocolib/output/BatteryStackMount/graph-autofold-default.dxf new file mode 100644 index 0000000000000000000000000000000000000000..09992d930c43e4d495e13fe844e1b93206d4378f --- /dev/null +++ b/rocolib/output/BatteryStackMount/graph-autofold-default.dxf @@ -0,0 +1,2022 @@ + 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 +7 + 0 +LAYER + 2 +DIMENSIONS + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEBACKGROUND + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLECONTENT + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEGRID + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +VIEWPORTS + 70 +0 + 62 +7 + 6 +CONTINUOUS + 0 +LAYER + 2 +90 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +0 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +ENDTAB + 0 +TABLE + 2 +STYLE + 70 +12 + 0 +STYLE + 2 +STANDARD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbd.ttf + 4 + + 0 +STYLE + 2 +ARIAL_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariali.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbi.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BLACK + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariblk.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeur.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeui.ttf + 4 + + 0 +STYLE + 2 +TIMES + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +times.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbd.ttf + 4 + + 0 +STYLE + 2 +TIMES_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesi.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbi.ttf + 4 + + 0 +ENDTAB + 0 +TABLE + 2 +VIEW + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +APPID + 70 +1 + 0 +APPID + 2 +DXFWRITE + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +VPORT + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +UCS + 70 +0 + 0 +ENDTAB + 0 +ENDSEC + 0 +SECTION + 2 +BLOCKS + 0 +ENDSEC + 0 +SECTION + 2 +ENTITIES + 0 +VIEWPORT + 8 +VIEWPORTS + 67 +1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +1.0 + 41 +1.0 + 68 +1 + 69 +1 +1001 +ACAD +1000 +MVIEW +1002 +{ +1070 +16 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1040 +0.0 +1040 +1.0 +1040 +0.0 +1040 +0.0 +1040 +50.0 +1040 +0.0 +1040 +0.0 +1070 +0 +1070 +100 +1070 +1 +1070 +3 +1070 +0 +1070 +0 +1070 +0 +1070 +0 +1040 +0.0 +1040 +0.0 +1040 +0.0 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1070 +0 +1002 +{ +1002 +} +1002 +} + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +42.0 + 20 +5.000000000000001 + 30 +0.0 + 11 +50.0 + 21 +5.000000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +50.0 + 20 +5.000000000000001 + 30 +0.0 + 11 +50.0 + 21 +22.000000000000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +50.0 + 20 +22.000000000000004 + 30 +0.0 + 11 +42.0 + 21 +22.000000000000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +42.0 + 20 +22.000000000000004 + 30 +0.0 + 11 +42.0 + 21 +5.000000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +42.0 + 20 +0.0 + 30 +0.0 + 11 +42.0 + 21 +5.000000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +50.0 + 20 +0.0 + 30 +0.0 + 11 +42.0 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +50.0 + 20 +5.000000000000001 + 30 +0.0 + 11 +50.0 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +55.00000000000001 + 20 +5.000000000000001 + 30 +0.0 + 11 +50.0 + 21 +5.000000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +55.00000000000001 + 20 +22.000000000000004 + 30 +0.0 + 11 +55.00000000000001 + 21 +5.000000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +50.0 + 20 +22.000000000000004 + 30 +0.0 + 11 +55.00000000000001 + 21 +22.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +42.0 + 20 +82.0 + 30 +0.0 + 11 +50.0 + 21 +82.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +42.0 + 20 +82.0 + 30 +0.0 + 11 +42.0 + 21 +22.000000000000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +50.0 + 20 +22.000000000000004 + 30 +0.0 + 11 +50.0 + 21 +82.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +25.0 + 20 +82.0 + 30 +0.0 + 11 +42.0 + 21 +82.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +25.0 + 20 +82.0 + 30 +0.0 + 11 +25.0 + 21 +22.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +42.0 + 20 +22.000000000000004 + 30 +0.0 + 11 +25.0 + 21 +22.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +17.0 + 20 +82.0 + 30 +0.0 + 11 +25.0 + 21 +82.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +17.0 + 20 +82.0 + 30 +0.0 + 11 +17.0 + 21 +22.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +25.0 + 20 +22.000000000000004 + 30 +0.0 + 11 +17.0 + 21 +22.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +0.0 + 20 +82.0 + 30 +0.0 + 11 +17.0 + 21 +82.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +0.0 + 20 +22.000000000000004 + 30 +0.0 + 11 +0.0 + 21 +82.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +17.0 + 20 +22.000000000000004 + 30 +0.0 + 11 +0.0 + 21 +22.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +60.00000000000001 + 20 +22.000000000000004 + 30 +0.0 + 11 +50.0 + 21 +22.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +60.00000000000001 + 20 +82.0 + 30 +0.0 + 11 +60.00000000000001 + 21 +22.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +50.0 + 20 +82.0 + 30 +0.0 + 11 +60.00000000000001 + 21 +82.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +37.0 + 20 +22.000000000000004 + 30 +0.0 + 11 +42.0 + 21 +22.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +37.0 + 20 +5.000000000000001 + 30 +0.0 + 11 +37.0 + 21 +22.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +42.0 + 20 +5.000000000000001 + 30 +0.0 + 11 +37.0 + 21 +5.000000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +47.33333333333334 + 20 +1.2500000000000002 + 30 +0.0 + 11 +47.33333333333334 + 21 +3.7500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +47.33333333333334 + 20 +3.7500000000000004 + 30 +0.0 + 11 +44.66666666666668 + 21 +3.7500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +44.66666666666668 + 20 +3.7500000000000004 + 30 +0.0 + 11 +44.66666666666667 + 21 +1.2500000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +53.75000000000001 + 20 +16.333333333333336 + 30 +0.0 + 11 +51.25000000000001 + 21 +16.333333333333336 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +51.25000000000001 + 20 +16.333333333333336 + 30 +0.0 + 11 +51.25000000000001 + 21 +10.666666666666666 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +51.25000000000001 + 20 +10.666666666666666 + 30 +0.0 + 11 +53.75000000000001 + 21 +10.666666666666666 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +36.58333333333334 + 20 +26.000000000000004 + 30 +0.0 + 11 +30.416666666666675 + 21 +26.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +30.416666666666675 + 20 +26.000000000000004 + 30 +0.0 + 11 +30.416666666666675 + 21 +25.500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +30.416666666666675 + 20 +25.500000000000004 + 30 +0.0 + 11 +36.58333333333334 + 21 +25.500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +36.58333333333334 + 20 +25.500000000000004 + 30 +0.0 + 11 +36.58333333333334 + 21 +26.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +22.58333333333334 + 20 +26.000000000000004 + 30 +0.0 + 11 +19.41666666666667 + 21 +26.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +19.41666666666667 + 20 +26.000000000000004 + 30 +0.0 + 11 +19.41666666666667 + 21 +25.500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +19.41666666666667 + 20 +25.500000000000004 + 30 +0.0 + 11 +22.583333333333336 + 21 +25.500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +22.583333333333336 + 20 +25.500000000000004 + 30 +0.0 + 11 +22.58333333333334 + 21 +26.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +7.749999999999994 + 20 +41.75000000000001 + 30 +0.0 + 11 +7.750000000000002 + 21 +62.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +7.750000000000002 + 20 +62.25000000000001 + 30 +0.0 + 11 +7.25 + 21 +62.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +7.25 + 20 +62.25000000000001 + 30 +0.0 + 11 +7.249999999999994 + 21 +41.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +7.249999999999994 + 20 +41.75000000000001 + 30 +0.0 + 11 +7.749999999999994 + 21 +41.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +11.583333333333337 + 20 +26.000000000000004 + 30 +0.0 + 11 +5.416666666666672 + 21 +26.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +5.416666666666672 + 20 +26.000000000000004 + 30 +0.0 + 11 +5.416666666666672 + 21 +25.500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +5.416666666666672 + 20 +25.500000000000004 + 30 +0.0 + 11 +11.583333333333337 + 21 +25.500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +11.583333333333337 + 20 +25.500000000000004 + 30 +0.0 + 11 +11.583333333333337 + 21 +26.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +57.50000000000001 + 20 +62.000000000000014 + 30 +0.0 + 11 +57.50000000000001 + 21 +67.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +57.50000000000001 + 20 +67.00000000000001 + 30 +0.0 + 11 +52.50000000000001 + 21 +62.000000000000014 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +52.50000000000001 + 20 +62.000000000000014 + 30 +0.0 + 11 +52.50000000000001 + 21 +42.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +52.50000000000001 + 20 +42.0 + 30 +0.0 + 11 +57.50000000000001 + 21 +37.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +57.50000000000001 + 20 +37.0 + 30 +0.0 + 11 +57.50000000000001 + 21 +42.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +38.25000000000001 + 20 +10.666666666666668 + 30 +0.0 + 11 +40.75000000000001 + 21 +10.666666666666668 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +40.75000000000001 + 20 +10.666666666666668 + 30 +0.0 + 11 +40.75000000000001 + 21 +16.33333333333334 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +40.75000000000001 + 20 +16.33333333333334 + 30 +0.0 + 11 +38.25000000000001 + 21 +16.33333333333334 + 31 +0.0 + 0 +ENDSEC + 0 +EOF diff --git a/rocolib/output/BatteryStackMount/graph-autofold-graph.dxf b/rocolib/output/BatteryStackMount/graph-autofold-graph.dxf new file mode 100644 index 0000000000000000000000000000000000000000..43d71e4c56ac3e02c1ce76f27e08d5cf7897f8a6 --- /dev/null +++ b/rocolib/output/BatteryStackMount/graph-autofold-graph.dxf @@ -0,0 +1,2002 @@ + 0 +SECTION + 2 +HEADER + 9 +$ACADVER + 1 +AC1009 + 9 +$INSBASE + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMIN + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMAX + 10 +100.0 + 20 +100.0 + 30 +0.0 + 9 +$UNITMODE + 70 +0 + 9 +$AUNITS + 70 +0 + 9 +$ANGBASE + 50 +0.0 + 9 +$ANGDIR + 70 +0 + 0 +ENDSEC + 0 +SECTION + 2 +TABLES + 0 +TABLE + 2 +LTYPE + 70 +20 + 0 +LTYPE + 2 +CONTINUOUS + 70 +0 + 3 +Solid + 72 +65 + 73 +0 + 40 +0.0 + 0 +LTYPE + 2 +CENTER + 70 +0 + 3 +Center ____ _ ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +2.0 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +CENTERX2 + 70 +0 + 3 +Center (2x) ________ __ ________ __ ________ + 72 +65 + 73 +4 + 40 +3.5 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +CENTER2 + 70 +0 + 3 +Center (.5x) ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +1.0 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHED + 70 +0 + 3 +Dashed __ __ __ __ __ __ __ __ __ __ __ __ __ _ + 72 +65 + 73 +2 + 40 +0.6 + 49 +0.5 + 49 +-0.1 + 0 +LTYPE + 2 +DASHEDX2 + 70 +0 + 3 +Dashed (2x) ____ ____ ____ ____ ____ ____ + 72 +65 + 73 +2 + 40 +1.2 + 49 +1.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHED2 + 70 +0 + 3 +Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 +65 + 73 +2 + 40 +0.3 + 49 +0.25 + 49 +-0.05 + 0 +LTYPE + 2 +PHANTOM + 70 +0 + 3 +Phantom ______ __ __ ______ __ __ ______ + 72 +65 + 73 +6 + 40 +2.5 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOMX2 + 70 +0 + 3 +Phantom (2x)____________ ____ ____ ____________ + 72 +65 + 73 +6 + 40 +4.25 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOM2 + 70 +0 + 3 +Phantom (.5x) ___ _ _ ___ _ _ ___ _ _ ___ _ _ ___ + 72 +65 + 73 +6 + 40 +1.25 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHDOT + 70 +0 + 3 +Dash dot __ . __ . __ . __ . __ . __ . __ . __ + 72 +65 + 73 +4 + 40 +1.4 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOTX2 + 70 +0 + 3 +Dash dot (2x) ____ . ____ . ____ . ____ + 72 +65 + 73 +4 + 40 +2.4 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOT2 + 70 +0 + 3 +Dash dot (.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +4 + 40 +0.7 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOT + 70 +0 + 3 +Dot . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DOTX2 + 70 +0 + 3 +Dot (2x) . . . . . . . . + 72 +65 + 73 +2 + 40 +0.4 + 49 +0.0 + 49 +-0.4 + 0 +LTYPE + 2 +DOT2 + 70 +0 + 3 +Dot (.5) . . . . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DIVIDE + 70 +0 + 3 +Divide __ . . __ . . __ . . __ . . __ . . __ + 72 +65 + 73 +6 + 40 +1.6 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDEX2 + 70 +0 + 3 +Divide (2x) ____ . . ____ . . ____ . . ____ + 72 +65 + 73 +6 + 40 +2.6 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDE2 + 70 +0 + 3 +Divide(.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +6 + 40 +0.8 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOTTED + 70 +0 + 3 + + 72 +65 + 73 +2 + 40 +1.0 + 49 +0.0 + 49 +-1.0 + 0 +ENDTAB + 0 +TABLE + 2 +LAYER + 70 +5 + 0 +LAYER + 2 +DIMENSIONS + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEBACKGROUND + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLECONTENT + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEGRID + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +VIEWPORTS + 70 +0 + 62 +7 + 6 +CONTINUOUS + 0 +ENDTAB + 0 +TABLE + 2 +STYLE + 70 +12 + 0 +STYLE + 2 +STANDARD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbd.ttf + 4 + + 0 +STYLE + 2 +ARIAL_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariali.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbi.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BLACK + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariblk.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeur.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeui.ttf + 4 + + 0 +STYLE + 2 +TIMES + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +times.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbd.ttf + 4 + + 0 +STYLE + 2 +TIMES_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesi.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbi.ttf + 4 + + 0 +ENDTAB + 0 +TABLE + 2 +VIEW + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +APPID + 70 +1 + 0 +APPID + 2 +DXFWRITE + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +VPORT + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +UCS + 70 +0 + 0 +ENDTAB + 0 +ENDSEC + 0 +SECTION + 2 +BLOCKS + 0 +ENDSEC + 0 +SECTION + 2 +ENTITIES + 0 +VIEWPORT + 8 +VIEWPORTS + 67 +1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +1.0 + 41 +1.0 + 68 +1 + 69 +1 +1001 +ACAD +1000 +MVIEW +1002 +{ +1070 +16 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1040 +0.0 +1040 +1.0 +1040 +0.0 +1040 +0.0 +1040 +50.0 +1040 +0.0 +1040 +0.0 +1070 +0 +1070 +100 +1070 +1 +1070 +3 +1070 +0 +1070 +0 +1070 +0 +1070 +0 +1040 +0.0 +1040 +0.0 +1040 +0.0 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1070 +0 +1002 +{ +1002 +} +1002 +} + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +42.0 + 20 +5.000000000000001 + 30 +0.0 + 11 +50.0 + 21 +5.000000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +50.0 + 20 +5.000000000000001 + 30 +0.0 + 11 +50.0 + 21 +22.000000000000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +50.0 + 20 +22.000000000000004 + 30 +0.0 + 11 +42.0 + 21 +22.000000000000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +42.0 + 20 +22.000000000000004 + 30 +0.0 + 11 +42.0 + 21 +5.000000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +42.0 + 20 +0.0 + 30 +0.0 + 11 +42.0 + 21 +5.000000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +50.0 + 20 +0.0 + 30 +0.0 + 11 +42.0 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +50.0 + 20 +5.000000000000001 + 30 +0.0 + 11 +50.0 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +55.00000000000001 + 20 +5.000000000000001 + 30 +0.0 + 11 +50.0 + 21 +5.000000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +55.00000000000001 + 20 +22.000000000000004 + 30 +0.0 + 11 +55.00000000000001 + 21 +5.000000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +50.0 + 20 +22.000000000000004 + 30 +0.0 + 11 +55.00000000000001 + 21 +22.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +42.0 + 20 +82.0 + 30 +0.0 + 11 +50.0 + 21 +82.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +42.0 + 20 +82.0 + 30 +0.0 + 11 +42.0 + 21 +22.000000000000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +50.0 + 20 +22.000000000000004 + 30 +0.0 + 11 +50.0 + 21 +82.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +25.0 + 20 +82.0 + 30 +0.0 + 11 +42.0 + 21 +82.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +25.0 + 20 +82.0 + 30 +0.0 + 11 +25.0 + 21 +22.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +42.0 + 20 +22.000000000000004 + 30 +0.0 + 11 +25.0 + 21 +22.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +17.0 + 20 +82.0 + 30 +0.0 + 11 +25.0 + 21 +82.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +17.0 + 20 +82.0 + 30 +0.0 + 11 +17.0 + 21 +22.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +25.0 + 20 +22.000000000000004 + 30 +0.0 + 11 +17.0 + 21 +22.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +82.0 + 30 +0.0 + 11 +17.0 + 21 +82.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +22.000000000000004 + 30 +0.0 + 11 +0.0 + 21 +82.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +17.0 + 20 +22.000000000000004 + 30 +0.0 + 11 +0.0 + 21 +22.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +60.00000000000001 + 20 +22.000000000000004 + 30 +0.0 + 11 +50.0 + 21 +22.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +60.00000000000001 + 20 +82.0 + 30 +0.0 + 11 +60.00000000000001 + 21 +22.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +50.0 + 20 +82.0 + 30 +0.0 + 11 +60.00000000000001 + 21 +82.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +37.0 + 20 +22.000000000000004 + 30 +0.0 + 11 +42.0 + 21 +22.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +37.0 + 20 +5.000000000000001 + 30 +0.0 + 11 +37.0 + 21 +22.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +42.0 + 20 +5.000000000000001 + 30 +0.0 + 11 +37.0 + 21 +5.000000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +47.33333333333334 + 20 +1.2500000000000002 + 30 +0.0 + 11 +47.33333333333334 + 21 +3.7500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +47.33333333333334 + 20 +3.7500000000000004 + 30 +0.0 + 11 +44.66666666666668 + 21 +3.7500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +44.66666666666668 + 20 +3.7500000000000004 + 30 +0.0 + 11 +44.66666666666667 + 21 +1.2500000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +53.75000000000001 + 20 +16.333333333333336 + 30 +0.0 + 11 +51.25000000000001 + 21 +16.333333333333336 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +51.25000000000001 + 20 +16.333333333333336 + 30 +0.0 + 11 +51.25000000000001 + 21 +10.666666666666666 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +51.25000000000001 + 20 +10.666666666666666 + 30 +0.0 + 11 +53.75000000000001 + 21 +10.666666666666666 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +36.58333333333334 + 20 +26.000000000000004 + 30 +0.0 + 11 +30.416666666666675 + 21 +26.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +30.416666666666675 + 20 +26.000000000000004 + 30 +0.0 + 11 +30.416666666666675 + 21 +25.500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +30.416666666666675 + 20 +25.500000000000004 + 30 +0.0 + 11 +36.58333333333334 + 21 +25.500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +36.58333333333334 + 20 +25.500000000000004 + 30 +0.0 + 11 +36.58333333333334 + 21 +26.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +22.58333333333334 + 20 +26.000000000000004 + 30 +0.0 + 11 +19.41666666666667 + 21 +26.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +19.41666666666667 + 20 +26.000000000000004 + 30 +0.0 + 11 +19.41666666666667 + 21 +25.500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +19.41666666666667 + 20 +25.500000000000004 + 30 +0.0 + 11 +22.583333333333336 + 21 +25.500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +22.583333333333336 + 20 +25.500000000000004 + 30 +0.0 + 11 +22.58333333333334 + 21 +26.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +7.749999999999994 + 20 +41.75000000000001 + 30 +0.0 + 11 +7.750000000000002 + 21 +62.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +7.750000000000002 + 20 +62.25000000000001 + 30 +0.0 + 11 +7.25 + 21 +62.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +7.25 + 20 +62.25000000000001 + 30 +0.0 + 11 +7.249999999999994 + 21 +41.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +7.249999999999994 + 20 +41.75000000000001 + 30 +0.0 + 11 +7.749999999999994 + 21 +41.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +11.583333333333337 + 20 +26.000000000000004 + 30 +0.0 + 11 +5.416666666666672 + 21 +26.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +5.416666666666672 + 20 +26.000000000000004 + 30 +0.0 + 11 +5.416666666666672 + 21 +25.500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +5.416666666666672 + 20 +25.500000000000004 + 30 +0.0 + 11 +11.583333333333337 + 21 +25.500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +11.583333333333337 + 20 +25.500000000000004 + 30 +0.0 + 11 +11.583333333333337 + 21 +26.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +57.50000000000001 + 20 +62.000000000000014 + 30 +0.0 + 11 +57.50000000000001 + 21 +67.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +57.50000000000001 + 20 +67.00000000000001 + 30 +0.0 + 11 +52.50000000000001 + 21 +62.000000000000014 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +52.50000000000001 + 20 +62.000000000000014 + 30 +0.0 + 11 +52.50000000000001 + 21 +42.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +52.50000000000001 + 20 +42.0 + 30 +0.0 + 11 +57.50000000000001 + 21 +37.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +57.50000000000001 + 20 +37.0 + 30 +0.0 + 11 +57.50000000000001 + 21 +42.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +38.25000000000001 + 20 +10.666666666666668 + 30 +0.0 + 11 +40.75000000000001 + 21 +10.666666666666668 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +40.75000000000001 + 20 +10.666666666666668 + 30 +0.0 + 11 +40.75000000000001 + 21 +16.33333333333334 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +40.75000000000001 + 20 +16.33333333333334 + 30 +0.0 + 11 +38.25000000000001 + 21 +16.33333333333334 + 31 +0.0 + 0 +ENDSEC + 0 +EOF diff --git a/rocolib/output/BatteryStackMount/graph-lasercutter.svg b/rocolib/output/BatteryStackMount/graph-lasercutter.svg new file mode 100644 index 0000000000000000000000000000000000000000..50ccf5416b07804886cbe1af7973cccf017db1d3 --- /dev/null +++ b/rocolib/output/BatteryStackMount/graph-lasercutter.svg @@ -0,0 +1,62 @@ +<?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="82.000000mm" version="1.1" viewBox="0.000000 0.000000 60.000000 82.000000" width="60.000000mm"> + <defs/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="42.0" x2="50.0" y1="5.000000000000001" y2="5.000000000000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="50.0" x2="50.0" y1="5.000000000000001" y2="22.000000000000004"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="50.0" x2="42.0" y1="22.000000000000004" y2="22.000000000000004"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="42.0" x2="42.0" y1="22.000000000000004" y2="5.000000000000001"/> + <line stroke="#000000" x1="42.0" x2="42.0" y1="0.0" y2="5.000000000000001"/> + <line stroke="#000000" x1="50.0" x2="42.0" y1="0.0" y2="0.0"/> + <line stroke="#000000" x1="50.0" x2="50.0" y1="5.000000000000001" y2="0.0"/> + <line stroke="#000000" x1="55.00000000000001" x2="50.0" y1="5.000000000000001" y2="5.000000000000001"/> + <line stroke="#000000" x1="55.00000000000001" x2="55.00000000000001" y1="22.000000000000004" y2="5.000000000000001"/> + <line stroke="#000000" x1="50.0" x2="55.00000000000001" y1="22.000000000000004" y2="22.000000000000004"/> + <line stroke="#000000" x1="42.0" x2="50.0" y1="82.0" y2="82.0"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="42.0" x2="42.0" y1="82.0" y2="22.000000000000004"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="50.0" x2="50.0" y1="22.000000000000004" y2="82.0"/> + <line stroke="#000000" x1="25.0" x2="42.0" y1="82.0" y2="82.0"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="25.0" x2="25.0" y1="82.0" y2="22.000000000000004"/> + <line stroke="#000000" x1="42.0" x2="25.0" y1="22.000000000000004" y2="22.000000000000004"/> + <line stroke="#000000" x1="17.0" x2="25.0" y1="82.0" y2="82.0"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="17.0" x2="17.0" y1="82.0" y2="22.000000000000004"/> + <line stroke="#000000" x1="25.0" x2="17.0" y1="22.000000000000004" y2="22.000000000000004"/> + <line stroke="#000000" x1="0.0" x2="17.0" y1="82.0" y2="82.0"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="22.000000000000004" y2="82.0"/> + <line stroke="#000000" x1="17.0" x2="0.0" y1="22.000000000000004" y2="22.000000000000004"/> + <line stroke="#000000" x1="60.00000000000001" x2="50.0" y1="22.000000000000004" y2="22.000000000000004"/> + <line stroke="#000000" x1="60.00000000000001" x2="60.00000000000001" y1="82.0" y2="22.000000000000004"/> + <line stroke="#000000" x1="50.0" x2="60.00000000000001" y1="82.0" y2="82.0"/> + <line stroke="#000000" x1="37.0" x2="42.0" y1="22.000000000000004" y2="22.000000000000004"/> + <line stroke="#000000" x1="37.0" x2="37.0" y1="5.000000000000001" y2="22.000000000000004"/> + <line stroke="#000000" x1="42.0" x2="37.0" y1="5.000000000000001" y2="5.000000000000001"/> + <line stroke="#888888" x1="47.33333333333334" x2="47.33333333333334" y1="1.2500000000000002" y2="3.7500000000000004"/> + <line stroke="#888888" x1="47.33333333333334" x2="44.66666666666668" y1="3.7500000000000004" y2="3.7500000000000004"/> + <line stroke="#888888" x1="44.66666666666668" x2="44.66666666666667" y1="3.7500000000000004" y2="1.2500000000000002"/> + <line stroke="#888888" x1="53.75000000000001" x2="51.25000000000001" y1="16.333333333333336" y2="16.333333333333336"/> + <line stroke="#888888" x1="51.25000000000001" x2="51.25000000000001" y1="16.333333333333336" y2="10.666666666666666"/> + <line stroke="#888888" x1="51.25000000000001" x2="53.75000000000001" y1="10.666666666666666" y2="10.666666666666666"/> + <line stroke="#888888" x1="36.58333333333334" x2="30.416666666666675" y1="26.000000000000004" y2="26.000000000000004"/> + <line stroke="#888888" x1="30.416666666666675" x2="30.416666666666675" y1="26.000000000000004" y2="25.500000000000004"/> + <line stroke="#888888" x1="30.416666666666675" x2="36.58333333333334" y1="25.500000000000004" y2="25.500000000000004"/> + <line stroke="#888888" x1="36.58333333333334" x2="36.58333333333334" y1="25.500000000000004" y2="26.000000000000004"/> + <line stroke="#888888" x1="22.58333333333334" x2="19.41666666666667" y1="26.000000000000004" y2="26.000000000000004"/> + <line stroke="#888888" x1="19.41666666666667" x2="19.41666666666667" y1="26.000000000000004" y2="25.500000000000004"/> + <line stroke="#888888" x1="19.41666666666667" x2="22.583333333333336" y1="25.500000000000004" y2="25.500000000000004"/> + <line stroke="#888888" x1="22.583333333333336" x2="22.58333333333334" y1="25.500000000000004" y2="26.000000000000004"/> + <line stroke="#888888" x1="7.749999999999994" x2="7.750000000000002" y1="41.75000000000001" y2="62.25000000000001"/> + <line stroke="#888888" x1="7.750000000000002" x2="7.25" y1="62.25000000000001" y2="62.25000000000001"/> + <line stroke="#888888" x1="7.25" x2="7.249999999999994" y1="62.25000000000001" y2="41.75000000000001"/> + <line stroke="#888888" x1="7.249999999999994" x2="7.749999999999994" y1="41.75000000000001" y2="41.75000000000001"/> + <line stroke="#888888" x1="11.583333333333337" x2="5.416666666666672" y1="26.000000000000004" y2="26.000000000000004"/> + <line stroke="#888888" x1="5.416666666666672" x2="5.416666666666672" y1="26.000000000000004" y2="25.500000000000004"/> + <line stroke="#888888" x1="5.416666666666672" x2="11.583333333333337" y1="25.500000000000004" y2="25.500000000000004"/> + <line stroke="#888888" x1="11.583333333333337" x2="11.583333333333337" y1="25.500000000000004" y2="26.000000000000004"/> + <line stroke="#888888" x1="57.50000000000001" x2="57.50000000000001" y1="62.000000000000014" y2="67.00000000000001"/> + <line stroke="#888888" x1="57.50000000000001" x2="52.50000000000001" y1="67.00000000000001" y2="62.000000000000014"/> + <line stroke="#888888" x1="52.50000000000001" x2="52.50000000000001" y1="62.000000000000014" y2="42.0"/> + <line stroke="#888888" x1="52.50000000000001" x2="57.50000000000001" y1="42.0" y2="37.0"/> + <line stroke="#888888" x1="57.50000000000001" x2="57.50000000000001" y1="37.0" y2="42.0"/> + <line stroke="#888888" x1="38.25000000000001" x2="40.75000000000001" y1="10.666666666666668" y2="10.666666666666668"/> + <line stroke="#888888" x1="40.75000000000001" x2="40.75000000000001" y1="10.666666666666668" y2="16.33333333333334"/> + <line stroke="#888888" x1="40.75000000000001" x2="38.25000000000001" y1="16.33333333333334" y2="16.33333333333334"/> +</svg> diff --git a/rocolib/output/BatteryStackMount/graph-model.png b/rocolib/output/BatteryStackMount/graph-model.png new file mode 100644 index 0000000000000000000000000000000000000000..c38eeda7cbe485bba046b671bd488a155f7a0706 Binary files /dev/null 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 new file mode 100644 index 0000000000000000000000000000000000000000..014ca97d63f02a4bceb9f172d3f873628b354cbb --- /dev/null +++ b/rocolib/output/BatteryStackMount/graph-model.stl @@ -0,0 +1,128 @@ +solid python +facet normal 0 0 0 +outer loop +vertex -0.0040 0.0085 0.0000 +vertex -0.0040 -0.0085 0.0000 +vertex 0.0040 -0.0085 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0040 -0.0085 0.0000 +vertex 0.0040 0.0085 0.0000 +vertex -0.0040 0.0085 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0040 0.0085 0.0000 +vertex 0.0040 0.0085 -0.0600 +vertex -0.0040 0.0085 -0.0600 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0040 0.0085 -0.0600 +vertex -0.0040 0.0085 0.0000 +vertex 0.0040 0.0085 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0040 0.0085 0.0000 +vertex -0.0040 0.0085 -0.0600 +vertex -0.0040 -0.0085 -0.0600 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0040 -0.0085 -0.0600 +vertex -0.0040 -0.0085 0.0000 +vertex -0.0040 0.0085 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0040 -0.0085 0.0000 +vertex -0.0040 -0.0085 -0.0600 +vertex 0.0040 -0.0085 -0.0600 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0040 -0.0085 -0.0600 +vertex 0.0040 -0.0085 0.0000 +vertex -0.0040 -0.0085 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0040 -0.0085 0.0000 +vertex 0.0040 -0.0085 -0.0600 +vertex 0.0040 0.0085 -0.0600 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0040 0.0085 -0.0600 +vertex 0.0040 0.0085 0.0000 +vertex 0.0040 -0.0085 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0040 -0.0085 -0.0050 +vertex -0.0040 -0.0085 0.0000 +vertex -0.0040 0.0085 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0040 0.0085 0.0000 +vertex -0.0040 0.0085 -0.0050 +vertex -0.0040 -0.0085 -0.0050 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0040 -0.0085 -0.0050 +vertex 0.0040 -0.0085 0.0000 +vertex -0.0040 -0.0085 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0040 -0.0085 0.0000 +vertex -0.0040 -0.0085 -0.0050 +vertex 0.0040 -0.0085 -0.0050 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0040 -0.0015 -0.0600 +vertex 0.0040 0.0085 -0.0600 +vertex 0.0040 0.0085 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0040 0.0085 0.0000 +vertex 0.0040 -0.0015 0.0000 +vertex 0.0040 -0.0015 -0.0600 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0040 0.0085 -0.0050 +vertex 0.0040 0.0085 0.0000 +vertex 0.0040 -0.0085 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0040 -0.0085 0.0000 +vertex 0.0040 -0.0085 -0.0050 +vertex 0.0040 0.0085 -0.0050 +endloop +endfacet +endsolid python diff --git a/rocolib/output/BatteryStackMount/graph-silhouette.dxf b/rocolib/output/BatteryStackMount/graph-silhouette.dxf new file mode 100644 index 0000000000000000000000000000000000000000..43d71e4c56ac3e02c1ce76f27e08d5cf7897f8a6 --- /dev/null +++ b/rocolib/output/BatteryStackMount/graph-silhouette.dxf @@ -0,0 +1,2002 @@ + 0 +SECTION + 2 +HEADER + 9 +$ACADVER + 1 +AC1009 + 9 +$INSBASE + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMIN + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMAX + 10 +100.0 + 20 +100.0 + 30 +0.0 + 9 +$UNITMODE + 70 +0 + 9 +$AUNITS + 70 +0 + 9 +$ANGBASE + 50 +0.0 + 9 +$ANGDIR + 70 +0 + 0 +ENDSEC + 0 +SECTION + 2 +TABLES + 0 +TABLE + 2 +LTYPE + 70 +20 + 0 +LTYPE + 2 +CONTINUOUS + 70 +0 + 3 +Solid + 72 +65 + 73 +0 + 40 +0.0 + 0 +LTYPE + 2 +CENTER + 70 +0 + 3 +Center ____ _ ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +2.0 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +CENTERX2 + 70 +0 + 3 +Center (2x) ________ __ ________ __ ________ + 72 +65 + 73 +4 + 40 +3.5 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +CENTER2 + 70 +0 + 3 +Center (.5x) ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +1.0 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHED + 70 +0 + 3 +Dashed __ __ __ __ __ __ __ __ __ __ __ __ __ _ + 72 +65 + 73 +2 + 40 +0.6 + 49 +0.5 + 49 +-0.1 + 0 +LTYPE + 2 +DASHEDX2 + 70 +0 + 3 +Dashed (2x) ____ ____ ____ ____ ____ ____ + 72 +65 + 73 +2 + 40 +1.2 + 49 +1.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHED2 + 70 +0 + 3 +Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 +65 + 73 +2 + 40 +0.3 + 49 +0.25 + 49 +-0.05 + 0 +LTYPE + 2 +PHANTOM + 70 +0 + 3 +Phantom ______ __ __ ______ __ __ ______ + 72 +65 + 73 +6 + 40 +2.5 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOMX2 + 70 +0 + 3 +Phantom (2x)____________ ____ ____ ____________ + 72 +65 + 73 +6 + 40 +4.25 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOM2 + 70 +0 + 3 +Phantom (.5x) ___ _ _ ___ _ _ ___ _ _ ___ _ _ ___ + 72 +65 + 73 +6 + 40 +1.25 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHDOT + 70 +0 + 3 +Dash dot __ . __ . __ . __ . __ . __ . __ . __ + 72 +65 + 73 +4 + 40 +1.4 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOTX2 + 70 +0 + 3 +Dash dot (2x) ____ . ____ . ____ . ____ + 72 +65 + 73 +4 + 40 +2.4 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOT2 + 70 +0 + 3 +Dash dot (.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +4 + 40 +0.7 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOT + 70 +0 + 3 +Dot . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DOTX2 + 70 +0 + 3 +Dot (2x) . . . . . . . . + 72 +65 + 73 +2 + 40 +0.4 + 49 +0.0 + 49 +-0.4 + 0 +LTYPE + 2 +DOT2 + 70 +0 + 3 +Dot (.5) . . . . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DIVIDE + 70 +0 + 3 +Divide __ . . __ . . __ . . __ . . __ . . __ + 72 +65 + 73 +6 + 40 +1.6 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDEX2 + 70 +0 + 3 +Divide (2x) ____ . . ____ . . ____ . . ____ + 72 +65 + 73 +6 + 40 +2.6 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDE2 + 70 +0 + 3 +Divide(.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +6 + 40 +0.8 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOTTED + 70 +0 + 3 + + 72 +65 + 73 +2 + 40 +1.0 + 49 +0.0 + 49 +-1.0 + 0 +ENDTAB + 0 +TABLE + 2 +LAYER + 70 +5 + 0 +LAYER + 2 +DIMENSIONS + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEBACKGROUND + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLECONTENT + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEGRID + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +VIEWPORTS + 70 +0 + 62 +7 + 6 +CONTINUOUS + 0 +ENDTAB + 0 +TABLE + 2 +STYLE + 70 +12 + 0 +STYLE + 2 +STANDARD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arial.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbd.ttf + 4 + + 0 +STYLE + 2 +ARIAL_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariali.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +arialbi.ttf + 4 + + 0 +STYLE + 2 +ARIAL_BLACK + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +ariblk.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeur.ttf + 4 + + 0 +STYLE + 2 +ISOCPEUR_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +isocpeui.ttf + 4 + + 0 +STYLE + 2 +TIMES + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +times.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbd.ttf + 4 + + 0 +STYLE + 2 +TIMES_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesi.ttf + 4 + + 0 +STYLE + 2 +TIMES_BOLD_ITALIC + 70 +0 + 40 +0.0 + 41 +1.0 + 42 +1.0 + 50 +0.0 + 71 +0 + 3 +timesbi.ttf + 4 + + 0 +ENDTAB + 0 +TABLE + 2 +VIEW + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +APPID + 70 +1 + 0 +APPID + 2 +DXFWRITE + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +VPORT + 70 +0 + 0 +ENDTAB + 0 +TABLE + 2 +UCS + 70 +0 + 0 +ENDTAB + 0 +ENDSEC + 0 +SECTION + 2 +BLOCKS + 0 +ENDSEC + 0 +SECTION + 2 +ENTITIES + 0 +VIEWPORT + 8 +VIEWPORTS + 67 +1 + 10 +0.0 + 20 +0.0 + 30 +0.0 + 40 +1.0 + 41 +1.0 + 68 +1 + 69 +1 +1001 +ACAD +1000 +MVIEW +1002 +{ +1070 +16 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1010 +0.0 +1020 +0.0 +1030 +0.0 +1040 +0.0 +1040 +1.0 +1040 +0.0 +1040 +0.0 +1040 +50.0 +1040 +0.0 +1040 +0.0 +1070 +0 +1070 +100 +1070 +1 +1070 +3 +1070 +0 +1070 +0 +1070 +0 +1070 +0 +1040 +0.0 +1040 +0.0 +1040 +0.0 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1040 +0.1 +1070 +0 +1002 +{ +1002 +} +1002 +} + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +42.0 + 20 +5.000000000000001 + 30 +0.0 + 11 +50.0 + 21 +5.000000000000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +50.0 + 20 +5.000000000000001 + 30 +0.0 + 11 +50.0 + 21 +22.000000000000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +50.0 + 20 +22.000000000000004 + 30 +0.0 + 11 +42.0 + 21 +22.000000000000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +42.0 + 20 +22.000000000000004 + 30 +0.0 + 11 +42.0 + 21 +5.000000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +42.0 + 20 +0.0 + 30 +0.0 + 11 +42.0 + 21 +5.000000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +50.0 + 20 +0.0 + 30 +0.0 + 11 +42.0 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +50.0 + 20 +5.000000000000001 + 30 +0.0 + 11 +50.0 + 21 +0.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +55.00000000000001 + 20 +5.000000000000001 + 30 +0.0 + 11 +50.0 + 21 +5.000000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +55.00000000000001 + 20 +22.000000000000004 + 30 +0.0 + 11 +55.00000000000001 + 21 +5.000000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +50.0 + 20 +22.000000000000004 + 30 +0.0 + 11 +55.00000000000001 + 21 +22.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +42.0 + 20 +82.0 + 30 +0.0 + 11 +50.0 + 21 +82.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +42.0 + 20 +82.0 + 30 +0.0 + 11 +42.0 + 21 +22.000000000000004 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +50.0 + 20 +22.000000000000004 + 30 +0.0 + 11 +50.0 + 21 +82.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +25.0 + 20 +82.0 + 30 +0.0 + 11 +42.0 + 21 +82.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +25.0 + 20 +82.0 + 30 +0.0 + 11 +25.0 + 21 +22.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +42.0 + 20 +22.000000000000004 + 30 +0.0 + 11 +25.0 + 21 +22.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +17.0 + 20 +82.0 + 30 +0.0 + 11 +25.0 + 21 +82.0 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +17.0 + 20 +82.0 + 30 +0.0 + 11 +17.0 + 21 +22.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +25.0 + 20 +22.000000000000004 + 30 +0.0 + 11 +17.0 + 21 +22.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +82.0 + 30 +0.0 + 11 +17.0 + 21 +82.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +22.000000000000004 + 30 +0.0 + 11 +0.0 + 21 +82.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +17.0 + 20 +22.000000000000004 + 30 +0.0 + 11 +0.0 + 21 +22.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +60.00000000000001 + 20 +22.000000000000004 + 30 +0.0 + 11 +50.0 + 21 +22.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +60.00000000000001 + 20 +82.0 + 30 +0.0 + 11 +60.00000000000001 + 21 +22.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +50.0 + 20 +82.0 + 30 +0.0 + 11 +60.00000000000001 + 21 +82.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +37.0 + 20 +22.000000000000004 + 30 +0.0 + 11 +42.0 + 21 +22.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +37.0 + 20 +5.000000000000001 + 30 +0.0 + 11 +37.0 + 21 +22.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +42.0 + 20 +5.000000000000001 + 30 +0.0 + 11 +37.0 + 21 +5.000000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +47.33333333333334 + 20 +1.2500000000000002 + 30 +0.0 + 11 +47.33333333333334 + 21 +3.7500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +47.33333333333334 + 20 +3.7500000000000004 + 30 +0.0 + 11 +44.66666666666668 + 21 +3.7500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +44.66666666666668 + 20 +3.7500000000000004 + 30 +0.0 + 11 +44.66666666666667 + 21 +1.2500000000000002 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +53.75000000000001 + 20 +16.333333333333336 + 30 +0.0 + 11 +51.25000000000001 + 21 +16.333333333333336 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +51.25000000000001 + 20 +16.333333333333336 + 30 +0.0 + 11 +51.25000000000001 + 21 +10.666666666666666 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +51.25000000000001 + 20 +10.666666666666666 + 30 +0.0 + 11 +53.75000000000001 + 21 +10.666666666666666 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +36.58333333333334 + 20 +26.000000000000004 + 30 +0.0 + 11 +30.416666666666675 + 21 +26.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +30.416666666666675 + 20 +26.000000000000004 + 30 +0.0 + 11 +30.416666666666675 + 21 +25.500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +30.416666666666675 + 20 +25.500000000000004 + 30 +0.0 + 11 +36.58333333333334 + 21 +25.500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +36.58333333333334 + 20 +25.500000000000004 + 30 +0.0 + 11 +36.58333333333334 + 21 +26.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +22.58333333333334 + 20 +26.000000000000004 + 30 +0.0 + 11 +19.41666666666667 + 21 +26.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +19.41666666666667 + 20 +26.000000000000004 + 30 +0.0 + 11 +19.41666666666667 + 21 +25.500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +19.41666666666667 + 20 +25.500000000000004 + 30 +0.0 + 11 +22.583333333333336 + 21 +25.500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +22.583333333333336 + 20 +25.500000000000004 + 30 +0.0 + 11 +22.58333333333334 + 21 +26.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +7.749999999999994 + 20 +41.75000000000001 + 30 +0.0 + 11 +7.750000000000002 + 21 +62.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +7.750000000000002 + 20 +62.25000000000001 + 30 +0.0 + 11 +7.25 + 21 +62.25000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +7.25 + 20 +62.25000000000001 + 30 +0.0 + 11 +7.249999999999994 + 21 +41.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +7.249999999999994 + 20 +41.75000000000001 + 30 +0.0 + 11 +7.749999999999994 + 21 +41.75000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +11.583333333333337 + 20 +26.000000000000004 + 30 +0.0 + 11 +5.416666666666672 + 21 +26.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +5.416666666666672 + 20 +26.000000000000004 + 30 +0.0 + 11 +5.416666666666672 + 21 +25.500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +5.416666666666672 + 20 +25.500000000000004 + 30 +0.0 + 11 +11.583333333333337 + 21 +25.500000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +11.583333333333337 + 20 +25.500000000000004 + 30 +0.0 + 11 +11.583333333333337 + 21 +26.000000000000004 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +57.50000000000001 + 20 +62.000000000000014 + 30 +0.0 + 11 +57.50000000000001 + 21 +67.00000000000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +57.50000000000001 + 20 +67.00000000000001 + 30 +0.0 + 11 +52.50000000000001 + 21 +62.000000000000014 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +52.50000000000001 + 20 +62.000000000000014 + 30 +0.0 + 11 +52.50000000000001 + 21 +42.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +52.50000000000001 + 20 +42.0 + 30 +0.0 + 11 +57.50000000000001 + 21 +37.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +57.50000000000001 + 20 +37.0 + 30 +0.0 + 11 +57.50000000000001 + 21 +42.0 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +38.25000000000001 + 20 +10.666666666666668 + 30 +0.0 + 11 +40.75000000000001 + 21 +10.666666666666668 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +40.75000000000001 + 20 +10.666666666666668 + 30 +0.0 + 11 +40.75000000000001 + 21 +16.33333333333334 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +40.75000000000001 + 20 +16.33333333333334 + 30 +0.0 + 11 +38.25000000000001 + 21 +16.33333333333334 + 31 +0.0 + 0 +ENDSEC + 0 +EOF diff --git a/rocolib/output/BatteryStackMount/tree.png b/rocolib/output/BatteryStackMount/tree.png new file mode 100644 index 0000000000000000000000000000000000000000..1f52968521d00003c090e040a5491b1be4b4f3f6 Binary files /dev/null and b/rocolib/output/BatteryStackMount/tree.png differ diff --git a/rocolib/output/BoatWithStack/graph-anim.svg b/rocolib/output/BoatWithStack/graph-anim.svg new file mode 100644 index 0000000000000000000000000000000000000000..c5cf10ecf5779b8509643e66b0ab5111c5d58183 --- /dev/null +++ b/rocolib/output/BoatWithStack/graph-anim.svg @@ -0,0 +1,469 @@ +<?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="286.204994mm" version="1.1" viewBox="0.000000 0.000000 716.311550 286.204994" width="716.311550mm"> + <defs/> + <line stroke="#000000" x1="100.0" x2="0.0" y1="143.10249700000003" y2="143.10249700000003"/> + <line stroke="#000000" x1="100.0" x2="100.0" y1="143.10249700000003" y2="143.10249700000003"/> + <line stroke="#000000" x1="50.0" x2="100.0" y1="143.10249700000003" y2="143.10249700000003"/> + <line stroke="#000000" x1="0.0" x2="50.0" y1="143.10249700000003" y2="143.10249700000003"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="143.10249700000003" y2="143.10249700000003"/> + <line stroke="#000000" x1="210.00000000000003" x2="110.00000000000001" y1="143.10249700000003" y2="143.10249700000003"/> + <line stroke="#000000" x1="210.00000000000003" x2="210.00000000000003" y1="143.10249700000003" y2="143.10249700000003"/> + <line stroke="#000000" x1="160.00000000000003" x2="210.00000000000003" y1="143.10249700000003" y2="143.10249700000003"/> + <line stroke="#000000" x1="110.00000000000001" x2="160.00000000000003" y1="143.10249700000003" y2="143.10249700000003"/> + <line stroke="#000000" x1="110.00000000000001" x2="110.00000000000001" y1="143.10249700000003" y2="143.10249700000003"/> + <line opacity="0.5" stroke="#0000ff" x1="363.65577494431847" x2="363.65577494431847" y1="78.10249700000001" y2="208.102497"/> + <line opacity="0.5" stroke="#0000ff" x1="293.65577494431847" x2="293.65577494431847" y1="78.10249700000001" y2="208.102497"/> + <line opacity="0.2788579383763045" stroke="#0000ff" x1="328.65577494431847" x2="293.65577494431847" y1="78.10249700000001" y2="78.10249700000001"/> + <line opacity="0.2788579383763045" stroke="#0000ff" x1="363.65577494431847" x2="328.65577494431847" y1="78.10249700000001" y2="78.10249700000001"/> + <line opacity="0.3547848792280184" stroke="#0000ff" x1="328.65577494431847" x2="293.65577494431847" y1="2.4093347406051185e-07" y2="78.10249700000001"/> + <line stroke="#000000" x1="309.9673814630455" x2="271.811578203682" y1="7.3052287140901635" y2="22.220200440567442"/> + <line stroke="#000000" x1="328.65577494431847" x2="309.9673814630455" y1="2.409334456388024e-07" y2="7.3052287140901635"/> + <line opacity="1.0" stroke="#0000ff" x1="293.65577494431847" x2="271.811578203682" y1="78.10249700000001" y2="22.220200440567442"/> + <line opacity="1.0" stroke="#ff0000" x1="293.65577494431847" x2="233.65577494431844" y1="78.10249700000001" y2="37.135172167044736"/> + <line stroke="#000000" x1="271.811578203682" x2="233.65577494431844" y1="22.220200440567453" y2="37.135172167044736"/> + <line opacity="0.9666666666666667" stroke="#ff0000" x1="233.65577494431844" x2="233.65577494431844" y1="78.10249700000001" y2="37.13517216704474"/> + <line opacity="0.1944001122142148" stroke="#0000ff" x1="293.65577494431847" x2="233.65577494431844" y1="78.10249700000001" y2="78.10249700000001"/> + <line stroke="#000000" x1="220.00000000000003" x2="233.65577494431844" y1="78.10249700000001" y2="78.10249700000001"/> + <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="37.13517216704474" y2="78.10249700000001"/> + <line stroke="#000000" x1="233.65577494431844" x2="220.00000000000003" y1="37.13517216704474" y2="37.13517216704474"/> + <line stroke="#000000" x1="233.65577494431844" x2="233.65577494431844" y1="78.10249700000001" y2="208.102497"/> + <line opacity="0.1944001122142148" stroke="#0000ff" x1="233.65577494431844" x2="293.65577494431847" y1="208.102497" y2="208.102497"/> + <line opacity="1.0" stroke="#ff0000" x1="233.65577494431844" x2="293.65577494431847" y1="249.06982183295528" y2="208.102497"/> + <line opacity="0.9666666666666667" stroke="#ff0000" x1="233.65577494431844" x2="233.65577494431844" y1="249.06982183295528" y2="208.102497"/> + <line stroke="#000000" x1="233.65577494431847" x2="271.811578203682" y1="249.0698218329553" y2="263.98479355943255"/> + <line opacity="1.0" stroke="#0000ff" x1="271.811578203682" x2="293.65577494431847" y1="263.98479355943255" y2="208.102497"/> + <line opacity="0.3547848792280184" stroke="#0000ff" x1="328.65577494431847" x2="293.65577494431847" y1="286.20499375906655" y2="208.102497"/> + <line stroke="#000000" x1="309.9673814630455" x2="328.65577494431847" y1="278.8997652859099" y2="286.20499375906655"/> + <line stroke="#000000" x1="271.811578203682" x2="309.9673814630455" y1="263.98479355943255" y2="278.8997652859099"/> + <line opacity="0.2788579383763045" stroke="#0000ff" x1="293.65577494431847" x2="328.65577494431847" y1="208.10249699999997" y2="208.10249699999997"/> + <line opacity="0.2788579383763045" stroke="#0000ff" x1="328.65577494431847" x2="363.65577494431847" y1="208.10249699999997" y2="208.10249699999997"/> + <line opacity="0.3547848792280184" stroke="#0000ff" x1="328.65577494431847" x2="363.65577494431847" y1="286.20499375906655" y2="208.10249699999997"/> + <line stroke="#000000" x1="347.3441684255914" x2="385.49997168495497" y1="278.89976528590984" y2="263.98479355943255"/> + <line stroke="#000000" x1="328.65577494431847" x2="347.3441684255914" y1="286.20499375906655" y2="278.89976528590984"/> + <line opacity="1.0" stroke="#0000ff" x1="363.65577494431847" x2="385.49997168495497" y1="208.10249699999997" y2="263.98479355943255"/> + <line opacity="1.0" stroke="#ff0000" x1="363.65577494431847" x2="423.65577494431847" y1="208.10249699999997" y2="249.06982183295528"/> + <line stroke="#000000" x1="385.49997168495497" x2="423.65577494431847" y1="263.98479355943255" y2="249.06982183295528"/> + <line opacity="0.9666666666666667" stroke="#ff0000" x1="423.65577494431847" x2="423.65577494431847" y1="208.10249699999997" y2="249.06982183295526"/> + <line opacity="0.1944001122142148" stroke="#0000ff" x1="363.65577494431847" x2="423.65577494431847" y1="208.10249699999997" y2="208.10249699999997"/> + <line stroke="#000000" x1="437.31154988863693" x2="423.65577494431847" y1="208.10249699999997" y2="208.10249699999997"/> + <line stroke="#000000" x1="437.31154988863693" x2="437.31154988863693" y1="249.06982183295526" y2="208.10249699999997"/> + <line stroke="#000000" x1="423.65577494431847" x2="437.31154988863693" y1="249.06982183295526" y2="249.06982183295526"/> + <line stroke="#000000" x1="423.65577494431847" x2="423.6557749443185" y1="208.10249699999997" y2="78.102497"/> + <line opacity="0.1944001122142148" stroke="#0000ff" x1="423.6557749443185" x2="363.6557749443185" y1="78.10249700000001" y2="78.10249700000001"/> + <line opacity="1.0" stroke="#ff0000" x1="423.6557749443185" x2="363.6557749443185" y1="37.13517216704474" y2="78.10249700000001"/> + <line opacity="0.9666666666666667" stroke="#ff0000" x1="423.6557749443185" x2="423.6557749443185" y1="37.13517216704474" y2="78.10249700000001"/> + <line stroke="#000000" x1="423.65577494431847" x2="385.49997168495497" y1="37.13517216704476" y2="22.220200440567485"/> + <line opacity="1.0" stroke="#0000ff" x1="385.49997168495497" x2="363.65577494431847" y1="22.220200440567485" y2="78.10249700000003"/> + <line opacity="0.3547848792280184" stroke="#0000ff" x1="328.6557749443185" x2="363.6557749443185" y1="2.4093347406051185e-07" y2="78.10249700000001"/> + <line stroke="#000000" x1="347.3441684255914" x2="328.6557749443185" y1="7.305228714090191" y2="2.4093347406051185e-07"/> + <line stroke="#000000" x1="385.49997168495497" x2="347.3441684255914" y1="22.220200440567485" y2="7.305228714090191"/> + <line stroke="#000000" x1="437.31154988863693" x2="423.6557749443185" y1="37.13517216704474" y2="37.13517216704474"/> + <line stroke="#000000" x1="437.31154988863693" x2="437.31154988863693" y1="78.10249700000001" y2="37.13517216704474"/> + <line stroke="#000000" x1="423.6557749443185" x2="437.31154988863693" y1="78.10249700000001" y2="78.10249700000001"/> + <line stroke="#000000" x1="220.00000000000003" x2="233.65577494431844" y1="249.06982183295528" y2="249.06982183295528"/> + <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="208.102497" y2="249.06982183295528"/> + <line stroke="#000000" x1="233.65577494431844" x2="220.00000000000003" y1="208.102497" y2="208.102497"/> + <line stroke="#888888" x1="301.30138369696056" x2="288.1170968058442" y1="21.957662187001805" y2="27.111354401999538"/> + <line stroke="#888888" x1="288.1170968058442" x2="287.93506183300553" y1="27.111354401999538" y2="26.645668597337593"/> + <line stroke="#888888" x1="287.93506183300553" x2="301.119348724122" y1="26.645668597337593" y2="21.49197638233986"/> + <line stroke="#888888" x1="301.119348724122" x2="301.30138369696056" y1="21.49197638233986" y2="21.957662187001805"/> + <line stroke="#888888" x1="223.41394373607963" x2="230.2418312082388" y1="50.790947111363174" y2="50.790947111363174"/> + <line stroke="#888888" x1="230.2418312082388" x2="230.2418312082388" y1="50.790947111363174" y2="64.4467220556816"/> + <line stroke="#888888" x1="230.2418312082388" x2="223.41394373607963" y1="64.4467220556816" y2="64.4467220556816"/> + <line stroke="#888888" x1="288.1170968058442" x2="301.30138369696056" y1="259.0936395980005" y2="264.2473318129982"/> + <line stroke="#888888" x1="301.30138369696056" x2="301.119348724122" y1="264.2473318129982" y2="264.7130176176602"/> + <line stroke="#888888" x1="301.119348724122" x2="287.93506183300553" y1="264.7130176176602" y2="259.55932540266247"/> + <line stroke="#888888" x1="287.93506183300553" x2="288.1170968058442" y1="259.55932540266247" y2="259.0936395980005"/> + <line stroke="#888888" x1="356.01016619167626" x2="369.1944530827928" y1="264.2473318129982" y2="259.0936395980005"/> + <line stroke="#888888" x1="369.1944530827928" x2="369.3764880556314" y1="259.0936395980005" y2="259.5593254026624"/> + <line stroke="#888888" x1="369.3764880556314" x2="356.192201164515" y1="259.5593254026624" y2="264.71301761766017"/> + <line stroke="#888888" x1="356.192201164515" x2="356.01016619167626" y1="264.71301761766017" y2="264.2473318129982"/> + <line stroke="#888888" x1="433.8976061525573" x2="427.06971868039807" y1="235.41404688863682" y2="235.41404688863682"/> + <line stroke="#888888" x1="427.06971868039807" x2="427.06971868039807" y1="235.41404688863682" y2="221.7582719443184"/> + <line stroke="#888888" x1="427.06971868039807" x2="433.8976061525573" y1="221.7582719443184" y2="221.7582719443184"/> + <line stroke="#888888" x1="369.1944530827928" x2="356.01016619167626" y1="27.11135440199955" y2="21.957662187001834"/> + <line stroke="#888888" x1="356.01016619167626" x2="356.192201164515" y1="21.957662187001834" y2="21.491976382339885"/> + <line stroke="#888888" x1="356.192201164515" x2="369.37648805563146" y1="21.491976382339885" y2="26.645668597337608"/> + <line stroke="#888888" x1="369.37648805563146" x2="369.1944530827928" y1="26.645668597337608" y2="27.11135440199955"/> + <line stroke="#888888" x1="433.8976061525573" x2="427.06971868039807" y1="64.44672205568159" y2="64.44672205568159"/> + <line stroke="#888888" x1="427.06971868039807" x2="427.06971868039807" y1="64.44672205568159" y2="50.790947111363174"/> + <line stroke="#888888" x1="427.06971868039807" x2="433.8976061525573" y1="50.790947111363174" y2="50.790947111363174"/> + <line stroke="#888888" x1="223.41394373607963" x2="230.2418312082388" y1="221.75827194431847" y2="221.75827194431847"/> + <line stroke="#888888" x1="230.2418312082388" x2="230.2418312082388" y1="221.75827194431847" y2="235.41404688863685"/> + <line stroke="#888888" x1="230.2418312082388" x2="223.41394373607963" y1="235.41404688863685" y2="235.41404688863685"/> + <line opacity="0.5" stroke="#0000ff" x1="480.31154988863693" x2="541.3115498886368" y1="131.102497" y2="131.102497"/> + <line opacity="0.5" stroke="#0000ff" x1="541.3115498886368" x2="541.3115498886368" y1="131.102497" y2="155.10249700000003"/> + <line opacity="0.5" stroke="#0000ff" x1="541.3115498886368" x2="480.31154988863693" y1="155.10249700000003" y2="155.10249700000003"/> + <line opacity="0.5" stroke="#0000ff" x1="480.31154988863693" x2="480.31154988863693" y1="155.10249700000003" y2="131.102497"/> + <line stroke="#000000" x1="480.31154988863693" x2="480.31154988863693" y1="124.10249700000001" y2="131.102497"/> + <line stroke="#000000" x1="540.3115498886368" x2="480.31154988863693" y1="124.10249700000001" y2="124.10249700000001"/> + <line stroke="#000000" x1="540.3115498886368" x2="540.3115498886368" y1="131.102497" y2="124.10249700000001"/> + <line stroke="#000000" x1="548.3115498886369" x2="541.3115498886368" y1="131.102497" y2="131.102497"/> + <line stroke="#000000" x1="548.3115498886369" x2="548.3115498886369" y1="155.10249700000003" y2="131.102497"/> + <line stroke="#000000" x1="541.3115498886368" x2="548.3115498886369" y1="155.10249700000003" y2="155.10249700000003"/> + <line opacity="0.5" stroke="#0000ff" x1="541.3115498886368" x2="541.3115498886368" y1="155.10249700000003" y2="216.10249700000003"/> + <line stroke="#000000" x1="481.31154988863693" x2="541.3115498886368" y1="216.10249700000003" y2="216.10249700000003"/> + <line opacity="0.5" stroke="#0000ff" x1="481.31154988863693" x2="481.31154988863693" y1="155.10249700000003" y2="216.10249700000003"/> + <line stroke="#000000" x1="565.3115498886369" x2="541.3115498886368" y1="155.10249700000003" y2="155.10249700000003"/> + <line opacity="0.5" stroke="#0000ff" x1="565.3115498886369" x2="565.3115498886369" y1="155.10249700000003" y2="216.10249700000003"/> + <line stroke="#000000" x1="541.3115498886368" x2="565.3115498886369" y1="216.10249700000003" y2="216.10249700000003"/> + <line stroke="#000000" x1="625.3115498886368" x2="565.3115498886369" y1="155.10249700000003" y2="155.10249700000003"/> + <line stroke="#000000" x1="625.3115498886368" x2="625.3115498886368" y1="216.10249700000003" y2="155.10249700000003"/> + <line stroke="#000000" x1="565.3115498886369" x2="625.3115498886368" y1="216.10249700000003" y2="216.10249700000003"/> + <line stroke="#000000" x1="481.31154988863693" x2="457.3115498886369" y1="155.10249700000003" y2="155.10249700000003"/> + <line stroke="#000000" x1="457.3115498886369" x2="481.31154988863693" y1="216.10249700000003" y2="216.10249700000003"/> + <line opacity="0.5" stroke="#0000ff" x1="457.3115498886369" x2="457.3115498886369" y1="216.10249700000003" y2="155.10249700000003"/> + <line stroke="#000000" x1="447.31154988863693" x2="457.3115498886369" y1="216.10249700000003" y2="216.10249700000003"/> + <line stroke="#000000" x1="447.31154988863693" x2="447.31154988863693" y1="155.10249700000003" y2="216.10249700000003"/> + <line stroke="#000000" x1="457.3115498886369" x2="447.31154988863693" y1="155.10249700000003" y2="155.10249700000003"/> + <line stroke="#000000" x1="473.31154988863693" x2="480.31154988863693" y1="155.10249700000003" y2="155.10249700000003"/> + <line stroke="#000000" x1="473.31154988863693" x2="473.31154988863693" y1="131.102497" y2="155.10249700000003"/> + <line stroke="#000000" x1="480.31154988863693" x2="473.31154988863693" y1="131.102497" y2="131.102497"/> + <line stroke="#888888" x1="529.4024589795459" x2="532.902458979546" y1="125.85249700000001" y2="125.85249700000001"/> + <line stroke="#888888" x1="532.902458979546" x2="529.4024589795459" y1="125.85249700000001" y2="129.35249700000003"/> + <line stroke="#888888" x1="529.4024589795459" x2="518.4933680704552" y1="129.35249700000003" y2="129.35249700000003"/> + <line stroke="#888888" x1="518.4933680704552" x2="514.9933680704551" y1="129.35249700000003" y2="125.85249700000001"/> + <line stroke="#888888" x1="514.9933680704551" x2="518.4933680704552" y1="125.85249700000001" y2="125.85249700000001"/> + <line stroke="#888888" x1="502.12973170681875" x2="505.62973170681875" y1="125.85249700000001" y2="125.85249700000001"/> + <line stroke="#888888" x1="505.62973170681875" x2="502.12973170681875" y1="125.85249700000001" y2="129.35249700000003"/> + <line stroke="#888888" x1="502.12973170681875" x2="491.22064079772787" y1="129.35249700000003" y2="129.35249700000003"/> + <line stroke="#888888" x1="491.22064079772787" x2="487.72064079772787" y1="129.35249700000003" y2="125.85249700000001"/> + <line stroke="#888888" x1="487.72064079772787" x2="491.22064079772787" y1="125.85249700000001" y2="125.85249700000001"/> + <line stroke="#888888" x1="546.5615498886368" x2="543.0615498886369" y1="147.10249700000003" y2="147.10249700000003"/> + <line stroke="#888888" x1="543.0615498886369" x2="543.0615498886369" y1="147.10249700000003" y2="139.10249700000003"/> + <line stroke="#888888" x1="543.0615498886369" x2="546.5615498886368" y1="139.10249700000003" y2="139.10249700000003"/> + <line stroke="#888888" x1="488.81154988863693" x2="488.81154988863693" y1="206.60249700000003" y2="188.60249700000003"/> + <line stroke="#888888" x1="488.81154988863693" x2="523.8115498886369" y1="188.60249700000003" y2="188.60249700000003"/> + <line stroke="#888888" x1="523.8115498886369" x2="523.8115498886369" y1="188.60249700000003" y2="206.60249700000003"/> + <line stroke="#888888" x1="523.8115498886369" x2="488.81154988863693" y1="206.60249700000003" y2="206.60249700000003"/> + <line stroke="#888888" x1="541.8115498886369" x2="541.8115498886369" y1="168.35249700000003" y2="165.35249700000003"/> + <line stroke="#888888" x1="541.8115498886369" x2="544.8115498886368" y1="165.35249700000003" y2="165.35249700000003"/> + <line stroke="#888888" x1="544.8115498886368" x2="544.8115498886368" y1="165.35249700000003" y2="168.35249700000003"/> + <line stroke="#888888" x1="544.8115498886368" x2="541.8115498886369" y1="168.35249700000003" y2="168.35249700000003"/> + <line stroke="#888888" x1="562.8115498886368" x2="562.8115498886368" y1="167.352497" y2="166.35249700000003"/> + <line stroke="#888888" x1="562.8115498886368" x2="563.8115498886368" y1="166.35249700000003" y2="166.35249700000003"/> + <line stroke="#888888" x1="563.8115498886368" x2="563.8115498886368" y1="166.35249700000003" y2="167.352497"/> + <line stroke="#888888" x1="563.8115498886368" x2="562.8115498886368" y1="167.352497" y2="167.352497"/> + <line stroke="#888888" x1="542.8115498886368" x2="542.8115498886368" y1="169.85249700000003" y2="168.85249700000003"/> + <line stroke="#888888" x1="542.8115498886368" x2="543.8115498886368" y1="168.85249700000003" y2="168.85249700000003"/> + <line stroke="#888888" x1="543.8115498886368" x2="543.8115498886368" y1="168.85249700000003" y2="169.85249700000003"/> + <line stroke="#888888" x1="543.8115498886368" x2="542.8115498886368" y1="169.85249700000003" y2="169.85249700000003"/> + <line stroke="#888888" x1="562.8115498886368" x2="562.8115498886368" y1="169.85249700000003" y2="168.85249700000003"/> + <line stroke="#888888" x1="562.8115498886368" x2="563.8115498886368" y1="168.85249700000003" y2="168.85249700000003"/> + <line stroke="#888888" x1="563.8115498886368" x2="563.8115498886368" y1="168.85249700000003" y2="169.85249700000003"/> + <line stroke="#888888" x1="563.8115498886368" x2="562.8115498886368" y1="169.85249700000003" y2="169.85249700000003"/> + <line stroke="#888888" x1="542.8115498886368" x2="542.8115498886368" y1="172.35249700000003" y2="171.352497"/> + <line stroke="#888888" x1="542.8115498886368" x2="543.8115498886368" y1="171.352497" y2="171.352497"/> + <line stroke="#888888" x1="543.8115498886368" x2="543.8115498886368" y1="171.352497" y2="172.35249700000003"/> + <line stroke="#888888" x1="543.8115498886368" x2="542.8115498886368" y1="172.35249700000003" y2="172.35249700000003"/> + <line stroke="#888888" x1="562.8115498886368" x2="562.8115498886368" y1="172.35249700000003" y2="171.352497"/> + <line stroke="#888888" x1="562.8115498886368" x2="563.8115498886368" y1="171.352497" y2="171.352497"/> + <line stroke="#888888" x1="563.8115498886368" x2="563.8115498886368" y1="171.352497" y2="172.35249700000003"/> + <line stroke="#888888" x1="563.8115498886368" x2="562.8115498886368" y1="172.35249700000003" y2="172.35249700000003"/> + <line stroke="#888888" x1="542.8115498886368" x2="542.8115498886368" y1="174.85249700000003" y2="173.852497"/> + <line stroke="#888888" x1="542.8115498886368" x2="543.8115498886368" y1="173.852497" y2="173.852497"/> + <line stroke="#888888" x1="543.8115498886368" x2="543.8115498886368" y1="173.852497" y2="174.85249700000003"/> + <line stroke="#888888" x1="543.8115498886368" x2="542.8115498886368" y1="174.85249700000003" y2="174.85249700000003"/> + <line stroke="#888888" x1="562.8115498886368" x2="562.8115498886368" y1="174.85249700000003" y2="173.852497"/> + <line stroke="#888888" x1="562.8115498886368" x2="563.8115498886368" y1="173.852497" y2="173.852497"/> + <line stroke="#888888" x1="563.8115498886368" x2="563.8115498886368" y1="173.852497" y2="174.85249700000003"/> + <line stroke="#888888" x1="563.8115498886368" x2="562.8115498886368" y1="174.85249700000003" y2="174.85249700000003"/> + <line stroke="#888888" x1="542.8115498886368" x2="542.8115498886368" y1="177.35249700000003" y2="176.352497"/> + <line stroke="#888888" x1="542.8115498886368" x2="543.8115498886368" y1="176.352497" y2="176.352497"/> + <line stroke="#888888" x1="543.8115498886368" x2="543.8115498886368" y1="176.352497" y2="177.35249700000003"/> + <line stroke="#888888" x1="543.8115498886368" x2="542.8115498886368" y1="177.35249700000003" y2="177.35249700000003"/> + <line stroke="#888888" x1="562.8115498886368" x2="562.8115498886368" y1="177.35249700000003" y2="176.352497"/> + <line stroke="#888888" x1="562.8115498886368" x2="563.8115498886368" y1="176.352497" y2="176.352497"/> + <line stroke="#888888" x1="563.8115498886368" x2="563.8115498886368" y1="176.352497" y2="177.35249700000003"/> + <line stroke="#888888" x1="563.8115498886368" x2="562.8115498886368" y1="177.35249700000003" y2="177.35249700000003"/> + <line stroke="#888888" x1="542.8115498886368" x2="542.8115498886368" y1="179.85249700000003" y2="178.85249700000003"/> + <line stroke="#888888" x1="542.8115498886368" x2="543.8115498886368" y1="178.85249700000003" y2="178.85249700000003"/> + <line stroke="#888888" x1="543.8115498886368" x2="543.8115498886368" y1="178.85249700000003" y2="179.85249700000003"/> + <line stroke="#888888" x1="543.8115498886368" x2="542.8115498886368" y1="179.85249700000003" y2="179.85249700000003"/> + <line stroke="#888888" x1="562.8115498886368" x2="562.8115498886368" y1="179.85249700000003" y2="178.85249700000003"/> + <line stroke="#888888" x1="562.8115498886368" x2="563.8115498886368" y1="178.85249700000003" y2="178.85249700000003"/> + <line stroke="#888888" x1="563.8115498886368" x2="563.8115498886368" y1="178.85249700000003" y2="179.85249700000003"/> + <line stroke="#888888" x1="563.8115498886368" x2="562.8115498886368" y1="179.85249700000003" y2="179.85249700000003"/> + <line stroke="#888888" x1="542.8115498886368" x2="542.8115498886368" y1="182.35249700000003" y2="181.35249700000003"/> + <line stroke="#888888" x1="542.8115498886368" x2="543.8115498886368" y1="181.35249700000003" y2="181.35249700000003"/> + <line stroke="#888888" x1="543.8115498886368" x2="543.8115498886368" y1="181.35249700000003" y2="182.35249700000003"/> + <line stroke="#888888" x1="543.8115498886368" x2="542.8115498886368" y1="182.35249700000003" y2="182.35249700000003"/> + <line stroke="#888888" x1="562.8115498886368" x2="562.8115498886368" y1="182.35249700000003" y2="181.35249700000003"/> + <line stroke="#888888" x1="562.8115498886368" x2="563.8115498886368" y1="181.35249700000003" y2="181.35249700000003"/> + <line stroke="#888888" x1="563.8115498886368" x2="563.8115498886368" y1="181.35249700000003" y2="182.35249700000003"/> + <line stroke="#888888" x1="563.8115498886368" x2="562.8115498886368" y1="182.35249700000003" y2="182.35249700000003"/> + <line stroke="#888888" x1="542.8115498886368" x2="542.8115498886368" y1="184.85249700000003" y2="183.85249700000003"/> + <line stroke="#888888" x1="542.8115498886368" x2="543.8115498886368" y1="183.85249700000003" y2="183.85249700000003"/> + <line stroke="#888888" x1="543.8115498886368" x2="543.8115498886368" y1="183.85249700000003" y2="184.85249700000003"/> + <line stroke="#888888" x1="543.8115498886368" x2="542.8115498886368" y1="184.85249700000003" y2="184.85249700000003"/> + <line stroke="#888888" x1="562.8115498886368" x2="562.8115498886368" y1="184.85249700000003" y2="183.85249700000003"/> + <line stroke="#888888" x1="562.8115498886368" x2="563.8115498886368" y1="183.85249700000003" y2="183.85249700000003"/> + <line stroke="#888888" x1="563.8115498886368" x2="563.8115498886368" y1="183.85249700000003" y2="184.85249700000003"/> + <line stroke="#888888" x1="563.8115498886368" x2="562.8115498886368" y1="184.85249700000003" y2="184.85249700000003"/> + <line stroke="#888888" x1="542.8115498886368" x2="542.8115498886368" y1="187.352497" y2="186.35249700000003"/> + <line stroke="#888888" x1="542.8115498886368" x2="543.8115498886368" y1="186.35249700000003" y2="186.35249700000003"/> + <line stroke="#888888" x1="543.8115498886368" x2="543.8115498886368" y1="186.35249700000003" y2="187.352497"/> + <line stroke="#888888" x1="543.8115498886368" x2="542.8115498886368" y1="187.352497" y2="187.352497"/> + <line stroke="#888888" x1="562.8115498886368" x2="562.8115498886368" y1="187.352497" y2="186.35249700000003"/> + <line stroke="#888888" x1="562.8115498886368" x2="563.8115498886368" y1="186.35249700000003" y2="186.35249700000003"/> + <line stroke="#888888" x1="563.8115498886368" x2="563.8115498886368" y1="186.35249700000003" y2="187.352497"/> + <line stroke="#888888" x1="563.8115498886368" x2="562.8115498886368" y1="187.352497" y2="187.352497"/> + <line stroke="#888888" x1="542.8115498886368" x2="542.8115498886368" y1="189.852497" y2="188.85249700000003"/> + <line stroke="#888888" x1="542.8115498886368" x2="543.8115498886368" y1="188.85249700000003" y2="188.85249700000003"/> + <line stroke="#888888" x1="543.8115498886368" x2="543.8115498886368" y1="188.85249700000003" y2="189.852497"/> + <line stroke="#888888" x1="543.8115498886368" x2="542.8115498886368" y1="189.852497" y2="189.852497"/> + <line stroke="#888888" x1="562.8115498886368" x2="562.8115498886368" y1="189.852497" y2="188.85249700000003"/> + <line stroke="#888888" x1="562.8115498886368" x2="563.8115498886368" y1="188.85249700000003" y2="188.85249700000003"/> + <line stroke="#888888" x1="563.8115498886368" x2="563.8115498886368" y1="188.85249700000003" y2="189.852497"/> + <line stroke="#888888" x1="563.8115498886368" x2="562.8115498886368" y1="189.852497" y2="189.852497"/> + <line stroke="#888888" x1="542.8115498886368" x2="542.8115498886368" y1="192.352497" y2="191.35249700000003"/> + <line stroke="#888888" x1="542.8115498886368" x2="543.8115498886368" y1="191.35249700000003" y2="191.35249700000003"/> + <line stroke="#888888" x1="543.8115498886368" x2="543.8115498886368" y1="191.35249700000003" y2="192.352497"/> + <line stroke="#888888" x1="543.8115498886368" x2="542.8115498886368" y1="192.352497" y2="192.352497"/> + <line stroke="#888888" x1="562.8115498886368" x2="562.8115498886368" y1="192.352497" y2="191.35249700000003"/> + <line stroke="#888888" x1="562.8115498886368" x2="563.8115498886368" y1="191.35249700000003" y2="191.35249700000003"/> + <line stroke="#888888" x1="563.8115498886368" x2="563.8115498886368" y1="191.35249700000003" y2="192.352497"/> + <line stroke="#888888" x1="563.8115498886368" x2="562.8115498886368" y1="192.352497" y2="192.352497"/> + <line stroke="#888888" x1="542.8115498886368" x2="542.8115498886368" y1="194.85249700000003" y2="193.85249700000003"/> + <line stroke="#888888" x1="542.8115498886368" x2="543.8115498886368" y1="193.85249700000003" y2="193.85249700000003"/> + <line stroke="#888888" x1="543.8115498886368" x2="543.8115498886368" y1="193.85249700000003" y2="194.85249700000003"/> + <line stroke="#888888" x1="543.8115498886368" x2="542.8115498886368" y1="194.85249700000003" y2="194.85249700000003"/> + <line stroke="#888888" x1="562.8115498886368" x2="562.8115498886368" y1="194.85249700000003" y2="193.85249700000003"/> + <line stroke="#888888" x1="562.8115498886368" x2="563.8115498886368" y1="193.85249700000003" y2="193.85249700000003"/> + <line stroke="#888888" x1="563.8115498886368" x2="563.8115498886368" y1="193.85249700000003" y2="194.85249700000003"/> + <line stroke="#888888" x1="563.8115498886368" x2="562.8115498886368" y1="194.85249700000003" y2="194.85249700000003"/> + <line stroke="#888888" x1="542.8115498886368" x2="542.8115498886368" y1="197.35249700000003" y2="196.35249700000003"/> + <line stroke="#888888" x1="542.8115498886368" x2="543.8115498886368" y1="196.35249700000003" y2="196.35249700000003"/> + <line stroke="#888888" x1="543.8115498886368" x2="543.8115498886368" y1="196.35249700000003" y2="197.35249700000003"/> + <line stroke="#888888" x1="543.8115498886368" x2="542.8115498886368" y1="197.35249700000003" y2="197.35249700000003"/> + <line stroke="#888888" x1="562.8115498886368" x2="562.8115498886368" y1="197.35249700000003" y2="196.35249700000003"/> + <line stroke="#888888" x1="562.8115498886368" x2="563.8115498886368" y1="196.35249700000003" y2="196.35249700000003"/> + <line stroke="#888888" x1="563.8115498886368" x2="563.8115498886368" y1="196.35249700000003" y2="197.35249700000003"/> + <line stroke="#888888" x1="563.8115498886368" x2="562.8115498886368" y1="197.35249700000003" y2="197.35249700000003"/> + <line stroke="#888888" x1="542.8115498886368" x2="542.8115498886368" y1="199.85249700000003" y2="198.852497"/> + <line stroke="#888888" x1="542.8115498886368" x2="543.8115498886368" y1="198.852497" y2="198.852497"/> + <line stroke="#888888" x1="543.8115498886368" x2="543.8115498886368" y1="198.852497" y2="199.85249700000003"/> + <line stroke="#888888" x1="543.8115498886368" x2="542.8115498886368" y1="199.85249700000003" y2="199.85249700000003"/> + <line stroke="#888888" x1="562.8115498886368" x2="562.8115498886368" y1="199.85249700000003" y2="198.852497"/> + <line stroke="#888888" x1="562.8115498886368" x2="563.8115498886368" y1="198.852497" y2="198.852497"/> + <line stroke="#888888" x1="563.8115498886368" x2="563.8115498886368" y1="198.852497" y2="199.85249700000003"/> + <line stroke="#888888" x1="563.8115498886368" x2="562.8115498886368" y1="199.85249700000003" y2="199.85249700000003"/> + <line stroke="#888888" x1="542.8115498886368" x2="542.8115498886368" y1="202.35249700000003" y2="201.352497"/> + <line stroke="#888888" x1="542.8115498886368" x2="543.8115498886368" y1="201.352497" y2="201.352497"/> + <line stroke="#888888" x1="543.8115498886368" x2="543.8115498886368" y1="201.352497" y2="202.35249700000003"/> + <line stroke="#888888" x1="543.8115498886368" x2="542.8115498886368" y1="202.35249700000003" y2="202.35249700000003"/> + <line stroke="#888888" x1="562.8115498886368" x2="562.8115498886368" y1="202.35249700000003" y2="201.352497"/> + <line stroke="#888888" x1="562.8115498886368" x2="563.8115498886368" y1="201.352497" y2="201.352497"/> + <line stroke="#888888" x1="563.8115498886368" x2="563.8115498886368" y1="201.352497" y2="202.35249700000003"/> + <line stroke="#888888" x1="563.8115498886368" x2="562.8115498886368" y1="202.35249700000003" y2="202.35249700000003"/> + <line stroke="#888888" x1="542.8115498886368" x2="542.8115498886368" y1="204.85249700000003" y2="203.85249700000003"/> + <line stroke="#888888" x1="542.8115498886368" x2="543.8115498886368" y1="203.85249700000003" y2="203.85249700000003"/> + <line stroke="#888888" x1="543.8115498886368" x2="543.8115498886368" y1="203.85249700000003" y2="204.85249700000003"/> + <line stroke="#888888" x1="543.8115498886368" x2="542.8115498886368" y1="204.85249700000003" y2="204.85249700000003"/> + <line stroke="#888888" x1="561.8115498886368" x2="561.8115498886368" y1="205.852497" y2="202.85249700000003"/> + <line stroke="#888888" x1="561.8115498886368" x2="564.8115498886369" y1="202.85249700000003" y2="202.85249700000003"/> + <line stroke="#888888" x1="564.8115498886369" x2="564.8115498886369" y1="202.85249700000003" y2="205.852497"/> + <line stroke="#888888" x1="564.8115498886369" x2="561.8115498886368" y1="205.852497" y2="205.852497"/> + <line stroke="#888888" x1="557.5615498886368" x2="549.0615498886368" y1="162.852497" y2="162.852497"/> + <line stroke="#888888" x1="549.0615498886368" x2="549.0615498886368" y1="162.852497" y2="162.352497"/> + <line stroke="#888888" x1="549.0615498886368" x2="557.5615498886368" y1="162.352497" y2="162.352497"/> + <line stroke="#888888" x1="557.5615498886368" x2="557.5615498886368" y1="162.352497" y2="162.852497"/> + <line stroke="#888888" x1="549.0615498886368" x2="557.5615498886368" y1="210.60249700000003" y2="210.60249700000003"/> + <line stroke="#888888" x1="557.5615498886368" x2="557.5615498886368" y1="210.60249700000003" y2="211.10249700000003"/> + <line stroke="#888888" x1="557.5615498886368" x2="549.0615498886368" y1="211.10249700000003" y2="211.10249700000003"/> + <line stroke="#888888" x1="549.0615498886368" x2="549.0615498886368" y1="211.10249700000003" y2="210.60249700000003"/> + <line stroke="#888888" x1="580.3115498886368" x2="580.3115498886368" y1="206.10249700000003" y2="193.10249700000003"/> + <line stroke="#888888" x1="580.3115498886368" x2="610.3115498886369" y1="193.10249700000003" y2="193.10249700000003"/> + <line stroke="#888888" x1="610.3115498886369" x2="610.3115498886369" y1="193.10249700000003" y2="206.10249700000003"/> + <line stroke="#888888" x1="610.3115498886369" x2="580.3115498886368" y1="206.10249700000003" y2="206.10249700000003"/> + <line stroke="#888888" x1="587.3797317068187" x2="575.9706407977279" y1="160.602497" y2="160.602497"/> + <line stroke="#888888" x1="575.9706407977279" x2="575.9706407977279" y1="160.602497" y2="160.102497"/> + <line stroke="#888888" x1="575.9706407977279" x2="587.3797317068187" y1="160.102497" y2="160.102497"/> + <line stroke="#888888" x1="587.3797317068187" x2="587.3797317068187" y1="160.102497" y2="160.602497"/> + <line stroke="#888888" x1="614.6524589795459" x2="603.2433680704552" y1="160.602497" y2="160.602497"/> + <line stroke="#888888" x1="603.2433680704552" x2="603.2433680704552" y1="160.602497" y2="160.102497"/> + <line stroke="#888888" x1="603.2433680704552" x2="614.6524589795459" y1="160.102497" y2="160.102497"/> + <line stroke="#888888" x1="614.6524589795459" x2="614.6524589795459" y1="160.102497" y2="160.602497"/> + <line stroke="#888888" x1="617.5615498886369" x2="617.5615498886369" y1="177.53431518181822" y2="165.9434060909091"/> + <line stroke="#888888" x1="617.5615498886369" x2="618.0615498886369" y1="165.9434060909091" y2="165.9434060909091"/> + <line stroke="#888888" x1="618.0615498886369" x2="618.0615498886369" y1="165.9434060909091" y2="177.53431518181822"/> + <line stroke="#888888" x1="618.0615498886369" x2="617.5615498886369" y1="177.53431518181822" y2="177.53431518181822"/> + <line stroke="#888888" x1="617.5615498886369" x2="617.5615498886369" y1="205.26158790909093" y2="193.67067881818187"/> + <line stroke="#888888" x1="617.5615498886369" x2="618.0615498886369" y1="193.67067881818187" y2="193.67067881818187"/> + <line stroke="#888888" x1="618.0615498886369" x2="618.0615498886369" y1="193.67067881818187" y2="205.26158790909093"/> + <line stroke="#888888" x1="618.0615498886369" x2="617.5615498886369" y1="205.26158790909093" y2="205.26158790909093"/> + <line stroke="#888888" x1="457.81154988863693" x2="457.81154988863693" y1="168.35249700000003" y2="165.35249700000003"/> + <line stroke="#888888" x1="457.81154988863693" x2="460.81154988863693" y1="165.35249700000003" y2="165.35249700000003"/> + <line stroke="#888888" x1="460.81154988863693" x2="460.81154988863693" y1="165.35249700000003" y2="168.35249700000003"/> + <line stroke="#888888" x1="460.81154988863693" x2="457.81154988863693" y1="168.35249700000003" y2="168.35249700000003"/> + <line stroke="#888888" x1="478.81154988863693" x2="478.81154988863693" y1="167.352497" y2="166.35249700000003"/> + <line stroke="#888888" x1="478.81154988863693" x2="479.81154988863693" y1="166.35249700000003" y2="166.35249700000003"/> + <line stroke="#888888" x1="479.81154988863693" x2="479.81154988863693" y1="166.35249700000003" y2="167.352497"/> + <line stroke="#888888" x1="479.81154988863693" x2="478.81154988863693" y1="167.352497" y2="167.352497"/> + <line stroke="#888888" x1="458.81154988863693" x2="458.81154988863693" y1="169.85249700000003" y2="168.85249700000003"/> + <line stroke="#888888" x1="458.81154988863693" x2="459.81154988863693" y1="168.85249700000003" y2="168.85249700000003"/> + <line stroke="#888888" x1="459.81154988863693" x2="459.81154988863693" y1="168.85249700000003" y2="169.85249700000003"/> + <line stroke="#888888" x1="459.81154988863693" x2="458.81154988863693" y1="169.85249700000003" y2="169.85249700000003"/> + <line stroke="#888888" x1="478.81154988863693" x2="478.81154988863693" y1="169.85249700000003" y2="168.85249700000003"/> + <line stroke="#888888" x1="478.81154988863693" x2="479.81154988863693" y1="168.85249700000003" y2="168.85249700000003"/> + <line stroke="#888888" x1="479.81154988863693" x2="479.81154988863693" y1="168.85249700000003" y2="169.85249700000003"/> + <line stroke="#888888" x1="479.81154988863693" x2="478.81154988863693" y1="169.85249700000003" y2="169.85249700000003"/> + <line stroke="#888888" x1="458.81154988863693" x2="458.81154988863693" y1="172.35249700000003" y2="171.352497"/> + <line stroke="#888888" x1="458.81154988863693" x2="459.81154988863693" y1="171.352497" y2="171.352497"/> + <line stroke="#888888" x1="459.81154988863693" x2="459.81154988863693" y1="171.352497" y2="172.35249700000003"/> + <line stroke="#888888" x1="459.81154988863693" x2="458.81154988863693" y1="172.35249700000003" y2="172.35249700000003"/> + <line stroke="#888888" x1="478.81154988863693" x2="478.81154988863693" y1="172.35249700000003" y2="171.352497"/> + <line stroke="#888888" x1="478.81154988863693" x2="479.81154988863693" y1="171.352497" y2="171.352497"/> + <line stroke="#888888" x1="479.81154988863693" x2="479.81154988863693" y1="171.352497" y2="172.35249700000003"/> + <line stroke="#888888" x1="479.81154988863693" x2="478.81154988863693" y1="172.35249700000003" y2="172.35249700000003"/> + <line stroke="#888888" x1="458.81154988863693" x2="458.81154988863693" y1="174.85249700000003" y2="173.852497"/> + <line stroke="#888888" x1="458.81154988863693" x2="459.81154988863693" y1="173.852497" y2="173.852497"/> + <line stroke="#888888" x1="459.81154988863693" x2="459.81154988863693" y1="173.852497" y2="174.85249700000003"/> + <line stroke="#888888" x1="459.81154988863693" x2="458.81154988863693" y1="174.85249700000003" y2="174.85249700000003"/> + <line stroke="#888888" x1="478.81154988863693" x2="478.81154988863693" y1="174.85249700000003" y2="173.852497"/> + <line stroke="#888888" x1="478.81154988863693" x2="479.81154988863693" y1="173.852497" y2="173.852497"/> + <line stroke="#888888" x1="479.81154988863693" x2="479.81154988863693" y1="173.852497" y2="174.85249700000003"/> + <line stroke="#888888" x1="479.81154988863693" x2="478.81154988863693" y1="174.85249700000003" y2="174.85249700000003"/> + <line stroke="#888888" x1="458.81154988863693" x2="458.81154988863693" y1="177.35249700000003" y2="176.352497"/> + <line stroke="#888888" x1="458.81154988863693" x2="459.81154988863693" y1="176.352497" y2="176.352497"/> + <line stroke="#888888" x1="459.81154988863693" x2="459.81154988863693" y1="176.352497" y2="177.35249700000003"/> + <line stroke="#888888" x1="459.81154988863693" x2="458.81154988863693" y1="177.35249700000003" y2="177.35249700000003"/> + <line stroke="#888888" x1="478.81154988863693" x2="478.81154988863693" y1="177.35249700000003" y2="176.352497"/> + <line stroke="#888888" x1="478.81154988863693" x2="479.81154988863693" y1="176.352497" y2="176.352497"/> + <line stroke="#888888" x1="479.81154988863693" x2="479.81154988863693" y1="176.352497" y2="177.35249700000003"/> + <line stroke="#888888" x1="479.81154988863693" x2="478.81154988863693" y1="177.35249700000003" y2="177.35249700000003"/> + <line stroke="#888888" x1="458.81154988863693" x2="458.81154988863693" y1="179.85249700000003" y2="178.85249700000003"/> + <line stroke="#888888" x1="458.81154988863693" x2="459.81154988863693" y1="178.85249700000003" y2="178.85249700000003"/> + <line stroke="#888888" x1="459.81154988863693" x2="459.81154988863693" y1="178.85249700000003" y2="179.85249700000003"/> + <line stroke="#888888" x1="459.81154988863693" x2="458.81154988863693" y1="179.85249700000003" y2="179.85249700000003"/> + <line stroke="#888888" x1="478.81154988863693" x2="478.81154988863693" y1="179.85249700000003" y2="178.85249700000003"/> + <line stroke="#888888" x1="478.81154988863693" x2="479.81154988863693" y1="178.85249700000003" y2="178.85249700000003"/> + <line stroke="#888888" x1="479.81154988863693" x2="479.81154988863693" y1="178.85249700000003" y2="179.85249700000003"/> + <line stroke="#888888" x1="479.81154988863693" x2="478.81154988863693" y1="179.85249700000003" y2="179.85249700000003"/> + <line stroke="#888888" x1="458.81154988863693" x2="458.81154988863693" y1="182.35249700000003" y2="181.35249700000003"/> + <line stroke="#888888" x1="458.81154988863693" x2="459.81154988863693" y1="181.35249700000003" y2="181.35249700000003"/> + <line stroke="#888888" x1="459.81154988863693" x2="459.81154988863693" y1="181.35249700000003" y2="182.35249700000003"/> + <line stroke="#888888" x1="459.81154988863693" x2="458.81154988863693" y1="182.35249700000003" y2="182.35249700000003"/> + <line stroke="#888888" x1="478.81154988863693" x2="478.81154988863693" y1="182.35249700000003" y2="181.35249700000003"/> + <line stroke="#888888" x1="478.81154988863693" x2="479.81154988863693" y1="181.35249700000003" y2="181.35249700000003"/> + <line stroke="#888888" x1="479.81154988863693" x2="479.81154988863693" y1="181.35249700000003" y2="182.35249700000003"/> + <line stroke="#888888" x1="479.81154988863693" x2="478.81154988863693" y1="182.35249700000003" y2="182.35249700000003"/> + <line stroke="#888888" x1="458.81154988863693" x2="458.81154988863693" y1="184.85249700000003" y2="183.85249700000003"/> + <line stroke="#888888" x1="458.81154988863693" x2="459.81154988863693" y1="183.85249700000003" y2="183.85249700000003"/> + <line stroke="#888888" x1="459.81154988863693" x2="459.81154988863693" y1="183.85249700000003" y2="184.85249700000003"/> + <line stroke="#888888" x1="459.81154988863693" x2="458.81154988863693" y1="184.85249700000003" y2="184.85249700000003"/> + <line stroke="#888888" x1="478.81154988863693" x2="478.81154988863693" y1="184.85249700000003" y2="183.85249700000003"/> + <line stroke="#888888" x1="478.81154988863693" x2="479.81154988863693" y1="183.85249700000003" y2="183.85249700000003"/> + <line stroke="#888888" x1="479.81154988863693" x2="479.81154988863693" y1="183.85249700000003" y2="184.85249700000003"/> + <line stroke="#888888" x1="479.81154988863693" x2="478.81154988863693" y1="184.85249700000003" y2="184.85249700000003"/> + <line stroke="#888888" x1="458.81154988863693" x2="458.81154988863693" y1="187.352497" y2="186.35249700000003"/> + <line stroke="#888888" x1="458.81154988863693" x2="459.81154988863693" y1="186.35249700000003" y2="186.35249700000003"/> + <line stroke="#888888" x1="459.81154988863693" x2="459.81154988863693" y1="186.35249700000003" y2="187.352497"/> + <line stroke="#888888" x1="459.81154988863693" x2="458.81154988863693" y1="187.352497" y2="187.352497"/> + <line stroke="#888888" x1="478.81154988863693" x2="478.81154988863693" y1="187.352497" y2="186.35249700000003"/> + <line stroke="#888888" x1="478.81154988863693" x2="479.81154988863693" y1="186.35249700000003" y2="186.35249700000003"/> + <line stroke="#888888" x1="479.81154988863693" x2="479.81154988863693" y1="186.35249700000003" y2="187.352497"/> + <line stroke="#888888" x1="479.81154988863693" x2="478.81154988863693" y1="187.352497" y2="187.352497"/> + <line stroke="#888888" x1="458.81154988863693" x2="458.81154988863693" y1="189.852497" y2="188.85249700000003"/> + <line stroke="#888888" x1="458.81154988863693" x2="459.81154988863693" y1="188.85249700000003" y2="188.85249700000003"/> + <line stroke="#888888" x1="459.81154988863693" x2="459.81154988863693" y1="188.85249700000003" y2="189.852497"/> + <line stroke="#888888" x1="459.81154988863693" x2="458.81154988863693" y1="189.852497" y2="189.852497"/> + <line stroke="#888888" x1="478.81154988863693" x2="478.81154988863693" y1="189.852497" y2="188.85249700000003"/> + <line stroke="#888888" x1="478.81154988863693" x2="479.81154988863693" y1="188.85249700000003" y2="188.85249700000003"/> + <line stroke="#888888" x1="479.81154988863693" x2="479.81154988863693" y1="188.85249700000003" y2="189.852497"/> + <line stroke="#888888" x1="479.81154988863693" x2="478.81154988863693" y1="189.852497" y2="189.852497"/> + <line stroke="#888888" x1="458.81154988863693" x2="458.81154988863693" y1="192.352497" y2="191.35249700000003"/> + <line stroke="#888888" x1="458.81154988863693" x2="459.81154988863693" y1="191.35249700000003" y2="191.35249700000003"/> + <line stroke="#888888" x1="459.81154988863693" x2="459.81154988863693" y1="191.35249700000003" y2="192.352497"/> + <line stroke="#888888" x1="459.81154988863693" x2="458.81154988863693" y1="192.352497" y2="192.352497"/> + <line stroke="#888888" x1="478.81154988863693" x2="478.81154988863693" y1="192.352497" y2="191.35249700000003"/> + <line stroke="#888888" x1="478.81154988863693" x2="479.81154988863693" y1="191.35249700000003" y2="191.35249700000003"/> + <line stroke="#888888" x1="479.81154988863693" x2="479.81154988863693" y1="191.35249700000003" y2="192.352497"/> + <line stroke="#888888" x1="479.81154988863693" x2="478.81154988863693" y1="192.352497" y2="192.352497"/> + <line stroke="#888888" x1="458.81154988863693" x2="458.81154988863693" y1="194.85249700000003" y2="193.85249700000003"/> + <line stroke="#888888" x1="458.81154988863693" x2="459.81154988863693" y1="193.85249700000003" y2="193.85249700000003"/> + <line stroke="#888888" x1="459.81154988863693" x2="459.81154988863693" y1="193.85249700000003" y2="194.85249700000003"/> + <line stroke="#888888" x1="459.81154988863693" x2="458.81154988863693" y1="194.85249700000003" y2="194.85249700000003"/> + <line stroke="#888888" x1="478.81154988863693" x2="478.81154988863693" y1="194.85249700000003" y2="193.85249700000003"/> + <line stroke="#888888" x1="478.81154988863693" x2="479.81154988863693" y1="193.85249700000003" y2="193.85249700000003"/> + <line stroke="#888888" x1="479.81154988863693" x2="479.81154988863693" y1="193.85249700000003" y2="194.85249700000003"/> + <line stroke="#888888" x1="479.81154988863693" x2="478.81154988863693" y1="194.85249700000003" y2="194.85249700000003"/> + <line stroke="#888888" x1="458.81154988863693" x2="458.81154988863693" y1="197.35249700000003" y2="196.35249700000003"/> + <line stroke="#888888" x1="458.81154988863693" x2="459.81154988863693" y1="196.35249700000003" y2="196.35249700000003"/> + <line stroke="#888888" x1="459.81154988863693" x2="459.81154988863693" y1="196.35249700000003" y2="197.35249700000003"/> + <line stroke="#888888" x1="459.81154988863693" x2="458.81154988863693" y1="197.35249700000003" y2="197.35249700000003"/> + <line stroke="#888888" x1="478.81154988863693" x2="478.81154988863693" y1="197.35249700000003" y2="196.35249700000003"/> + <line stroke="#888888" x1="478.81154988863693" x2="479.81154988863693" y1="196.35249700000003" y2="196.35249700000003"/> + <line stroke="#888888" x1="479.81154988863693" x2="479.81154988863693" y1="196.35249700000003" y2="197.35249700000003"/> + <line stroke="#888888" x1="479.81154988863693" x2="478.81154988863693" y1="197.35249700000003" y2="197.35249700000003"/> + <line stroke="#888888" x1="458.81154988863693" x2="458.81154988863693" y1="199.85249700000003" y2="198.852497"/> + <line stroke="#888888" x1="458.81154988863693" x2="459.81154988863693" y1="198.852497" y2="198.852497"/> + <line stroke="#888888" x1="459.81154988863693" x2="459.81154988863693" y1="198.852497" y2="199.85249700000003"/> + <line stroke="#888888" x1="459.81154988863693" x2="458.81154988863693" y1="199.85249700000003" y2="199.85249700000003"/> + <line stroke="#888888" x1="478.81154988863693" x2="478.81154988863693" y1="199.85249700000003" y2="198.852497"/> + <line stroke="#888888" x1="478.81154988863693" x2="479.81154988863693" y1="198.852497" y2="198.852497"/> + <line stroke="#888888" x1="479.81154988863693" x2="479.81154988863693" y1="198.852497" y2="199.85249700000003"/> + <line stroke="#888888" x1="479.81154988863693" x2="478.81154988863693" y1="199.85249700000003" y2="199.85249700000003"/> + <line stroke="#888888" x1="458.81154988863693" x2="458.81154988863693" y1="202.35249700000003" y2="201.352497"/> + <line stroke="#888888" x1="458.81154988863693" x2="459.81154988863693" y1="201.352497" y2="201.352497"/> + <line stroke="#888888" x1="459.81154988863693" x2="459.81154988863693" y1="201.352497" y2="202.35249700000003"/> + <line stroke="#888888" x1="459.81154988863693" x2="458.81154988863693" y1="202.35249700000003" y2="202.35249700000003"/> + <line stroke="#888888" x1="478.81154988863693" x2="478.81154988863693" y1="202.35249700000003" y2="201.352497"/> + <line stroke="#888888" x1="478.81154988863693" x2="479.81154988863693" y1="201.352497" y2="201.352497"/> + <line stroke="#888888" x1="479.81154988863693" x2="479.81154988863693" y1="201.352497" y2="202.35249700000003"/> + <line stroke="#888888" x1="479.81154988863693" x2="478.81154988863693" y1="202.35249700000003" y2="202.35249700000003"/> + <line stroke="#888888" x1="458.81154988863693" x2="458.81154988863693" y1="204.85249700000003" y2="203.85249700000003"/> + <line stroke="#888888" x1="458.81154988863693" x2="459.81154988863693" y1="203.85249700000003" y2="203.85249700000003"/> + <line stroke="#888888" x1="459.81154988863693" x2="459.81154988863693" y1="203.85249700000003" y2="204.85249700000003"/> + <line stroke="#888888" x1="459.81154988863693" x2="458.81154988863693" y1="204.85249700000003" y2="204.85249700000003"/> + <line stroke="#888888" x1="477.81154988863693" x2="477.81154988863693" y1="205.852497" y2="202.85249700000003"/> + <line stroke="#888888" x1="477.81154988863693" x2="480.81154988863693" y1="202.85249700000003" y2="202.85249700000003"/> + <line stroke="#888888" x1="480.81154988863693" x2="480.81154988863693" y1="202.85249700000003" y2="205.852497"/> + <line stroke="#888888" x1="480.81154988863693" x2="477.81154988863693" y1="205.852497" y2="205.852497"/> + <line stroke="#888888" x1="473.56154988863693" x2="465.06154988863693" y1="162.852497" y2="162.852497"/> + <line stroke="#888888" x1="465.06154988863693" x2="465.06154988863693" y1="162.852497" y2="162.352497"/> + <line stroke="#888888" x1="465.06154988863693" x2="473.56154988863693" y1="162.352497" y2="162.352497"/> + <line stroke="#888888" x1="473.56154988863693" x2="473.56154988863693" y1="162.352497" y2="162.852497"/> + <line stroke="#888888" x1="465.06154988863693" x2="473.56154988863693" y1="210.60249700000003" y2="210.60249700000003"/> + <line stroke="#888888" x1="473.56154988863693" x2="473.56154988863693" y1="210.60249700000003" y2="211.10249700000003"/> + <line stroke="#888888" x1="473.56154988863693" x2="465.06154988863693" y1="211.10249700000003" y2="211.10249700000003"/> + <line stroke="#888888" x1="465.06154988863693" x2="465.06154988863693" y1="211.10249700000003" y2="210.60249700000003"/> + <line stroke="#888888" x1="449.81154988863693" x2="454.81154988863693" y1="166.1934060909091" y2="166.1934060909091"/> + <line stroke="#888888" x1="454.81154988863693" x2="454.81154988863693" y1="166.1934060909091" y2="177.28431518181822"/> + <line stroke="#888888" x1="454.81154988863693" x2="449.81154988863693" y1="177.28431518181822" y2="177.28431518181822"/> + <line stroke="#888888" x1="449.81154988863693" x2="454.81154988863693" y1="193.92067881818187" y2="193.92067881818187"/> + <line stroke="#888888" x1="454.81154988863693" x2="454.81154988863693" y1="193.92067881818187" y2="205.01158790909093"/> + <line stroke="#888888" x1="454.81154988863693" x2="449.81154988863693" y1="205.01158790909093" y2="205.01158790909093"/> + <line stroke="#888888" x1="475.06154988863693" x2="478.56154988863693" y1="139.10249700000003" y2="139.10249700000003"/> + <line stroke="#888888" x1="478.56154988863693" x2="478.56154988863693" y1="139.10249700000003" y2="147.10249700000003"/> + <line stroke="#888888" x1="478.56154988863693" x2="475.06154988863693" y1="147.10249700000003" y2="147.10249700000003"/> + <line opacity="0.25" stroke="#0000ff" x1="645.3115498886368" x2="706.3115498886369" y1="125.03318600040735" y2="125.03318600040735"/> + <line stroke="#000000" x1="706.3115498886369" x2="706.3115498886369" y1="161.17180799959266" y2="125.03318600040735"/> + <line stroke="#000000" x1="645.3115498886368" x2="706.3115498886369" y1="161.17180799959266" y2="161.17180799959266"/> + <line stroke="#000000" x1="645.3115498886368" x2="645.3115498886368" y1="125.03318600040735" y2="161.17180799959266"/> + <line opacity="0.25" stroke="#0000ff" x1="706.3115498886369" x2="645.3115498886368" y1="101.03318600040734" y2="101.03318600040734"/> + <line opacity="0.5" stroke="#0000ff" x1="706.3115498886369" x2="706.3115498886369" y1="101.03318600040734" y2="125.03318600040735"/> + <line stroke="#000000" x1="645.3115498886368" x2="645.3115498886368" y1="64.89456400122205" y2="101.03318600040734"/> + <line stroke="#000000" x1="706.3115498886369" x2="645.3115498886368" y1="64.89456400122205" y2="64.89456400122205"/> + <line stroke="#000000" x1="706.3115498886369" x2="706.3115498886369" y1="101.03318600040734" y2="64.89456400122205"/> + <line stroke="#000000" x1="716.3115498886368" x2="706.3115498886369" y1="101.03318600040734" y2="101.03318600040734"/> + <line stroke="#000000" x1="716.3115498886368" x2="716.3115498886368" y1="125.03318600040735" y2="101.03318600040734"/> + <line stroke="#000000" x1="706.3115498886369" x2="716.3115498886368" y1="125.03318600040735" y2="125.03318600040735"/> + <line stroke="#000000" x1="635.3115498886368" x2="645.3115498886368" y1="125.03318600040735" y2="125.03318600040735"/> + <line stroke="#000000" x1="635.3115498886368" x2="635.3115498886368" y1="101.03318600040734" y2="125.03318600040735"/> + <line stroke="#000000" x1="645.3115498886368" x2="635.3115498886368" y1="101.03318600040734" y2="101.03318600040734"/> + <line stroke="#888888" x1="663.3115498886368" x2="674.3115498886369" y1="106.53318600040735" y2="106.53318600040735"/> + <line stroke="#888888" x1="674.3115498886369" x2="674.3115498886369" y1="106.53318600040735" y2="119.53318600040735"/> + <line stroke="#888888" x1="674.3115498886369" x2="663.3115498886368" y1="119.53318600040735" y2="119.53318600040735"/> + <line stroke="#888888" x1="663.3115498886368" x2="663.3115498886368" y1="119.53318600040735" y2="106.53318600040735"/> + <line stroke="#888888" x1="694.8115498886369" x2="700.8115498886369" y1="108.03318600040735" y2="108.03318600040735"/> + <line stroke="#888888" x1="700.8115498886369" x2="700.8115498886369" y1="108.03318600040735" y2="118.03318600040734"/> + <line stroke="#888888" x1="700.8115498886369" x2="694.8115498886369" y1="118.03318600040734" y2="118.03318600040734"/> + <line stroke="#888888" x1="694.8115498886369" x2="694.8115498886369" y1="118.03318600040734" y2="108.03318600040735"/> + <line stroke="#888888" x1="713.8115498886369" x2="708.8115498886368" y1="117.03318600040735" y2="117.03318600040735"/> + <line stroke="#888888" x1="708.8115498886368" x2="708.8115498886368" y1="117.03318600040735" y2="109.03318600040735"/> + <line stroke="#888888" x1="708.8115498886368" x2="713.8115498886369" y1="109.03318600040735" y2="109.03318600040735"/> + <line stroke="#888888" x1="637.8115498886369" x2="642.8115498886368" y1="109.03318600040735" y2="109.03318600040735"/> + <line stroke="#888888" x1="642.8115498886368" x2="642.8115498886368" y1="109.03318600040735" y2="117.03318600040735"/> + <line stroke="#888888" x1="642.8115498886368" x2="637.8115498886369" y1="117.03318600040735" y2="117.03318600040735"/> +</svg> diff --git a/rocolib/output/BoatWithStack/graph-autofold-default.dxf b/rocolib/output/BoatWithStack/graph-autofold-default.dxf new file mode 100644 index 0000000000000000000000000000000000000000..e3368532130309c3152342b7b56f4666d9f815e9 --- /dev/null +++ b/rocolib/output/BoatWithStack/graph-autofold-default.dxf @@ -0,0 +1,9476 @@ + 0 +SECTION + 2 +HEADER + 9 +$ACADVER + 1 +AC1009 + 9 +$INSBASE + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMIN + 10 +0.0 + 20 +0.0 + 30 +0.0 + 9 +$EXTMAX + 10 +100.0 + 20 +100.0 + 30 +0.0 + 9 +$UNITMODE + 70 +0 + 9 +$AUNITS + 70 +0 + 9 +$ANGBASE + 50 +0.0 + 9 +$ANGDIR + 70 +0 + 0 +ENDSEC + 0 +SECTION + 2 +TABLES + 0 +TABLE + 2 +LTYPE + 70 +20 + 0 +LTYPE + 2 +CONTINUOUS + 70 +0 + 3 +Solid + 72 +65 + 73 +0 + 40 +0.0 + 0 +LTYPE + 2 +CENTER + 70 +0 + 3 +Center ____ _ ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +2.0 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +CENTERX2 + 70 +0 + 3 +Center (2x) ________ __ ________ __ ________ + 72 +65 + 73 +4 + 40 +3.5 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +CENTER2 + 70 +0 + 3 +Center (.5x) ____ _ ____ _ ____ _ ____ _ ____ + 72 +65 + 73 +4 + 40 +1.0 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHED + 70 +0 + 3 +Dashed __ __ __ __ __ __ __ __ __ __ __ __ __ _ + 72 +65 + 73 +2 + 40 +0.6 + 49 +0.5 + 49 +-0.1 + 0 +LTYPE + 2 +DASHEDX2 + 70 +0 + 3 +Dashed (2x) ____ ____ ____ ____ ____ ____ + 72 +65 + 73 +2 + 40 +1.2 + 49 +1.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHED2 + 70 +0 + 3 +Dashed (.5x) _ _ _ _ _ _ _ _ _ _ _ _ _ _ + 72 +65 + 73 +2 + 40 +0.3 + 49 +0.25 + 49 +-0.05 + 0 +LTYPE + 2 +PHANTOM + 70 +0 + 3 +Phantom ______ __ __ ______ __ __ ______ + 72 +65 + 73 +6 + 40 +2.5 + 49 +1.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 49 +0.25 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOMX2 + 70 +0 + 3 +Phantom (2x)____________ ____ ____ ____________ + 72 +65 + 73 +6 + 40 +4.25 + 49 +2.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 49 +0.5 + 49 +-0.25 + 0 +LTYPE + 2 +PHANTOM2 + 70 +0 + 3 +Phantom (.5x) ___ _ _ ___ _ _ ___ _ _ ___ _ _ ___ + 72 +65 + 73 +6 + 40 +1.25 + 49 +0.625 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 49 +0.125 + 49 +-0.125 + 0 +LTYPE + 2 +DASHDOT + 70 +0 + 3 +Dash dot __ . __ . __ . __ . __ . __ . __ . __ + 72 +65 + 73 +4 + 40 +1.4 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOTX2 + 70 +0 + 3 +Dash dot (2x) ____ . ____ . ____ . ____ + 72 +65 + 73 +4 + 40 +2.4 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DASHDOT2 + 70 +0 + 3 +Dash dot (.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +4 + 40 +0.7 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOT + 70 +0 + 3 +Dot . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DOTX2 + 70 +0 + 3 +Dot (2x) . . . . . . . . + 72 +65 + 73 +2 + 40 +0.4 + 49 +0.0 + 49 +-0.4 + 0 +LTYPE + 2 +DOT2 + 70 +0 + 3 +Dot (.5) . . . . . . . . . . . . . . . . . . . + 72 +65 + 73 +2 + 40 +0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DIVIDE + 70 +0 + 3 +Divide __ . . __ . . __ . . __ . . __ . . __ + 72 +65 + 73 +6 + 40 +1.6 + 49 +1.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDEX2 + 70 +0 + 3 +Divide (2x) ____ . . ____ . . ____ . . ____ + 72 +65 + 73 +6 + 40 +2.6 + 49 +2.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 49 +0.0 + 49 +-0.2 + 0 +LTYPE + 2 +DIVIDE2 + 70 +0 + 3 +Divide(.5x) _ . _ . _ . _ . _ . _ . _ . _ + 72 +65 + 73 +6 + 40 +0.8 + 49 +0.5 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 49 +0.0 + 49 +-0.1 + 0 +LTYPE + 2 +DOTTED + 70 +0 + 3 + + 72 +65 + 73 +2 + 40 +1.0 + 49 +0.0 + 49 +-1.0 + 0 +ENDTAB + 0 +TABLE + 2 +LAYER + 70 +14 + 0 +LAYER + 2 +DIMENSIONS + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEBACKGROUND + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLECONTENT + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +TABLEGRID + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +VIEWPORTS + 70 +0 + 62 +7 + 6 +CONTINUOUS + 0 +LAYER + 2 +0 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +90 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +50.19442890773482 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +63.86127826104331 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +180 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +-180 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +-174 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +34.99202019855866 + 70 +0 + 62 +1 + 6 +CONTINUOUS + 0 +LAYER + 2 +45 + 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 +100.0 + 20 +143.10249700000003 + 30 +0.0 + 11 +0.0 + 21 +143.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +100.0 + 20 +143.10249700000003 + 30 +0.0 + 11 +100.0 + 21 +143.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +50.0 + 20 +143.10249700000003 + 30 +0.0 + 11 +100.0 + 21 +143.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +0.0 + 20 +143.10249700000003 + 30 +0.0 + 11 +50.0 + 21 +143.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +0.0 + 20 +143.10249700000003 + 30 +0.0 + 11 +0.0 + 21 +143.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +210.00000000000003 + 20 +143.10249700000003 + 30 +0.0 + 11 +110.00000000000001 + 21 +143.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +210.00000000000003 + 20 +143.10249700000003 + 30 +0.0 + 11 +210.00000000000003 + 21 +143.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +160.00000000000003 + 20 +143.10249700000003 + 30 +0.0 + 11 +210.00000000000003 + 21 +143.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +110.00000000000001 + 20 +143.10249700000003 + 30 +0.0 + 11 +160.00000000000003 + 21 +143.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +110.00000000000001 + 20 +143.10249700000003 + 30 +0.0 + 11 +110.00000000000001 + 21 +143.10249700000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +363.65577494431847 + 20 +78.10249700000001 + 30 +0.0 + 11 +363.65577494431847 + 21 +208.102497 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +293.65577494431847 + 20 +78.10249700000001 + 30 +0.0 + 11 +293.65577494431847 + 21 +208.102497 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +50.19442890773482 + 10 +328.65577494431847 + 20 +78.10249700000001 + 30 +0.0 + 11 +293.65577494431847 + 21 +78.10249700000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +50.19442890773482 + 10 +363.65577494431847 + 20 +78.10249700000001 + 30 +0.0 + 11 +328.65577494431847 + 21 +78.10249700000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +63.86127826104331 + 10 +328.65577494431847 + 20 +2.4093347406051185e-07 + 30 +0.0 + 11 +293.65577494431847 + 21 +78.10249700000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +309.9673814630455 + 20 +7.3052287140901635 + 30 +0.0 + 11 +271.811578203682 + 21 +22.220200440567442 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +328.65577494431847 + 20 +2.409334456388024e-07 + 30 +0.0 + 11 +309.9673814630455 + 21 +7.3052287140901635 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +180 + 10 +293.65577494431847 + 20 +78.10249700000001 + 30 +0.0 + 11 +271.811578203682 + 21 +22.220200440567442 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-180 + 10 +293.65577494431847 + 20 +78.10249700000001 + 30 +0.0 + 11 +233.65577494431844 + 21 +37.135172167044736 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +271.811578203682 + 20 +22.220200440567453 + 30 +0.0 + 11 +233.65577494431844 + 21 +37.135172167044736 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-174 + 10 +233.65577494431844 + 20 +78.10249700000001 + 30 +0.0 + 11 +233.65577494431844 + 21 +37.13517216704474 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +34.99202019855866 + 10 +293.65577494431847 + 20 +78.10249700000001 + 30 +0.0 + 11 +233.65577494431844 + 21 +78.10249700000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +220.00000000000003 + 20 +78.10249700000001 + 30 +0.0 + 11 +233.65577494431844 + 21 +78.10249700000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +220.00000000000003 + 20 +37.13517216704474 + 30 +0.0 + 11 +220.00000000000003 + 21 +78.10249700000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +233.65577494431844 + 20 +37.13517216704474 + 30 +0.0 + 11 +220.00000000000003 + 21 +37.13517216704474 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +233.65577494431844 + 20 +78.10249700000001 + 30 +0.0 + 11 +233.65577494431844 + 21 +208.102497 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +34.99202019855866 + 10 +233.65577494431844 + 20 +208.102497 + 30 +0.0 + 11 +293.65577494431847 + 21 +208.102497 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-180 + 10 +233.65577494431844 + 20 +249.06982183295528 + 30 +0.0 + 11 +293.65577494431847 + 21 +208.102497 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-174 + 10 +233.65577494431844 + 20 +249.06982183295528 + 30 +0.0 + 11 +233.65577494431844 + 21 +208.102497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +233.65577494431847 + 20 +249.0698218329553 + 30 +0.0 + 11 +271.811578203682 + 21 +263.98479355943255 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +180 + 10 +271.811578203682 + 20 +263.98479355943255 + 30 +0.0 + 11 +293.65577494431847 + 21 +208.102497 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +63.86127826104331 + 10 +328.65577494431847 + 20 +286.20499375906655 + 30 +0.0 + 11 +293.65577494431847 + 21 +208.102497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +309.9673814630455 + 20 +278.8997652859099 + 30 +0.0 + 11 +328.65577494431847 + 21 +286.20499375906655 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +271.811578203682 + 20 +263.98479355943255 + 30 +0.0 + 11 +309.9673814630455 + 21 +278.8997652859099 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +50.19442890773482 + 10 +293.65577494431847 + 20 +208.10249699999997 + 30 +0.0 + 11 +328.65577494431847 + 21 +208.10249699999997 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +50.19442890773482 + 10 +328.65577494431847 + 20 +208.10249699999997 + 30 +0.0 + 11 +363.65577494431847 + 21 +208.10249699999997 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +63.86127826104331 + 10 +328.65577494431847 + 20 +286.20499375906655 + 30 +0.0 + 11 +363.65577494431847 + 21 +208.10249699999997 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +347.3441684255914 + 20 +278.89976528590984 + 30 +0.0 + 11 +385.49997168495497 + 21 +263.98479355943255 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +328.65577494431847 + 20 +286.20499375906655 + 30 +0.0 + 11 +347.3441684255914 + 21 +278.89976528590984 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +180 + 10 +363.65577494431847 + 20 +208.10249699999997 + 30 +0.0 + 11 +385.49997168495497 + 21 +263.98479355943255 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-180 + 10 +363.65577494431847 + 20 +208.10249699999997 + 30 +0.0 + 11 +423.65577494431847 + 21 +249.06982183295528 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +385.49997168495497 + 20 +263.98479355943255 + 30 +0.0 + 11 +423.65577494431847 + 21 +249.06982183295528 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-174 + 10 +423.65577494431847 + 20 +208.10249699999997 + 30 +0.0 + 11 +423.65577494431847 + 21 +249.06982183295526 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +34.99202019855866 + 10 +363.65577494431847 + 20 +208.10249699999997 + 30 +0.0 + 11 +423.65577494431847 + 21 +208.10249699999997 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +437.31154988863693 + 20 +208.10249699999997 + 30 +0.0 + 11 +423.65577494431847 + 21 +208.10249699999997 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +437.31154988863693 + 20 +249.06982183295526 + 30 +0.0 + 11 +437.31154988863693 + 21 +208.10249699999997 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +423.65577494431847 + 20 +249.06982183295526 + 30 +0.0 + 11 +437.31154988863693 + 21 +249.06982183295526 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +423.65577494431847 + 20 +208.10249699999997 + 30 +0.0 + 11 +423.6557749443185 + 21 +78.102497 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +34.99202019855866 + 10 +423.6557749443185 + 20 +78.10249700000001 + 30 +0.0 + 11 +363.6557749443185 + 21 +78.10249700000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-180 + 10 +423.6557749443185 + 20 +37.13517216704474 + 30 +0.0 + 11 +363.6557749443185 + 21 +78.10249700000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +-174 + 10 +423.6557749443185 + 20 +37.13517216704474 + 30 +0.0 + 11 +423.6557749443185 + 21 +78.10249700000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +423.65577494431847 + 20 +37.13517216704476 + 30 +0.0 + 11 +385.49997168495497 + 21 +22.220200440567485 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +180 + 10 +385.49997168495497 + 20 +22.220200440567485 + 30 +0.0 + 11 +363.65577494431847 + 21 +78.10249700000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +63.86127826104331 + 10 +328.6557749443185 + 20 +2.4093347406051185e-07 + 30 +0.0 + 11 +363.6557749443185 + 21 +78.10249700000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +347.3441684255914 + 20 +7.305228714090191 + 30 +0.0 + 11 +328.6557749443185 + 21 +2.4093347406051185e-07 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +385.49997168495497 + 20 +22.220200440567485 + 30 +0.0 + 11 +347.3441684255914 + 21 +7.305228714090191 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +437.31154988863693 + 20 +37.13517216704474 + 30 +0.0 + 11 +423.6557749443185 + 21 +37.13517216704474 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +437.31154988863693 + 20 +78.10249700000001 + 30 +0.0 + 11 +437.31154988863693 + 21 +37.13517216704474 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +423.6557749443185 + 20 +78.10249700000001 + 30 +0.0 + 11 +437.31154988863693 + 21 +78.10249700000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +220.00000000000003 + 20 +249.06982183295528 + 30 +0.0 + 11 +233.65577494431844 + 21 +249.06982183295528 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +220.00000000000003 + 20 +208.102497 + 30 +0.0 + 11 +220.00000000000003 + 21 +249.06982183295528 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +233.65577494431844 + 20 +208.102497 + 30 +0.0 + 11 +220.00000000000003 + 21 +208.102497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +301.30138369696056 + 20 +21.957662187001805 + 30 +0.0 + 11 +288.1170968058442 + 21 +27.111354401999538 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +288.1170968058442 + 20 +27.111354401999538 + 30 +0.0 + 11 +287.93506183300553 + 21 +26.645668597337593 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +287.93506183300553 + 20 +26.645668597337593 + 30 +0.0 + 11 +301.119348724122 + 21 +21.49197638233986 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +301.119348724122 + 20 +21.49197638233986 + 30 +0.0 + 11 +301.30138369696056 + 21 +21.957662187001805 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +223.41394373607963 + 20 +50.790947111363174 + 30 +0.0 + 11 +230.2418312082388 + 21 +50.790947111363174 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +230.2418312082388 + 20 +50.790947111363174 + 30 +0.0 + 11 +230.2418312082388 + 21 +64.4467220556816 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +230.2418312082388 + 20 +64.4467220556816 + 30 +0.0 + 11 +223.41394373607963 + 21 +64.4467220556816 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +288.1170968058442 + 20 +259.0936395980005 + 30 +0.0 + 11 +301.30138369696056 + 21 +264.2473318129982 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +301.30138369696056 + 20 +264.2473318129982 + 30 +0.0 + 11 +301.119348724122 + 21 +264.7130176176602 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +301.119348724122 + 20 +264.7130176176602 + 30 +0.0 + 11 +287.93506183300553 + 21 +259.55932540266247 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +287.93506183300553 + 20 +259.55932540266247 + 30 +0.0 + 11 +288.1170968058442 + 21 +259.0936395980005 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +356.01016619167626 + 20 +264.2473318129982 + 30 +0.0 + 11 +369.1944530827928 + 21 +259.0936395980005 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +369.1944530827928 + 20 +259.0936395980005 + 30 +0.0 + 11 +369.3764880556314 + 21 +259.5593254026624 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +369.3764880556314 + 20 +259.5593254026624 + 30 +0.0 + 11 +356.192201164515 + 21 +264.71301761766017 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +356.192201164515 + 20 +264.71301761766017 + 30 +0.0 + 11 +356.01016619167626 + 21 +264.2473318129982 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +433.8976061525573 + 20 +235.41404688863682 + 30 +0.0 + 11 +427.06971868039807 + 21 +235.41404688863682 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +427.06971868039807 + 20 +235.41404688863682 + 30 +0.0 + 11 +427.06971868039807 + 21 +221.7582719443184 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +427.06971868039807 + 20 +221.7582719443184 + 30 +0.0 + 11 +433.8976061525573 + 21 +221.7582719443184 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +369.1944530827928 + 20 +27.11135440199955 + 30 +0.0 + 11 +356.01016619167626 + 21 +21.957662187001834 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +356.01016619167626 + 20 +21.957662187001834 + 30 +0.0 + 11 +356.192201164515 + 21 +21.491976382339885 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +356.192201164515 + 20 +21.491976382339885 + 30 +0.0 + 11 +369.37648805563146 + 21 +26.645668597337608 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +369.37648805563146 + 20 +26.645668597337608 + 30 +0.0 + 11 +369.1944530827928 + 21 +27.11135440199955 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +433.8976061525573 + 20 +64.44672205568159 + 30 +0.0 + 11 +427.06971868039807 + 21 +64.44672205568159 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +427.06971868039807 + 20 +64.44672205568159 + 30 +0.0 + 11 +427.06971868039807 + 21 +50.790947111363174 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +427.06971868039807 + 20 +50.790947111363174 + 30 +0.0 + 11 +433.8976061525573 + 21 +50.790947111363174 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +223.41394373607963 + 20 +221.75827194431847 + 30 +0.0 + 11 +230.2418312082388 + 21 +221.75827194431847 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +230.2418312082388 + 20 +221.75827194431847 + 30 +0.0 + 11 +230.2418312082388 + 21 +235.41404688863685 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +230.2418312082388 + 20 +235.41404688863685 + 30 +0.0 + 11 +223.41394373607963 + 21 +235.41404688863685 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +480.31154988863693 + 20 +131.102497 + 30 +0.0 + 11 +541.3115498886368 + 21 +131.102497 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +541.3115498886368 + 20 +131.102497 + 30 +0.0 + 11 +541.3115498886368 + 21 +155.10249700000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +541.3115498886368 + 20 +155.10249700000003 + 30 +0.0 + 11 +480.31154988863693 + 21 +155.10249700000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +480.31154988863693 + 20 +155.10249700000003 + 30 +0.0 + 11 +480.31154988863693 + 21 +131.102497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +480.31154988863693 + 20 +124.10249700000001 + 30 +0.0 + 11 +480.31154988863693 + 21 +131.102497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +540.3115498886368 + 20 +124.10249700000001 + 30 +0.0 + 11 +480.31154988863693 + 21 +124.10249700000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +540.3115498886368 + 20 +131.102497 + 30 +0.0 + 11 +540.3115498886368 + 21 +124.10249700000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +548.3115498886369 + 20 +131.102497 + 30 +0.0 + 11 +541.3115498886368 + 21 +131.102497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +548.3115498886369 + 20 +155.10249700000003 + 30 +0.0 + 11 +548.3115498886369 + 21 +131.102497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +541.3115498886368 + 20 +155.10249700000003 + 30 +0.0 + 11 +548.3115498886369 + 21 +155.10249700000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +541.3115498886368 + 20 +155.10249700000003 + 30 +0.0 + 11 +541.3115498886368 + 21 +216.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +481.31154988863693 + 20 +216.10249700000003 + 30 +0.0 + 11 +541.3115498886368 + 21 +216.10249700000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +481.31154988863693 + 20 +155.10249700000003 + 30 +0.0 + 11 +481.31154988863693 + 21 +216.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +565.3115498886369 + 20 +155.10249700000003 + 30 +0.0 + 11 +541.3115498886368 + 21 +155.10249700000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +565.3115498886369 + 20 +155.10249700000003 + 30 +0.0 + 11 +565.3115498886369 + 21 +216.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +541.3115498886368 + 20 +216.10249700000003 + 30 +0.0 + 11 +565.3115498886369 + 21 +216.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +625.3115498886368 + 20 +155.10249700000003 + 30 +0.0 + 11 +565.3115498886369 + 21 +155.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +625.3115498886368 + 20 +216.10249700000003 + 30 +0.0 + 11 +625.3115498886368 + 21 +155.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +565.3115498886369 + 20 +216.10249700000003 + 30 +0.0 + 11 +625.3115498886368 + 21 +216.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +481.31154988863693 + 20 +155.10249700000003 + 30 +0.0 + 11 +457.3115498886369 + 21 +155.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +457.3115498886369 + 20 +216.10249700000003 + 30 +0.0 + 11 +481.31154988863693 + 21 +216.10249700000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +457.3115498886369 + 20 +216.10249700000003 + 30 +0.0 + 11 +457.3115498886369 + 21 +155.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +447.31154988863693 + 20 +216.10249700000003 + 30 +0.0 + 11 +457.3115498886369 + 21 +216.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +447.31154988863693 + 20 +155.10249700000003 + 30 +0.0 + 11 +447.31154988863693 + 21 +216.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +457.3115498886369 + 20 +155.10249700000003 + 30 +0.0 + 11 +447.31154988863693 + 21 +155.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +473.31154988863693 + 20 +155.10249700000003 + 30 +0.0 + 11 +480.31154988863693 + 21 +155.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +473.31154988863693 + 20 +131.102497 + 30 +0.0 + 11 +473.31154988863693 + 21 +155.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +480.31154988863693 + 20 +131.102497 + 30 +0.0 + 11 +473.31154988863693 + 21 +131.102497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +529.4024589795459 + 20 +125.85249700000001 + 30 +0.0 + 11 +532.902458979546 + 21 +125.85249700000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +532.902458979546 + 20 +125.85249700000001 + 30 +0.0 + 11 +529.4024589795459 + 21 +129.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +529.4024589795459 + 20 +129.35249700000003 + 30 +0.0 + 11 +518.4933680704552 + 21 +129.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +518.4933680704552 + 20 +129.35249700000003 + 30 +0.0 + 11 +514.9933680704551 + 21 +125.85249700000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +514.9933680704551 + 20 +125.85249700000001 + 30 +0.0 + 11 +518.4933680704552 + 21 +125.85249700000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +502.12973170681875 + 20 +125.85249700000001 + 30 +0.0 + 11 +505.62973170681875 + 21 +125.85249700000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +505.62973170681875 + 20 +125.85249700000001 + 30 +0.0 + 11 +502.12973170681875 + 21 +129.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +502.12973170681875 + 20 +129.35249700000003 + 30 +0.0 + 11 +491.22064079772787 + 21 +129.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +491.22064079772787 + 20 +129.35249700000003 + 30 +0.0 + 11 +487.72064079772787 + 21 +125.85249700000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +487.72064079772787 + 20 +125.85249700000001 + 30 +0.0 + 11 +491.22064079772787 + 21 +125.85249700000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +546.5615498886368 + 20 +147.10249700000003 + 30 +0.0 + 11 +543.0615498886369 + 21 +147.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +543.0615498886369 + 20 +147.10249700000003 + 30 +0.0 + 11 +543.0615498886369 + 21 +139.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +543.0615498886369 + 20 +139.10249700000003 + 30 +0.0 + 11 +546.5615498886368 + 21 +139.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +488.81154988863693 + 20 +206.60249700000003 + 30 +0.0 + 11 +488.81154988863693 + 21 +188.60249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +488.81154988863693 + 20 +188.60249700000003 + 30 +0.0 + 11 +523.8115498886369 + 21 +188.60249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +523.8115498886369 + 20 +188.60249700000003 + 30 +0.0 + 11 +523.8115498886369 + 21 +206.60249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +523.8115498886369 + 20 +206.60249700000003 + 30 +0.0 + 11 +488.81154988863693 + 21 +206.60249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +541.8115498886369 + 20 +168.35249700000003 + 30 +0.0 + 11 +541.8115498886369 + 21 +165.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +541.8115498886369 + 20 +165.35249700000003 + 30 +0.0 + 11 +544.8115498886368 + 21 +165.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +544.8115498886368 + 20 +165.35249700000003 + 30 +0.0 + 11 +544.8115498886368 + 21 +168.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +544.8115498886368 + 20 +168.35249700000003 + 30 +0.0 + 11 +541.8115498886369 + 21 +168.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +562.8115498886368 + 20 +167.352497 + 30 +0.0 + 11 +562.8115498886368 + 21 +166.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +562.8115498886368 + 20 +166.35249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +166.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +563.8115498886368 + 20 +166.35249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +167.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +563.8115498886368 + 20 +167.352497 + 30 +0.0 + 11 +562.8115498886368 + 21 +167.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +542.8115498886368 + 20 +169.85249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +168.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +542.8115498886368 + 20 +168.85249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +168.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +543.8115498886368 + 20 +168.85249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +169.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +543.8115498886368 + 20 +169.85249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +169.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +562.8115498886368 + 20 +169.85249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +168.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +562.8115498886368 + 20 +168.85249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +168.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +563.8115498886368 + 20 +168.85249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +169.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +563.8115498886368 + 20 +169.85249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +169.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +542.8115498886368 + 20 +172.35249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +171.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +542.8115498886368 + 20 +171.352497 + 30 +0.0 + 11 +543.8115498886368 + 21 +171.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +543.8115498886368 + 20 +171.352497 + 30 +0.0 + 11 +543.8115498886368 + 21 +172.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +543.8115498886368 + 20 +172.35249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +172.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +562.8115498886368 + 20 +172.35249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +171.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +562.8115498886368 + 20 +171.352497 + 30 +0.0 + 11 +563.8115498886368 + 21 +171.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +563.8115498886368 + 20 +171.352497 + 30 +0.0 + 11 +563.8115498886368 + 21 +172.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +563.8115498886368 + 20 +172.35249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +172.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +542.8115498886368 + 20 +174.85249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +173.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +542.8115498886368 + 20 +173.852497 + 30 +0.0 + 11 +543.8115498886368 + 21 +173.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +543.8115498886368 + 20 +173.852497 + 30 +0.0 + 11 +543.8115498886368 + 21 +174.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +543.8115498886368 + 20 +174.85249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +174.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +562.8115498886368 + 20 +174.85249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +173.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +562.8115498886368 + 20 +173.852497 + 30 +0.0 + 11 +563.8115498886368 + 21 +173.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +563.8115498886368 + 20 +173.852497 + 30 +0.0 + 11 +563.8115498886368 + 21 +174.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +563.8115498886368 + 20 +174.85249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +174.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +542.8115498886368 + 20 +177.35249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +176.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +542.8115498886368 + 20 +176.352497 + 30 +0.0 + 11 +543.8115498886368 + 21 +176.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +543.8115498886368 + 20 +176.352497 + 30 +0.0 + 11 +543.8115498886368 + 21 +177.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +543.8115498886368 + 20 +177.35249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +177.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +562.8115498886368 + 20 +177.35249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +176.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +562.8115498886368 + 20 +176.352497 + 30 +0.0 + 11 +563.8115498886368 + 21 +176.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +563.8115498886368 + 20 +176.352497 + 30 +0.0 + 11 +563.8115498886368 + 21 +177.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +563.8115498886368 + 20 +177.35249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +177.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +542.8115498886368 + 20 +179.85249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +178.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +542.8115498886368 + 20 +178.85249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +178.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +543.8115498886368 + 20 +178.85249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +179.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +543.8115498886368 + 20 +179.85249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +179.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +562.8115498886368 + 20 +179.85249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +178.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +562.8115498886368 + 20 +178.85249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +178.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +563.8115498886368 + 20 +178.85249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +179.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +563.8115498886368 + 20 +179.85249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +179.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +542.8115498886368 + 20 +182.35249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +181.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +542.8115498886368 + 20 +181.35249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +181.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +543.8115498886368 + 20 +181.35249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +182.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +543.8115498886368 + 20 +182.35249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +182.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +562.8115498886368 + 20 +182.35249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +181.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +562.8115498886368 + 20 +181.35249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +181.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +563.8115498886368 + 20 +181.35249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +182.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +563.8115498886368 + 20 +182.35249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +182.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +542.8115498886368 + 20 +184.85249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +183.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +542.8115498886368 + 20 +183.85249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +183.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +543.8115498886368 + 20 +183.85249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +184.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +543.8115498886368 + 20 +184.85249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +184.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +562.8115498886368 + 20 +184.85249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +183.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +562.8115498886368 + 20 +183.85249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +183.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +563.8115498886368 + 20 +183.85249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +184.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +563.8115498886368 + 20 +184.85249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +184.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +542.8115498886368 + 20 +187.352497 + 30 +0.0 + 11 +542.8115498886368 + 21 +186.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +542.8115498886368 + 20 +186.35249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +186.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +543.8115498886368 + 20 +186.35249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +187.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +543.8115498886368 + 20 +187.352497 + 30 +0.0 + 11 +542.8115498886368 + 21 +187.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +562.8115498886368 + 20 +187.352497 + 30 +0.0 + 11 +562.8115498886368 + 21 +186.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +562.8115498886368 + 20 +186.35249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +186.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +563.8115498886368 + 20 +186.35249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +187.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +563.8115498886368 + 20 +187.352497 + 30 +0.0 + 11 +562.8115498886368 + 21 +187.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +542.8115498886368 + 20 +189.852497 + 30 +0.0 + 11 +542.8115498886368 + 21 +188.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +542.8115498886368 + 20 +188.85249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +188.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +543.8115498886368 + 20 +188.85249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +189.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +543.8115498886368 + 20 +189.852497 + 30 +0.0 + 11 +542.8115498886368 + 21 +189.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +562.8115498886368 + 20 +189.852497 + 30 +0.0 + 11 +562.8115498886368 + 21 +188.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +562.8115498886368 + 20 +188.85249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +188.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +563.8115498886368 + 20 +188.85249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +189.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +563.8115498886368 + 20 +189.852497 + 30 +0.0 + 11 +562.8115498886368 + 21 +189.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +542.8115498886368 + 20 +192.352497 + 30 +0.0 + 11 +542.8115498886368 + 21 +191.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +542.8115498886368 + 20 +191.35249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +191.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +543.8115498886368 + 20 +191.35249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +192.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +543.8115498886368 + 20 +192.352497 + 30 +0.0 + 11 +542.8115498886368 + 21 +192.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +562.8115498886368 + 20 +192.352497 + 30 +0.0 + 11 +562.8115498886368 + 21 +191.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +562.8115498886368 + 20 +191.35249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +191.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +563.8115498886368 + 20 +191.35249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +192.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +563.8115498886368 + 20 +192.352497 + 30 +0.0 + 11 +562.8115498886368 + 21 +192.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +542.8115498886368 + 20 +194.85249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +193.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +542.8115498886368 + 20 +193.85249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +193.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +543.8115498886368 + 20 +193.85249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +194.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +543.8115498886368 + 20 +194.85249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +194.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +562.8115498886368 + 20 +194.85249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +193.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +562.8115498886368 + 20 +193.85249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +193.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +563.8115498886368 + 20 +193.85249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +194.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +563.8115498886368 + 20 +194.85249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +194.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +542.8115498886368 + 20 +197.35249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +196.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +542.8115498886368 + 20 +196.35249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +196.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +543.8115498886368 + 20 +196.35249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +197.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +543.8115498886368 + 20 +197.35249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +197.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +562.8115498886368 + 20 +197.35249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +196.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +562.8115498886368 + 20 +196.35249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +196.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +563.8115498886368 + 20 +196.35249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +197.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +563.8115498886368 + 20 +197.35249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +197.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +542.8115498886368 + 20 +199.85249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +198.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +542.8115498886368 + 20 +198.852497 + 30 +0.0 + 11 +543.8115498886368 + 21 +198.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +543.8115498886368 + 20 +198.852497 + 30 +0.0 + 11 +543.8115498886368 + 21 +199.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +543.8115498886368 + 20 +199.85249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +199.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +562.8115498886368 + 20 +199.85249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +198.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +562.8115498886368 + 20 +198.852497 + 30 +0.0 + 11 +563.8115498886368 + 21 +198.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +563.8115498886368 + 20 +198.852497 + 30 +0.0 + 11 +563.8115498886368 + 21 +199.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +563.8115498886368 + 20 +199.85249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +199.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +542.8115498886368 + 20 +202.35249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +201.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +542.8115498886368 + 20 +201.352497 + 30 +0.0 + 11 +543.8115498886368 + 21 +201.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +543.8115498886368 + 20 +201.352497 + 30 +0.0 + 11 +543.8115498886368 + 21 +202.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +543.8115498886368 + 20 +202.35249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +202.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +562.8115498886368 + 20 +202.35249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +201.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +562.8115498886368 + 20 +201.352497 + 30 +0.0 + 11 +563.8115498886368 + 21 +201.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +563.8115498886368 + 20 +201.352497 + 30 +0.0 + 11 +563.8115498886368 + 21 +202.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +563.8115498886368 + 20 +202.35249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +202.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +542.8115498886368 + 20 +204.85249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +203.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +542.8115498886368 + 20 +203.85249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +203.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +543.8115498886368 + 20 +203.85249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +204.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +543.8115498886368 + 20 +204.85249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +204.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +561.8115498886368 + 20 +205.852497 + 30 +0.0 + 11 +561.8115498886368 + 21 +202.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +561.8115498886368 + 20 +202.85249700000003 + 30 +0.0 + 11 +564.8115498886369 + 21 +202.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +564.8115498886369 + 20 +202.85249700000003 + 30 +0.0 + 11 +564.8115498886369 + 21 +205.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +564.8115498886369 + 20 +205.852497 + 30 +0.0 + 11 +561.8115498886368 + 21 +205.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +557.5615498886368 + 20 +162.852497 + 30 +0.0 + 11 +549.0615498886368 + 21 +162.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +549.0615498886368 + 20 +162.852497 + 30 +0.0 + 11 +549.0615498886368 + 21 +162.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +549.0615498886368 + 20 +162.352497 + 30 +0.0 + 11 +557.5615498886368 + 21 +162.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +557.5615498886368 + 20 +162.352497 + 30 +0.0 + 11 +557.5615498886368 + 21 +162.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +549.0615498886368 + 20 +210.60249700000003 + 30 +0.0 + 11 +557.5615498886368 + 21 +210.60249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +557.5615498886368 + 20 +210.60249700000003 + 30 +0.0 + 11 +557.5615498886368 + 21 +211.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +557.5615498886368 + 20 +211.10249700000003 + 30 +0.0 + 11 +549.0615498886368 + 21 +211.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +549.0615498886368 + 20 +211.10249700000003 + 30 +0.0 + 11 +549.0615498886368 + 21 +210.60249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +580.3115498886368 + 20 +206.10249700000003 + 30 +0.0 + 11 +580.3115498886368 + 21 +193.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +580.3115498886368 + 20 +193.10249700000003 + 30 +0.0 + 11 +610.3115498886369 + 21 +193.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +610.3115498886369 + 20 +193.10249700000003 + 30 +0.0 + 11 +610.3115498886369 + 21 +206.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +610.3115498886369 + 20 +206.10249700000003 + 30 +0.0 + 11 +580.3115498886368 + 21 +206.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +587.3797317068187 + 20 +160.602497 + 30 +0.0 + 11 +575.9706407977279 + 21 +160.602497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +575.9706407977279 + 20 +160.602497 + 30 +0.0 + 11 +575.9706407977279 + 21 +160.102497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +575.9706407977279 + 20 +160.102497 + 30 +0.0 + 11 +587.3797317068187 + 21 +160.102497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +587.3797317068187 + 20 +160.102497 + 30 +0.0 + 11 +587.3797317068187 + 21 +160.602497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +614.6524589795459 + 20 +160.602497 + 30 +0.0 + 11 +603.2433680704552 + 21 +160.602497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +603.2433680704552 + 20 +160.602497 + 30 +0.0 + 11 +603.2433680704552 + 21 +160.102497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +603.2433680704552 + 20 +160.102497 + 30 +0.0 + 11 +614.6524589795459 + 21 +160.102497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +614.6524589795459 + 20 +160.102497 + 30 +0.0 + 11 +614.6524589795459 + 21 +160.602497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +617.5615498886369 + 20 +177.53431518181822 + 30 +0.0 + 11 +617.5615498886369 + 21 +165.9434060909091 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +617.5615498886369 + 20 +165.9434060909091 + 30 +0.0 + 11 +618.0615498886369 + 21 +165.9434060909091 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +618.0615498886369 + 20 +165.9434060909091 + 30 +0.0 + 11 +618.0615498886369 + 21 +177.53431518181822 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +618.0615498886369 + 20 +177.53431518181822 + 30 +0.0 + 11 +617.5615498886369 + 21 +177.53431518181822 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +617.5615498886369 + 20 +205.26158790909093 + 30 +0.0 + 11 +617.5615498886369 + 21 +193.67067881818187 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +617.5615498886369 + 20 +193.67067881818187 + 30 +0.0 + 11 +618.0615498886369 + 21 +193.67067881818187 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +618.0615498886369 + 20 +193.67067881818187 + 30 +0.0 + 11 +618.0615498886369 + 21 +205.26158790909093 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +618.0615498886369 + 20 +205.26158790909093 + 30 +0.0 + 11 +617.5615498886369 + 21 +205.26158790909093 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +457.81154988863693 + 20 +168.35249700000003 + 30 +0.0 + 11 +457.81154988863693 + 21 +165.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +457.81154988863693 + 20 +165.35249700000003 + 30 +0.0 + 11 +460.81154988863693 + 21 +165.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +460.81154988863693 + 20 +165.35249700000003 + 30 +0.0 + 11 +460.81154988863693 + 21 +168.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +460.81154988863693 + 20 +168.35249700000003 + 30 +0.0 + 11 +457.81154988863693 + 21 +168.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +478.81154988863693 + 20 +167.352497 + 30 +0.0 + 11 +478.81154988863693 + 21 +166.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +478.81154988863693 + 20 +166.35249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +166.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +479.81154988863693 + 20 +166.35249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +167.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +479.81154988863693 + 20 +167.352497 + 30 +0.0 + 11 +478.81154988863693 + 21 +167.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +458.81154988863693 + 20 +169.85249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +168.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +458.81154988863693 + 20 +168.85249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +168.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +459.81154988863693 + 20 +168.85249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +169.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +459.81154988863693 + 20 +169.85249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +169.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +478.81154988863693 + 20 +169.85249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +168.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +478.81154988863693 + 20 +168.85249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +168.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +479.81154988863693 + 20 +168.85249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +169.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +479.81154988863693 + 20 +169.85249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +169.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +458.81154988863693 + 20 +172.35249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +171.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +458.81154988863693 + 20 +171.352497 + 30 +0.0 + 11 +459.81154988863693 + 21 +171.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +459.81154988863693 + 20 +171.352497 + 30 +0.0 + 11 +459.81154988863693 + 21 +172.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +459.81154988863693 + 20 +172.35249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +172.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +478.81154988863693 + 20 +172.35249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +171.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +478.81154988863693 + 20 +171.352497 + 30 +0.0 + 11 +479.81154988863693 + 21 +171.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +479.81154988863693 + 20 +171.352497 + 30 +0.0 + 11 +479.81154988863693 + 21 +172.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +479.81154988863693 + 20 +172.35249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +172.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +458.81154988863693 + 20 +174.85249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +173.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +458.81154988863693 + 20 +173.852497 + 30 +0.0 + 11 +459.81154988863693 + 21 +173.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +459.81154988863693 + 20 +173.852497 + 30 +0.0 + 11 +459.81154988863693 + 21 +174.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +459.81154988863693 + 20 +174.85249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +174.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +478.81154988863693 + 20 +174.85249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +173.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +478.81154988863693 + 20 +173.852497 + 30 +0.0 + 11 +479.81154988863693 + 21 +173.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +479.81154988863693 + 20 +173.852497 + 30 +0.0 + 11 +479.81154988863693 + 21 +174.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +479.81154988863693 + 20 +174.85249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +174.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +458.81154988863693 + 20 +177.35249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +176.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +458.81154988863693 + 20 +176.352497 + 30 +0.0 + 11 +459.81154988863693 + 21 +176.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +459.81154988863693 + 20 +176.352497 + 30 +0.0 + 11 +459.81154988863693 + 21 +177.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +459.81154988863693 + 20 +177.35249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +177.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +478.81154988863693 + 20 +177.35249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +176.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +478.81154988863693 + 20 +176.352497 + 30 +0.0 + 11 +479.81154988863693 + 21 +176.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +479.81154988863693 + 20 +176.352497 + 30 +0.0 + 11 +479.81154988863693 + 21 +177.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +479.81154988863693 + 20 +177.35249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +177.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +458.81154988863693 + 20 +179.85249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +178.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +458.81154988863693 + 20 +178.85249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +178.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +459.81154988863693 + 20 +178.85249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +179.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +459.81154988863693 + 20 +179.85249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +179.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +478.81154988863693 + 20 +179.85249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +178.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +478.81154988863693 + 20 +178.85249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +178.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +479.81154988863693 + 20 +178.85249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +179.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +479.81154988863693 + 20 +179.85249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +179.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +458.81154988863693 + 20 +182.35249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +181.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +458.81154988863693 + 20 +181.35249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +181.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +459.81154988863693 + 20 +181.35249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +182.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +459.81154988863693 + 20 +182.35249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +182.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +478.81154988863693 + 20 +182.35249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +181.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +478.81154988863693 + 20 +181.35249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +181.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +479.81154988863693 + 20 +181.35249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +182.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +479.81154988863693 + 20 +182.35249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +182.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +458.81154988863693 + 20 +184.85249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +183.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +458.81154988863693 + 20 +183.85249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +183.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +459.81154988863693 + 20 +183.85249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +184.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +459.81154988863693 + 20 +184.85249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +184.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +478.81154988863693 + 20 +184.85249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +183.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +478.81154988863693 + 20 +183.85249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +183.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +479.81154988863693 + 20 +183.85249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +184.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +479.81154988863693 + 20 +184.85249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +184.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +458.81154988863693 + 20 +187.352497 + 30 +0.0 + 11 +458.81154988863693 + 21 +186.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +458.81154988863693 + 20 +186.35249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +186.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +459.81154988863693 + 20 +186.35249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +187.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +459.81154988863693 + 20 +187.352497 + 30 +0.0 + 11 +458.81154988863693 + 21 +187.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +478.81154988863693 + 20 +187.352497 + 30 +0.0 + 11 +478.81154988863693 + 21 +186.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +478.81154988863693 + 20 +186.35249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +186.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +479.81154988863693 + 20 +186.35249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +187.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +479.81154988863693 + 20 +187.352497 + 30 +0.0 + 11 +478.81154988863693 + 21 +187.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +458.81154988863693 + 20 +189.852497 + 30 +0.0 + 11 +458.81154988863693 + 21 +188.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +458.81154988863693 + 20 +188.85249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +188.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +459.81154988863693 + 20 +188.85249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +189.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +459.81154988863693 + 20 +189.852497 + 30 +0.0 + 11 +458.81154988863693 + 21 +189.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +478.81154988863693 + 20 +189.852497 + 30 +0.0 + 11 +478.81154988863693 + 21 +188.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +478.81154988863693 + 20 +188.85249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +188.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +479.81154988863693 + 20 +188.85249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +189.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +479.81154988863693 + 20 +189.852497 + 30 +0.0 + 11 +478.81154988863693 + 21 +189.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +458.81154988863693 + 20 +192.352497 + 30 +0.0 + 11 +458.81154988863693 + 21 +191.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +458.81154988863693 + 20 +191.35249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +191.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +459.81154988863693 + 20 +191.35249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +192.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +459.81154988863693 + 20 +192.352497 + 30 +0.0 + 11 +458.81154988863693 + 21 +192.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +478.81154988863693 + 20 +192.352497 + 30 +0.0 + 11 +478.81154988863693 + 21 +191.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +478.81154988863693 + 20 +191.35249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +191.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +479.81154988863693 + 20 +191.35249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +192.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +479.81154988863693 + 20 +192.352497 + 30 +0.0 + 11 +478.81154988863693 + 21 +192.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +458.81154988863693 + 20 +194.85249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +193.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +458.81154988863693 + 20 +193.85249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +193.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +459.81154988863693 + 20 +193.85249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +194.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +459.81154988863693 + 20 +194.85249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +194.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +478.81154988863693 + 20 +194.85249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +193.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +478.81154988863693 + 20 +193.85249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +193.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +479.81154988863693 + 20 +193.85249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +194.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +479.81154988863693 + 20 +194.85249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +194.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +458.81154988863693 + 20 +197.35249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +196.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +458.81154988863693 + 20 +196.35249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +196.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +459.81154988863693 + 20 +196.35249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +197.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +459.81154988863693 + 20 +197.35249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +197.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +478.81154988863693 + 20 +197.35249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +196.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +478.81154988863693 + 20 +196.35249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +196.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +479.81154988863693 + 20 +196.35249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +197.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +479.81154988863693 + 20 +197.35249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +197.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +458.81154988863693 + 20 +199.85249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +198.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +458.81154988863693 + 20 +198.852497 + 30 +0.0 + 11 +459.81154988863693 + 21 +198.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +459.81154988863693 + 20 +198.852497 + 30 +0.0 + 11 +459.81154988863693 + 21 +199.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +459.81154988863693 + 20 +199.85249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +199.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +478.81154988863693 + 20 +199.85249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +198.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +478.81154988863693 + 20 +198.852497 + 30 +0.0 + 11 +479.81154988863693 + 21 +198.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +479.81154988863693 + 20 +198.852497 + 30 +0.0 + 11 +479.81154988863693 + 21 +199.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +479.81154988863693 + 20 +199.85249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +199.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +458.81154988863693 + 20 +202.35249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +201.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +458.81154988863693 + 20 +201.352497 + 30 +0.0 + 11 +459.81154988863693 + 21 +201.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +459.81154988863693 + 20 +201.352497 + 30 +0.0 + 11 +459.81154988863693 + 21 +202.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +459.81154988863693 + 20 +202.35249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +202.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +478.81154988863693 + 20 +202.35249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +201.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +478.81154988863693 + 20 +201.352497 + 30 +0.0 + 11 +479.81154988863693 + 21 +201.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +479.81154988863693 + 20 +201.352497 + 30 +0.0 + 11 +479.81154988863693 + 21 +202.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +479.81154988863693 + 20 +202.35249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +202.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +458.81154988863693 + 20 +204.85249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +203.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +458.81154988863693 + 20 +203.85249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +203.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +459.81154988863693 + 20 +203.85249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +204.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +459.81154988863693 + 20 +204.85249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +204.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +477.81154988863693 + 20 +205.852497 + 30 +0.0 + 11 +477.81154988863693 + 21 +202.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +477.81154988863693 + 20 +202.85249700000003 + 30 +0.0 + 11 +480.81154988863693 + 21 +202.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +480.81154988863693 + 20 +202.85249700000003 + 30 +0.0 + 11 +480.81154988863693 + 21 +205.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +480.81154988863693 + 20 +205.852497 + 30 +0.0 + 11 +477.81154988863693 + 21 +205.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +473.56154988863693 + 20 +162.852497 + 30 +0.0 + 11 +465.06154988863693 + 21 +162.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +465.06154988863693 + 20 +162.852497 + 30 +0.0 + 11 +465.06154988863693 + 21 +162.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +465.06154988863693 + 20 +162.352497 + 30 +0.0 + 11 +473.56154988863693 + 21 +162.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +473.56154988863693 + 20 +162.352497 + 30 +0.0 + 11 +473.56154988863693 + 21 +162.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +465.06154988863693 + 20 +210.60249700000003 + 30 +0.0 + 11 +473.56154988863693 + 21 +210.60249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +473.56154988863693 + 20 +210.60249700000003 + 30 +0.0 + 11 +473.56154988863693 + 21 +211.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +473.56154988863693 + 20 +211.10249700000003 + 30 +0.0 + 11 +465.06154988863693 + 21 +211.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +465.06154988863693 + 20 +211.10249700000003 + 30 +0.0 + 11 +465.06154988863693 + 21 +210.60249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +449.81154988863693 + 20 +166.1934060909091 + 30 +0.0 + 11 +454.81154988863693 + 21 +166.1934060909091 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +454.81154988863693 + 20 +166.1934060909091 + 30 +0.0 + 11 +454.81154988863693 + 21 +177.28431518181822 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +454.81154988863693 + 20 +177.28431518181822 + 30 +0.0 + 11 +449.81154988863693 + 21 +177.28431518181822 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +449.81154988863693 + 20 +193.92067881818187 + 30 +0.0 + 11 +454.81154988863693 + 21 +193.92067881818187 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +454.81154988863693 + 20 +193.92067881818187 + 30 +0.0 + 11 +454.81154988863693 + 21 +205.01158790909093 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +454.81154988863693 + 20 +205.01158790909093 + 30 +0.0 + 11 +449.81154988863693 + 21 +205.01158790909093 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +475.06154988863693 + 20 +139.10249700000003 + 30 +0.0 + 11 +478.56154988863693 + 21 +139.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +478.56154988863693 + 20 +139.10249700000003 + 30 +0.0 + 11 +478.56154988863693 + 21 +147.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +478.56154988863693 + 20 +147.10249700000003 + 30 +0.0 + 11 +475.06154988863693 + 21 +147.10249700000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +45 + 10 +645.3115498886368 + 20 +125.03318600040735 + 30 +0.0 + 11 +706.3115498886369 + 21 +125.03318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +706.3115498886369 + 20 +161.17180799959266 + 30 +0.0 + 11 +706.3115498886369 + 21 +125.03318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +645.3115498886368 + 20 +161.17180799959266 + 30 +0.0 + 11 +706.3115498886369 + 21 +161.17180799959266 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +645.3115498886368 + 20 +125.03318600040735 + 30 +0.0 + 11 +645.3115498886368 + 21 +161.17180799959266 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +45 + 10 +706.3115498886369 + 20 +101.03318600040734 + 30 +0.0 + 11 +645.3115498886368 + 21 +101.03318600040734 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +90 + 10 +706.3115498886369 + 20 +101.03318600040734 + 30 +0.0 + 11 +706.3115498886369 + 21 +125.03318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +645.3115498886368 + 20 +64.89456400122205 + 30 +0.0 + 11 +645.3115498886368 + 21 +101.03318600040734 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +706.3115498886369 + 20 +64.89456400122205 + 30 +0.0 + 11 +645.3115498886368 + 21 +64.89456400122205 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +706.3115498886369 + 20 +101.03318600040734 + 30 +0.0 + 11 +706.3115498886369 + 21 +64.89456400122205 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +716.3115498886368 + 20 +101.03318600040734 + 30 +0.0 + 11 +706.3115498886369 + 21 +101.03318600040734 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +716.3115498886368 + 20 +125.03318600040735 + 30 +0.0 + 11 +716.3115498886368 + 21 +101.03318600040734 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +706.3115498886369 + 20 +125.03318600040735 + 30 +0.0 + 11 +716.3115498886368 + 21 +125.03318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +635.3115498886368 + 20 +125.03318600040735 + 30 +0.0 + 11 +645.3115498886368 + 21 +125.03318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +635.3115498886368 + 20 +101.03318600040734 + 30 +0.0 + 11 +635.3115498886368 + 21 +125.03318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +645.3115498886368 + 20 +101.03318600040734 + 30 +0.0 + 11 +635.3115498886368 + 21 +101.03318600040734 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +663.3115498886368 + 20 +106.53318600040735 + 30 +0.0 + 11 +674.3115498886369 + 21 +106.53318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +674.3115498886369 + 20 +106.53318600040735 + 30 +0.0 + 11 +674.3115498886369 + 21 +119.53318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +674.3115498886369 + 20 +119.53318600040735 + 30 +0.0 + 11 +663.3115498886368 + 21 +119.53318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +663.3115498886368 + 20 +119.53318600040735 + 30 +0.0 + 11 +663.3115498886368 + 21 +106.53318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +694.8115498886369 + 20 +108.03318600040735 + 30 +0.0 + 11 +700.8115498886369 + 21 +108.03318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +700.8115498886369 + 20 +108.03318600040735 + 30 +0.0 + 11 +700.8115498886369 + 21 +118.03318600040734 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +700.8115498886369 + 20 +118.03318600040734 + 30 +0.0 + 11 +694.8115498886369 + 21 +118.03318600040734 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +694.8115498886369 + 20 +118.03318600040734 + 30 +0.0 + 11 +694.8115498886369 + 21 +108.03318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +713.8115498886369 + 20 +117.03318600040735 + 30 +0.0 + 11 +708.8115498886368 + 21 +117.03318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +708.8115498886368 + 20 +117.03318600040735 + 30 +0.0 + 11 +708.8115498886368 + 21 +109.03318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +708.8115498886368 + 20 +109.03318600040735 + 30 +0.0 + 11 +713.8115498886369 + 21 +109.03318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +637.8115498886369 + 20 +109.03318600040735 + 30 +0.0 + 11 +642.8115498886368 + 21 +109.03318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +642.8115498886368 + 20 +109.03318600040735 + 30 +0.0 + 11 +642.8115498886368 + 21 +117.03318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +cut + 10 +642.8115498886368 + 20 +117.03318600040735 + 30 +0.0 + 11 +637.8115498886369 + 21 +117.03318600040735 + 31 +0.0 + 0 +ENDSEC + 0 +EOF diff --git a/rocolib/output/BoatWithStack/graph-autofold-graph.dxf b/rocolib/output/BoatWithStack/graph-autofold-graph.dxf new file mode 100644 index 0000000000000000000000000000000000000000..b7f5938a3784219336eab49ee266169ff8671e52 --- /dev/null +++ b/rocolib/output/BoatWithStack/graph-autofold-graph.dxf @@ -0,0 +1,9386 @@ + 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 +100.0 + 20 +143.10249700000003 + 30 +0.0 + 11 +0.0 + 21 +143.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +100.0 + 20 +143.10249700000003 + 30 +0.0 + 11 +100.0 + 21 +143.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +50.0 + 20 +143.10249700000003 + 30 +0.0 + 11 +100.0 + 21 +143.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +143.10249700000003 + 30 +0.0 + 11 +50.0 + 21 +143.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +143.10249700000003 + 30 +0.0 + 11 +0.0 + 21 +143.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +210.00000000000003 + 20 +143.10249700000003 + 30 +0.0 + 11 +110.00000000000001 + 21 +143.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +210.00000000000003 + 20 +143.10249700000003 + 30 +0.0 + 11 +210.00000000000003 + 21 +143.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +160.00000000000003 + 20 +143.10249700000003 + 30 +0.0 + 11 +210.00000000000003 + 21 +143.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +110.00000000000001 + 20 +143.10249700000003 + 30 +0.0 + 11 +160.00000000000003 + 21 +143.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +110.00000000000001 + 20 +143.10249700000003 + 30 +0.0 + 11 +110.00000000000001 + 21 +143.10249700000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +363.65577494431847 + 20 +78.10249700000001 + 30 +0.0 + 11 +363.65577494431847 + 21 +208.102497 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +293.65577494431847 + 20 +78.10249700000001 + 30 +0.0 + 11 +293.65577494431847 + 21 +208.102497 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +328.65577494431847 + 20 +78.10249700000001 + 30 +0.0 + 11 +293.65577494431847 + 21 +78.10249700000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +363.65577494431847 + 20 +78.10249700000001 + 30 +0.0 + 11 +328.65577494431847 + 21 +78.10249700000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +328.65577494431847 + 20 +2.4093347406051185e-07 + 30 +0.0 + 11 +293.65577494431847 + 21 +78.10249700000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +309.9673814630455 + 20 +7.3052287140901635 + 30 +0.0 + 11 +271.811578203682 + 21 +22.220200440567442 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +328.65577494431847 + 20 +2.409334456388024e-07 + 30 +0.0 + 11 +309.9673814630455 + 21 +7.3052287140901635 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +293.65577494431847 + 20 +78.10249700000001 + 30 +0.0 + 11 +271.811578203682 + 21 +22.220200440567442 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +293.65577494431847 + 20 +78.10249700000001 + 30 +0.0 + 11 +233.65577494431844 + 21 +37.135172167044736 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +271.811578203682 + 20 +22.220200440567453 + 30 +0.0 + 11 +233.65577494431844 + 21 +37.135172167044736 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +233.65577494431844 + 20 +78.10249700000001 + 30 +0.0 + 11 +233.65577494431844 + 21 +37.13517216704474 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +293.65577494431847 + 20 +78.10249700000001 + 30 +0.0 + 11 +233.65577494431844 + 21 +78.10249700000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +220.00000000000003 + 20 +78.10249700000001 + 30 +0.0 + 11 +233.65577494431844 + 21 +78.10249700000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +220.00000000000003 + 20 +37.13517216704474 + 30 +0.0 + 11 +220.00000000000003 + 21 +78.10249700000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +233.65577494431844 + 20 +37.13517216704474 + 30 +0.0 + 11 +220.00000000000003 + 21 +37.13517216704474 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +233.65577494431844 + 20 +78.10249700000001 + 30 +0.0 + 11 +233.65577494431844 + 21 +208.102497 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +233.65577494431844 + 20 +208.102497 + 30 +0.0 + 11 +293.65577494431847 + 21 +208.102497 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +233.65577494431844 + 20 +249.06982183295528 + 30 +0.0 + 11 +293.65577494431847 + 21 +208.102497 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +233.65577494431844 + 20 +249.06982183295528 + 30 +0.0 + 11 +233.65577494431844 + 21 +208.102497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +233.65577494431847 + 20 +249.0698218329553 + 30 +0.0 + 11 +271.811578203682 + 21 +263.98479355943255 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +271.811578203682 + 20 +263.98479355943255 + 30 +0.0 + 11 +293.65577494431847 + 21 +208.102497 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +328.65577494431847 + 20 +286.20499375906655 + 30 +0.0 + 11 +293.65577494431847 + 21 +208.102497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +309.9673814630455 + 20 +278.8997652859099 + 30 +0.0 + 11 +328.65577494431847 + 21 +286.20499375906655 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +271.811578203682 + 20 +263.98479355943255 + 30 +0.0 + 11 +309.9673814630455 + 21 +278.8997652859099 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +293.65577494431847 + 20 +208.10249699999997 + 30 +0.0 + 11 +328.65577494431847 + 21 +208.10249699999997 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +328.65577494431847 + 20 +208.10249699999997 + 30 +0.0 + 11 +363.65577494431847 + 21 +208.10249699999997 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +328.65577494431847 + 20 +286.20499375906655 + 30 +0.0 + 11 +363.65577494431847 + 21 +208.10249699999997 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +347.3441684255914 + 20 +278.89976528590984 + 30 +0.0 + 11 +385.49997168495497 + 21 +263.98479355943255 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +328.65577494431847 + 20 +286.20499375906655 + 30 +0.0 + 11 +347.3441684255914 + 21 +278.89976528590984 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +363.65577494431847 + 20 +208.10249699999997 + 30 +0.0 + 11 +385.49997168495497 + 21 +263.98479355943255 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +363.65577494431847 + 20 +208.10249699999997 + 30 +0.0 + 11 +423.65577494431847 + 21 +249.06982183295528 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +385.49997168495497 + 20 +263.98479355943255 + 30 +0.0 + 11 +423.65577494431847 + 21 +249.06982183295528 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +423.65577494431847 + 20 +208.10249699999997 + 30 +0.0 + 11 +423.65577494431847 + 21 +249.06982183295526 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +363.65577494431847 + 20 +208.10249699999997 + 30 +0.0 + 11 +423.65577494431847 + 21 +208.10249699999997 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +437.31154988863693 + 20 +208.10249699999997 + 30 +0.0 + 11 +423.65577494431847 + 21 +208.10249699999997 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +437.31154988863693 + 20 +249.06982183295526 + 30 +0.0 + 11 +437.31154988863693 + 21 +208.10249699999997 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +423.65577494431847 + 20 +249.06982183295526 + 30 +0.0 + 11 +437.31154988863693 + 21 +249.06982183295526 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +423.65577494431847 + 20 +208.10249699999997 + 30 +0.0 + 11 +423.6557749443185 + 21 +78.102497 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +423.6557749443185 + 20 +78.10249700000001 + 30 +0.0 + 11 +363.6557749443185 + 21 +78.10249700000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +423.6557749443185 + 20 +37.13517216704474 + 30 +0.0 + 11 +363.6557749443185 + 21 +78.10249700000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +423.6557749443185 + 20 +37.13517216704474 + 30 +0.0 + 11 +423.6557749443185 + 21 +78.10249700000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +423.65577494431847 + 20 +37.13517216704476 + 30 +0.0 + 11 +385.49997168495497 + 21 +22.220200440567485 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +385.49997168495497 + 20 +22.220200440567485 + 30 +0.0 + 11 +363.65577494431847 + 21 +78.10249700000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +328.6557749443185 + 20 +2.4093347406051185e-07 + 30 +0.0 + 11 +363.6557749443185 + 21 +78.10249700000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +347.3441684255914 + 20 +7.305228714090191 + 30 +0.0 + 11 +328.6557749443185 + 21 +2.4093347406051185e-07 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +385.49997168495497 + 20 +22.220200440567485 + 30 +0.0 + 11 +347.3441684255914 + 21 +7.305228714090191 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +437.31154988863693 + 20 +37.13517216704474 + 30 +0.0 + 11 +423.6557749443185 + 21 +37.13517216704474 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +437.31154988863693 + 20 +78.10249700000001 + 30 +0.0 + 11 +437.31154988863693 + 21 +37.13517216704474 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +423.6557749443185 + 20 +78.10249700000001 + 30 +0.0 + 11 +437.31154988863693 + 21 +78.10249700000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +220.00000000000003 + 20 +249.06982183295528 + 30 +0.0 + 11 +233.65577494431844 + 21 +249.06982183295528 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +220.00000000000003 + 20 +208.102497 + 30 +0.0 + 11 +220.00000000000003 + 21 +249.06982183295528 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +233.65577494431844 + 20 +208.102497 + 30 +0.0 + 11 +220.00000000000003 + 21 +208.102497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +301.30138369696056 + 20 +21.957662187001805 + 30 +0.0 + 11 +288.1170968058442 + 21 +27.111354401999538 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +288.1170968058442 + 20 +27.111354401999538 + 30 +0.0 + 11 +287.93506183300553 + 21 +26.645668597337593 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.93506183300553 + 20 +26.645668597337593 + 30 +0.0 + 11 +301.119348724122 + 21 +21.49197638233986 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +301.119348724122 + 20 +21.49197638233986 + 30 +0.0 + 11 +301.30138369696056 + 21 +21.957662187001805 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +223.41394373607963 + 20 +50.790947111363174 + 30 +0.0 + 11 +230.2418312082388 + 21 +50.790947111363174 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +230.2418312082388 + 20 +50.790947111363174 + 30 +0.0 + 11 +230.2418312082388 + 21 +64.4467220556816 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +230.2418312082388 + 20 +64.4467220556816 + 30 +0.0 + 11 +223.41394373607963 + 21 +64.4467220556816 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +288.1170968058442 + 20 +259.0936395980005 + 30 +0.0 + 11 +301.30138369696056 + 21 +264.2473318129982 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +301.30138369696056 + 20 +264.2473318129982 + 30 +0.0 + 11 +301.119348724122 + 21 +264.7130176176602 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +301.119348724122 + 20 +264.7130176176602 + 30 +0.0 + 11 +287.93506183300553 + 21 +259.55932540266247 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.93506183300553 + 20 +259.55932540266247 + 30 +0.0 + 11 +288.1170968058442 + 21 +259.0936395980005 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +356.01016619167626 + 20 +264.2473318129982 + 30 +0.0 + 11 +369.1944530827928 + 21 +259.0936395980005 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +369.1944530827928 + 20 +259.0936395980005 + 30 +0.0 + 11 +369.3764880556314 + 21 +259.5593254026624 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +369.3764880556314 + 20 +259.5593254026624 + 30 +0.0 + 11 +356.192201164515 + 21 +264.71301761766017 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +356.192201164515 + 20 +264.71301761766017 + 30 +0.0 + 11 +356.01016619167626 + 21 +264.2473318129982 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +433.8976061525573 + 20 +235.41404688863682 + 30 +0.0 + 11 +427.06971868039807 + 21 +235.41404688863682 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +427.06971868039807 + 20 +235.41404688863682 + 30 +0.0 + 11 +427.06971868039807 + 21 +221.7582719443184 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +427.06971868039807 + 20 +221.7582719443184 + 30 +0.0 + 11 +433.8976061525573 + 21 +221.7582719443184 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +369.1944530827928 + 20 +27.11135440199955 + 30 +0.0 + 11 +356.01016619167626 + 21 +21.957662187001834 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +356.01016619167626 + 20 +21.957662187001834 + 30 +0.0 + 11 +356.192201164515 + 21 +21.491976382339885 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +356.192201164515 + 20 +21.491976382339885 + 30 +0.0 + 11 +369.37648805563146 + 21 +26.645668597337608 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +369.37648805563146 + 20 +26.645668597337608 + 30 +0.0 + 11 +369.1944530827928 + 21 +27.11135440199955 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +433.8976061525573 + 20 +64.44672205568159 + 30 +0.0 + 11 +427.06971868039807 + 21 +64.44672205568159 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +427.06971868039807 + 20 +64.44672205568159 + 30 +0.0 + 11 +427.06971868039807 + 21 +50.790947111363174 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +427.06971868039807 + 20 +50.790947111363174 + 30 +0.0 + 11 +433.8976061525573 + 21 +50.790947111363174 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +223.41394373607963 + 20 +221.75827194431847 + 30 +0.0 + 11 +230.2418312082388 + 21 +221.75827194431847 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +230.2418312082388 + 20 +221.75827194431847 + 30 +0.0 + 11 +230.2418312082388 + 21 +235.41404688863685 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +230.2418312082388 + 20 +235.41404688863685 + 30 +0.0 + 11 +223.41394373607963 + 21 +235.41404688863685 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +480.31154988863693 + 20 +131.102497 + 30 +0.0 + 11 +541.3115498886368 + 21 +131.102497 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +541.3115498886368 + 20 +131.102497 + 30 +0.0 + 11 +541.3115498886368 + 21 +155.10249700000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +541.3115498886368 + 20 +155.10249700000003 + 30 +0.0 + 11 +480.31154988863693 + 21 +155.10249700000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +480.31154988863693 + 20 +155.10249700000003 + 30 +0.0 + 11 +480.31154988863693 + 21 +131.102497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +480.31154988863693 + 20 +124.10249700000001 + 30 +0.0 + 11 +480.31154988863693 + 21 +131.102497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +540.3115498886368 + 20 +124.10249700000001 + 30 +0.0 + 11 +480.31154988863693 + 21 +124.10249700000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +540.3115498886368 + 20 +131.102497 + 30 +0.0 + 11 +540.3115498886368 + 21 +124.10249700000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +548.3115498886369 + 20 +131.102497 + 30 +0.0 + 11 +541.3115498886368 + 21 +131.102497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +548.3115498886369 + 20 +155.10249700000003 + 30 +0.0 + 11 +548.3115498886369 + 21 +131.102497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +541.3115498886368 + 20 +155.10249700000003 + 30 +0.0 + 11 +548.3115498886369 + 21 +155.10249700000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +541.3115498886368 + 20 +155.10249700000003 + 30 +0.0 + 11 +541.3115498886368 + 21 +216.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +481.31154988863693 + 20 +216.10249700000003 + 30 +0.0 + 11 +541.3115498886368 + 21 +216.10249700000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +481.31154988863693 + 20 +155.10249700000003 + 30 +0.0 + 11 +481.31154988863693 + 21 +216.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +565.3115498886369 + 20 +155.10249700000003 + 30 +0.0 + 11 +541.3115498886368 + 21 +155.10249700000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +565.3115498886369 + 20 +155.10249700000003 + 30 +0.0 + 11 +565.3115498886369 + 21 +216.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +541.3115498886368 + 20 +216.10249700000003 + 30 +0.0 + 11 +565.3115498886369 + 21 +216.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +625.3115498886368 + 20 +155.10249700000003 + 30 +0.0 + 11 +565.3115498886369 + 21 +155.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +625.3115498886368 + 20 +216.10249700000003 + 30 +0.0 + 11 +625.3115498886368 + 21 +155.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +565.3115498886369 + 20 +216.10249700000003 + 30 +0.0 + 11 +625.3115498886368 + 21 +216.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +481.31154988863693 + 20 +155.10249700000003 + 30 +0.0 + 11 +457.3115498886369 + 21 +155.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +457.3115498886369 + 20 +216.10249700000003 + 30 +0.0 + 11 +481.31154988863693 + 21 +216.10249700000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +457.3115498886369 + 20 +216.10249700000003 + 30 +0.0 + 11 +457.3115498886369 + 21 +155.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +447.31154988863693 + 20 +216.10249700000003 + 30 +0.0 + 11 +457.3115498886369 + 21 +216.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +447.31154988863693 + 20 +155.10249700000003 + 30 +0.0 + 11 +447.31154988863693 + 21 +216.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +457.3115498886369 + 20 +155.10249700000003 + 30 +0.0 + 11 +447.31154988863693 + 21 +155.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +473.31154988863693 + 20 +155.10249700000003 + 30 +0.0 + 11 +480.31154988863693 + 21 +155.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +473.31154988863693 + 20 +131.102497 + 30 +0.0 + 11 +473.31154988863693 + 21 +155.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +480.31154988863693 + 20 +131.102497 + 30 +0.0 + 11 +473.31154988863693 + 21 +131.102497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +529.4024589795459 + 20 +125.85249700000001 + 30 +0.0 + 11 +532.902458979546 + 21 +125.85249700000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +532.902458979546 + 20 +125.85249700000001 + 30 +0.0 + 11 +529.4024589795459 + 21 +129.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +529.4024589795459 + 20 +129.35249700000003 + 30 +0.0 + 11 +518.4933680704552 + 21 +129.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +518.4933680704552 + 20 +129.35249700000003 + 30 +0.0 + 11 +514.9933680704551 + 21 +125.85249700000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +514.9933680704551 + 20 +125.85249700000001 + 30 +0.0 + 11 +518.4933680704552 + 21 +125.85249700000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +502.12973170681875 + 20 +125.85249700000001 + 30 +0.0 + 11 +505.62973170681875 + 21 +125.85249700000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +505.62973170681875 + 20 +125.85249700000001 + 30 +0.0 + 11 +502.12973170681875 + 21 +129.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +502.12973170681875 + 20 +129.35249700000003 + 30 +0.0 + 11 +491.22064079772787 + 21 +129.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +491.22064079772787 + 20 +129.35249700000003 + 30 +0.0 + 11 +487.72064079772787 + 21 +125.85249700000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +487.72064079772787 + 20 +125.85249700000001 + 30 +0.0 + 11 +491.22064079772787 + 21 +125.85249700000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +546.5615498886368 + 20 +147.10249700000003 + 30 +0.0 + 11 +543.0615498886369 + 21 +147.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.0615498886369 + 20 +147.10249700000003 + 30 +0.0 + 11 +543.0615498886369 + 21 +139.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.0615498886369 + 20 +139.10249700000003 + 30 +0.0 + 11 +546.5615498886368 + 21 +139.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +488.81154988863693 + 20 +206.60249700000003 + 30 +0.0 + 11 +488.81154988863693 + 21 +188.60249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +488.81154988863693 + 20 +188.60249700000003 + 30 +0.0 + 11 +523.8115498886369 + 21 +188.60249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +523.8115498886369 + 20 +188.60249700000003 + 30 +0.0 + 11 +523.8115498886369 + 21 +206.60249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +523.8115498886369 + 20 +206.60249700000003 + 30 +0.0 + 11 +488.81154988863693 + 21 +206.60249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +541.8115498886369 + 20 +168.35249700000003 + 30 +0.0 + 11 +541.8115498886369 + 21 +165.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +541.8115498886369 + 20 +165.35249700000003 + 30 +0.0 + 11 +544.8115498886368 + 21 +165.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +544.8115498886368 + 20 +165.35249700000003 + 30 +0.0 + 11 +544.8115498886368 + 21 +168.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +544.8115498886368 + 20 +168.35249700000003 + 30 +0.0 + 11 +541.8115498886369 + 21 +168.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +167.352497 + 30 +0.0 + 11 +562.8115498886368 + 21 +166.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +166.35249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +166.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +166.35249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +167.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +167.352497 + 30 +0.0 + 11 +562.8115498886368 + 21 +167.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +169.85249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +168.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +168.85249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +168.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +168.85249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +169.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +169.85249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +169.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +169.85249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +168.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +168.85249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +168.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +168.85249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +169.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +169.85249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +169.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +172.35249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +171.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +171.352497 + 30 +0.0 + 11 +543.8115498886368 + 21 +171.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +171.352497 + 30 +0.0 + 11 +543.8115498886368 + 21 +172.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +172.35249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +172.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +172.35249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +171.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +171.352497 + 30 +0.0 + 11 +563.8115498886368 + 21 +171.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +171.352497 + 30 +0.0 + 11 +563.8115498886368 + 21 +172.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +172.35249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +172.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +174.85249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +173.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +173.852497 + 30 +0.0 + 11 +543.8115498886368 + 21 +173.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +173.852497 + 30 +0.0 + 11 +543.8115498886368 + 21 +174.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +174.85249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +174.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +174.85249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +173.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +173.852497 + 30 +0.0 + 11 +563.8115498886368 + 21 +173.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +173.852497 + 30 +0.0 + 11 +563.8115498886368 + 21 +174.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +174.85249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +174.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +177.35249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +176.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +176.352497 + 30 +0.0 + 11 +543.8115498886368 + 21 +176.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +176.352497 + 30 +0.0 + 11 +543.8115498886368 + 21 +177.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +177.35249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +177.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +177.35249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +176.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +176.352497 + 30 +0.0 + 11 +563.8115498886368 + 21 +176.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +176.352497 + 30 +0.0 + 11 +563.8115498886368 + 21 +177.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +177.35249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +177.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +179.85249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +178.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +178.85249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +178.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +178.85249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +179.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +179.85249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +179.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +179.85249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +178.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +178.85249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +178.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +178.85249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +179.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +179.85249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +179.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +182.35249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +181.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +181.35249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +181.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +181.35249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +182.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +182.35249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +182.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +182.35249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +181.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +181.35249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +181.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +181.35249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +182.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +182.35249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +182.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +184.85249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +183.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +183.85249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +183.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +183.85249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +184.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +184.85249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +184.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +184.85249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +183.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +183.85249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +183.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +183.85249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +184.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +184.85249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +184.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +187.352497 + 30 +0.0 + 11 +542.8115498886368 + 21 +186.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +186.35249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +186.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +186.35249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +187.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +187.352497 + 30 +0.0 + 11 +542.8115498886368 + 21 +187.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +187.352497 + 30 +0.0 + 11 +562.8115498886368 + 21 +186.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +186.35249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +186.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +186.35249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +187.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +187.352497 + 30 +0.0 + 11 +562.8115498886368 + 21 +187.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +189.852497 + 30 +0.0 + 11 +542.8115498886368 + 21 +188.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +188.85249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +188.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +188.85249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +189.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +189.852497 + 30 +0.0 + 11 +542.8115498886368 + 21 +189.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +189.852497 + 30 +0.0 + 11 +562.8115498886368 + 21 +188.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +188.85249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +188.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +188.85249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +189.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +189.852497 + 30 +0.0 + 11 +562.8115498886368 + 21 +189.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +192.352497 + 30 +0.0 + 11 +542.8115498886368 + 21 +191.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +191.35249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +191.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +191.35249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +192.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +192.352497 + 30 +0.0 + 11 +542.8115498886368 + 21 +192.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +192.352497 + 30 +0.0 + 11 +562.8115498886368 + 21 +191.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +191.35249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +191.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +191.35249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +192.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +192.352497 + 30 +0.0 + 11 +562.8115498886368 + 21 +192.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +194.85249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +193.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +193.85249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +193.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +193.85249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +194.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +194.85249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +194.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +194.85249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +193.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +193.85249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +193.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +193.85249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +194.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +194.85249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +194.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +197.35249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +196.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +196.35249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +196.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +196.35249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +197.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +197.35249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +197.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +197.35249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +196.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +196.35249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +196.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +196.35249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +197.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +197.35249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +197.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +199.85249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +198.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +198.852497 + 30 +0.0 + 11 +543.8115498886368 + 21 +198.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +198.852497 + 30 +0.0 + 11 +543.8115498886368 + 21 +199.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +199.85249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +199.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +199.85249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +198.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +198.852497 + 30 +0.0 + 11 +563.8115498886368 + 21 +198.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +198.852497 + 30 +0.0 + 11 +563.8115498886368 + 21 +199.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +199.85249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +199.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +202.35249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +201.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +201.352497 + 30 +0.0 + 11 +543.8115498886368 + 21 +201.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +201.352497 + 30 +0.0 + 11 +543.8115498886368 + 21 +202.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +202.35249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +202.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +202.35249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +201.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +201.352497 + 30 +0.0 + 11 +563.8115498886368 + 21 +201.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +201.352497 + 30 +0.0 + 11 +563.8115498886368 + 21 +202.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +202.35249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +202.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +204.85249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +203.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +203.85249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +203.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +203.85249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +204.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +204.85249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +204.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +561.8115498886368 + 20 +205.852497 + 30 +0.0 + 11 +561.8115498886368 + 21 +202.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +561.8115498886368 + 20 +202.85249700000003 + 30 +0.0 + 11 +564.8115498886369 + 21 +202.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +564.8115498886369 + 20 +202.85249700000003 + 30 +0.0 + 11 +564.8115498886369 + 21 +205.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +564.8115498886369 + 20 +205.852497 + 30 +0.0 + 11 +561.8115498886368 + 21 +205.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +557.5615498886368 + 20 +162.852497 + 30 +0.0 + 11 +549.0615498886368 + 21 +162.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +549.0615498886368 + 20 +162.852497 + 30 +0.0 + 11 +549.0615498886368 + 21 +162.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +549.0615498886368 + 20 +162.352497 + 30 +0.0 + 11 +557.5615498886368 + 21 +162.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +557.5615498886368 + 20 +162.352497 + 30 +0.0 + 11 +557.5615498886368 + 21 +162.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +549.0615498886368 + 20 +210.60249700000003 + 30 +0.0 + 11 +557.5615498886368 + 21 +210.60249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +557.5615498886368 + 20 +210.60249700000003 + 30 +0.0 + 11 +557.5615498886368 + 21 +211.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +557.5615498886368 + 20 +211.10249700000003 + 30 +0.0 + 11 +549.0615498886368 + 21 +211.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +549.0615498886368 + 20 +211.10249700000003 + 30 +0.0 + 11 +549.0615498886368 + 21 +210.60249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +580.3115498886368 + 20 +206.10249700000003 + 30 +0.0 + 11 +580.3115498886368 + 21 +193.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +580.3115498886368 + 20 +193.10249700000003 + 30 +0.0 + 11 +610.3115498886369 + 21 +193.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +610.3115498886369 + 20 +193.10249700000003 + 30 +0.0 + 11 +610.3115498886369 + 21 +206.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +610.3115498886369 + 20 +206.10249700000003 + 30 +0.0 + 11 +580.3115498886368 + 21 +206.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +587.3797317068187 + 20 +160.602497 + 30 +0.0 + 11 +575.9706407977279 + 21 +160.602497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +575.9706407977279 + 20 +160.602497 + 30 +0.0 + 11 +575.9706407977279 + 21 +160.102497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +575.9706407977279 + 20 +160.102497 + 30 +0.0 + 11 +587.3797317068187 + 21 +160.102497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +587.3797317068187 + 20 +160.102497 + 30 +0.0 + 11 +587.3797317068187 + 21 +160.602497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +614.6524589795459 + 20 +160.602497 + 30 +0.0 + 11 +603.2433680704552 + 21 +160.602497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +603.2433680704552 + 20 +160.602497 + 30 +0.0 + 11 +603.2433680704552 + 21 +160.102497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +603.2433680704552 + 20 +160.102497 + 30 +0.0 + 11 +614.6524589795459 + 21 +160.102497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +614.6524589795459 + 20 +160.102497 + 30 +0.0 + 11 +614.6524589795459 + 21 +160.602497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +617.5615498886369 + 20 +177.53431518181822 + 30 +0.0 + 11 +617.5615498886369 + 21 +165.9434060909091 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +617.5615498886369 + 20 +165.9434060909091 + 30 +0.0 + 11 +618.0615498886369 + 21 +165.9434060909091 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +618.0615498886369 + 20 +165.9434060909091 + 30 +0.0 + 11 +618.0615498886369 + 21 +177.53431518181822 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +618.0615498886369 + 20 +177.53431518181822 + 30 +0.0 + 11 +617.5615498886369 + 21 +177.53431518181822 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +617.5615498886369 + 20 +205.26158790909093 + 30 +0.0 + 11 +617.5615498886369 + 21 +193.67067881818187 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +617.5615498886369 + 20 +193.67067881818187 + 30 +0.0 + 11 +618.0615498886369 + 21 +193.67067881818187 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +618.0615498886369 + 20 +193.67067881818187 + 30 +0.0 + 11 +618.0615498886369 + 21 +205.26158790909093 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +618.0615498886369 + 20 +205.26158790909093 + 30 +0.0 + 11 +617.5615498886369 + 21 +205.26158790909093 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +457.81154988863693 + 20 +168.35249700000003 + 30 +0.0 + 11 +457.81154988863693 + 21 +165.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +457.81154988863693 + 20 +165.35249700000003 + 30 +0.0 + 11 +460.81154988863693 + 21 +165.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +460.81154988863693 + 20 +165.35249700000003 + 30 +0.0 + 11 +460.81154988863693 + 21 +168.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +460.81154988863693 + 20 +168.35249700000003 + 30 +0.0 + 11 +457.81154988863693 + 21 +168.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +167.352497 + 30 +0.0 + 11 +478.81154988863693 + 21 +166.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +166.35249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +166.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +166.35249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +167.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +167.352497 + 30 +0.0 + 11 +478.81154988863693 + 21 +167.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +169.85249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +168.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +168.85249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +168.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +168.85249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +169.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +169.85249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +169.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +169.85249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +168.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +168.85249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +168.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +168.85249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +169.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +169.85249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +169.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +172.35249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +171.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +171.352497 + 30 +0.0 + 11 +459.81154988863693 + 21 +171.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +171.352497 + 30 +0.0 + 11 +459.81154988863693 + 21 +172.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +172.35249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +172.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +172.35249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +171.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +171.352497 + 30 +0.0 + 11 +479.81154988863693 + 21 +171.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +171.352497 + 30 +0.0 + 11 +479.81154988863693 + 21 +172.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +172.35249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +172.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +174.85249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +173.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +173.852497 + 30 +0.0 + 11 +459.81154988863693 + 21 +173.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +173.852497 + 30 +0.0 + 11 +459.81154988863693 + 21 +174.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +174.85249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +174.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +174.85249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +173.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +173.852497 + 30 +0.0 + 11 +479.81154988863693 + 21 +173.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +173.852497 + 30 +0.0 + 11 +479.81154988863693 + 21 +174.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +174.85249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +174.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +177.35249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +176.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +176.352497 + 30 +0.0 + 11 +459.81154988863693 + 21 +176.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +176.352497 + 30 +0.0 + 11 +459.81154988863693 + 21 +177.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +177.35249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +177.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +177.35249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +176.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +176.352497 + 30 +0.0 + 11 +479.81154988863693 + 21 +176.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +176.352497 + 30 +0.0 + 11 +479.81154988863693 + 21 +177.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +177.35249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +177.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +179.85249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +178.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +178.85249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +178.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +178.85249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +179.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +179.85249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +179.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +179.85249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +178.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +178.85249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +178.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +178.85249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +179.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +179.85249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +179.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +182.35249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +181.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +181.35249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +181.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +181.35249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +182.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +182.35249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +182.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +182.35249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +181.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +181.35249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +181.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +181.35249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +182.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +182.35249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +182.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +184.85249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +183.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +183.85249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +183.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +183.85249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +184.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +184.85249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +184.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +184.85249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +183.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +183.85249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +183.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +183.85249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +184.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +184.85249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +184.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +187.352497 + 30 +0.0 + 11 +458.81154988863693 + 21 +186.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +186.35249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +186.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +186.35249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +187.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +187.352497 + 30 +0.0 + 11 +458.81154988863693 + 21 +187.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +187.352497 + 30 +0.0 + 11 +478.81154988863693 + 21 +186.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +186.35249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +186.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +186.35249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +187.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +187.352497 + 30 +0.0 + 11 +478.81154988863693 + 21 +187.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +189.852497 + 30 +0.0 + 11 +458.81154988863693 + 21 +188.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +188.85249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +188.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +188.85249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +189.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +189.852497 + 30 +0.0 + 11 +458.81154988863693 + 21 +189.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +189.852497 + 30 +0.0 + 11 +478.81154988863693 + 21 +188.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +188.85249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +188.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +188.85249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +189.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +189.852497 + 30 +0.0 + 11 +478.81154988863693 + 21 +189.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +192.352497 + 30 +0.0 + 11 +458.81154988863693 + 21 +191.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +191.35249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +191.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +191.35249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +192.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +192.352497 + 30 +0.0 + 11 +458.81154988863693 + 21 +192.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +192.352497 + 30 +0.0 + 11 +478.81154988863693 + 21 +191.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +191.35249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +191.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +191.35249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +192.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +192.352497 + 30 +0.0 + 11 +478.81154988863693 + 21 +192.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +194.85249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +193.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +193.85249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +193.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +193.85249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +194.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +194.85249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +194.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +194.85249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +193.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +193.85249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +193.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +193.85249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +194.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +194.85249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +194.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +197.35249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +196.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +196.35249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +196.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +196.35249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +197.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +197.35249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +197.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +197.35249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +196.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +196.35249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +196.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +196.35249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +197.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +197.35249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +197.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +199.85249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +198.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +198.852497 + 30 +0.0 + 11 +459.81154988863693 + 21 +198.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +198.852497 + 30 +0.0 + 11 +459.81154988863693 + 21 +199.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +199.85249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +199.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +199.85249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +198.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +198.852497 + 30 +0.0 + 11 +479.81154988863693 + 21 +198.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +198.852497 + 30 +0.0 + 11 +479.81154988863693 + 21 +199.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +199.85249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +199.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +202.35249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +201.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +201.352497 + 30 +0.0 + 11 +459.81154988863693 + 21 +201.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +201.352497 + 30 +0.0 + 11 +459.81154988863693 + 21 +202.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +202.35249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +202.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +202.35249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +201.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +201.352497 + 30 +0.0 + 11 +479.81154988863693 + 21 +201.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +201.352497 + 30 +0.0 + 11 +479.81154988863693 + 21 +202.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +202.35249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +202.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +204.85249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +203.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +203.85249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +203.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +203.85249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +204.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +204.85249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +204.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +477.81154988863693 + 20 +205.852497 + 30 +0.0 + 11 +477.81154988863693 + 21 +202.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +477.81154988863693 + 20 +202.85249700000003 + 30 +0.0 + 11 +480.81154988863693 + 21 +202.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +480.81154988863693 + 20 +202.85249700000003 + 30 +0.0 + 11 +480.81154988863693 + 21 +205.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +480.81154988863693 + 20 +205.852497 + 30 +0.0 + 11 +477.81154988863693 + 21 +205.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +473.56154988863693 + 20 +162.852497 + 30 +0.0 + 11 +465.06154988863693 + 21 +162.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +465.06154988863693 + 20 +162.852497 + 30 +0.0 + 11 +465.06154988863693 + 21 +162.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +465.06154988863693 + 20 +162.352497 + 30 +0.0 + 11 +473.56154988863693 + 21 +162.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +473.56154988863693 + 20 +162.352497 + 30 +0.0 + 11 +473.56154988863693 + 21 +162.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +465.06154988863693 + 20 +210.60249700000003 + 30 +0.0 + 11 +473.56154988863693 + 21 +210.60249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +473.56154988863693 + 20 +210.60249700000003 + 30 +0.0 + 11 +473.56154988863693 + 21 +211.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +473.56154988863693 + 20 +211.10249700000003 + 30 +0.0 + 11 +465.06154988863693 + 21 +211.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +465.06154988863693 + 20 +211.10249700000003 + 30 +0.0 + 11 +465.06154988863693 + 21 +210.60249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +449.81154988863693 + 20 +166.1934060909091 + 30 +0.0 + 11 +454.81154988863693 + 21 +166.1934060909091 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +454.81154988863693 + 20 +166.1934060909091 + 30 +0.0 + 11 +454.81154988863693 + 21 +177.28431518181822 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +454.81154988863693 + 20 +177.28431518181822 + 30 +0.0 + 11 +449.81154988863693 + 21 +177.28431518181822 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +449.81154988863693 + 20 +193.92067881818187 + 30 +0.0 + 11 +454.81154988863693 + 21 +193.92067881818187 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +454.81154988863693 + 20 +193.92067881818187 + 30 +0.0 + 11 +454.81154988863693 + 21 +205.01158790909093 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +454.81154988863693 + 20 +205.01158790909093 + 30 +0.0 + 11 +449.81154988863693 + 21 +205.01158790909093 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +475.06154988863693 + 20 +139.10249700000003 + 30 +0.0 + 11 +478.56154988863693 + 21 +139.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.56154988863693 + 20 +139.10249700000003 + 30 +0.0 + 11 +478.56154988863693 + 21 +147.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.56154988863693 + 20 +147.10249700000003 + 30 +0.0 + 11 +475.06154988863693 + 21 +147.10249700000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +645.3115498886368 + 20 +125.03318600040735 + 30 +0.0 + 11 +706.3115498886369 + 21 +125.03318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.3115498886369 + 20 +161.17180799959266 + 30 +0.0 + 11 +706.3115498886369 + 21 +125.03318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +645.3115498886368 + 20 +161.17180799959266 + 30 +0.0 + 11 +706.3115498886369 + 21 +161.17180799959266 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +645.3115498886368 + 20 +125.03318600040735 + 30 +0.0 + 11 +645.3115498886368 + 21 +161.17180799959266 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +706.3115498886369 + 20 +101.03318600040734 + 30 +0.0 + 11 +645.3115498886368 + 21 +101.03318600040734 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +706.3115498886369 + 20 +101.03318600040734 + 30 +0.0 + 11 +706.3115498886369 + 21 +125.03318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +645.3115498886368 + 20 +64.89456400122205 + 30 +0.0 + 11 +645.3115498886368 + 21 +101.03318600040734 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.3115498886369 + 20 +64.89456400122205 + 30 +0.0 + 11 +645.3115498886368 + 21 +64.89456400122205 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.3115498886369 + 20 +101.03318600040734 + 30 +0.0 + 11 +706.3115498886369 + 21 +64.89456400122205 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +716.3115498886368 + 20 +101.03318600040734 + 30 +0.0 + 11 +706.3115498886369 + 21 +101.03318600040734 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +716.3115498886368 + 20 +125.03318600040735 + 30 +0.0 + 11 +716.3115498886368 + 21 +101.03318600040734 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.3115498886369 + 20 +125.03318600040735 + 30 +0.0 + 11 +716.3115498886368 + 21 +125.03318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +635.3115498886368 + 20 +125.03318600040735 + 30 +0.0 + 11 +645.3115498886368 + 21 +125.03318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +635.3115498886368 + 20 +101.03318600040734 + 30 +0.0 + 11 +635.3115498886368 + 21 +125.03318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +645.3115498886368 + 20 +101.03318600040734 + 30 +0.0 + 11 +635.3115498886368 + 21 +101.03318600040734 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +663.3115498886368 + 20 +106.53318600040735 + 30 +0.0 + 11 +674.3115498886369 + 21 +106.53318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +674.3115498886369 + 20 +106.53318600040735 + 30 +0.0 + 11 +674.3115498886369 + 21 +119.53318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +674.3115498886369 + 20 +119.53318600040735 + 30 +0.0 + 11 +663.3115498886368 + 21 +119.53318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +663.3115498886368 + 20 +119.53318600040735 + 30 +0.0 + 11 +663.3115498886368 + 21 +106.53318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +694.8115498886369 + 20 +108.03318600040735 + 30 +0.0 + 11 +700.8115498886369 + 21 +108.03318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +700.8115498886369 + 20 +108.03318600040735 + 30 +0.0 + 11 +700.8115498886369 + 21 +118.03318600040734 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +700.8115498886369 + 20 +118.03318600040734 + 30 +0.0 + 11 +694.8115498886369 + 21 +118.03318600040734 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +694.8115498886369 + 20 +118.03318600040734 + 30 +0.0 + 11 +694.8115498886369 + 21 +108.03318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +713.8115498886369 + 20 +117.03318600040735 + 30 +0.0 + 11 +708.8115498886368 + 21 +117.03318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +708.8115498886368 + 20 +117.03318600040735 + 30 +0.0 + 11 +708.8115498886368 + 21 +109.03318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +708.8115498886368 + 20 +109.03318600040735 + 30 +0.0 + 11 +713.8115498886369 + 21 +109.03318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +637.8115498886369 + 20 +109.03318600040735 + 30 +0.0 + 11 +642.8115498886368 + 21 +109.03318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +642.8115498886368 + 20 +109.03318600040735 + 30 +0.0 + 11 +642.8115498886368 + 21 +117.03318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +642.8115498886368 + 20 +117.03318600040735 + 30 +0.0 + 11 +637.8115498886369 + 21 +117.03318600040735 + 31 +0.0 + 0 +ENDSEC + 0 +EOF diff --git a/rocolib/output/BoatWithStack/graph-lasercutter.svg b/rocolib/output/BoatWithStack/graph-lasercutter.svg new file mode 100644 index 0000000000000000000000000000000000000000..cd359f87d70ea5882a31c02390613a36fdf03e30 --- /dev/null +++ b/rocolib/output/BoatWithStack/graph-lasercutter.svg @@ -0,0 +1,469 @@ +<?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="286.204994mm" version="1.1" viewBox="0.000000 0.000000 716.311550 286.204994" width="716.311550mm"> + <defs/> + <line stroke="#000000" x1="100.0" x2="0.0" y1="143.10249700000003" y2="143.10249700000003"/> + <line stroke="#000000" x1="100.0" x2="100.0" y1="143.10249700000003" y2="143.10249700000003"/> + <line stroke="#000000" x1="50.0" x2="100.0" y1="143.10249700000003" y2="143.10249700000003"/> + <line stroke="#000000" x1="0.0" x2="50.0" y1="143.10249700000003" y2="143.10249700000003"/> + <line stroke="#000000" x1="0.0" x2="0.0" y1="143.10249700000003" y2="143.10249700000003"/> + <line stroke="#000000" x1="210.00000000000003" x2="110.00000000000001" y1="143.10249700000003" y2="143.10249700000003"/> + <line stroke="#000000" x1="210.00000000000003" x2="210.00000000000003" y1="143.10249700000003" y2="143.10249700000003"/> + <line stroke="#000000" x1="160.00000000000003" x2="210.00000000000003" y1="143.10249700000003" y2="143.10249700000003"/> + <line stroke="#000000" x1="110.00000000000001" x2="160.00000000000003" y1="143.10249700000003" y2="143.10249700000003"/> + <line stroke="#000000" x1="110.00000000000001" x2="110.00000000000001" y1="143.10249700000003" y2="143.10249700000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="363.65577494431847" x2="363.65577494431847" y1="78.10249700000001" y2="208.102497"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="293.65577494431847" x2="293.65577494431847" y1="78.10249700000001" y2="208.102497"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="328.65577494431847" x2="293.65577494431847" y1="78.10249700000001" y2="78.10249700000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="363.65577494431847" x2="328.65577494431847" y1="78.10249700000001" y2="78.10249700000001"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="328.65577494431847" x2="293.65577494431847" y1="2.4093347406051185e-07" y2="78.10249700000001"/> + <line stroke="#000000" x1="309.9673814630455" x2="271.811578203682" y1="7.3052287140901635" y2="22.220200440567442"/> + <line stroke="#000000" x1="328.65577494431847" x2="309.9673814630455" y1="2.409334456388024e-07" y2="7.3052287140901635"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="293.65577494431847" x2="271.811578203682" y1="78.10249700000001" y2="22.220200440567442"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="293.65577494431847" x2="233.65577494431844" y1="78.10249700000001" y2="37.135172167044736"/> + <line stroke="#000000" x1="271.811578203682" x2="233.65577494431844" y1="22.220200440567453" y2="37.135172167044736"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="233.65577494431844" x2="233.65577494431844" y1="78.10249700000001" y2="37.13517216704474"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="293.65577494431847" x2="233.65577494431844" y1="78.10249700000001" y2="78.10249700000001"/> + <line stroke="#000000" x1="220.00000000000003" x2="233.65577494431844" y1="78.10249700000001" y2="78.10249700000001"/> + <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="37.13517216704474" y2="78.10249700000001"/> + <line stroke="#000000" x1="233.65577494431844" x2="220.00000000000003" y1="37.13517216704474" y2="37.13517216704474"/> + <line stroke="#000000" x1="233.65577494431844" x2="233.65577494431844" y1="78.10249700000001" y2="208.102497"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="233.65577494431844" x2="293.65577494431847" y1="208.102497" y2="208.102497"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="233.65577494431844" x2="293.65577494431847" y1="249.06982183295528" y2="208.102497"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="233.65577494431844" x2="233.65577494431844" y1="249.06982183295528" y2="208.102497"/> + <line stroke="#000000" x1="233.65577494431847" x2="271.811578203682" y1="249.0698218329553" y2="263.98479355943255"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="271.811578203682" x2="293.65577494431847" y1="263.98479355943255" y2="208.102497"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="328.65577494431847" x2="293.65577494431847" y1="286.20499375906655" y2="208.102497"/> + <line stroke="#000000" x1="309.9673814630455" x2="328.65577494431847" y1="278.8997652859099" y2="286.20499375906655"/> + <line stroke="#000000" x1="271.811578203682" x2="309.9673814630455" y1="263.98479355943255" y2="278.8997652859099"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="293.65577494431847" x2="328.65577494431847" y1="208.10249699999997" y2="208.10249699999997"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="328.65577494431847" x2="363.65577494431847" y1="208.10249699999997" y2="208.10249699999997"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="328.65577494431847" x2="363.65577494431847" y1="286.20499375906655" y2="208.10249699999997"/> + <line stroke="#000000" x1="347.3441684255914" x2="385.49997168495497" y1="278.89976528590984" y2="263.98479355943255"/> + <line stroke="#000000" x1="328.65577494431847" x2="347.3441684255914" y1="286.20499375906655" y2="278.89976528590984"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="363.65577494431847" x2="385.49997168495497" y1="208.10249699999997" y2="263.98479355943255"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="363.65577494431847" x2="423.65577494431847" y1="208.10249699999997" y2="249.06982183295528"/> + <line stroke="#000000" x1="385.49997168495497" x2="423.65577494431847" y1="263.98479355943255" y2="249.06982183295528"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="423.65577494431847" x2="423.65577494431847" y1="208.10249699999997" y2="249.06982183295526"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="363.65577494431847" x2="423.65577494431847" y1="208.10249699999997" y2="208.10249699999997"/> + <line stroke="#000000" x1="437.31154988863693" x2="423.65577494431847" y1="208.10249699999997" y2="208.10249699999997"/> + <line stroke="#000000" x1="437.31154988863693" x2="437.31154988863693" y1="249.06982183295526" y2="208.10249699999997"/> + <line stroke="#000000" x1="423.65577494431847" x2="437.31154988863693" y1="249.06982183295526" y2="249.06982183295526"/> + <line stroke="#000000" x1="423.65577494431847" x2="423.6557749443185" y1="208.10249699999997" y2="78.102497"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="423.6557749443185" x2="363.6557749443185" y1="78.10249700000001" y2="78.10249700000001"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="423.6557749443185" x2="363.6557749443185" y1="37.13517216704474" y2="78.10249700000001"/> + <line stroke="#ff0000" stroke-dasharray="2 6" stroke-dashoffset="5" x1="423.6557749443185" x2="423.6557749443185" y1="37.13517216704474" y2="78.10249700000001"/> + <line stroke="#000000" x1="423.65577494431847" x2="385.49997168495497" y1="37.13517216704476" y2="22.220200440567485"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="385.49997168495497" x2="363.65577494431847" y1="22.220200440567485" y2="78.10249700000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="328.6557749443185" x2="363.6557749443185" y1="2.4093347406051185e-07" y2="78.10249700000001"/> + <line stroke="#000000" x1="347.3441684255914" x2="328.6557749443185" y1="7.305228714090191" y2="2.4093347406051185e-07"/> + <line stroke="#000000" x1="385.49997168495497" x2="347.3441684255914" y1="22.220200440567485" y2="7.305228714090191"/> + <line stroke="#000000" x1="437.31154988863693" x2="423.6557749443185" y1="37.13517216704474" y2="37.13517216704474"/> + <line stroke="#000000" x1="437.31154988863693" x2="437.31154988863693" y1="78.10249700000001" y2="37.13517216704474"/> + <line stroke="#000000" x1="423.6557749443185" x2="437.31154988863693" y1="78.10249700000001" y2="78.10249700000001"/> + <line stroke="#000000" x1="220.00000000000003" x2="233.65577494431844" y1="249.06982183295528" y2="249.06982183295528"/> + <line stroke="#000000" x1="220.00000000000003" x2="220.00000000000003" y1="208.102497" y2="249.06982183295528"/> + <line stroke="#000000" x1="233.65577494431844" x2="220.00000000000003" y1="208.102497" y2="208.102497"/> + <line stroke="#888888" x1="301.30138369696056" x2="288.1170968058442" y1="21.957662187001805" y2="27.111354401999538"/> + <line stroke="#888888" x1="288.1170968058442" x2="287.93506183300553" y1="27.111354401999538" y2="26.645668597337593"/> + <line stroke="#888888" x1="287.93506183300553" x2="301.119348724122" y1="26.645668597337593" y2="21.49197638233986"/> + <line stroke="#888888" x1="301.119348724122" x2="301.30138369696056" y1="21.49197638233986" y2="21.957662187001805"/> + <line stroke="#888888" x1="223.41394373607963" x2="230.2418312082388" y1="50.790947111363174" y2="50.790947111363174"/> + <line stroke="#888888" x1="230.2418312082388" x2="230.2418312082388" y1="50.790947111363174" y2="64.4467220556816"/> + <line stroke="#888888" x1="230.2418312082388" x2="223.41394373607963" y1="64.4467220556816" y2="64.4467220556816"/> + <line stroke="#888888" x1="288.1170968058442" x2="301.30138369696056" y1="259.0936395980005" y2="264.2473318129982"/> + <line stroke="#888888" x1="301.30138369696056" x2="301.119348724122" y1="264.2473318129982" y2="264.7130176176602"/> + <line stroke="#888888" x1="301.119348724122" x2="287.93506183300553" y1="264.7130176176602" y2="259.55932540266247"/> + <line stroke="#888888" x1="287.93506183300553" x2="288.1170968058442" y1="259.55932540266247" y2="259.0936395980005"/> + <line stroke="#888888" x1="356.01016619167626" x2="369.1944530827928" y1="264.2473318129982" y2="259.0936395980005"/> + <line stroke="#888888" x1="369.1944530827928" x2="369.3764880556314" y1="259.0936395980005" y2="259.5593254026624"/> + <line stroke="#888888" x1="369.3764880556314" x2="356.192201164515" y1="259.5593254026624" y2="264.71301761766017"/> + <line stroke="#888888" x1="356.192201164515" x2="356.01016619167626" y1="264.71301761766017" y2="264.2473318129982"/> + <line stroke="#888888" x1="433.8976061525573" x2="427.06971868039807" y1="235.41404688863682" y2="235.41404688863682"/> + <line stroke="#888888" x1="427.06971868039807" x2="427.06971868039807" y1="235.41404688863682" y2="221.7582719443184"/> + <line stroke="#888888" x1="427.06971868039807" x2="433.8976061525573" y1="221.7582719443184" y2="221.7582719443184"/> + <line stroke="#888888" x1="369.1944530827928" x2="356.01016619167626" y1="27.11135440199955" y2="21.957662187001834"/> + <line stroke="#888888" x1="356.01016619167626" x2="356.192201164515" y1="21.957662187001834" y2="21.491976382339885"/> + <line stroke="#888888" x1="356.192201164515" x2="369.37648805563146" y1="21.491976382339885" y2="26.645668597337608"/> + <line stroke="#888888" x1="369.37648805563146" x2="369.1944530827928" y1="26.645668597337608" y2="27.11135440199955"/> + <line stroke="#888888" x1="433.8976061525573" x2="427.06971868039807" y1="64.44672205568159" y2="64.44672205568159"/> + <line stroke="#888888" x1="427.06971868039807" x2="427.06971868039807" y1="64.44672205568159" y2="50.790947111363174"/> + <line stroke="#888888" x1="427.06971868039807" x2="433.8976061525573" y1="50.790947111363174" y2="50.790947111363174"/> + <line stroke="#888888" x1="223.41394373607963" x2="230.2418312082388" y1="221.75827194431847" y2="221.75827194431847"/> + <line stroke="#888888" x1="230.2418312082388" x2="230.2418312082388" y1="221.75827194431847" y2="235.41404688863685"/> + <line stroke="#888888" x1="230.2418312082388" x2="223.41394373607963" y1="235.41404688863685" y2="235.41404688863685"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="480.31154988863693" x2="541.3115498886368" y1="131.102497" y2="131.102497"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="541.3115498886368" x2="541.3115498886368" y1="131.102497" y2="155.10249700000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="541.3115498886368" x2="480.31154988863693" y1="155.10249700000003" y2="155.10249700000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="480.31154988863693" x2="480.31154988863693" y1="155.10249700000003" y2="131.102497"/> + <line stroke="#000000" x1="480.31154988863693" x2="480.31154988863693" y1="124.10249700000001" y2="131.102497"/> + <line stroke="#000000" x1="540.3115498886368" x2="480.31154988863693" y1="124.10249700000001" y2="124.10249700000001"/> + <line stroke="#000000" x1="540.3115498886368" x2="540.3115498886368" y1="131.102497" y2="124.10249700000001"/> + <line stroke="#000000" x1="548.3115498886369" x2="541.3115498886368" y1="131.102497" y2="131.102497"/> + <line stroke="#000000" x1="548.3115498886369" x2="548.3115498886369" y1="155.10249700000003" y2="131.102497"/> + <line stroke="#000000" x1="541.3115498886368" x2="548.3115498886369" y1="155.10249700000003" y2="155.10249700000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="541.3115498886368" x2="541.3115498886368" y1="155.10249700000003" y2="216.10249700000003"/> + <line stroke="#000000" x1="481.31154988863693" x2="541.3115498886368" y1="216.10249700000003" y2="216.10249700000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="481.31154988863693" x2="481.31154988863693" y1="155.10249700000003" y2="216.10249700000003"/> + <line stroke="#000000" x1="565.3115498886369" x2="541.3115498886368" y1="155.10249700000003" y2="155.10249700000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="565.3115498886369" x2="565.3115498886369" y1="155.10249700000003" y2="216.10249700000003"/> + <line stroke="#000000" x1="541.3115498886368" x2="565.3115498886369" y1="216.10249700000003" y2="216.10249700000003"/> + <line stroke="#000000" x1="625.3115498886368" x2="565.3115498886369" y1="155.10249700000003" y2="155.10249700000003"/> + <line stroke="#000000" x1="625.3115498886368" x2="625.3115498886368" y1="216.10249700000003" y2="155.10249700000003"/> + <line stroke="#000000" x1="565.3115498886369" x2="625.3115498886368" y1="216.10249700000003" y2="216.10249700000003"/> + <line stroke="#000000" x1="481.31154988863693" x2="457.3115498886369" y1="155.10249700000003" y2="155.10249700000003"/> + <line stroke="#000000" x1="457.3115498886369" x2="481.31154988863693" y1="216.10249700000003" y2="216.10249700000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="457.3115498886369" x2="457.3115498886369" y1="216.10249700000003" y2="155.10249700000003"/> + <line stroke="#000000" x1="447.31154988863693" x2="457.3115498886369" y1="216.10249700000003" y2="216.10249700000003"/> + <line stroke="#000000" x1="447.31154988863693" x2="447.31154988863693" y1="155.10249700000003" y2="216.10249700000003"/> + <line stroke="#000000" x1="457.3115498886369" x2="447.31154988863693" y1="155.10249700000003" y2="155.10249700000003"/> + <line stroke="#000000" x1="473.31154988863693" x2="480.31154988863693" y1="155.10249700000003" y2="155.10249700000003"/> + <line stroke="#000000" x1="473.31154988863693" x2="473.31154988863693" y1="131.102497" y2="155.10249700000003"/> + <line stroke="#000000" x1="480.31154988863693" x2="473.31154988863693" y1="131.102497" y2="131.102497"/> + <line stroke="#888888" x1="529.4024589795459" x2="532.902458979546" y1="125.85249700000001" y2="125.85249700000001"/> + <line stroke="#888888" x1="532.902458979546" x2="529.4024589795459" y1="125.85249700000001" y2="129.35249700000003"/> + <line stroke="#888888" x1="529.4024589795459" x2="518.4933680704552" y1="129.35249700000003" y2="129.35249700000003"/> + <line stroke="#888888" x1="518.4933680704552" x2="514.9933680704551" y1="129.35249700000003" y2="125.85249700000001"/> + <line stroke="#888888" x1="514.9933680704551" x2="518.4933680704552" y1="125.85249700000001" y2="125.85249700000001"/> + <line stroke="#888888" x1="502.12973170681875" x2="505.62973170681875" y1="125.85249700000001" y2="125.85249700000001"/> + <line stroke="#888888" x1="505.62973170681875" x2="502.12973170681875" y1="125.85249700000001" y2="129.35249700000003"/> + <line stroke="#888888" x1="502.12973170681875" x2="491.22064079772787" y1="129.35249700000003" y2="129.35249700000003"/> + <line stroke="#888888" x1="491.22064079772787" x2="487.72064079772787" y1="129.35249700000003" y2="125.85249700000001"/> + <line stroke="#888888" x1="487.72064079772787" x2="491.22064079772787" y1="125.85249700000001" y2="125.85249700000001"/> + <line stroke="#888888" x1="546.5615498886368" x2="543.0615498886369" y1="147.10249700000003" y2="147.10249700000003"/> + <line stroke="#888888" x1="543.0615498886369" x2="543.0615498886369" y1="147.10249700000003" y2="139.10249700000003"/> + <line stroke="#888888" x1="543.0615498886369" x2="546.5615498886368" y1="139.10249700000003" y2="139.10249700000003"/> + <line stroke="#888888" x1="488.81154988863693" x2="488.81154988863693" y1="206.60249700000003" y2="188.60249700000003"/> + <line stroke="#888888" x1="488.81154988863693" x2="523.8115498886369" y1="188.60249700000003" y2="188.60249700000003"/> + <line stroke="#888888" x1="523.8115498886369" x2="523.8115498886369" y1="188.60249700000003" y2="206.60249700000003"/> + <line stroke="#888888" x1="523.8115498886369" x2="488.81154988863693" y1="206.60249700000003" y2="206.60249700000003"/> + <line stroke="#888888" x1="541.8115498886369" x2="541.8115498886369" y1="168.35249700000003" y2="165.35249700000003"/> + <line stroke="#888888" x1="541.8115498886369" x2="544.8115498886368" y1="165.35249700000003" y2="165.35249700000003"/> + <line stroke="#888888" x1="544.8115498886368" x2="544.8115498886368" y1="165.35249700000003" y2="168.35249700000003"/> + <line stroke="#888888" x1="544.8115498886368" x2="541.8115498886369" y1="168.35249700000003" y2="168.35249700000003"/> + <line stroke="#888888" x1="562.8115498886368" x2="562.8115498886368" y1="167.352497" y2="166.35249700000003"/> + <line stroke="#888888" x1="562.8115498886368" x2="563.8115498886368" y1="166.35249700000003" y2="166.35249700000003"/> + <line stroke="#888888" x1="563.8115498886368" x2="563.8115498886368" y1="166.35249700000003" y2="167.352497"/> + <line stroke="#888888" x1="563.8115498886368" x2="562.8115498886368" y1="167.352497" y2="167.352497"/> + <line stroke="#888888" x1="542.8115498886368" x2="542.8115498886368" y1="169.85249700000003" y2="168.85249700000003"/> + <line stroke="#888888" x1="542.8115498886368" x2="543.8115498886368" y1="168.85249700000003" y2="168.85249700000003"/> + <line stroke="#888888" x1="543.8115498886368" x2="543.8115498886368" y1="168.85249700000003" y2="169.85249700000003"/> + <line stroke="#888888" x1="543.8115498886368" x2="542.8115498886368" y1="169.85249700000003" y2="169.85249700000003"/> + <line stroke="#888888" x1="562.8115498886368" x2="562.8115498886368" y1="169.85249700000003" y2="168.85249700000003"/> + <line stroke="#888888" x1="562.8115498886368" x2="563.8115498886368" y1="168.85249700000003" y2="168.85249700000003"/> + <line stroke="#888888" x1="563.8115498886368" x2="563.8115498886368" y1="168.85249700000003" y2="169.85249700000003"/> + <line stroke="#888888" x1="563.8115498886368" x2="562.8115498886368" y1="169.85249700000003" y2="169.85249700000003"/> + <line stroke="#888888" x1="542.8115498886368" x2="542.8115498886368" y1="172.35249700000003" y2="171.352497"/> + <line stroke="#888888" x1="542.8115498886368" x2="543.8115498886368" y1="171.352497" y2="171.352497"/> + <line stroke="#888888" x1="543.8115498886368" x2="543.8115498886368" y1="171.352497" y2="172.35249700000003"/> + <line stroke="#888888" x1="543.8115498886368" x2="542.8115498886368" y1="172.35249700000003" y2="172.35249700000003"/> + <line stroke="#888888" x1="562.8115498886368" x2="562.8115498886368" y1="172.35249700000003" y2="171.352497"/> + <line stroke="#888888" x1="562.8115498886368" x2="563.8115498886368" y1="171.352497" y2="171.352497"/> + <line stroke="#888888" x1="563.8115498886368" x2="563.8115498886368" y1="171.352497" y2="172.35249700000003"/> + <line stroke="#888888" x1="563.8115498886368" x2="562.8115498886368" y1="172.35249700000003" y2="172.35249700000003"/> + <line stroke="#888888" x1="542.8115498886368" x2="542.8115498886368" y1="174.85249700000003" y2="173.852497"/> + <line stroke="#888888" x1="542.8115498886368" x2="543.8115498886368" y1="173.852497" y2="173.852497"/> + <line stroke="#888888" x1="543.8115498886368" x2="543.8115498886368" y1="173.852497" y2="174.85249700000003"/> + <line stroke="#888888" x1="543.8115498886368" x2="542.8115498886368" y1="174.85249700000003" y2="174.85249700000003"/> + <line stroke="#888888" x1="562.8115498886368" x2="562.8115498886368" y1="174.85249700000003" y2="173.852497"/> + <line stroke="#888888" x1="562.8115498886368" x2="563.8115498886368" y1="173.852497" y2="173.852497"/> + <line stroke="#888888" x1="563.8115498886368" x2="563.8115498886368" y1="173.852497" y2="174.85249700000003"/> + <line stroke="#888888" x1="563.8115498886368" x2="562.8115498886368" y1="174.85249700000003" y2="174.85249700000003"/> + <line stroke="#888888" x1="542.8115498886368" x2="542.8115498886368" y1="177.35249700000003" y2="176.352497"/> + <line stroke="#888888" x1="542.8115498886368" x2="543.8115498886368" y1="176.352497" y2="176.352497"/> + <line stroke="#888888" x1="543.8115498886368" x2="543.8115498886368" y1="176.352497" y2="177.35249700000003"/> + <line stroke="#888888" x1="543.8115498886368" x2="542.8115498886368" y1="177.35249700000003" y2="177.35249700000003"/> + <line stroke="#888888" x1="562.8115498886368" x2="562.8115498886368" y1="177.35249700000003" y2="176.352497"/> + <line stroke="#888888" x1="562.8115498886368" x2="563.8115498886368" y1="176.352497" y2="176.352497"/> + <line stroke="#888888" x1="563.8115498886368" x2="563.8115498886368" y1="176.352497" y2="177.35249700000003"/> + <line stroke="#888888" x1="563.8115498886368" x2="562.8115498886368" y1="177.35249700000003" y2="177.35249700000003"/> + <line stroke="#888888" x1="542.8115498886368" x2="542.8115498886368" y1="179.85249700000003" y2="178.85249700000003"/> + <line stroke="#888888" x1="542.8115498886368" x2="543.8115498886368" y1="178.85249700000003" y2="178.85249700000003"/> + <line stroke="#888888" x1="543.8115498886368" x2="543.8115498886368" y1="178.85249700000003" y2="179.85249700000003"/> + <line stroke="#888888" x1="543.8115498886368" x2="542.8115498886368" y1="179.85249700000003" y2="179.85249700000003"/> + <line stroke="#888888" x1="562.8115498886368" x2="562.8115498886368" y1="179.85249700000003" y2="178.85249700000003"/> + <line stroke="#888888" x1="562.8115498886368" x2="563.8115498886368" y1="178.85249700000003" y2="178.85249700000003"/> + <line stroke="#888888" x1="563.8115498886368" x2="563.8115498886368" y1="178.85249700000003" y2="179.85249700000003"/> + <line stroke="#888888" x1="563.8115498886368" x2="562.8115498886368" y1="179.85249700000003" y2="179.85249700000003"/> + <line stroke="#888888" x1="542.8115498886368" x2="542.8115498886368" y1="182.35249700000003" y2="181.35249700000003"/> + <line stroke="#888888" x1="542.8115498886368" x2="543.8115498886368" y1="181.35249700000003" y2="181.35249700000003"/> + <line stroke="#888888" x1="543.8115498886368" x2="543.8115498886368" y1="181.35249700000003" y2="182.35249700000003"/> + <line stroke="#888888" x1="543.8115498886368" x2="542.8115498886368" y1="182.35249700000003" y2="182.35249700000003"/> + <line stroke="#888888" x1="562.8115498886368" x2="562.8115498886368" y1="182.35249700000003" y2="181.35249700000003"/> + <line stroke="#888888" x1="562.8115498886368" x2="563.8115498886368" y1="181.35249700000003" y2="181.35249700000003"/> + <line stroke="#888888" x1="563.8115498886368" x2="563.8115498886368" y1="181.35249700000003" y2="182.35249700000003"/> + <line stroke="#888888" x1="563.8115498886368" x2="562.8115498886368" y1="182.35249700000003" y2="182.35249700000003"/> + <line stroke="#888888" x1="542.8115498886368" x2="542.8115498886368" y1="184.85249700000003" y2="183.85249700000003"/> + <line stroke="#888888" x1="542.8115498886368" x2="543.8115498886368" y1="183.85249700000003" y2="183.85249700000003"/> + <line stroke="#888888" x1="543.8115498886368" x2="543.8115498886368" y1="183.85249700000003" y2="184.85249700000003"/> + <line stroke="#888888" x1="543.8115498886368" x2="542.8115498886368" y1="184.85249700000003" y2="184.85249700000003"/> + <line stroke="#888888" x1="562.8115498886368" x2="562.8115498886368" y1="184.85249700000003" y2="183.85249700000003"/> + <line stroke="#888888" x1="562.8115498886368" x2="563.8115498886368" y1="183.85249700000003" y2="183.85249700000003"/> + <line stroke="#888888" x1="563.8115498886368" x2="563.8115498886368" y1="183.85249700000003" y2="184.85249700000003"/> + <line stroke="#888888" x1="563.8115498886368" x2="562.8115498886368" y1="184.85249700000003" y2="184.85249700000003"/> + <line stroke="#888888" x1="542.8115498886368" x2="542.8115498886368" y1="187.352497" y2="186.35249700000003"/> + <line stroke="#888888" x1="542.8115498886368" x2="543.8115498886368" y1="186.35249700000003" y2="186.35249700000003"/> + <line stroke="#888888" x1="543.8115498886368" x2="543.8115498886368" y1="186.35249700000003" y2="187.352497"/> + <line stroke="#888888" x1="543.8115498886368" x2="542.8115498886368" y1="187.352497" y2="187.352497"/> + <line stroke="#888888" x1="562.8115498886368" x2="562.8115498886368" y1="187.352497" y2="186.35249700000003"/> + <line stroke="#888888" x1="562.8115498886368" x2="563.8115498886368" y1="186.35249700000003" y2="186.35249700000003"/> + <line stroke="#888888" x1="563.8115498886368" x2="563.8115498886368" y1="186.35249700000003" y2="187.352497"/> + <line stroke="#888888" x1="563.8115498886368" x2="562.8115498886368" y1="187.352497" y2="187.352497"/> + <line stroke="#888888" x1="542.8115498886368" x2="542.8115498886368" y1="189.852497" y2="188.85249700000003"/> + <line stroke="#888888" x1="542.8115498886368" x2="543.8115498886368" y1="188.85249700000003" y2="188.85249700000003"/> + <line stroke="#888888" x1="543.8115498886368" x2="543.8115498886368" y1="188.85249700000003" y2="189.852497"/> + <line stroke="#888888" x1="543.8115498886368" x2="542.8115498886368" y1="189.852497" y2="189.852497"/> + <line stroke="#888888" x1="562.8115498886368" x2="562.8115498886368" y1="189.852497" y2="188.85249700000003"/> + <line stroke="#888888" x1="562.8115498886368" x2="563.8115498886368" y1="188.85249700000003" y2="188.85249700000003"/> + <line stroke="#888888" x1="563.8115498886368" x2="563.8115498886368" y1="188.85249700000003" y2="189.852497"/> + <line stroke="#888888" x1="563.8115498886368" x2="562.8115498886368" y1="189.852497" y2="189.852497"/> + <line stroke="#888888" x1="542.8115498886368" x2="542.8115498886368" y1="192.352497" y2="191.35249700000003"/> + <line stroke="#888888" x1="542.8115498886368" x2="543.8115498886368" y1="191.35249700000003" y2="191.35249700000003"/> + <line stroke="#888888" x1="543.8115498886368" x2="543.8115498886368" y1="191.35249700000003" y2="192.352497"/> + <line stroke="#888888" x1="543.8115498886368" x2="542.8115498886368" y1="192.352497" y2="192.352497"/> + <line stroke="#888888" x1="562.8115498886368" x2="562.8115498886368" y1="192.352497" y2="191.35249700000003"/> + <line stroke="#888888" x1="562.8115498886368" x2="563.8115498886368" y1="191.35249700000003" y2="191.35249700000003"/> + <line stroke="#888888" x1="563.8115498886368" x2="563.8115498886368" y1="191.35249700000003" y2="192.352497"/> + <line stroke="#888888" x1="563.8115498886368" x2="562.8115498886368" y1="192.352497" y2="192.352497"/> + <line stroke="#888888" x1="542.8115498886368" x2="542.8115498886368" y1="194.85249700000003" y2="193.85249700000003"/> + <line stroke="#888888" x1="542.8115498886368" x2="543.8115498886368" y1="193.85249700000003" y2="193.85249700000003"/> + <line stroke="#888888" x1="543.8115498886368" x2="543.8115498886368" y1="193.85249700000003" y2="194.85249700000003"/> + <line stroke="#888888" x1="543.8115498886368" x2="542.8115498886368" y1="194.85249700000003" y2="194.85249700000003"/> + <line stroke="#888888" x1="562.8115498886368" x2="562.8115498886368" y1="194.85249700000003" y2="193.85249700000003"/> + <line stroke="#888888" x1="562.8115498886368" x2="563.8115498886368" y1="193.85249700000003" y2="193.85249700000003"/> + <line stroke="#888888" x1="563.8115498886368" x2="563.8115498886368" y1="193.85249700000003" y2="194.85249700000003"/> + <line stroke="#888888" x1="563.8115498886368" x2="562.8115498886368" y1="194.85249700000003" y2="194.85249700000003"/> + <line stroke="#888888" x1="542.8115498886368" x2="542.8115498886368" y1="197.35249700000003" y2="196.35249700000003"/> + <line stroke="#888888" x1="542.8115498886368" x2="543.8115498886368" y1="196.35249700000003" y2="196.35249700000003"/> + <line stroke="#888888" x1="543.8115498886368" x2="543.8115498886368" y1="196.35249700000003" y2="197.35249700000003"/> + <line stroke="#888888" x1="543.8115498886368" x2="542.8115498886368" y1="197.35249700000003" y2="197.35249700000003"/> + <line stroke="#888888" x1="562.8115498886368" x2="562.8115498886368" y1="197.35249700000003" y2="196.35249700000003"/> + <line stroke="#888888" x1="562.8115498886368" x2="563.8115498886368" y1="196.35249700000003" y2="196.35249700000003"/> + <line stroke="#888888" x1="563.8115498886368" x2="563.8115498886368" y1="196.35249700000003" y2="197.35249700000003"/> + <line stroke="#888888" x1="563.8115498886368" x2="562.8115498886368" y1="197.35249700000003" y2="197.35249700000003"/> + <line stroke="#888888" x1="542.8115498886368" x2="542.8115498886368" y1="199.85249700000003" y2="198.852497"/> + <line stroke="#888888" x1="542.8115498886368" x2="543.8115498886368" y1="198.852497" y2="198.852497"/> + <line stroke="#888888" x1="543.8115498886368" x2="543.8115498886368" y1="198.852497" y2="199.85249700000003"/> + <line stroke="#888888" x1="543.8115498886368" x2="542.8115498886368" y1="199.85249700000003" y2="199.85249700000003"/> + <line stroke="#888888" x1="562.8115498886368" x2="562.8115498886368" y1="199.85249700000003" y2="198.852497"/> + <line stroke="#888888" x1="562.8115498886368" x2="563.8115498886368" y1="198.852497" y2="198.852497"/> + <line stroke="#888888" x1="563.8115498886368" x2="563.8115498886368" y1="198.852497" y2="199.85249700000003"/> + <line stroke="#888888" x1="563.8115498886368" x2="562.8115498886368" y1="199.85249700000003" y2="199.85249700000003"/> + <line stroke="#888888" x1="542.8115498886368" x2="542.8115498886368" y1="202.35249700000003" y2="201.352497"/> + <line stroke="#888888" x1="542.8115498886368" x2="543.8115498886368" y1="201.352497" y2="201.352497"/> + <line stroke="#888888" x1="543.8115498886368" x2="543.8115498886368" y1="201.352497" y2="202.35249700000003"/> + <line stroke="#888888" x1="543.8115498886368" x2="542.8115498886368" y1="202.35249700000003" y2="202.35249700000003"/> + <line stroke="#888888" x1="562.8115498886368" x2="562.8115498886368" y1="202.35249700000003" y2="201.352497"/> + <line stroke="#888888" x1="562.8115498886368" x2="563.8115498886368" y1="201.352497" y2="201.352497"/> + <line stroke="#888888" x1="563.8115498886368" x2="563.8115498886368" y1="201.352497" y2="202.35249700000003"/> + <line stroke="#888888" x1="563.8115498886368" x2="562.8115498886368" y1="202.35249700000003" y2="202.35249700000003"/> + <line stroke="#888888" x1="542.8115498886368" x2="542.8115498886368" y1="204.85249700000003" y2="203.85249700000003"/> + <line stroke="#888888" x1="542.8115498886368" x2="543.8115498886368" y1="203.85249700000003" y2="203.85249700000003"/> + <line stroke="#888888" x1="543.8115498886368" x2="543.8115498886368" y1="203.85249700000003" y2="204.85249700000003"/> + <line stroke="#888888" x1="543.8115498886368" x2="542.8115498886368" y1="204.85249700000003" y2="204.85249700000003"/> + <line stroke="#888888" x1="561.8115498886368" x2="561.8115498886368" y1="205.852497" y2="202.85249700000003"/> + <line stroke="#888888" x1="561.8115498886368" x2="564.8115498886369" y1="202.85249700000003" y2="202.85249700000003"/> + <line stroke="#888888" x1="564.8115498886369" x2="564.8115498886369" y1="202.85249700000003" y2="205.852497"/> + <line stroke="#888888" x1="564.8115498886369" x2="561.8115498886368" y1="205.852497" y2="205.852497"/> + <line stroke="#888888" x1="557.5615498886368" x2="549.0615498886368" y1="162.852497" y2="162.852497"/> + <line stroke="#888888" x1="549.0615498886368" x2="549.0615498886368" y1="162.852497" y2="162.352497"/> + <line stroke="#888888" x1="549.0615498886368" x2="557.5615498886368" y1="162.352497" y2="162.352497"/> + <line stroke="#888888" x1="557.5615498886368" x2="557.5615498886368" y1="162.352497" y2="162.852497"/> + <line stroke="#888888" x1="549.0615498886368" x2="557.5615498886368" y1="210.60249700000003" y2="210.60249700000003"/> + <line stroke="#888888" x1="557.5615498886368" x2="557.5615498886368" y1="210.60249700000003" y2="211.10249700000003"/> + <line stroke="#888888" x1="557.5615498886368" x2="549.0615498886368" y1="211.10249700000003" y2="211.10249700000003"/> + <line stroke="#888888" x1="549.0615498886368" x2="549.0615498886368" y1="211.10249700000003" y2="210.60249700000003"/> + <line stroke="#888888" x1="580.3115498886368" x2="580.3115498886368" y1="206.10249700000003" y2="193.10249700000003"/> + <line stroke="#888888" x1="580.3115498886368" x2="610.3115498886369" y1="193.10249700000003" y2="193.10249700000003"/> + <line stroke="#888888" x1="610.3115498886369" x2="610.3115498886369" y1="193.10249700000003" y2="206.10249700000003"/> + <line stroke="#888888" x1="610.3115498886369" x2="580.3115498886368" y1="206.10249700000003" y2="206.10249700000003"/> + <line stroke="#888888" x1="587.3797317068187" x2="575.9706407977279" y1="160.602497" y2="160.602497"/> + <line stroke="#888888" x1="575.9706407977279" x2="575.9706407977279" y1="160.602497" y2="160.102497"/> + <line stroke="#888888" x1="575.9706407977279" x2="587.3797317068187" y1="160.102497" y2="160.102497"/> + <line stroke="#888888" x1="587.3797317068187" x2="587.3797317068187" y1="160.102497" y2="160.602497"/> + <line stroke="#888888" x1="614.6524589795459" x2="603.2433680704552" y1="160.602497" y2="160.602497"/> + <line stroke="#888888" x1="603.2433680704552" x2="603.2433680704552" y1="160.602497" y2="160.102497"/> + <line stroke="#888888" x1="603.2433680704552" x2="614.6524589795459" y1="160.102497" y2="160.102497"/> + <line stroke="#888888" x1="614.6524589795459" x2="614.6524589795459" y1="160.102497" y2="160.602497"/> + <line stroke="#888888" x1="617.5615498886369" x2="617.5615498886369" y1="177.53431518181822" y2="165.9434060909091"/> + <line stroke="#888888" x1="617.5615498886369" x2="618.0615498886369" y1="165.9434060909091" y2="165.9434060909091"/> + <line stroke="#888888" x1="618.0615498886369" x2="618.0615498886369" y1="165.9434060909091" y2="177.53431518181822"/> + <line stroke="#888888" x1="618.0615498886369" x2="617.5615498886369" y1="177.53431518181822" y2="177.53431518181822"/> + <line stroke="#888888" x1="617.5615498886369" x2="617.5615498886369" y1="205.26158790909093" y2="193.67067881818187"/> + <line stroke="#888888" x1="617.5615498886369" x2="618.0615498886369" y1="193.67067881818187" y2="193.67067881818187"/> + <line stroke="#888888" x1="618.0615498886369" x2="618.0615498886369" y1="193.67067881818187" y2="205.26158790909093"/> + <line stroke="#888888" x1="618.0615498886369" x2="617.5615498886369" y1="205.26158790909093" y2="205.26158790909093"/> + <line stroke="#888888" x1="457.81154988863693" x2="457.81154988863693" y1="168.35249700000003" y2="165.35249700000003"/> + <line stroke="#888888" x1="457.81154988863693" x2="460.81154988863693" y1="165.35249700000003" y2="165.35249700000003"/> + <line stroke="#888888" x1="460.81154988863693" x2="460.81154988863693" y1="165.35249700000003" y2="168.35249700000003"/> + <line stroke="#888888" x1="460.81154988863693" x2="457.81154988863693" y1="168.35249700000003" y2="168.35249700000003"/> + <line stroke="#888888" x1="478.81154988863693" x2="478.81154988863693" y1="167.352497" y2="166.35249700000003"/> + <line stroke="#888888" x1="478.81154988863693" x2="479.81154988863693" y1="166.35249700000003" y2="166.35249700000003"/> + <line stroke="#888888" x1="479.81154988863693" x2="479.81154988863693" y1="166.35249700000003" y2="167.352497"/> + <line stroke="#888888" x1="479.81154988863693" x2="478.81154988863693" y1="167.352497" y2="167.352497"/> + <line stroke="#888888" x1="458.81154988863693" x2="458.81154988863693" y1="169.85249700000003" y2="168.85249700000003"/> + <line stroke="#888888" x1="458.81154988863693" x2="459.81154988863693" y1="168.85249700000003" y2="168.85249700000003"/> + <line stroke="#888888" x1="459.81154988863693" x2="459.81154988863693" y1="168.85249700000003" y2="169.85249700000003"/> + <line stroke="#888888" x1="459.81154988863693" x2="458.81154988863693" y1="169.85249700000003" y2="169.85249700000003"/> + <line stroke="#888888" x1="478.81154988863693" x2="478.81154988863693" y1="169.85249700000003" y2="168.85249700000003"/> + <line stroke="#888888" x1="478.81154988863693" x2="479.81154988863693" y1="168.85249700000003" y2="168.85249700000003"/> + <line stroke="#888888" x1="479.81154988863693" x2="479.81154988863693" y1="168.85249700000003" y2="169.85249700000003"/> + <line stroke="#888888" x1="479.81154988863693" x2="478.81154988863693" y1="169.85249700000003" y2="169.85249700000003"/> + <line stroke="#888888" x1="458.81154988863693" x2="458.81154988863693" y1="172.35249700000003" y2="171.352497"/> + <line stroke="#888888" x1="458.81154988863693" x2="459.81154988863693" y1="171.352497" y2="171.352497"/> + <line stroke="#888888" x1="459.81154988863693" x2="459.81154988863693" y1="171.352497" y2="172.35249700000003"/> + <line stroke="#888888" x1="459.81154988863693" x2="458.81154988863693" y1="172.35249700000003" y2="172.35249700000003"/> + <line stroke="#888888" x1="478.81154988863693" x2="478.81154988863693" y1="172.35249700000003" y2="171.352497"/> + <line stroke="#888888" x1="478.81154988863693" x2="479.81154988863693" y1="171.352497" y2="171.352497"/> + <line stroke="#888888" x1="479.81154988863693" x2="479.81154988863693" y1="171.352497" y2="172.35249700000003"/> + <line stroke="#888888" x1="479.81154988863693" x2="478.81154988863693" y1="172.35249700000003" y2="172.35249700000003"/> + <line stroke="#888888" x1="458.81154988863693" x2="458.81154988863693" y1="174.85249700000003" y2="173.852497"/> + <line stroke="#888888" x1="458.81154988863693" x2="459.81154988863693" y1="173.852497" y2="173.852497"/> + <line stroke="#888888" x1="459.81154988863693" x2="459.81154988863693" y1="173.852497" y2="174.85249700000003"/> + <line stroke="#888888" x1="459.81154988863693" x2="458.81154988863693" y1="174.85249700000003" y2="174.85249700000003"/> + <line stroke="#888888" x1="478.81154988863693" x2="478.81154988863693" y1="174.85249700000003" y2="173.852497"/> + <line stroke="#888888" x1="478.81154988863693" x2="479.81154988863693" y1="173.852497" y2="173.852497"/> + <line stroke="#888888" x1="479.81154988863693" x2="479.81154988863693" y1="173.852497" y2="174.85249700000003"/> + <line stroke="#888888" x1="479.81154988863693" x2="478.81154988863693" y1="174.85249700000003" y2="174.85249700000003"/> + <line stroke="#888888" x1="458.81154988863693" x2="458.81154988863693" y1="177.35249700000003" y2="176.352497"/> + <line stroke="#888888" x1="458.81154988863693" x2="459.81154988863693" y1="176.352497" y2="176.352497"/> + <line stroke="#888888" x1="459.81154988863693" x2="459.81154988863693" y1="176.352497" y2="177.35249700000003"/> + <line stroke="#888888" x1="459.81154988863693" x2="458.81154988863693" y1="177.35249700000003" y2="177.35249700000003"/> + <line stroke="#888888" x1="478.81154988863693" x2="478.81154988863693" y1="177.35249700000003" y2="176.352497"/> + <line stroke="#888888" x1="478.81154988863693" x2="479.81154988863693" y1="176.352497" y2="176.352497"/> + <line stroke="#888888" x1="479.81154988863693" x2="479.81154988863693" y1="176.352497" y2="177.35249700000003"/> + <line stroke="#888888" x1="479.81154988863693" x2="478.81154988863693" y1="177.35249700000003" y2="177.35249700000003"/> + <line stroke="#888888" x1="458.81154988863693" x2="458.81154988863693" y1="179.85249700000003" y2="178.85249700000003"/> + <line stroke="#888888" x1="458.81154988863693" x2="459.81154988863693" y1="178.85249700000003" y2="178.85249700000003"/> + <line stroke="#888888" x1="459.81154988863693" x2="459.81154988863693" y1="178.85249700000003" y2="179.85249700000003"/> + <line stroke="#888888" x1="459.81154988863693" x2="458.81154988863693" y1="179.85249700000003" y2="179.85249700000003"/> + <line stroke="#888888" x1="478.81154988863693" x2="478.81154988863693" y1="179.85249700000003" y2="178.85249700000003"/> + <line stroke="#888888" x1="478.81154988863693" x2="479.81154988863693" y1="178.85249700000003" y2="178.85249700000003"/> + <line stroke="#888888" x1="479.81154988863693" x2="479.81154988863693" y1="178.85249700000003" y2="179.85249700000003"/> + <line stroke="#888888" x1="479.81154988863693" x2="478.81154988863693" y1="179.85249700000003" y2="179.85249700000003"/> + <line stroke="#888888" x1="458.81154988863693" x2="458.81154988863693" y1="182.35249700000003" y2="181.35249700000003"/> + <line stroke="#888888" x1="458.81154988863693" x2="459.81154988863693" y1="181.35249700000003" y2="181.35249700000003"/> + <line stroke="#888888" x1="459.81154988863693" x2="459.81154988863693" y1="181.35249700000003" y2="182.35249700000003"/> + <line stroke="#888888" x1="459.81154988863693" x2="458.81154988863693" y1="182.35249700000003" y2="182.35249700000003"/> + <line stroke="#888888" x1="478.81154988863693" x2="478.81154988863693" y1="182.35249700000003" y2="181.35249700000003"/> + <line stroke="#888888" x1="478.81154988863693" x2="479.81154988863693" y1="181.35249700000003" y2="181.35249700000003"/> + <line stroke="#888888" x1="479.81154988863693" x2="479.81154988863693" y1="181.35249700000003" y2="182.35249700000003"/> + <line stroke="#888888" x1="479.81154988863693" x2="478.81154988863693" y1="182.35249700000003" y2="182.35249700000003"/> + <line stroke="#888888" x1="458.81154988863693" x2="458.81154988863693" y1="184.85249700000003" y2="183.85249700000003"/> + <line stroke="#888888" x1="458.81154988863693" x2="459.81154988863693" y1="183.85249700000003" y2="183.85249700000003"/> + <line stroke="#888888" x1="459.81154988863693" x2="459.81154988863693" y1="183.85249700000003" y2="184.85249700000003"/> + <line stroke="#888888" x1="459.81154988863693" x2="458.81154988863693" y1="184.85249700000003" y2="184.85249700000003"/> + <line stroke="#888888" x1="478.81154988863693" x2="478.81154988863693" y1="184.85249700000003" y2="183.85249700000003"/> + <line stroke="#888888" x1="478.81154988863693" x2="479.81154988863693" y1="183.85249700000003" y2="183.85249700000003"/> + <line stroke="#888888" x1="479.81154988863693" x2="479.81154988863693" y1="183.85249700000003" y2="184.85249700000003"/> + <line stroke="#888888" x1="479.81154988863693" x2="478.81154988863693" y1="184.85249700000003" y2="184.85249700000003"/> + <line stroke="#888888" x1="458.81154988863693" x2="458.81154988863693" y1="187.352497" y2="186.35249700000003"/> + <line stroke="#888888" x1="458.81154988863693" x2="459.81154988863693" y1="186.35249700000003" y2="186.35249700000003"/> + <line stroke="#888888" x1="459.81154988863693" x2="459.81154988863693" y1="186.35249700000003" y2="187.352497"/> + <line stroke="#888888" x1="459.81154988863693" x2="458.81154988863693" y1="187.352497" y2="187.352497"/> + <line stroke="#888888" x1="478.81154988863693" x2="478.81154988863693" y1="187.352497" y2="186.35249700000003"/> + <line stroke="#888888" x1="478.81154988863693" x2="479.81154988863693" y1="186.35249700000003" y2="186.35249700000003"/> + <line stroke="#888888" x1="479.81154988863693" x2="479.81154988863693" y1="186.35249700000003" y2="187.352497"/> + <line stroke="#888888" x1="479.81154988863693" x2="478.81154988863693" y1="187.352497" y2="187.352497"/> + <line stroke="#888888" x1="458.81154988863693" x2="458.81154988863693" y1="189.852497" y2="188.85249700000003"/> + <line stroke="#888888" x1="458.81154988863693" x2="459.81154988863693" y1="188.85249700000003" y2="188.85249700000003"/> + <line stroke="#888888" x1="459.81154988863693" x2="459.81154988863693" y1="188.85249700000003" y2="189.852497"/> + <line stroke="#888888" x1="459.81154988863693" x2="458.81154988863693" y1="189.852497" y2="189.852497"/> + <line stroke="#888888" x1="478.81154988863693" x2="478.81154988863693" y1="189.852497" y2="188.85249700000003"/> + <line stroke="#888888" x1="478.81154988863693" x2="479.81154988863693" y1="188.85249700000003" y2="188.85249700000003"/> + <line stroke="#888888" x1="479.81154988863693" x2="479.81154988863693" y1="188.85249700000003" y2="189.852497"/> + <line stroke="#888888" x1="479.81154988863693" x2="478.81154988863693" y1="189.852497" y2="189.852497"/> + <line stroke="#888888" x1="458.81154988863693" x2="458.81154988863693" y1="192.352497" y2="191.35249700000003"/> + <line stroke="#888888" x1="458.81154988863693" x2="459.81154988863693" y1="191.35249700000003" y2="191.35249700000003"/> + <line stroke="#888888" x1="459.81154988863693" x2="459.81154988863693" y1="191.35249700000003" y2="192.352497"/> + <line stroke="#888888" x1="459.81154988863693" x2="458.81154988863693" y1="192.352497" y2="192.352497"/> + <line stroke="#888888" x1="478.81154988863693" x2="478.81154988863693" y1="192.352497" y2="191.35249700000003"/> + <line stroke="#888888" x1="478.81154988863693" x2="479.81154988863693" y1="191.35249700000003" y2="191.35249700000003"/> + <line stroke="#888888" x1="479.81154988863693" x2="479.81154988863693" y1="191.35249700000003" y2="192.352497"/> + <line stroke="#888888" x1="479.81154988863693" x2="478.81154988863693" y1="192.352497" y2="192.352497"/> + <line stroke="#888888" x1="458.81154988863693" x2="458.81154988863693" y1="194.85249700000003" y2="193.85249700000003"/> + <line stroke="#888888" x1="458.81154988863693" x2="459.81154988863693" y1="193.85249700000003" y2="193.85249700000003"/> + <line stroke="#888888" x1="459.81154988863693" x2="459.81154988863693" y1="193.85249700000003" y2="194.85249700000003"/> + <line stroke="#888888" x1="459.81154988863693" x2="458.81154988863693" y1="194.85249700000003" y2="194.85249700000003"/> + <line stroke="#888888" x1="478.81154988863693" x2="478.81154988863693" y1="194.85249700000003" y2="193.85249700000003"/> + <line stroke="#888888" x1="478.81154988863693" x2="479.81154988863693" y1="193.85249700000003" y2="193.85249700000003"/> + <line stroke="#888888" x1="479.81154988863693" x2="479.81154988863693" y1="193.85249700000003" y2="194.85249700000003"/> + <line stroke="#888888" x1="479.81154988863693" x2="478.81154988863693" y1="194.85249700000003" y2="194.85249700000003"/> + <line stroke="#888888" x1="458.81154988863693" x2="458.81154988863693" y1="197.35249700000003" y2="196.35249700000003"/> + <line stroke="#888888" x1="458.81154988863693" x2="459.81154988863693" y1="196.35249700000003" y2="196.35249700000003"/> + <line stroke="#888888" x1="459.81154988863693" x2="459.81154988863693" y1="196.35249700000003" y2="197.35249700000003"/> + <line stroke="#888888" x1="459.81154988863693" x2="458.81154988863693" y1="197.35249700000003" y2="197.35249700000003"/> + <line stroke="#888888" x1="478.81154988863693" x2="478.81154988863693" y1="197.35249700000003" y2="196.35249700000003"/> + <line stroke="#888888" x1="478.81154988863693" x2="479.81154988863693" y1="196.35249700000003" y2="196.35249700000003"/> + <line stroke="#888888" x1="479.81154988863693" x2="479.81154988863693" y1="196.35249700000003" y2="197.35249700000003"/> + <line stroke="#888888" x1="479.81154988863693" x2="478.81154988863693" y1="197.35249700000003" y2="197.35249700000003"/> + <line stroke="#888888" x1="458.81154988863693" x2="458.81154988863693" y1="199.85249700000003" y2="198.852497"/> + <line stroke="#888888" x1="458.81154988863693" x2="459.81154988863693" y1="198.852497" y2="198.852497"/> + <line stroke="#888888" x1="459.81154988863693" x2="459.81154988863693" y1="198.852497" y2="199.85249700000003"/> + <line stroke="#888888" x1="459.81154988863693" x2="458.81154988863693" y1="199.85249700000003" y2="199.85249700000003"/> + <line stroke="#888888" x1="478.81154988863693" x2="478.81154988863693" y1="199.85249700000003" y2="198.852497"/> + <line stroke="#888888" x1="478.81154988863693" x2="479.81154988863693" y1="198.852497" y2="198.852497"/> + <line stroke="#888888" x1="479.81154988863693" x2="479.81154988863693" y1="198.852497" y2="199.85249700000003"/> + <line stroke="#888888" x1="479.81154988863693" x2="478.81154988863693" y1="199.85249700000003" y2="199.85249700000003"/> + <line stroke="#888888" x1="458.81154988863693" x2="458.81154988863693" y1="202.35249700000003" y2="201.352497"/> + <line stroke="#888888" x1="458.81154988863693" x2="459.81154988863693" y1="201.352497" y2="201.352497"/> + <line stroke="#888888" x1="459.81154988863693" x2="459.81154988863693" y1="201.352497" y2="202.35249700000003"/> + <line stroke="#888888" x1="459.81154988863693" x2="458.81154988863693" y1="202.35249700000003" y2="202.35249700000003"/> + <line stroke="#888888" x1="478.81154988863693" x2="478.81154988863693" y1="202.35249700000003" y2="201.352497"/> + <line stroke="#888888" x1="478.81154988863693" x2="479.81154988863693" y1="201.352497" y2="201.352497"/> + <line stroke="#888888" x1="479.81154988863693" x2="479.81154988863693" y1="201.352497" y2="202.35249700000003"/> + <line stroke="#888888" x1="479.81154988863693" x2="478.81154988863693" y1="202.35249700000003" y2="202.35249700000003"/> + <line stroke="#888888" x1="458.81154988863693" x2="458.81154988863693" y1="204.85249700000003" y2="203.85249700000003"/> + <line stroke="#888888" x1="458.81154988863693" x2="459.81154988863693" y1="203.85249700000003" y2="203.85249700000003"/> + <line stroke="#888888" x1="459.81154988863693" x2="459.81154988863693" y1="203.85249700000003" y2="204.85249700000003"/> + <line stroke="#888888" x1="459.81154988863693" x2="458.81154988863693" y1="204.85249700000003" y2="204.85249700000003"/> + <line stroke="#888888" x1="477.81154988863693" x2="477.81154988863693" y1="205.852497" y2="202.85249700000003"/> + <line stroke="#888888" x1="477.81154988863693" x2="480.81154988863693" y1="202.85249700000003" y2="202.85249700000003"/> + <line stroke="#888888" x1="480.81154988863693" x2="480.81154988863693" y1="202.85249700000003" y2="205.852497"/> + <line stroke="#888888" x1="480.81154988863693" x2="477.81154988863693" y1="205.852497" y2="205.852497"/> + <line stroke="#888888" x1="473.56154988863693" x2="465.06154988863693" y1="162.852497" y2="162.852497"/> + <line stroke="#888888" x1="465.06154988863693" x2="465.06154988863693" y1="162.852497" y2="162.352497"/> + <line stroke="#888888" x1="465.06154988863693" x2="473.56154988863693" y1="162.352497" y2="162.352497"/> + <line stroke="#888888" x1="473.56154988863693" x2="473.56154988863693" y1="162.352497" y2="162.852497"/> + <line stroke="#888888" x1="465.06154988863693" x2="473.56154988863693" y1="210.60249700000003" y2="210.60249700000003"/> + <line stroke="#888888" x1="473.56154988863693" x2="473.56154988863693" y1="210.60249700000003" y2="211.10249700000003"/> + <line stroke="#888888" x1="473.56154988863693" x2="465.06154988863693" y1="211.10249700000003" y2="211.10249700000003"/> + <line stroke="#888888" x1="465.06154988863693" x2="465.06154988863693" y1="211.10249700000003" y2="210.60249700000003"/> + <line stroke="#888888" x1="449.81154988863693" x2="454.81154988863693" y1="166.1934060909091" y2="166.1934060909091"/> + <line stroke="#888888" x1="454.81154988863693" x2="454.81154988863693" y1="166.1934060909091" y2="177.28431518181822"/> + <line stroke="#888888" x1="454.81154988863693" x2="449.81154988863693" y1="177.28431518181822" y2="177.28431518181822"/> + <line stroke="#888888" x1="449.81154988863693" x2="454.81154988863693" y1="193.92067881818187" y2="193.92067881818187"/> + <line stroke="#888888" x1="454.81154988863693" x2="454.81154988863693" y1="193.92067881818187" y2="205.01158790909093"/> + <line stroke="#888888" x1="454.81154988863693" x2="449.81154988863693" y1="205.01158790909093" y2="205.01158790909093"/> + <line stroke="#888888" x1="475.06154988863693" x2="478.56154988863693" y1="139.10249700000003" y2="139.10249700000003"/> + <line stroke="#888888" x1="478.56154988863693" x2="478.56154988863693" y1="139.10249700000003" y2="147.10249700000003"/> + <line stroke="#888888" x1="478.56154988863693" x2="475.06154988863693" y1="147.10249700000003" y2="147.10249700000003"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="645.3115498886368" x2="706.3115498886369" y1="125.03318600040735" y2="125.03318600040735"/> + <line stroke="#000000" x1="706.3115498886369" x2="706.3115498886369" y1="161.17180799959266" y2="125.03318600040735"/> + <line stroke="#000000" x1="645.3115498886368" x2="706.3115498886369" y1="161.17180799959266" y2="161.17180799959266"/> + <line stroke="#000000" x1="645.3115498886368" x2="645.3115498886368" y1="125.03318600040735" y2="161.17180799959266"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="706.3115498886369" x2="645.3115498886368" y1="101.03318600040734" y2="101.03318600040734"/> + <line stroke="#0000ff" stroke-dasharray="2 6" stroke-dashoffset="5" x1="706.3115498886369" x2="706.3115498886369" y1="101.03318600040734" y2="125.03318600040735"/> + <line stroke="#000000" x1="645.3115498886368" x2="645.3115498886368" y1="64.89456400122205" y2="101.03318600040734"/> + <line stroke="#000000" x1="706.3115498886369" x2="645.3115498886368" y1="64.89456400122205" y2="64.89456400122205"/> + <line stroke="#000000" x1="706.3115498886369" x2="706.3115498886369" y1="101.03318600040734" y2="64.89456400122205"/> + <line stroke="#000000" x1="716.3115498886368" x2="706.3115498886369" y1="101.03318600040734" y2="101.03318600040734"/> + <line stroke="#000000" x1="716.3115498886368" x2="716.3115498886368" y1="125.03318600040735" y2="101.03318600040734"/> + <line stroke="#000000" x1="706.3115498886369" x2="716.3115498886368" y1="125.03318600040735" y2="125.03318600040735"/> + <line stroke="#000000" x1="635.3115498886368" x2="645.3115498886368" y1="125.03318600040735" y2="125.03318600040735"/> + <line stroke="#000000" x1="635.3115498886368" x2="635.3115498886368" y1="101.03318600040734" y2="125.03318600040735"/> + <line stroke="#000000" x1="645.3115498886368" x2="635.3115498886368" y1="101.03318600040734" y2="101.03318600040734"/> + <line stroke="#888888" x1="663.3115498886368" x2="674.3115498886369" y1="106.53318600040735" y2="106.53318600040735"/> + <line stroke="#888888" x1="674.3115498886369" x2="674.3115498886369" y1="106.53318600040735" y2="119.53318600040735"/> + <line stroke="#888888" x1="674.3115498886369" x2="663.3115498886368" y1="119.53318600040735" y2="119.53318600040735"/> + <line stroke="#888888" x1="663.3115498886368" x2="663.3115498886368" y1="119.53318600040735" y2="106.53318600040735"/> + <line stroke="#888888" x1="694.8115498886369" x2="700.8115498886369" y1="108.03318600040735" y2="108.03318600040735"/> + <line stroke="#888888" x1="700.8115498886369" x2="700.8115498886369" y1="108.03318600040735" y2="118.03318600040734"/> + <line stroke="#888888" x1="700.8115498886369" x2="694.8115498886369" y1="118.03318600040734" y2="118.03318600040734"/> + <line stroke="#888888" x1="694.8115498886369" x2="694.8115498886369" y1="118.03318600040734" y2="108.03318600040735"/> + <line stroke="#888888" x1="713.8115498886369" x2="708.8115498886368" y1="117.03318600040735" y2="117.03318600040735"/> + <line stroke="#888888" x1="708.8115498886368" x2="708.8115498886368" y1="117.03318600040735" y2="109.03318600040735"/> + <line stroke="#888888" x1="708.8115498886368" x2="713.8115498886369" y1="109.03318600040735" y2="109.03318600040735"/> + <line stroke="#888888" x1="637.8115498886369" x2="642.8115498886368" y1="109.03318600040735" y2="109.03318600040735"/> + <line stroke="#888888" x1="642.8115498886368" x2="642.8115498886368" y1="109.03318600040735" y2="117.03318600040735"/> + <line stroke="#888888" x1="642.8115498886368" x2="637.8115498886369" y1="117.03318600040735" y2="117.03318600040735"/> +</svg> diff --git a/rocolib/output/BoatWithStack/graph-model.png b/rocolib/output/BoatWithStack/graph-model.png new file mode 100644 index 0000000000000000000000000000000000000000..a6e07dac3147643016115f9b57d031e66f2886bb Binary files /dev/null and b/rocolib/output/BoatWithStack/graph-model.png differ diff --git a/rocolib/output/BoatWithStack/graph-model.stl b/rocolib/output/BoatWithStack/graph-model.stl new file mode 100644 index 0000000000000000000000000000000000000000..3fd7039bc6a675f64f072ea56eb4404da7964865 --- /dev/null +++ b/rocolib/output/BoatWithStack/graph-model.stl @@ -0,0 +1,3292 @@ +solid python +facet normal 0 0 0 +outer loop +vertex -0.0350 0.0650 0.0000 +vertex -0.0350 -0.0650 0.0000 +vertex 0.0350 -0.0650 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0350 -0.0650 0.0000 +vertex 0.0350 0.0650 0.0000 +vertex -0.0350 0.0650 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0350 0.0650 -0.0600 +vertex -0.0350 -0.0650 -0.0600 +vertex -0.0350 -0.0650 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0350 -0.0650 0.0000 +vertex -0.0350 0.0650 0.0000 +vertex -0.0350 0.0650 -0.0600 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0350 0.0650 0.0000 +vertex 0.0350 -0.0650 0.0000 +vertex 0.0350 -0.0650 -0.0600 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0350 -0.0650 -0.0600 +vertex 0.0350 0.0650 -0.0600 +vertex 0.0350 0.0650 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0350 -0.0650 -0.0000 +vertex -0.0350 -0.0650 -0.0600 +vertex -0.0115 -0.0986 -0.0600 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0115 -0.0986 -0.0600 +vertex 0.0000 -0.1150 -0.0600 +vertex -0.0350 -0.0650 -0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0000 -0.0650 0.0000 +vertex -0.0350 -0.0650 0.0000 +vertex 0.0000 -0.1150 -0.0600 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0000 -0.0650 0.0000 +vertex 0.0000 -0.1150 -0.0600 +vertex 0.0350 -0.0650 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0115 -0.0986 -0.0600 +vertex 0.0350 -0.0650 -0.0600 +vertex 0.0350 -0.0650 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0350 -0.0650 0.0000 +vertex 0.0000 -0.1150 -0.0600 +vertex 0.0115 -0.0986 -0.0600 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0350 -0.0650 -0.0600 +vertex -0.0350 -0.0650 0.0000 +vertex -0.0115 -0.0986 -0.0600 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0350 -0.0650 -0.0600 +vertex -0.0115 -0.0986 -0.0600 +vertex -0.0350 -0.0650 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0350 -0.0650 -0.0600 +vertex 0.0115 -0.0986 -0.0600 +vertex 0.0350 -0.0650 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0350 -0.0650 -0.0600 +vertex 0.0350 -0.0650 0.0000 +vertex 0.0115 -0.0986 -0.0600 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0350 0.0650 0.0000 +vertex 0.0350 0.0650 -0.0600 +vertex 0.0115 0.0986 -0.0600 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0115 0.0986 -0.0600 +vertex -0.0000 0.1150 -0.0600 +vertex 0.0350 0.0650 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0000 0.0650 0.0000 +vertex 0.0350 0.0650 0.0000 +vertex -0.0000 0.1150 -0.0600 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0000 0.0650 0.0000 +vertex -0.0000 0.1150 -0.0600 +vertex -0.0350 0.0650 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0115 0.0986 -0.0600 +vertex -0.0350 0.0650 -0.0600 +vertex -0.0350 0.0650 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0350 0.0650 0.0000 +vertex -0.0000 0.1150 -0.0600 +vertex -0.0115 0.0986 -0.0600 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0350 0.0650 -0.0600 +vertex 0.0350 0.0650 0.0000 +vertex 0.0115 0.0986 -0.0600 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0350 0.0650 -0.0600 +vertex 0.0115 0.0986 -0.0600 +vertex 0.0350 0.0650 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0350 0.0650 -0.0600 +vertex -0.0115 0.0986 -0.0600 +vertex -0.0350 0.0650 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0350 0.0650 -0.0600 +vertex -0.0350 0.0650 0.0000 +vertex -0.0115 0.0986 -0.0600 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0305 0.0120 0.0000 +vertex -0.0305 -0.0120 0.0000 +vertex 0.0305 -0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0120 0.0000 +vertex 0.0305 0.0120 0.0000 +vertex -0.0305 0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0305 0.0181 0.0000 +vertex -0.0305 -0.0181 0.0000 +vertex 0.0305 -0.0181 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0181 0.0000 +vertex 0.0305 0.0181 0.0000 +vertex -0.0305 0.0181 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0350 -0.0531 +vertex 0.0305 -0.0350 -0.0170 +vertex -0.0305 -0.0350 -0.0170 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0305 -0.0350 -0.0170 +vertex -0.0305 -0.0350 -0.0531 +vertex 0.0305 -0.0350 -0.0531 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0305 -0.0350 -0.0170 +vertex -0.0015 -0.0312 -0.0131 +vertex -0.0125 -0.0312 -0.0131 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0015 -0.0312 -0.0131 +vertex -0.0305 -0.0350 -0.0170 +vertex 0.0305 -0.0350 -0.0170 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0305 -0.0350 -0.0170 +vertex -0.0125 -0.0312 -0.0131 +vertex -0.0125 -0.0220 -0.0039 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0305 -0.0181 0.0000 +vertex -0.0125 -0.0220 -0.0039 +vertex -0.0015 -0.0220 -0.0039 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0125 -0.0220 -0.0039 +vertex -0.0305 -0.0181 0.0000 +vertex -0.0305 -0.0350 -0.0170 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0305 -0.0181 0.0000 +vertex -0.0015 -0.0220 -0.0039 +vertex 0.0305 -0.0181 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0015 -0.0312 -0.0131 +vertex 0.0190 -0.0301 -0.0120 +vertex -0.0015 -0.0220 -0.0039 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0190 -0.0301 -0.0120 +vertex 0.0305 -0.0350 -0.0170 +vertex 0.0250 -0.0301 -0.0120 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0350 -0.0170 +vertex 0.0190 -0.0301 -0.0120 +vertex -0.0015 -0.0312 -0.0131 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0250 -0.0301 -0.0120 +vertex 0.0305 -0.0350 -0.0170 +vertex 0.0305 -0.0181 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0190 -0.0230 -0.0049 +vertex 0.0250 -0.0230 -0.0049 +vertex 0.0305 -0.0181 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0181 0.0000 +vertex 0.0250 -0.0230 -0.0049 +vertex 0.0250 -0.0301 -0.0120 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0190 -0.0230 -0.0049 +vertex 0.0305 -0.0181 0.0000 +vertex -0.0015 -0.0220 -0.0039 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0190 -0.0301 -0.0120 +vertex 0.0190 -0.0230 -0.0049 +vertex -0.0015 -0.0220 -0.0039 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0120 0.0000 +vertex -0.0295 -0.0115 -0.0103 +vertex -0.0295 -0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0115 -0.0132 +vertex -0.0295 -0.0105 -0.0138 +vertex -0.0295 -0.0105 -0.0148 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0115 -0.0103 +vertex -0.0295 -0.0120 0.0000 +vertex -0.0295 -0.0085 -0.0103 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0120 0.0000 +vertex -0.0295 -0.0115 -0.0132 +vertex -0.0295 -0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0148 +vertex -0.0295 -0.0105 -0.0163 +vertex -0.0295 -0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0163 +vertex -0.0295 -0.0105 -0.0148 +vertex -0.0295 -0.0095 -0.0148 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0173 +vertex -0.0295 -0.0105 -0.0187 +vertex -0.0295 -0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0187 +vertex -0.0295 -0.0105 -0.0173 +vertex -0.0295 -0.0095 -0.0173 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0163 +vertex -0.0295 -0.0105 -0.0173 +vertex -0.0295 -0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0115 -0.0132 +vertex -0.0295 -0.0105 -0.0187 +vertex -0.0295 -0.0105 -0.0198 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0198 +vertex -0.0295 -0.0105 -0.0213 +vertex -0.0295 -0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0213 +vertex -0.0295 -0.0105 -0.0198 +vertex -0.0295 -0.0095 -0.0198 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0222 +vertex -0.0295 -0.0105 -0.0238 +vertex -0.0295 -0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0238 +vertex -0.0295 -0.0105 -0.0222 +vertex -0.0295 -0.0095 -0.0222 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0213 +vertex -0.0295 -0.0105 -0.0222 +vertex -0.0295 -0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0248 +vertex -0.0295 -0.0105 -0.0262 +vertex -0.0295 -0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0262 +vertex -0.0295 -0.0105 -0.0248 +vertex -0.0295 -0.0095 -0.0248 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0272 +vertex -0.0295 -0.0105 -0.0288 +vertex -0.0295 -0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0288 +vertex -0.0295 -0.0105 -0.0272 +vertex -0.0295 -0.0095 -0.0272 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0262 +vertex -0.0295 -0.0105 -0.0272 +vertex -0.0295 -0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0238 +vertex -0.0295 -0.0105 -0.0248 +vertex -0.0295 -0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0115 -0.0132 +vertex -0.0295 -0.0105 -0.0288 +vertex -0.0295 -0.0105 -0.0298 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0163 +vertex -0.0295 -0.0105 -0.0163 +vertex -0.0295 -0.0095 -0.0148 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0148 +vertex -0.0295 -0.0095 -0.0138 +vertex -0.0295 -0.0085 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0187 +vertex -0.0295 -0.0105 -0.0187 +vertex -0.0295 -0.0095 -0.0173 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0173 +vertex -0.0295 -0.0095 -0.0163 +vertex -0.0295 -0.0085 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0148 +vertex -0.0295 -0.0085 -0.0132 +vertex -0.0295 -0.0095 -0.0163 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0173 +vertex -0.0295 0.0095 -0.0173 +vertex -0.0295 -0.0095 -0.0187 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0085 -0.0132 +vertex -0.0295 -0.0085 -0.0103 +vertex -0.0295 0.0095 -0.0112 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0213 +vertex -0.0295 -0.0105 -0.0213 +vertex -0.0295 -0.0095 -0.0198 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0187 +vertex -0.0295 -0.0095 -0.0198 +vertex -0.0295 -0.0095 -0.0187 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0198 +vertex -0.0295 0.0095 -0.0198 +vertex -0.0295 -0.0095 -0.0213 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0138 +vertex -0.0295 -0.0115 -0.0132 +vertex -0.0295 -0.0085 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0138 +vertex -0.0295 -0.0115 -0.0132 +vertex -0.0295 -0.0095 -0.0138 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0238 +vertex -0.0295 -0.0105 -0.0238 +vertex -0.0295 -0.0095 -0.0222 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0213 +vertex -0.0295 -0.0095 -0.0222 +vertex -0.0295 -0.0095 -0.0213 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0248 +vertex -0.0295 -0.0095 -0.0262 +vertex -0.0295 -0.0105 -0.0262 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0238 +vertex -0.0295 -0.0095 -0.0222 +vertex -0.0295 0.0095 -0.0222 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0248 +vertex -0.0295 -0.0095 -0.0262 +vertex -0.0295 -0.0095 -0.0248 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0272 +vertex -0.0295 -0.0095 -0.0288 +vertex -0.0295 -0.0095 -0.0272 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0288 +vertex -0.0295 -0.0095 -0.0298 +vertex -0.0295 -0.0095 -0.0288 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0272 +vertex -0.0295 -0.0095 -0.0262 +vertex -0.0295 0.0095 -0.0262 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0288 +vertex -0.0295 -0.0105 -0.0288 +vertex -0.0295 -0.0095 -0.0272 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0248 +vertex -0.0295 -0.0095 -0.0238 +vertex -0.0295 0.0095 -0.0238 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0298 +vertex -0.0295 -0.0095 -0.0298 +vertex -0.0295 -0.0095 -0.0312 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0298 +vertex -0.0295 0.0095 -0.0298 +vertex -0.0295 -0.0095 -0.0312 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0120 0.0000 +vertex -0.0295 0.0120 0.0000 +vertex -0.0295 -0.0085 -0.0103 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0115 -0.0132 +vertex -0.0295 -0.0105 -0.0298 +vertex -0.0295 -0.0105 -0.0312 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0338 +vertex -0.0295 -0.0115 -0.0132 +vertex -0.0295 -0.0105 -0.0323 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0348 +vertex -0.0295 -0.0120 -0.0610 +vertex -0.0295 -0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0323 +vertex -0.0295 -0.0095 -0.0323 +vertex -0.0295 -0.0105 -0.0338 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0348 +vertex -0.0295 -0.0115 -0.0132 +vertex -0.0295 -0.0105 -0.0338 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0362 +vertex -0.0295 -0.0105 -0.0372 +vertex -0.0295 -0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0387 +vertex -0.0295 -0.0105 -0.0398 +vertex -0.0295 -0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0372 +vertex -0.0295 -0.0095 -0.0372 +vertex -0.0295 -0.0105 -0.0387 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0372 +vertex -0.0295 -0.0105 -0.0387 +vertex -0.0295 -0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0348 +vertex -0.0295 -0.0095 -0.0348 +vertex -0.0295 -0.0105 -0.0362 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0348 +vertex -0.0295 -0.0105 -0.0362 +vertex -0.0295 -0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0413 +vertex -0.0295 -0.0105 -0.0423 +vertex -0.0295 -0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0120 -0.0610 +vertex -0.0295 -0.0105 -0.0438 +vertex -0.0295 -0.0105 -0.0447 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0438 +vertex -0.0295 -0.0120 -0.0610 +vertex -0.0295 -0.0105 -0.0423 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0423 +vertex -0.0295 -0.0095 -0.0423 +vertex -0.0295 -0.0105 -0.0438 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0413 +vertex -0.0295 -0.0120 -0.0610 +vertex -0.0295 -0.0105 -0.0398 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0447 +vertex -0.0295 -0.0105 -0.0462 +vertex -0.0295 -0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0462 +vertex -0.0295 -0.0105 -0.0447 +vertex -0.0295 -0.0095 -0.0447 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0473 +vertex -0.0295 -0.0105 -0.0488 +vertex -0.0295 -0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0488 +vertex -0.0295 -0.0105 -0.0473 +vertex -0.0295 -0.0095 -0.0473 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0462 +vertex -0.0295 -0.0105 -0.0473 +vertex -0.0295 -0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0120 -0.0610 +vertex -0.0295 -0.0105 -0.0488 +vertex -0.0295 -0.0105 -0.0498 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0398 +vertex -0.0295 -0.0095 -0.0398 +vertex -0.0295 -0.0105 -0.0413 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0323 +vertex -0.0295 -0.0115 -0.0132 +vertex -0.0295 -0.0105 -0.0312 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0338 +vertex -0.0295 -0.0105 -0.0338 +vertex -0.0295 -0.0095 -0.0323 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0312 +vertex -0.0295 -0.0095 -0.0323 +vertex -0.0295 -0.0095 -0.0312 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0362 +vertex -0.0295 -0.0105 -0.0362 +vertex -0.0295 -0.0095 -0.0348 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0338 +vertex -0.0295 -0.0095 -0.0348 +vertex -0.0295 -0.0095 -0.0338 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0338 +vertex -0.0295 -0.0095 -0.0323 +vertex -0.0295 0.0095 -0.0323 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0387 +vertex -0.0295 -0.0105 -0.0387 +vertex -0.0295 -0.0095 -0.0372 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0362 +vertex -0.0295 -0.0095 -0.0372 +vertex -0.0295 -0.0095 -0.0362 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0413 +vertex -0.0295 -0.0105 -0.0413 +vertex -0.0295 -0.0095 -0.0398 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0387 +vertex -0.0295 -0.0095 -0.0398 +vertex -0.0295 -0.0095 -0.0387 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0387 +vertex -0.0295 -0.0095 -0.0372 +vertex -0.0295 0.0095 -0.0372 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0362 +vertex -0.0295 -0.0095 -0.0348 +vertex -0.0295 0.0095 -0.0348 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0438 +vertex -0.0295 -0.0105 -0.0438 +vertex -0.0295 -0.0095 -0.0423 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0413 +vertex -0.0295 -0.0095 -0.0423 +vertex -0.0295 -0.0095 -0.0413 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0447 +vertex -0.0295 -0.0095 -0.0462 +vertex -0.0295 -0.0105 -0.0462 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0438 +vertex -0.0295 -0.0095 -0.0423 +vertex -0.0295 0.0095 -0.0423 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0085 -0.0478 +vertex -0.0295 -0.0095 -0.0462 +vertex -0.0295 -0.0095 -0.0447 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0085 -0.0478 +vertex -0.0295 -0.0095 -0.0488 +vertex -0.0295 -0.0095 -0.0473 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0085 -0.0478 +vertex -0.0295 -0.0095 -0.0498 +vertex -0.0295 -0.0095 -0.0488 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0473 +vertex -0.0295 -0.0095 -0.0462 +vertex -0.0295 0.0085 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0488 +vertex -0.0295 -0.0105 -0.0488 +vertex -0.0295 -0.0095 -0.0473 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0447 +vertex -0.0295 -0.0095 -0.0438 +vertex -0.0295 0.0085 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0498 +vertex -0.0295 -0.0095 -0.0498 +vertex -0.0295 -0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0413 +vertex -0.0295 -0.0095 -0.0398 +vertex -0.0295 0.0095 -0.0398 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0105 -0.0312 +vertex -0.0295 -0.0105 -0.0298 +vertex -0.0295 -0.0095 -0.0312 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0120 -0.0610 +vertex -0.0295 -0.0095 -0.0498 +vertex -0.0295 0.0085 -0.0508 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0173 +vertex -0.0295 -0.0095 -0.0173 +vertex -0.0295 -0.0085 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0138 +vertex -0.0295 -0.0085 -0.0132 +vertex -0.0295 0.0095 -0.0123 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0163 +vertex -0.0295 -0.0085 -0.0132 +vertex -0.0295 0.0095 -0.0148 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0123 +vertex -0.0295 0.0105 -0.0123 +vertex -0.0295 0.0095 -0.0138 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0148 +vertex -0.0295 -0.0085 -0.0132 +vertex -0.0295 0.0095 -0.0138 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0187 +vertex -0.0295 -0.0095 -0.0187 +vertex -0.0295 0.0095 -0.0173 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0213 +vertex -0.0295 -0.0095 -0.0213 +vertex -0.0295 0.0095 -0.0198 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0173 +vertex -0.0295 0.0105 -0.0173 +vertex -0.0295 0.0095 -0.0187 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0198 +vertex -0.0295 -0.0095 -0.0198 +vertex -0.0295 0.0095 -0.0187 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0148 +vertex -0.0295 0.0105 -0.0148 +vertex -0.0295 0.0095 -0.0163 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0173 +vertex -0.0295 -0.0085 -0.0132 +vertex -0.0295 0.0095 -0.0163 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0238 +vertex -0.0295 -0.0095 -0.0238 +vertex -0.0295 0.0095 -0.0222 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0262 +vertex -0.0295 -0.0095 -0.0262 +vertex -0.0295 0.0095 -0.0248 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0222 +vertex -0.0295 0.0105 -0.0222 +vertex -0.0295 0.0095 -0.0238 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0248 +vertex -0.0295 -0.0095 -0.0248 +vertex -0.0295 0.0095 -0.0238 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0288 +vertex -0.0295 -0.0095 -0.0288 +vertex -0.0295 0.0095 -0.0272 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0312 +vertex -0.0295 -0.0095 -0.0312 +vertex -0.0295 0.0095 -0.0298 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0272 +vertex -0.0295 0.0105 -0.0272 +vertex -0.0295 0.0095 -0.0288 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0298 +vertex -0.0295 -0.0095 -0.0298 +vertex -0.0295 0.0095 -0.0288 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0248 +vertex -0.0295 0.0105 -0.0248 +vertex -0.0295 0.0095 -0.0262 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0272 +vertex -0.0295 -0.0095 -0.0272 +vertex -0.0295 0.0095 -0.0262 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0198 +vertex -0.0295 0.0105 -0.0198 +vertex -0.0295 0.0095 -0.0213 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0222 +vertex -0.0295 -0.0095 -0.0222 +vertex -0.0295 0.0095 -0.0213 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0123 +vertex -0.0295 0.0105 -0.0112 +vertex -0.0295 0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0148 +vertex -0.0295 0.0105 -0.0138 +vertex -0.0295 0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0123 +vertex -0.0295 0.0120 0.0000 +vertex -0.0295 0.0105 -0.0138 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0123 +vertex -0.0295 0.0105 -0.0138 +vertex -0.0295 0.0095 -0.0138 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0163 +vertex -0.0295 0.0120 0.0000 +vertex -0.0295 0.0105 -0.0173 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0120 0.0000 +vertex -0.0295 0.0105 -0.0163 +vertex -0.0295 0.0105 -0.0148 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0173 +vertex -0.0295 0.0105 -0.0187 +vertex -0.0295 0.0095 -0.0187 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0187 +vertex -0.0295 0.0105 -0.0173 +vertex -0.0295 0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0120 0.0000 +vertex -0.0295 0.0105 -0.0198 +vertex -0.0295 0.0105 -0.0187 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0112 +vertex -0.0295 0.0095 -0.0112 +vertex -0.0295 0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0148 +vertex -0.0295 0.0105 -0.0163 +vertex -0.0295 0.0095 -0.0163 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0198 +vertex -0.0295 0.0105 -0.0213 +vertex -0.0295 0.0095 -0.0213 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0213 +vertex -0.0295 0.0105 -0.0198 +vertex -0.0295 0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0222 +vertex -0.0295 0.0105 -0.0238 +vertex -0.0295 0.0095 -0.0238 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0238 +vertex -0.0295 0.0105 -0.0222 +vertex -0.0295 0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0213 +vertex -0.0295 0.0120 0.0000 +vertex -0.0295 0.0105 -0.0222 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0248 +vertex -0.0295 0.0105 -0.0262 +vertex -0.0295 0.0095 -0.0262 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0262 +vertex -0.0295 0.0105 -0.0248 +vertex -0.0295 0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0272 +vertex -0.0295 0.0105 -0.0288 +vertex -0.0295 0.0095 -0.0288 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0115 -0.0478 +vertex -0.0295 0.0105 -0.0288 +vertex -0.0295 0.0105 -0.0272 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0115 -0.0478 +vertex -0.0295 0.0105 -0.0298 +vertex -0.0295 0.0105 -0.0288 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0272 +vertex -0.0295 0.0105 -0.0262 +vertex -0.0295 0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0238 +vertex -0.0295 0.0120 0.0000 +vertex -0.0295 0.0105 -0.0248 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0120 0.0000 +vertex -0.0295 0.0115 -0.0478 +vertex -0.0295 0.0105 -0.0262 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0112 +vertex -0.0295 -0.0085 -0.0103 +vertex -0.0295 0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0298 +vertex -0.0295 0.0105 -0.0298 +vertex -0.0295 0.0105 -0.0312 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0338 +vertex -0.0295 -0.0095 -0.0338 +vertex -0.0295 0.0095 -0.0323 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0362 +vertex -0.0295 -0.0095 -0.0362 +vertex -0.0295 0.0095 -0.0348 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0323 +vertex -0.0295 0.0105 -0.0323 +vertex -0.0295 0.0095 -0.0338 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0348 +vertex -0.0295 -0.0095 -0.0348 +vertex -0.0295 0.0095 -0.0338 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0387 +vertex -0.0295 -0.0095 -0.0387 +vertex -0.0295 0.0095 -0.0372 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0413 +vertex -0.0295 -0.0095 -0.0413 +vertex -0.0295 0.0095 -0.0398 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0372 +vertex -0.0295 0.0105 -0.0372 +vertex -0.0295 0.0095 -0.0387 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0398 +vertex -0.0295 -0.0095 -0.0398 +vertex -0.0295 0.0095 -0.0387 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0348 +vertex -0.0295 0.0105 -0.0348 +vertex -0.0295 0.0095 -0.0362 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0372 +vertex -0.0295 -0.0095 -0.0372 +vertex -0.0295 0.0095 -0.0362 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0438 +vertex -0.0295 -0.0095 -0.0438 +vertex -0.0295 0.0095 -0.0423 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0085 -0.0478 +vertex -0.0295 0.0085 -0.0508 +vertex -0.0295 -0.0095 -0.0498 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0115 -0.0478 +vertex -0.0295 0.0085 -0.0478 +vertex -0.0295 0.0095 -0.0473 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0438 +vertex -0.0295 0.0095 -0.0438 +vertex -0.0295 0.0085 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0423 +vertex -0.0295 0.0095 -0.0413 +vertex -0.0295 0.0095 -0.0423 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0438 +vertex -0.0295 0.0095 -0.0447 +vertex -0.0295 0.0085 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0462 +vertex -0.0295 0.0095 -0.0473 +vertex -0.0295 0.0085 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0447 +vertex -0.0295 0.0105 -0.0447 +vertex -0.0295 0.0095 -0.0462 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0447 +vertex -0.0295 0.0095 -0.0462 +vertex -0.0295 0.0085 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0423 +vertex -0.0295 0.0105 -0.0423 +vertex -0.0295 0.0095 -0.0438 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0473 +vertex -0.0295 0.0105 -0.0473 +vertex -0.0295 0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0398 +vertex -0.0295 0.0105 -0.0398 +vertex -0.0295 0.0095 -0.0413 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0095 -0.0323 +vertex -0.0295 0.0095 -0.0312 +vertex -0.0295 0.0095 -0.0323 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0323 +vertex -0.0295 0.0105 -0.0312 +vertex -0.0295 0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0348 +vertex -0.0295 0.0105 -0.0338 +vertex -0.0295 0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0323 +vertex -0.0295 0.0115 -0.0478 +vertex -0.0295 0.0105 -0.0338 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0323 +vertex -0.0295 0.0105 -0.0338 +vertex -0.0295 0.0095 -0.0338 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0372 +vertex -0.0295 0.0105 -0.0362 +vertex -0.0295 0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0398 +vertex -0.0295 0.0105 -0.0387 +vertex -0.0295 0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0372 +vertex -0.0295 0.0115 -0.0478 +vertex -0.0295 0.0105 -0.0387 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0372 +vertex -0.0295 0.0105 -0.0387 +vertex -0.0295 0.0095 -0.0387 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0348 +vertex -0.0295 0.0115 -0.0478 +vertex -0.0295 0.0105 -0.0362 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0348 +vertex -0.0295 0.0105 -0.0362 +vertex -0.0295 0.0095 -0.0362 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0423 +vertex -0.0295 0.0105 -0.0413 +vertex -0.0295 0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0447 +vertex -0.0295 0.0105 -0.0438 +vertex -0.0295 0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0423 +vertex -0.0295 0.0115 -0.0478 +vertex -0.0295 0.0105 -0.0438 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0423 +vertex -0.0295 0.0105 -0.0438 +vertex -0.0295 0.0095 -0.0438 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0473 +vertex -0.0295 0.0105 -0.0462 +vertex -0.0295 0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0115 -0.0478 +vertex -0.0295 0.0120 -0.0610 +vertex -0.0295 0.0115 -0.0508 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0120 -0.0610 +vertex -0.0295 0.0115 -0.0478 +vertex -0.0295 0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0120 -0.0610 +vertex -0.0295 0.0085 -0.0508 +vertex -0.0295 0.0115 -0.0508 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0462 +vertex -0.0295 0.0105 -0.0447 +vertex -0.0295 0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0413 +vertex -0.0295 0.0105 -0.0398 +vertex -0.0295 0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0447 +vertex -0.0295 0.0105 -0.0462 +vertex -0.0295 0.0095 -0.0462 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0312 +vertex -0.0295 0.0105 -0.0298 +vertex -0.0295 0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0105 -0.0398 +vertex -0.0295 0.0105 -0.0413 +vertex -0.0295 0.0095 -0.0413 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0312 +vertex -0.0295 0.0095 -0.0298 +vertex -0.0295 0.0105 -0.0312 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0085 -0.0508 +vertex -0.0295 0.0120 -0.0610 +vertex -0.0295 -0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0095 -0.0123 +vertex -0.0295 -0.0085 -0.0132 +vertex -0.0295 0.0095 -0.0112 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0120 0.0000 +vertex -0.0220 0.0120 -0.0335 +vertex -0.0295 0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0220 0.0120 -0.0335 +vertex -0.0295 0.0120 0.0000 +vertex 0.0130 0.0120 -0.0335 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 0.0120 -0.0610 +vertex -0.0220 0.0120 -0.0515 +vertex 0.0130 0.0120 -0.0515 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0220 0.0120 -0.0515 +vertex -0.0295 0.0120 -0.0610 +vertex -0.0220 0.0120 -0.0335 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0130 0.0120 -0.0335 +vertex 0.0305 0.0120 0.0000 +vertex 0.0305 0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0120 0.0000 +vertex 0.0130 0.0120 -0.0335 +vertex -0.0295 0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0130 0.0120 -0.0515 +vertex 0.0305 0.0120 -0.0610 +vertex -0.0295 0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0120 -0.0610 +vertex 0.0130 0.0120 -0.0515 +vertex 0.0130 0.0120 -0.0335 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0120 0.0000 +vertex 0.0305 0.0115 -0.0103 +vertex 0.0305 0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0115 -0.0132 +vertex 0.0305 0.0105 -0.0138 +vertex 0.0305 0.0105 -0.0148 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0115 -0.0103 +vertex 0.0305 0.0120 0.0000 +vertex 0.0305 0.0085 -0.0103 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0120 0.0000 +vertex 0.0305 0.0115 -0.0132 +vertex 0.0305 0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0148 +vertex 0.0305 0.0105 -0.0163 +vertex 0.0305 0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0163 +vertex 0.0305 0.0105 -0.0148 +vertex 0.0305 0.0095 -0.0148 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0173 +vertex 0.0305 0.0105 -0.0187 +vertex 0.0305 0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0187 +vertex 0.0305 0.0105 -0.0173 +vertex 0.0305 0.0095 -0.0173 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0163 +vertex 0.0305 0.0105 -0.0173 +vertex 0.0305 0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0115 -0.0132 +vertex 0.0305 0.0105 -0.0187 +vertex 0.0305 0.0105 -0.0198 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0198 +vertex 0.0305 0.0105 -0.0213 +vertex 0.0305 0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0213 +vertex 0.0305 0.0105 -0.0198 +vertex 0.0305 0.0095 -0.0198 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0222 +vertex 0.0305 0.0105 -0.0238 +vertex 0.0305 0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0238 +vertex 0.0305 0.0105 -0.0222 +vertex 0.0305 0.0095 -0.0222 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0213 +vertex 0.0305 0.0105 -0.0222 +vertex 0.0305 0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0248 +vertex 0.0305 0.0105 -0.0262 +vertex 0.0305 0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0262 +vertex 0.0305 0.0105 -0.0248 +vertex 0.0305 0.0095 -0.0248 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0272 +vertex 0.0305 0.0105 -0.0288 +vertex 0.0305 0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0288 +vertex 0.0305 0.0105 -0.0272 +vertex 0.0305 0.0095 -0.0272 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0262 +vertex 0.0305 0.0105 -0.0272 +vertex 0.0305 0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0238 +vertex 0.0305 0.0105 -0.0248 +vertex 0.0305 0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0115 -0.0132 +vertex 0.0305 0.0105 -0.0288 +vertex 0.0305 0.0105 -0.0298 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0163 +vertex 0.0305 0.0105 -0.0163 +vertex 0.0305 0.0095 -0.0148 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0148 +vertex 0.0305 0.0095 -0.0138 +vertex 0.0305 0.0085 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0187 +vertex 0.0305 0.0105 -0.0187 +vertex 0.0305 0.0095 -0.0173 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0173 +vertex 0.0305 0.0095 -0.0163 +vertex 0.0305 0.0085 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0148 +vertex 0.0305 0.0085 -0.0132 +vertex 0.0305 0.0095 -0.0163 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0173 +vertex 0.0305 -0.0095 -0.0173 +vertex 0.0305 0.0095 -0.0187 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0085 -0.0132 +vertex 0.0305 0.0085 -0.0103 +vertex 0.0305 -0.0095 -0.0112 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0213 +vertex 0.0305 0.0105 -0.0213 +vertex 0.0305 0.0095 -0.0198 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0187 +vertex 0.0305 0.0095 -0.0198 +vertex 0.0305 0.0095 -0.0187 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0198 +vertex 0.0305 -0.0095 -0.0198 +vertex 0.0305 0.0095 -0.0213 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0138 +vertex 0.0305 0.0115 -0.0132 +vertex 0.0305 0.0085 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0138 +vertex 0.0305 0.0115 -0.0132 +vertex 0.0305 0.0095 -0.0138 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0238 +vertex 0.0305 0.0105 -0.0238 +vertex 0.0305 0.0095 -0.0222 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0213 +vertex 0.0305 0.0095 -0.0222 +vertex 0.0305 0.0095 -0.0213 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0248 +vertex 0.0305 0.0095 -0.0262 +vertex 0.0305 0.0105 -0.0262 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0238 +vertex 0.0305 0.0095 -0.0222 +vertex 0.0305 -0.0095 -0.0222 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0248 +vertex 0.0305 0.0095 -0.0262 +vertex 0.0305 0.0095 -0.0248 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0272 +vertex 0.0305 0.0095 -0.0288 +vertex 0.0305 0.0095 -0.0272 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0288 +vertex 0.0305 0.0095 -0.0298 +vertex 0.0305 0.0095 -0.0288 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0272 +vertex 0.0305 0.0095 -0.0262 +vertex 0.0305 -0.0095 -0.0262 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0288 +vertex 0.0305 0.0105 -0.0288 +vertex 0.0305 0.0095 -0.0272 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0248 +vertex 0.0305 0.0095 -0.0238 +vertex 0.0305 -0.0095 -0.0238 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0298 +vertex 0.0305 0.0095 -0.0298 +vertex 0.0305 0.0095 -0.0312 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0298 +vertex 0.0305 -0.0095 -0.0298 +vertex 0.0305 0.0095 -0.0312 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0120 0.0000 +vertex 0.0305 -0.0120 0.0000 +vertex 0.0305 0.0085 -0.0103 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0115 -0.0132 +vertex 0.0305 0.0105 -0.0298 +vertex 0.0305 0.0105 -0.0312 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0338 +vertex 0.0305 0.0115 -0.0132 +vertex 0.0305 0.0105 -0.0323 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0348 +vertex 0.0305 0.0120 -0.0610 +vertex 0.0305 0.0115 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0323 +vertex 0.0305 0.0095 -0.0323 +vertex 0.0305 0.0105 -0.0338 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0348 +vertex 0.0305 0.0115 -0.0132 +vertex 0.0305 0.0105 -0.0338 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0362 +vertex 0.0305 0.0105 -0.0372 +vertex 0.0305 0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0387 +vertex 0.0305 0.0105 -0.0398 +vertex 0.0305 0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0372 +vertex 0.0305 0.0095 -0.0372 +vertex 0.0305 0.0105 -0.0387 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0372 +vertex 0.0305 0.0105 -0.0387 +vertex 0.0305 0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0348 +vertex 0.0305 0.0095 -0.0348 +vertex 0.0305 0.0105 -0.0362 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0348 +vertex 0.0305 0.0105 -0.0362 +vertex 0.0305 0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0413 +vertex 0.0305 0.0105 -0.0423 +vertex 0.0305 0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0120 -0.0610 +vertex 0.0305 0.0105 -0.0438 +vertex 0.0305 0.0105 -0.0447 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0438 +vertex 0.0305 0.0120 -0.0610 +vertex 0.0305 0.0105 -0.0423 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0423 +vertex 0.0305 0.0095 -0.0423 +vertex 0.0305 0.0105 -0.0438 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0413 +vertex 0.0305 0.0120 -0.0610 +vertex 0.0305 0.0105 -0.0398 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0447 +vertex 0.0305 0.0105 -0.0462 +vertex 0.0305 0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0462 +vertex 0.0305 0.0105 -0.0447 +vertex 0.0305 0.0095 -0.0447 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0473 +vertex 0.0305 0.0105 -0.0488 +vertex 0.0305 0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0488 +vertex 0.0305 0.0105 -0.0473 +vertex 0.0305 0.0095 -0.0473 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0462 +vertex 0.0305 0.0105 -0.0473 +vertex 0.0305 0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0120 -0.0610 +vertex 0.0305 0.0105 -0.0488 +vertex 0.0305 0.0105 -0.0498 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0398 +vertex 0.0305 0.0095 -0.0398 +vertex 0.0305 0.0105 -0.0413 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0323 +vertex 0.0305 0.0115 -0.0132 +vertex 0.0305 0.0105 -0.0312 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0338 +vertex 0.0305 0.0105 -0.0338 +vertex 0.0305 0.0095 -0.0323 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0312 +vertex 0.0305 0.0095 -0.0323 +vertex 0.0305 0.0095 -0.0312 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0362 +vertex 0.0305 0.0105 -0.0362 +vertex 0.0305 0.0095 -0.0348 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0338 +vertex 0.0305 0.0095 -0.0348 +vertex 0.0305 0.0095 -0.0338 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0338 +vertex 0.0305 0.0095 -0.0323 +vertex 0.0305 -0.0095 -0.0323 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0387 +vertex 0.0305 0.0105 -0.0387 +vertex 0.0305 0.0095 -0.0372 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0362 +vertex 0.0305 0.0095 -0.0372 +vertex 0.0305 0.0095 -0.0362 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0413 +vertex 0.0305 0.0105 -0.0413 +vertex 0.0305 0.0095 -0.0398 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0387 +vertex 0.0305 0.0095 -0.0398 +vertex 0.0305 0.0095 -0.0387 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0387 +vertex 0.0305 0.0095 -0.0372 +vertex 0.0305 -0.0095 -0.0372 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0362 +vertex 0.0305 0.0095 -0.0348 +vertex 0.0305 -0.0095 -0.0348 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0438 +vertex 0.0305 0.0105 -0.0438 +vertex 0.0305 0.0095 -0.0423 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0413 +vertex 0.0305 0.0095 -0.0423 +vertex 0.0305 0.0095 -0.0413 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0447 +vertex 0.0305 0.0095 -0.0462 +vertex 0.0305 0.0105 -0.0462 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0438 +vertex 0.0305 0.0095 -0.0423 +vertex 0.0305 -0.0095 -0.0423 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0085 -0.0478 +vertex 0.0305 0.0095 -0.0462 +vertex 0.0305 0.0095 -0.0447 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0085 -0.0478 +vertex 0.0305 0.0095 -0.0488 +vertex 0.0305 0.0095 -0.0473 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0085 -0.0478 +vertex 0.0305 0.0095 -0.0498 +vertex 0.0305 0.0095 -0.0488 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0473 +vertex 0.0305 0.0095 -0.0462 +vertex 0.0305 -0.0085 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0488 +vertex 0.0305 0.0105 -0.0488 +vertex 0.0305 0.0095 -0.0473 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0447 +vertex 0.0305 0.0095 -0.0438 +vertex 0.0305 -0.0085 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0498 +vertex 0.0305 0.0095 -0.0498 +vertex 0.0305 0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0413 +vertex 0.0305 0.0095 -0.0398 +vertex 0.0305 -0.0095 -0.0398 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0105 -0.0312 +vertex 0.0305 0.0105 -0.0298 +vertex 0.0305 0.0095 -0.0312 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0120 -0.0610 +vertex 0.0305 0.0095 -0.0498 +vertex 0.0305 -0.0085 -0.0508 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0173 +vertex 0.0305 0.0095 -0.0173 +vertex 0.0305 0.0085 -0.0132 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0138 +vertex 0.0305 0.0085 -0.0132 +vertex 0.0305 -0.0095 -0.0123 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0163 +vertex 0.0305 0.0085 -0.0132 +vertex 0.0305 -0.0095 -0.0148 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0123 +vertex 0.0305 -0.0105 -0.0123 +vertex 0.0305 -0.0095 -0.0138 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0148 +vertex 0.0305 0.0085 -0.0132 +vertex 0.0305 -0.0095 -0.0138 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0187 +vertex 0.0305 0.0095 -0.0187 +vertex 0.0305 -0.0095 -0.0173 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0213 +vertex 0.0305 0.0095 -0.0213 +vertex 0.0305 -0.0095 -0.0198 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0173 +vertex 0.0305 -0.0105 -0.0173 +vertex 0.0305 -0.0095 -0.0187 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0198 +vertex 0.0305 0.0095 -0.0198 +vertex 0.0305 -0.0095 -0.0187 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0148 +vertex 0.0305 -0.0105 -0.0148 +vertex 0.0305 -0.0095 -0.0163 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0173 +vertex 0.0305 0.0085 -0.0132 +vertex 0.0305 -0.0095 -0.0163 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0238 +vertex 0.0305 0.0095 -0.0238 +vertex 0.0305 -0.0095 -0.0222 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0262 +vertex 0.0305 0.0095 -0.0262 +vertex 0.0305 -0.0095 -0.0248 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0222 +vertex 0.0305 -0.0105 -0.0222 +vertex 0.0305 -0.0095 -0.0238 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0248 +vertex 0.0305 0.0095 -0.0248 +vertex 0.0305 -0.0095 -0.0238 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0288 +vertex 0.0305 0.0095 -0.0288 +vertex 0.0305 -0.0095 -0.0272 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0312 +vertex 0.0305 0.0095 -0.0312 +vertex 0.0305 -0.0095 -0.0298 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0272 +vertex 0.0305 -0.0105 -0.0272 +vertex 0.0305 -0.0095 -0.0288 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0298 +vertex 0.0305 0.0095 -0.0298 +vertex 0.0305 -0.0095 -0.0288 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0248 +vertex 0.0305 -0.0105 -0.0248 +vertex 0.0305 -0.0095 -0.0262 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0272 +vertex 0.0305 0.0095 -0.0272 +vertex 0.0305 -0.0095 -0.0262 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0198 +vertex 0.0305 -0.0105 -0.0198 +vertex 0.0305 -0.0095 -0.0213 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0222 +vertex 0.0305 0.0095 -0.0222 +vertex 0.0305 -0.0095 -0.0213 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0123 +vertex 0.0305 -0.0105 -0.0112 +vertex 0.0305 -0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0148 +vertex 0.0305 -0.0105 -0.0138 +vertex 0.0305 -0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0123 +vertex 0.0305 -0.0120 0.0000 +vertex 0.0305 -0.0105 -0.0138 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0123 +vertex 0.0305 -0.0105 -0.0138 +vertex 0.0305 -0.0095 -0.0138 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0163 +vertex 0.0305 -0.0120 0.0000 +vertex 0.0305 -0.0105 -0.0173 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0120 0.0000 +vertex 0.0305 -0.0105 -0.0163 +vertex 0.0305 -0.0105 -0.0148 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0173 +vertex 0.0305 -0.0105 -0.0187 +vertex 0.0305 -0.0095 -0.0187 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0187 +vertex 0.0305 -0.0105 -0.0173 +vertex 0.0305 -0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0120 0.0000 +vertex 0.0305 -0.0105 -0.0198 +vertex 0.0305 -0.0105 -0.0187 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0112 +vertex 0.0305 -0.0095 -0.0112 +vertex 0.0305 -0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0148 +vertex 0.0305 -0.0105 -0.0163 +vertex 0.0305 -0.0095 -0.0163 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0198 +vertex 0.0305 -0.0105 -0.0213 +vertex 0.0305 -0.0095 -0.0213 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0213 +vertex 0.0305 -0.0105 -0.0198 +vertex 0.0305 -0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0222 +vertex 0.0305 -0.0105 -0.0238 +vertex 0.0305 -0.0095 -0.0238 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0238 +vertex 0.0305 -0.0105 -0.0222 +vertex 0.0305 -0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0213 +vertex 0.0305 -0.0120 0.0000 +vertex 0.0305 -0.0105 -0.0222 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0248 +vertex 0.0305 -0.0105 -0.0262 +vertex 0.0305 -0.0095 -0.0262 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0262 +vertex 0.0305 -0.0105 -0.0248 +vertex 0.0305 -0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0272 +vertex 0.0305 -0.0105 -0.0288 +vertex 0.0305 -0.0095 -0.0288 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0115 -0.0478 +vertex 0.0305 -0.0105 -0.0288 +vertex 0.0305 -0.0105 -0.0272 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0115 -0.0478 +vertex 0.0305 -0.0105 -0.0298 +vertex 0.0305 -0.0105 -0.0288 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0272 +vertex 0.0305 -0.0105 -0.0262 +vertex 0.0305 -0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0238 +vertex 0.0305 -0.0120 0.0000 +vertex 0.0305 -0.0105 -0.0248 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0120 0.0000 +vertex 0.0305 -0.0115 -0.0478 +vertex 0.0305 -0.0105 -0.0262 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0112 +vertex 0.0305 0.0085 -0.0103 +vertex 0.0305 -0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0298 +vertex 0.0305 -0.0105 -0.0298 +vertex 0.0305 -0.0105 -0.0312 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0338 +vertex 0.0305 0.0095 -0.0338 +vertex 0.0305 -0.0095 -0.0323 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0362 +vertex 0.0305 0.0095 -0.0362 +vertex 0.0305 -0.0095 -0.0348 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0323 +vertex 0.0305 -0.0105 -0.0323 +vertex 0.0305 -0.0095 -0.0338 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0348 +vertex 0.0305 0.0095 -0.0348 +vertex 0.0305 -0.0095 -0.0338 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0387 +vertex 0.0305 0.0095 -0.0387 +vertex 0.0305 -0.0095 -0.0372 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0413 +vertex 0.0305 0.0095 -0.0413 +vertex 0.0305 -0.0095 -0.0398 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0372 +vertex 0.0305 -0.0105 -0.0372 +vertex 0.0305 -0.0095 -0.0387 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0398 +vertex 0.0305 0.0095 -0.0398 +vertex 0.0305 -0.0095 -0.0387 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0348 +vertex 0.0305 -0.0105 -0.0348 +vertex 0.0305 -0.0095 -0.0362 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0372 +vertex 0.0305 0.0095 -0.0372 +vertex 0.0305 -0.0095 -0.0362 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0438 +vertex 0.0305 0.0095 -0.0438 +vertex 0.0305 -0.0095 -0.0423 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0085 -0.0478 +vertex 0.0305 -0.0085 -0.0508 +vertex 0.0305 0.0095 -0.0498 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0115 -0.0478 +vertex 0.0305 -0.0085 -0.0478 +vertex 0.0305 -0.0095 -0.0473 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0438 +vertex 0.0305 -0.0095 -0.0438 +vertex 0.0305 -0.0085 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0423 +vertex 0.0305 -0.0095 -0.0413 +vertex 0.0305 -0.0095 -0.0423 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0438 +vertex 0.0305 -0.0095 -0.0447 +vertex 0.0305 -0.0085 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0462 +vertex 0.0305 -0.0095 -0.0473 +vertex 0.0305 -0.0085 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0447 +vertex 0.0305 -0.0105 -0.0447 +vertex 0.0305 -0.0095 -0.0462 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0447 +vertex 0.0305 -0.0095 -0.0462 +vertex 0.0305 -0.0085 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0423 +vertex 0.0305 -0.0105 -0.0423 +vertex 0.0305 -0.0095 -0.0438 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0473 +vertex 0.0305 -0.0105 -0.0473 +vertex 0.0305 -0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0398 +vertex 0.0305 -0.0105 -0.0398 +vertex 0.0305 -0.0095 -0.0413 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0095 -0.0323 +vertex 0.0305 -0.0095 -0.0312 +vertex 0.0305 -0.0095 -0.0323 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0323 +vertex 0.0305 -0.0105 -0.0312 +vertex 0.0305 -0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0348 +vertex 0.0305 -0.0105 -0.0338 +vertex 0.0305 -0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0323 +vertex 0.0305 -0.0115 -0.0478 +vertex 0.0305 -0.0105 -0.0338 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0323 +vertex 0.0305 -0.0105 -0.0338 +vertex 0.0305 -0.0095 -0.0338 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0372 +vertex 0.0305 -0.0105 -0.0362 +vertex 0.0305 -0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0398 +vertex 0.0305 -0.0105 -0.0387 +vertex 0.0305 -0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0372 +vertex 0.0305 -0.0115 -0.0478 +vertex 0.0305 -0.0105 -0.0387 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0372 +vertex 0.0305 -0.0105 -0.0387 +vertex 0.0305 -0.0095 -0.0387 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0348 +vertex 0.0305 -0.0115 -0.0478 +vertex 0.0305 -0.0105 -0.0362 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0348 +vertex 0.0305 -0.0105 -0.0362 +vertex 0.0305 -0.0095 -0.0362 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0423 +vertex 0.0305 -0.0105 -0.0413 +vertex 0.0305 -0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0447 +vertex 0.0305 -0.0105 -0.0438 +vertex 0.0305 -0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0423 +vertex 0.0305 -0.0115 -0.0478 +vertex 0.0305 -0.0105 -0.0438 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0423 +vertex 0.0305 -0.0105 -0.0438 +vertex 0.0305 -0.0095 -0.0438 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0473 +vertex 0.0305 -0.0105 -0.0462 +vertex 0.0305 -0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0115 -0.0478 +vertex 0.0305 -0.0120 -0.0610 +vertex 0.0305 -0.0115 -0.0508 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0120 -0.0610 +vertex 0.0305 -0.0115 -0.0478 +vertex 0.0305 -0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0120 -0.0610 +vertex 0.0305 -0.0085 -0.0508 +vertex 0.0305 -0.0115 -0.0508 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0462 +vertex 0.0305 -0.0105 -0.0447 +vertex 0.0305 -0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0413 +vertex 0.0305 -0.0105 -0.0398 +vertex 0.0305 -0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0447 +vertex 0.0305 -0.0105 -0.0462 +vertex 0.0305 -0.0095 -0.0462 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0312 +vertex 0.0305 -0.0105 -0.0298 +vertex 0.0305 -0.0115 -0.0478 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0105 -0.0398 +vertex 0.0305 -0.0105 -0.0413 +vertex 0.0305 -0.0095 -0.0413 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0312 +vertex 0.0305 -0.0095 -0.0298 +vertex 0.0305 -0.0105 -0.0312 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0085 -0.0508 +vertex 0.0305 -0.0120 -0.0610 +vertex 0.0305 0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0095 -0.0123 +vertex 0.0305 0.0085 -0.0132 +vertex 0.0305 -0.0095 -0.0112 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0120 0.0000 +vertex 0.0155 -0.0120 -0.0380 +vertex 0.0305 -0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0155 -0.0120 -0.0380 +vertex 0.0305 -0.0120 0.0000 +vertex -0.0295 -0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0120 -0.0610 +vertex 0.0155 -0.0120 -0.0510 +vertex -0.0145 -0.0120 -0.0510 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0155 -0.0120 -0.0510 +vertex 0.0305 -0.0120 -0.0610 +vertex 0.0155 -0.0120 -0.0380 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0145 -0.0120 -0.0380 +vertex -0.0295 -0.0120 0.0000 +vertex -0.0295 -0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0120 0.0000 +vertex -0.0145 -0.0120 -0.0380 +vertex 0.0155 -0.0120 -0.0380 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0145 -0.0120 -0.0510 +vertex -0.0295 -0.0120 -0.0610 +vertex 0.0305 -0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0120 -0.0610 +vertex -0.0145 -0.0120 -0.0510 +vertex -0.0145 -0.0120 -0.0380 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0127 -0.0994 -0.0464 +vertex -0.0115 -0.0986 -0.0600 +vertex -0.0350 -0.0650 -0.0600 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0350 -0.0650 -0.0600 +vertex -0.0362 -0.0658 -0.0464 +vertex -0.0127 -0.0994 -0.0464 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0362 -0.0658 -0.0464 +vertex 0.0350 -0.0650 -0.0600 +vertex 0.0115 -0.0986 -0.0600 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0115 -0.0986 -0.0600 +vertex 0.0127 -0.0994 -0.0464 +vertex 0.0362 -0.0658 -0.0464 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0127 0.0994 -0.0464 +vertex 0.0115 0.0986 -0.0600 +vertex 0.0350 0.0650 -0.0600 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0350 0.0650 -0.0600 +vertex 0.0362 0.0658 -0.0464 +vertex 0.0127 0.0994 -0.0464 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0362 0.0658 -0.0464 +vertex -0.0350 0.0650 -0.0600 +vertex -0.0115 0.0986 -0.0600 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0115 0.0986 -0.0600 +vertex -0.0127 0.0994 -0.0464 +vertex -0.0362 0.0658 -0.0464 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0405 -0.0350 -0.0170 +vertex -0.0305 -0.0350 -0.0170 +vertex -0.0305 -0.0181 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0305 -0.0181 0.0000 +vertex -0.0405 -0.0181 0.0000 +vertex -0.0405 -0.0350 -0.0170 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 0.0120 -0.0070 +vertex 0.0305 0.0120 0.0000 +vertex 0.0305 -0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0120 0.0000 +vertex 0.0305 -0.0120 -0.0070 +vertex 0.0305 0.0120 -0.0070 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0110 -0.0071 +vertex 0.0305 -0.0181 0.0000 +vertex 0.0305 -0.0350 -0.0170 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0305 -0.0350 -0.0170 +vertex 0.0305 -0.0280 -0.0240 +vertex 0.0305 -0.0110 -0.0071 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0305 -0.0120 -0.0070 +vertex -0.0305 -0.0120 0.0000 +vertex -0.0305 0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0305 0.0120 0.0000 +vertex -0.0305 0.0120 -0.0070 +vertex -0.0305 -0.0120 -0.0070 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex 0.0295 -0.0120 -0.0070 +vertex 0.0295 -0.0120 0.0000 +vertex -0.0305 -0.0120 0.0000 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0305 -0.0120 0.0000 +vertex -0.0305 -0.0120 -0.0070 +vertex 0.0295 -0.0120 -0.0070 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0195 -0.0120 -0.0000 +vertex -0.0295 -0.0120 0.0000 +vertex -0.0295 -0.0120 -0.0610 +endloop +endfacet +facet normal 0 0 0 +outer loop +vertex -0.0295 -0.0120 -0.0610 +vertex -0.0195 -0.0120 -0.0610 +vertex -0.0195 -0.0120 -0.0000 +endloop +endfacet +endsolid python diff --git a/rocolib/output/BoatWithStack/graph-silhouette.dxf b/rocolib/output/BoatWithStack/graph-silhouette.dxf new file mode 100644 index 0000000000000000000000000000000000000000..a358fc6f174f4cd4cc8a345a0404b12a23e8236a --- /dev/null +++ b/rocolib/output/BoatWithStack/graph-silhouette.dxf @@ -0,0 +1,9386 @@ + 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 +100.0 + 20 +143.10249700000003 + 30 +0.0 + 11 +0.0 + 21 +143.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +100.0 + 20 +143.10249700000003 + 30 +0.0 + 11 +100.0 + 21 +143.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +50.0 + 20 +143.10249700000003 + 30 +0.0 + 11 +100.0 + 21 +143.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +143.10249700000003 + 30 +0.0 + 11 +50.0 + 21 +143.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +0.0 + 20 +143.10249700000003 + 30 +0.0 + 11 +0.0 + 21 +143.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +210.00000000000003 + 20 +143.10249700000003 + 30 +0.0 + 11 +110.00000000000001 + 21 +143.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +210.00000000000003 + 20 +143.10249700000003 + 30 +0.0 + 11 +210.00000000000003 + 21 +143.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +160.00000000000003 + 20 +143.10249700000003 + 30 +0.0 + 11 +210.00000000000003 + 21 +143.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +110.00000000000001 + 20 +143.10249700000003 + 30 +0.0 + 11 +160.00000000000003 + 21 +143.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +110.00000000000001 + 20 +143.10249700000003 + 30 +0.0 + 11 +110.00000000000001 + 21 +143.10249700000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +363.65577494431847 + 20 +78.10249700000001 + 30 +0.0 + 11 +363.65577494431847 + 21 +208.102497 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +293.65577494431847 + 20 +78.10249700000001 + 30 +0.0 + 11 +293.65577494431847 + 21 +208.102497 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +328.65577494431847 + 20 +78.10249700000001 + 30 +0.0 + 11 +293.65577494431847 + 21 +78.10249700000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +363.65577494431847 + 20 +78.10249700000001 + 30 +0.0 + 11 +328.65577494431847 + 21 +78.10249700000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +328.65577494431847 + 20 +2.4093347406051185e-07 + 30 +0.0 + 11 +293.65577494431847 + 21 +78.10249700000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +309.9673814630455 + 20 +7.3052287140901635 + 30 +0.0 + 11 +271.811578203682 + 21 +22.220200440567442 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +328.65577494431847 + 20 +2.409334456388024e-07 + 30 +0.0 + 11 +309.9673814630455 + 21 +7.3052287140901635 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +293.65577494431847 + 20 +78.10249700000001 + 30 +0.0 + 11 +271.811578203682 + 21 +22.220200440567442 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +293.65577494431847 + 20 +78.10249700000001 + 30 +0.0 + 11 +233.65577494431844 + 21 +37.135172167044736 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +271.811578203682 + 20 +22.220200440567453 + 30 +0.0 + 11 +233.65577494431844 + 21 +37.135172167044736 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +233.65577494431844 + 20 +78.10249700000001 + 30 +0.0 + 11 +233.65577494431844 + 21 +37.13517216704474 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +293.65577494431847 + 20 +78.10249700000001 + 30 +0.0 + 11 +233.65577494431844 + 21 +78.10249700000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +220.00000000000003 + 20 +78.10249700000001 + 30 +0.0 + 11 +233.65577494431844 + 21 +78.10249700000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +220.00000000000003 + 20 +37.13517216704474 + 30 +0.0 + 11 +220.00000000000003 + 21 +78.10249700000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +233.65577494431844 + 20 +37.13517216704474 + 30 +0.0 + 11 +220.00000000000003 + 21 +37.13517216704474 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +233.65577494431844 + 20 +78.10249700000001 + 30 +0.0 + 11 +233.65577494431844 + 21 +208.102497 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +233.65577494431844 + 20 +208.102497 + 30 +0.0 + 11 +293.65577494431847 + 21 +208.102497 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +233.65577494431844 + 20 +249.06982183295528 + 30 +0.0 + 11 +293.65577494431847 + 21 +208.102497 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +233.65577494431844 + 20 +249.06982183295528 + 30 +0.0 + 11 +233.65577494431844 + 21 +208.102497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +233.65577494431847 + 20 +249.0698218329553 + 30 +0.0 + 11 +271.811578203682 + 21 +263.98479355943255 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +271.811578203682 + 20 +263.98479355943255 + 30 +0.0 + 11 +293.65577494431847 + 21 +208.102497 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +328.65577494431847 + 20 +286.20499375906655 + 30 +0.0 + 11 +293.65577494431847 + 21 +208.102497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +309.9673814630455 + 20 +278.8997652859099 + 30 +0.0 + 11 +328.65577494431847 + 21 +286.20499375906655 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +271.811578203682 + 20 +263.98479355943255 + 30 +0.0 + 11 +309.9673814630455 + 21 +278.8997652859099 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +293.65577494431847 + 20 +208.10249699999997 + 30 +0.0 + 11 +328.65577494431847 + 21 +208.10249699999997 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +328.65577494431847 + 20 +208.10249699999997 + 30 +0.0 + 11 +363.65577494431847 + 21 +208.10249699999997 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +328.65577494431847 + 20 +286.20499375906655 + 30 +0.0 + 11 +363.65577494431847 + 21 +208.10249699999997 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +347.3441684255914 + 20 +278.89976528590984 + 30 +0.0 + 11 +385.49997168495497 + 21 +263.98479355943255 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +328.65577494431847 + 20 +286.20499375906655 + 30 +0.0 + 11 +347.3441684255914 + 21 +278.89976528590984 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +363.65577494431847 + 20 +208.10249699999997 + 30 +0.0 + 11 +385.49997168495497 + 21 +263.98479355943255 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +363.65577494431847 + 20 +208.10249699999997 + 30 +0.0 + 11 +423.65577494431847 + 21 +249.06982183295528 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +385.49997168495497 + 20 +263.98479355943255 + 30 +0.0 + 11 +423.65577494431847 + 21 +249.06982183295528 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +423.65577494431847 + 20 +208.10249699999997 + 30 +0.0 + 11 +423.65577494431847 + 21 +249.06982183295526 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +363.65577494431847 + 20 +208.10249699999997 + 30 +0.0 + 11 +423.65577494431847 + 21 +208.10249699999997 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +437.31154988863693 + 20 +208.10249699999997 + 30 +0.0 + 11 +423.65577494431847 + 21 +208.10249699999997 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +437.31154988863693 + 20 +249.06982183295526 + 30 +0.0 + 11 +437.31154988863693 + 21 +208.10249699999997 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +423.65577494431847 + 20 +249.06982183295526 + 30 +0.0 + 11 +437.31154988863693 + 21 +249.06982183295526 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +423.65577494431847 + 20 +208.10249699999997 + 30 +0.0 + 11 +423.6557749443185 + 21 +78.102497 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +423.6557749443185 + 20 +78.10249700000001 + 30 +0.0 + 11 +363.6557749443185 + 21 +78.10249700000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +423.6557749443185 + 20 +37.13517216704474 + 30 +0.0 + 11 +363.6557749443185 + 21 +78.10249700000001 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +3 + 8 +0 + 10 +423.6557749443185 + 20 +37.13517216704474 + 30 +0.0 + 11 +423.6557749443185 + 21 +78.10249700000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +423.65577494431847 + 20 +37.13517216704476 + 30 +0.0 + 11 +385.49997168495497 + 21 +22.220200440567485 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +385.49997168495497 + 20 +22.220200440567485 + 30 +0.0 + 11 +363.65577494431847 + 21 +78.10249700000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +328.6557749443185 + 20 +2.4093347406051185e-07 + 30 +0.0 + 11 +363.6557749443185 + 21 +78.10249700000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +347.3441684255914 + 20 +7.305228714090191 + 30 +0.0 + 11 +328.6557749443185 + 21 +2.4093347406051185e-07 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +385.49997168495497 + 20 +22.220200440567485 + 30 +0.0 + 11 +347.3441684255914 + 21 +7.305228714090191 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +437.31154988863693 + 20 +37.13517216704474 + 30 +0.0 + 11 +423.6557749443185 + 21 +37.13517216704474 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +437.31154988863693 + 20 +78.10249700000001 + 30 +0.0 + 11 +437.31154988863693 + 21 +37.13517216704474 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +423.6557749443185 + 20 +78.10249700000001 + 30 +0.0 + 11 +437.31154988863693 + 21 +78.10249700000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +220.00000000000003 + 20 +249.06982183295528 + 30 +0.0 + 11 +233.65577494431844 + 21 +249.06982183295528 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +220.00000000000003 + 20 +208.102497 + 30 +0.0 + 11 +220.00000000000003 + 21 +249.06982183295528 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +233.65577494431844 + 20 +208.102497 + 30 +0.0 + 11 +220.00000000000003 + 21 +208.102497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +301.30138369696056 + 20 +21.957662187001805 + 30 +0.0 + 11 +288.1170968058442 + 21 +27.111354401999538 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +288.1170968058442 + 20 +27.111354401999538 + 30 +0.0 + 11 +287.93506183300553 + 21 +26.645668597337593 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.93506183300553 + 20 +26.645668597337593 + 30 +0.0 + 11 +301.119348724122 + 21 +21.49197638233986 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +301.119348724122 + 20 +21.49197638233986 + 30 +0.0 + 11 +301.30138369696056 + 21 +21.957662187001805 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +223.41394373607963 + 20 +50.790947111363174 + 30 +0.0 + 11 +230.2418312082388 + 21 +50.790947111363174 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +230.2418312082388 + 20 +50.790947111363174 + 30 +0.0 + 11 +230.2418312082388 + 21 +64.4467220556816 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +230.2418312082388 + 20 +64.4467220556816 + 30 +0.0 + 11 +223.41394373607963 + 21 +64.4467220556816 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +288.1170968058442 + 20 +259.0936395980005 + 30 +0.0 + 11 +301.30138369696056 + 21 +264.2473318129982 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +301.30138369696056 + 20 +264.2473318129982 + 30 +0.0 + 11 +301.119348724122 + 21 +264.7130176176602 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +301.119348724122 + 20 +264.7130176176602 + 30 +0.0 + 11 +287.93506183300553 + 21 +259.55932540266247 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +287.93506183300553 + 20 +259.55932540266247 + 30 +0.0 + 11 +288.1170968058442 + 21 +259.0936395980005 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +356.01016619167626 + 20 +264.2473318129982 + 30 +0.0 + 11 +369.1944530827928 + 21 +259.0936395980005 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +369.1944530827928 + 20 +259.0936395980005 + 30 +0.0 + 11 +369.3764880556314 + 21 +259.5593254026624 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +369.3764880556314 + 20 +259.5593254026624 + 30 +0.0 + 11 +356.192201164515 + 21 +264.71301761766017 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +356.192201164515 + 20 +264.71301761766017 + 30 +0.0 + 11 +356.01016619167626 + 21 +264.2473318129982 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +433.8976061525573 + 20 +235.41404688863682 + 30 +0.0 + 11 +427.06971868039807 + 21 +235.41404688863682 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +427.06971868039807 + 20 +235.41404688863682 + 30 +0.0 + 11 +427.06971868039807 + 21 +221.7582719443184 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +427.06971868039807 + 20 +221.7582719443184 + 30 +0.0 + 11 +433.8976061525573 + 21 +221.7582719443184 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +369.1944530827928 + 20 +27.11135440199955 + 30 +0.0 + 11 +356.01016619167626 + 21 +21.957662187001834 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +356.01016619167626 + 20 +21.957662187001834 + 30 +0.0 + 11 +356.192201164515 + 21 +21.491976382339885 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +356.192201164515 + 20 +21.491976382339885 + 30 +0.0 + 11 +369.37648805563146 + 21 +26.645668597337608 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +369.37648805563146 + 20 +26.645668597337608 + 30 +0.0 + 11 +369.1944530827928 + 21 +27.11135440199955 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +433.8976061525573 + 20 +64.44672205568159 + 30 +0.0 + 11 +427.06971868039807 + 21 +64.44672205568159 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +427.06971868039807 + 20 +64.44672205568159 + 30 +0.0 + 11 +427.06971868039807 + 21 +50.790947111363174 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +427.06971868039807 + 20 +50.790947111363174 + 30 +0.0 + 11 +433.8976061525573 + 21 +50.790947111363174 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +223.41394373607963 + 20 +221.75827194431847 + 30 +0.0 + 11 +230.2418312082388 + 21 +221.75827194431847 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +230.2418312082388 + 20 +221.75827194431847 + 30 +0.0 + 11 +230.2418312082388 + 21 +235.41404688863685 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +230.2418312082388 + 20 +235.41404688863685 + 30 +0.0 + 11 +223.41394373607963 + 21 +235.41404688863685 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +480.31154988863693 + 20 +131.102497 + 30 +0.0 + 11 +541.3115498886368 + 21 +131.102497 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +541.3115498886368 + 20 +131.102497 + 30 +0.0 + 11 +541.3115498886368 + 21 +155.10249700000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +541.3115498886368 + 20 +155.10249700000003 + 30 +0.0 + 11 +480.31154988863693 + 21 +155.10249700000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +480.31154988863693 + 20 +155.10249700000003 + 30 +0.0 + 11 +480.31154988863693 + 21 +131.102497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +480.31154988863693 + 20 +124.10249700000001 + 30 +0.0 + 11 +480.31154988863693 + 21 +131.102497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +540.3115498886368 + 20 +124.10249700000001 + 30 +0.0 + 11 +480.31154988863693 + 21 +124.10249700000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +540.3115498886368 + 20 +131.102497 + 30 +0.0 + 11 +540.3115498886368 + 21 +124.10249700000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +548.3115498886369 + 20 +131.102497 + 30 +0.0 + 11 +541.3115498886368 + 21 +131.102497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +548.3115498886369 + 20 +155.10249700000003 + 30 +0.0 + 11 +548.3115498886369 + 21 +131.102497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +541.3115498886368 + 20 +155.10249700000003 + 30 +0.0 + 11 +548.3115498886369 + 21 +155.10249700000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +541.3115498886368 + 20 +155.10249700000003 + 30 +0.0 + 11 +541.3115498886368 + 21 +216.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +481.31154988863693 + 20 +216.10249700000003 + 30 +0.0 + 11 +541.3115498886368 + 21 +216.10249700000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +481.31154988863693 + 20 +155.10249700000003 + 30 +0.0 + 11 +481.31154988863693 + 21 +216.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +565.3115498886369 + 20 +155.10249700000003 + 30 +0.0 + 11 +541.3115498886368 + 21 +155.10249700000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +565.3115498886369 + 20 +155.10249700000003 + 30 +0.0 + 11 +565.3115498886369 + 21 +216.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +541.3115498886368 + 20 +216.10249700000003 + 30 +0.0 + 11 +565.3115498886369 + 21 +216.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +625.3115498886368 + 20 +155.10249700000003 + 30 +0.0 + 11 +565.3115498886369 + 21 +155.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +625.3115498886368 + 20 +216.10249700000003 + 30 +0.0 + 11 +625.3115498886368 + 21 +155.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +565.3115498886369 + 20 +216.10249700000003 + 30 +0.0 + 11 +625.3115498886368 + 21 +216.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +481.31154988863693 + 20 +155.10249700000003 + 30 +0.0 + 11 +457.3115498886369 + 21 +155.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +457.3115498886369 + 20 +216.10249700000003 + 30 +0.0 + 11 +481.31154988863693 + 21 +216.10249700000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +457.3115498886369 + 20 +216.10249700000003 + 30 +0.0 + 11 +457.3115498886369 + 21 +155.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +447.31154988863693 + 20 +216.10249700000003 + 30 +0.0 + 11 +457.3115498886369 + 21 +216.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +447.31154988863693 + 20 +155.10249700000003 + 30 +0.0 + 11 +447.31154988863693 + 21 +216.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +457.3115498886369 + 20 +155.10249700000003 + 30 +0.0 + 11 +447.31154988863693 + 21 +155.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +473.31154988863693 + 20 +155.10249700000003 + 30 +0.0 + 11 +480.31154988863693 + 21 +155.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +473.31154988863693 + 20 +131.102497 + 30 +0.0 + 11 +473.31154988863693 + 21 +155.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +480.31154988863693 + 20 +131.102497 + 30 +0.0 + 11 +473.31154988863693 + 21 +131.102497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +529.4024589795459 + 20 +125.85249700000001 + 30 +0.0 + 11 +532.902458979546 + 21 +125.85249700000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +532.902458979546 + 20 +125.85249700000001 + 30 +0.0 + 11 +529.4024589795459 + 21 +129.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +529.4024589795459 + 20 +129.35249700000003 + 30 +0.0 + 11 +518.4933680704552 + 21 +129.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +518.4933680704552 + 20 +129.35249700000003 + 30 +0.0 + 11 +514.9933680704551 + 21 +125.85249700000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +514.9933680704551 + 20 +125.85249700000001 + 30 +0.0 + 11 +518.4933680704552 + 21 +125.85249700000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +502.12973170681875 + 20 +125.85249700000001 + 30 +0.0 + 11 +505.62973170681875 + 21 +125.85249700000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +505.62973170681875 + 20 +125.85249700000001 + 30 +0.0 + 11 +502.12973170681875 + 21 +129.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +502.12973170681875 + 20 +129.35249700000003 + 30 +0.0 + 11 +491.22064079772787 + 21 +129.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +491.22064079772787 + 20 +129.35249700000003 + 30 +0.0 + 11 +487.72064079772787 + 21 +125.85249700000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +487.72064079772787 + 20 +125.85249700000001 + 30 +0.0 + 11 +491.22064079772787 + 21 +125.85249700000001 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +546.5615498886368 + 20 +147.10249700000003 + 30 +0.0 + 11 +543.0615498886369 + 21 +147.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.0615498886369 + 20 +147.10249700000003 + 30 +0.0 + 11 +543.0615498886369 + 21 +139.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.0615498886369 + 20 +139.10249700000003 + 30 +0.0 + 11 +546.5615498886368 + 21 +139.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +488.81154988863693 + 20 +206.60249700000003 + 30 +0.0 + 11 +488.81154988863693 + 21 +188.60249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +488.81154988863693 + 20 +188.60249700000003 + 30 +0.0 + 11 +523.8115498886369 + 21 +188.60249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +523.8115498886369 + 20 +188.60249700000003 + 30 +0.0 + 11 +523.8115498886369 + 21 +206.60249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +523.8115498886369 + 20 +206.60249700000003 + 30 +0.0 + 11 +488.81154988863693 + 21 +206.60249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +541.8115498886369 + 20 +168.35249700000003 + 30 +0.0 + 11 +541.8115498886369 + 21 +165.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +541.8115498886369 + 20 +165.35249700000003 + 30 +0.0 + 11 +544.8115498886368 + 21 +165.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +544.8115498886368 + 20 +165.35249700000003 + 30 +0.0 + 11 +544.8115498886368 + 21 +168.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +544.8115498886368 + 20 +168.35249700000003 + 30 +0.0 + 11 +541.8115498886369 + 21 +168.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +167.352497 + 30 +0.0 + 11 +562.8115498886368 + 21 +166.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +166.35249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +166.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +166.35249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +167.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +167.352497 + 30 +0.0 + 11 +562.8115498886368 + 21 +167.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +169.85249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +168.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +168.85249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +168.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +168.85249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +169.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +169.85249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +169.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +169.85249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +168.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +168.85249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +168.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +168.85249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +169.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +169.85249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +169.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +172.35249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +171.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +171.352497 + 30 +0.0 + 11 +543.8115498886368 + 21 +171.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +171.352497 + 30 +0.0 + 11 +543.8115498886368 + 21 +172.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +172.35249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +172.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +172.35249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +171.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +171.352497 + 30 +0.0 + 11 +563.8115498886368 + 21 +171.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +171.352497 + 30 +0.0 + 11 +563.8115498886368 + 21 +172.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +172.35249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +172.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +174.85249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +173.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +173.852497 + 30 +0.0 + 11 +543.8115498886368 + 21 +173.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +173.852497 + 30 +0.0 + 11 +543.8115498886368 + 21 +174.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +174.85249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +174.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +174.85249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +173.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +173.852497 + 30 +0.0 + 11 +563.8115498886368 + 21 +173.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +173.852497 + 30 +0.0 + 11 +563.8115498886368 + 21 +174.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +174.85249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +174.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +177.35249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +176.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +176.352497 + 30 +0.0 + 11 +543.8115498886368 + 21 +176.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +176.352497 + 30 +0.0 + 11 +543.8115498886368 + 21 +177.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +177.35249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +177.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +177.35249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +176.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +176.352497 + 30 +0.0 + 11 +563.8115498886368 + 21 +176.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +176.352497 + 30 +0.0 + 11 +563.8115498886368 + 21 +177.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +177.35249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +177.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +179.85249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +178.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +178.85249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +178.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +178.85249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +179.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +179.85249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +179.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +179.85249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +178.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +178.85249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +178.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +178.85249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +179.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +179.85249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +179.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +182.35249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +181.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +181.35249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +181.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +181.35249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +182.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +182.35249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +182.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +182.35249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +181.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +181.35249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +181.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +181.35249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +182.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +182.35249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +182.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +184.85249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +183.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +183.85249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +183.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +183.85249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +184.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +184.85249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +184.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +184.85249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +183.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +183.85249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +183.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +183.85249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +184.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +184.85249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +184.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +187.352497 + 30 +0.0 + 11 +542.8115498886368 + 21 +186.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +186.35249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +186.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +186.35249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +187.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +187.352497 + 30 +0.0 + 11 +542.8115498886368 + 21 +187.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +187.352497 + 30 +0.0 + 11 +562.8115498886368 + 21 +186.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +186.35249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +186.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +186.35249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +187.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +187.352497 + 30 +0.0 + 11 +562.8115498886368 + 21 +187.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +189.852497 + 30 +0.0 + 11 +542.8115498886368 + 21 +188.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +188.85249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +188.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +188.85249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +189.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +189.852497 + 30 +0.0 + 11 +542.8115498886368 + 21 +189.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +189.852497 + 30 +0.0 + 11 +562.8115498886368 + 21 +188.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +188.85249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +188.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +188.85249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +189.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +189.852497 + 30 +0.0 + 11 +562.8115498886368 + 21 +189.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +192.352497 + 30 +0.0 + 11 +542.8115498886368 + 21 +191.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +191.35249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +191.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +191.35249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +192.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +192.352497 + 30 +0.0 + 11 +542.8115498886368 + 21 +192.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +192.352497 + 30 +0.0 + 11 +562.8115498886368 + 21 +191.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +191.35249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +191.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +191.35249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +192.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +192.352497 + 30 +0.0 + 11 +562.8115498886368 + 21 +192.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +194.85249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +193.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +193.85249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +193.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +193.85249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +194.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +194.85249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +194.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +194.85249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +193.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +193.85249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +193.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +193.85249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +194.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +194.85249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +194.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +197.35249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +196.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +196.35249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +196.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +196.35249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +197.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +197.35249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +197.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +197.35249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +196.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +196.35249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +196.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +196.35249700000003 + 30 +0.0 + 11 +563.8115498886368 + 21 +197.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +197.35249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +197.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +199.85249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +198.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +198.852497 + 30 +0.0 + 11 +543.8115498886368 + 21 +198.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +198.852497 + 30 +0.0 + 11 +543.8115498886368 + 21 +199.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +199.85249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +199.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +199.85249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +198.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +198.852497 + 30 +0.0 + 11 +563.8115498886368 + 21 +198.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +198.852497 + 30 +0.0 + 11 +563.8115498886368 + 21 +199.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +199.85249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +199.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +202.35249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +201.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +201.352497 + 30 +0.0 + 11 +543.8115498886368 + 21 +201.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +201.352497 + 30 +0.0 + 11 +543.8115498886368 + 21 +202.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +202.35249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +202.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +202.35249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +201.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +562.8115498886368 + 20 +201.352497 + 30 +0.0 + 11 +563.8115498886368 + 21 +201.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +201.352497 + 30 +0.0 + 11 +563.8115498886368 + 21 +202.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +563.8115498886368 + 20 +202.35249700000003 + 30 +0.0 + 11 +562.8115498886368 + 21 +202.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +204.85249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +203.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +542.8115498886368 + 20 +203.85249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +203.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +203.85249700000003 + 30 +0.0 + 11 +543.8115498886368 + 21 +204.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +543.8115498886368 + 20 +204.85249700000003 + 30 +0.0 + 11 +542.8115498886368 + 21 +204.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +561.8115498886368 + 20 +205.852497 + 30 +0.0 + 11 +561.8115498886368 + 21 +202.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +561.8115498886368 + 20 +202.85249700000003 + 30 +0.0 + 11 +564.8115498886369 + 21 +202.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +564.8115498886369 + 20 +202.85249700000003 + 30 +0.0 + 11 +564.8115498886369 + 21 +205.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +564.8115498886369 + 20 +205.852497 + 30 +0.0 + 11 +561.8115498886368 + 21 +205.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +557.5615498886368 + 20 +162.852497 + 30 +0.0 + 11 +549.0615498886368 + 21 +162.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +549.0615498886368 + 20 +162.852497 + 30 +0.0 + 11 +549.0615498886368 + 21 +162.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +549.0615498886368 + 20 +162.352497 + 30 +0.0 + 11 +557.5615498886368 + 21 +162.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +557.5615498886368 + 20 +162.352497 + 30 +0.0 + 11 +557.5615498886368 + 21 +162.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +549.0615498886368 + 20 +210.60249700000003 + 30 +0.0 + 11 +557.5615498886368 + 21 +210.60249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +557.5615498886368 + 20 +210.60249700000003 + 30 +0.0 + 11 +557.5615498886368 + 21 +211.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +557.5615498886368 + 20 +211.10249700000003 + 30 +0.0 + 11 +549.0615498886368 + 21 +211.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +549.0615498886368 + 20 +211.10249700000003 + 30 +0.0 + 11 +549.0615498886368 + 21 +210.60249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +580.3115498886368 + 20 +206.10249700000003 + 30 +0.0 + 11 +580.3115498886368 + 21 +193.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +580.3115498886368 + 20 +193.10249700000003 + 30 +0.0 + 11 +610.3115498886369 + 21 +193.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +610.3115498886369 + 20 +193.10249700000003 + 30 +0.0 + 11 +610.3115498886369 + 21 +206.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +610.3115498886369 + 20 +206.10249700000003 + 30 +0.0 + 11 +580.3115498886368 + 21 +206.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +587.3797317068187 + 20 +160.602497 + 30 +0.0 + 11 +575.9706407977279 + 21 +160.602497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +575.9706407977279 + 20 +160.602497 + 30 +0.0 + 11 +575.9706407977279 + 21 +160.102497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +575.9706407977279 + 20 +160.102497 + 30 +0.0 + 11 +587.3797317068187 + 21 +160.102497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +587.3797317068187 + 20 +160.102497 + 30 +0.0 + 11 +587.3797317068187 + 21 +160.602497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +614.6524589795459 + 20 +160.602497 + 30 +0.0 + 11 +603.2433680704552 + 21 +160.602497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +603.2433680704552 + 20 +160.602497 + 30 +0.0 + 11 +603.2433680704552 + 21 +160.102497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +603.2433680704552 + 20 +160.102497 + 30 +0.0 + 11 +614.6524589795459 + 21 +160.102497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +614.6524589795459 + 20 +160.102497 + 30 +0.0 + 11 +614.6524589795459 + 21 +160.602497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +617.5615498886369 + 20 +177.53431518181822 + 30 +0.0 + 11 +617.5615498886369 + 21 +165.9434060909091 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +617.5615498886369 + 20 +165.9434060909091 + 30 +0.0 + 11 +618.0615498886369 + 21 +165.9434060909091 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +618.0615498886369 + 20 +165.9434060909091 + 30 +0.0 + 11 +618.0615498886369 + 21 +177.53431518181822 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +618.0615498886369 + 20 +177.53431518181822 + 30 +0.0 + 11 +617.5615498886369 + 21 +177.53431518181822 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +617.5615498886369 + 20 +205.26158790909093 + 30 +0.0 + 11 +617.5615498886369 + 21 +193.67067881818187 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +617.5615498886369 + 20 +193.67067881818187 + 30 +0.0 + 11 +618.0615498886369 + 21 +193.67067881818187 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +618.0615498886369 + 20 +193.67067881818187 + 30 +0.0 + 11 +618.0615498886369 + 21 +205.26158790909093 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +618.0615498886369 + 20 +205.26158790909093 + 30 +0.0 + 11 +617.5615498886369 + 21 +205.26158790909093 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +457.81154988863693 + 20 +168.35249700000003 + 30 +0.0 + 11 +457.81154988863693 + 21 +165.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +457.81154988863693 + 20 +165.35249700000003 + 30 +0.0 + 11 +460.81154988863693 + 21 +165.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +460.81154988863693 + 20 +165.35249700000003 + 30 +0.0 + 11 +460.81154988863693 + 21 +168.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +460.81154988863693 + 20 +168.35249700000003 + 30 +0.0 + 11 +457.81154988863693 + 21 +168.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +167.352497 + 30 +0.0 + 11 +478.81154988863693 + 21 +166.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +166.35249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +166.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +166.35249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +167.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +167.352497 + 30 +0.0 + 11 +478.81154988863693 + 21 +167.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +169.85249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +168.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +168.85249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +168.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +168.85249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +169.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +169.85249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +169.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +169.85249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +168.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +168.85249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +168.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +168.85249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +169.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +169.85249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +169.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +172.35249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +171.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +171.352497 + 30 +0.0 + 11 +459.81154988863693 + 21 +171.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +171.352497 + 30 +0.0 + 11 +459.81154988863693 + 21 +172.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +172.35249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +172.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +172.35249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +171.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +171.352497 + 30 +0.0 + 11 +479.81154988863693 + 21 +171.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +171.352497 + 30 +0.0 + 11 +479.81154988863693 + 21 +172.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +172.35249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +172.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +174.85249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +173.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +173.852497 + 30 +0.0 + 11 +459.81154988863693 + 21 +173.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +173.852497 + 30 +0.0 + 11 +459.81154988863693 + 21 +174.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +174.85249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +174.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +174.85249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +173.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +173.852497 + 30 +0.0 + 11 +479.81154988863693 + 21 +173.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +173.852497 + 30 +0.0 + 11 +479.81154988863693 + 21 +174.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +174.85249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +174.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +177.35249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +176.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +176.352497 + 30 +0.0 + 11 +459.81154988863693 + 21 +176.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +176.352497 + 30 +0.0 + 11 +459.81154988863693 + 21 +177.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +177.35249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +177.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +177.35249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +176.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +176.352497 + 30 +0.0 + 11 +479.81154988863693 + 21 +176.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +176.352497 + 30 +0.0 + 11 +479.81154988863693 + 21 +177.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +177.35249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +177.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +179.85249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +178.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +178.85249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +178.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +178.85249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +179.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +179.85249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +179.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +179.85249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +178.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +178.85249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +178.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +178.85249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +179.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +179.85249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +179.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +182.35249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +181.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +181.35249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +181.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +181.35249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +182.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +182.35249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +182.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +182.35249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +181.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +181.35249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +181.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +181.35249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +182.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +182.35249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +182.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +184.85249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +183.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +183.85249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +183.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +183.85249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +184.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +184.85249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +184.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +184.85249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +183.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +183.85249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +183.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +183.85249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +184.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +184.85249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +184.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +187.352497 + 30 +0.0 + 11 +458.81154988863693 + 21 +186.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +186.35249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +186.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +186.35249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +187.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +187.352497 + 30 +0.0 + 11 +458.81154988863693 + 21 +187.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +187.352497 + 30 +0.0 + 11 +478.81154988863693 + 21 +186.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +186.35249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +186.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +186.35249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +187.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +187.352497 + 30 +0.0 + 11 +478.81154988863693 + 21 +187.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +189.852497 + 30 +0.0 + 11 +458.81154988863693 + 21 +188.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +188.85249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +188.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +188.85249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +189.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +189.852497 + 30 +0.0 + 11 +458.81154988863693 + 21 +189.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +189.852497 + 30 +0.0 + 11 +478.81154988863693 + 21 +188.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +188.85249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +188.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +188.85249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +189.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +189.852497 + 30 +0.0 + 11 +478.81154988863693 + 21 +189.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +192.352497 + 30 +0.0 + 11 +458.81154988863693 + 21 +191.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +191.35249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +191.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +191.35249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +192.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +192.352497 + 30 +0.0 + 11 +458.81154988863693 + 21 +192.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +192.352497 + 30 +0.0 + 11 +478.81154988863693 + 21 +191.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +191.35249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +191.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +191.35249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +192.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +192.352497 + 30 +0.0 + 11 +478.81154988863693 + 21 +192.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +194.85249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +193.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +193.85249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +193.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +193.85249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +194.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +194.85249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +194.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +194.85249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +193.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +193.85249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +193.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +193.85249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +194.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +194.85249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +194.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +197.35249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +196.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +196.35249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +196.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +196.35249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +197.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +197.35249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +197.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +197.35249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +196.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +196.35249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +196.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +196.35249700000003 + 30 +0.0 + 11 +479.81154988863693 + 21 +197.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +197.35249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +197.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +199.85249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +198.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +198.852497 + 30 +0.0 + 11 +459.81154988863693 + 21 +198.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +198.852497 + 30 +0.0 + 11 +459.81154988863693 + 21 +199.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +199.85249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +199.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +199.85249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +198.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +198.852497 + 30 +0.0 + 11 +479.81154988863693 + 21 +198.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +198.852497 + 30 +0.0 + 11 +479.81154988863693 + 21 +199.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +199.85249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +199.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +202.35249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +201.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +201.352497 + 30 +0.0 + 11 +459.81154988863693 + 21 +201.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +201.352497 + 30 +0.0 + 11 +459.81154988863693 + 21 +202.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +202.35249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +202.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +202.35249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +201.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.81154988863693 + 20 +201.352497 + 30 +0.0 + 11 +479.81154988863693 + 21 +201.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +201.352497 + 30 +0.0 + 11 +479.81154988863693 + 21 +202.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +479.81154988863693 + 20 +202.35249700000003 + 30 +0.0 + 11 +478.81154988863693 + 21 +202.35249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +204.85249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +203.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +458.81154988863693 + 20 +203.85249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +203.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +203.85249700000003 + 30 +0.0 + 11 +459.81154988863693 + 21 +204.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +459.81154988863693 + 20 +204.85249700000003 + 30 +0.0 + 11 +458.81154988863693 + 21 +204.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +477.81154988863693 + 20 +205.852497 + 30 +0.0 + 11 +477.81154988863693 + 21 +202.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +477.81154988863693 + 20 +202.85249700000003 + 30 +0.0 + 11 +480.81154988863693 + 21 +202.85249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +480.81154988863693 + 20 +202.85249700000003 + 30 +0.0 + 11 +480.81154988863693 + 21 +205.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +480.81154988863693 + 20 +205.852497 + 30 +0.0 + 11 +477.81154988863693 + 21 +205.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +473.56154988863693 + 20 +162.852497 + 30 +0.0 + 11 +465.06154988863693 + 21 +162.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +465.06154988863693 + 20 +162.852497 + 30 +0.0 + 11 +465.06154988863693 + 21 +162.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +465.06154988863693 + 20 +162.352497 + 30 +0.0 + 11 +473.56154988863693 + 21 +162.352497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +473.56154988863693 + 20 +162.352497 + 30 +0.0 + 11 +473.56154988863693 + 21 +162.852497 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +465.06154988863693 + 20 +210.60249700000003 + 30 +0.0 + 11 +473.56154988863693 + 21 +210.60249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +473.56154988863693 + 20 +210.60249700000003 + 30 +0.0 + 11 +473.56154988863693 + 21 +211.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +473.56154988863693 + 20 +211.10249700000003 + 30 +0.0 + 11 +465.06154988863693 + 21 +211.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +465.06154988863693 + 20 +211.10249700000003 + 30 +0.0 + 11 +465.06154988863693 + 21 +210.60249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +449.81154988863693 + 20 +166.1934060909091 + 30 +0.0 + 11 +454.81154988863693 + 21 +166.1934060909091 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +454.81154988863693 + 20 +166.1934060909091 + 30 +0.0 + 11 +454.81154988863693 + 21 +177.28431518181822 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +454.81154988863693 + 20 +177.28431518181822 + 30 +0.0 + 11 +449.81154988863693 + 21 +177.28431518181822 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +449.81154988863693 + 20 +193.92067881818187 + 30 +0.0 + 11 +454.81154988863693 + 21 +193.92067881818187 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +454.81154988863693 + 20 +193.92067881818187 + 30 +0.0 + 11 +454.81154988863693 + 21 +205.01158790909093 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +454.81154988863693 + 20 +205.01158790909093 + 30 +0.0 + 11 +449.81154988863693 + 21 +205.01158790909093 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +475.06154988863693 + 20 +139.10249700000003 + 30 +0.0 + 11 +478.56154988863693 + 21 +139.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.56154988863693 + 20 +139.10249700000003 + 30 +0.0 + 11 +478.56154988863693 + 21 +147.10249700000003 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +478.56154988863693 + 20 +147.10249700000003 + 30 +0.0 + 11 +475.06154988863693 + 21 +147.10249700000003 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +645.3115498886368 + 20 +125.03318600040735 + 30 +0.0 + 11 +706.3115498886369 + 21 +125.03318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.3115498886369 + 20 +161.17180799959266 + 30 +0.0 + 11 +706.3115498886369 + 21 +125.03318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +645.3115498886368 + 20 +161.17180799959266 + 30 +0.0 + 11 +706.3115498886369 + 21 +161.17180799959266 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +645.3115498886368 + 20 +125.03318600040735 + 30 +0.0 + 11 +645.3115498886368 + 21 +161.17180799959266 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +706.3115498886369 + 20 +101.03318600040734 + 30 +0.0 + 11 +645.3115498886368 + 21 +101.03318600040734 + 31 +0.0 + 0 +LINE + 6 +DOTTED + 62 +1 + 8 +0 + 10 +706.3115498886369 + 20 +101.03318600040734 + 30 +0.0 + 11 +706.3115498886369 + 21 +125.03318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +645.3115498886368 + 20 +64.89456400122205 + 30 +0.0 + 11 +645.3115498886368 + 21 +101.03318600040734 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.3115498886369 + 20 +64.89456400122205 + 30 +0.0 + 11 +645.3115498886368 + 21 +64.89456400122205 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.3115498886369 + 20 +101.03318600040734 + 30 +0.0 + 11 +706.3115498886369 + 21 +64.89456400122205 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +716.3115498886368 + 20 +101.03318600040734 + 30 +0.0 + 11 +706.3115498886369 + 21 +101.03318600040734 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +716.3115498886368 + 20 +125.03318600040735 + 30 +0.0 + 11 +716.3115498886368 + 21 +101.03318600040734 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +706.3115498886369 + 20 +125.03318600040735 + 30 +0.0 + 11 +716.3115498886368 + 21 +125.03318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +635.3115498886368 + 20 +125.03318600040735 + 30 +0.0 + 11 +645.3115498886368 + 21 +125.03318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +635.3115498886368 + 20 +101.03318600040734 + 30 +0.0 + 11 +635.3115498886368 + 21 +125.03318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +645.3115498886368 + 20 +101.03318600040734 + 30 +0.0 + 11 +635.3115498886368 + 21 +101.03318600040734 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +663.3115498886368 + 20 +106.53318600040735 + 30 +0.0 + 11 +674.3115498886369 + 21 +106.53318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +674.3115498886369 + 20 +106.53318600040735 + 30 +0.0 + 11 +674.3115498886369 + 21 +119.53318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +674.3115498886369 + 20 +119.53318600040735 + 30 +0.0 + 11 +663.3115498886368 + 21 +119.53318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +663.3115498886368 + 20 +119.53318600040735 + 30 +0.0 + 11 +663.3115498886368 + 21 +106.53318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +694.8115498886369 + 20 +108.03318600040735 + 30 +0.0 + 11 +700.8115498886369 + 21 +108.03318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +700.8115498886369 + 20 +108.03318600040735 + 30 +0.0 + 11 +700.8115498886369 + 21 +118.03318600040734 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +700.8115498886369 + 20 +118.03318600040734 + 30 +0.0 + 11 +694.8115498886369 + 21 +118.03318600040734 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +694.8115498886369 + 20 +118.03318600040734 + 30 +0.0 + 11 +694.8115498886369 + 21 +108.03318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +713.8115498886369 + 20 +117.03318600040735 + 30 +0.0 + 11 +708.8115498886368 + 21 +117.03318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +708.8115498886368 + 20 +117.03318600040735 + 30 +0.0 + 11 +708.8115498886368 + 21 +109.03318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +708.8115498886368 + 20 +109.03318600040735 + 30 +0.0 + 11 +713.8115498886369 + 21 +109.03318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +637.8115498886369 + 20 +109.03318600040735 + 30 +0.0 + 11 +642.8115498886368 + 21 +109.03318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +642.8115498886368 + 20 +109.03318600040735 + 30 +0.0 + 11 +642.8115498886368 + 21 +117.03318600040735 + 31 +0.0 + 0 +LINE + 62 +5 + 8 +0 + 10 +642.8115498886368 + 20 +117.03318600040735 + 30 +0.0 + 11 +637.8115498886369 + 21 +117.03318600040735 + 31 +0.0 + 0 +ENDSEC + 0 +EOF diff --git a/rocolib/output/BoatWithStack/tree.png b/rocolib/output/BoatWithStack/tree.png new file mode 100644 index 0000000000000000000000000000000000000000..85ed5bb2b7f6071a3dfb61c636496df7a968e59a Binary files /dev/null and b/rocolib/output/BoatWithStack/tree.png differ