From 2d95e19048bd4969c9c589b17ec74ed31573556a Mon Sep 17 00:00:00 2001 From: Nicholas Boone Date: Tue, 13 May 2025 17:03:52 -0400 Subject: [PATCH] Gears DLC (free) (#6835) * Gears DLC (free) Using the involuteCircular fn to create a variety of cylindrical gearsets * Delete public/kcl-samples/gear directory * Update main.kcl fixing gear meshing * new samples Signed-off-by: Jess Frazelle * add link Signed-off-by: Jess Frazelle --------- Signed-off-by: Jess Frazelle Co-authored-by: Jess Frazelle Co-authored-by: Jess Frazelle --- README.md | 2 +- public/kcl-samples/README.md | 14 +- public/kcl-samples/gear/main.kcl | 112 - public/kcl-samples/helical-gear/main.kcl | 99 + .../helical-planetary-gearset/main.kcl | 197 + public/kcl-samples/herringbone-gear/main.kcl | 84 + .../herringbone-planetary-gearset/main.kcl | 186 + public/kcl-samples/manifest.json | 70 +- .../kcl-samples/screenshots/helical-gear.png | Bin 0 -> 103562 bytes .../screenshots/helical-planetary-gearset.png | Bin 0 -> 142265 bytes .../screenshots/herringbone-gear.png | Bin 0 -> 150895 bytes .../herringbone-planetary-gearset.png | Bin 0 -> 160390 bytes public/kcl-samples/screenshots/spur-gear.png | Bin 0 -> 63416 bytes .../screenshots/spur-reduction-gearset.png | Bin 0 -> 63558 bytes public/kcl-samples/spur-gear/main.kcl | 76 + .../spur-reduction-gearset/main.kcl | 70 + .../artifact_graph_flowchart.snap.md | 16 +- .../kcl_samples/gear/artifact_commands.snap | 4221 - .../gear/artifact_graph_flowchart.snap.md | 526 - rust/kcl-lib/tests/kcl_samples/gear/ast.snap | 4842 - rust/kcl-lib/tests/kcl_samples/gear/ops.snap | 32760 ------ .../kcl_samples/gear/program_memory.snap | 89454 ---------------- .../tests/kcl_samples/gear/rendered_model.png | Bin 90082 -> 0 bytes .../helical-gear/artifact_commands.snap | 4814 + .../artifact_graph_flowchart.snap | 6 + .../artifact_graph_flowchart.snap.md | 138 + .../tests/kcl_samples/helical-gear/ast.snap | 3582 + .../tests/kcl_samples/helical-gear/ops.snap | 830 + .../helical-gear/program_memory.snap | 10 + .../helical-gear/rendered_model.png | Bin 0 -> 103562 bytes .../artifact_commands.snap | 7333 ++ .../artifact_graph_flowchart.snap | 6 + .../artifact_graph_flowchart.snap.md | 383 + .../helical-planetary-gearset/ast.snap | 6871 ++ .../helical-planetary-gearset/ops.snap | 2743 + .../program_memory.snap | 32 + .../rendered_model.png | Bin 0 -> 142265 bytes .../herringbone-gear/artifact_commands.snap | 5399 + .../artifact_graph_flowchart.snap | 6 + .../artifact_graph_flowchart.snap.md | 119 + .../kcl_samples/herringbone-gear/ast.snap | 2773 + .../kcl_samples/herringbone-gear/ops.snap | 621 + .../herringbone-gear/program_memory.snap | 10 + .../herringbone-gear/rendered_model.png | Bin 0 -> 150895 bytes .../artifact_commands.snap | 8971 ++ .../artifact_graph_flowchart.snap | 6 + .../artifact_graph_flowchart.snap.md | 315 + .../herringbone-planetary-gearset/ast.snap | 6106 ++ .../herringbone-planetary-gearset/ops.snap | 2086 + .../program_memory.snap | 32 + .../rendered_model.png | Bin 0 -> 160390 bytes .../spur-gear/artifact_commands.snap | 4581 + .../artifact_graph_flowchart.snap | 2 +- .../artifact_graph_flowchart.snap.md | 100 + .../tests/kcl_samples/spur-gear/ast.snap | 2922 + .../tests/kcl_samples/spur-gear/ops.snap | 309 + .../kcl_samples/spur-gear/program_memory.snap | 10 + .../kcl_samples/spur-gear/rendered_model.png | Bin 0 -> 63416 bytes .../artifact_commands.snap | 13582 +++ .../artifact_graph_flowchart.snap | 6 + .../artifact_graph_flowchart.snap.md | 175 + .../spur-reduction-gearset/ast.snap | 2348 + .../spur-reduction-gearset/ops.snap | 586 + .../program_memory.snap | 15 + .../spur-reduction-gearset/rendered_model.png | Bin 0 -> 63558 bytes 65 files changed, 78620 insertions(+), 131937 deletions(-) delete mode 100644 public/kcl-samples/gear/main.kcl create mode 100644 public/kcl-samples/helical-gear/main.kcl create mode 100644 public/kcl-samples/helical-planetary-gearset/main.kcl create mode 100644 public/kcl-samples/herringbone-gear/main.kcl create mode 100644 public/kcl-samples/herringbone-planetary-gearset/main.kcl create mode 100644 public/kcl-samples/screenshots/helical-gear.png create mode 100644 public/kcl-samples/screenshots/helical-planetary-gearset.png create mode 100644 public/kcl-samples/screenshots/herringbone-gear.png create mode 100644 public/kcl-samples/screenshots/herringbone-planetary-gearset.png create mode 100644 public/kcl-samples/screenshots/spur-gear.png create mode 100644 public/kcl-samples/screenshots/spur-reduction-gearset.png create mode 100644 public/kcl-samples/spur-gear/main.kcl create mode 100644 public/kcl-samples/spur-reduction-gearset/main.kcl delete mode 100644 rust/kcl-lib/tests/kcl_samples/gear/artifact_commands.snap delete mode 100644 rust/kcl-lib/tests/kcl_samples/gear/artifact_graph_flowchart.snap.md delete mode 100644 rust/kcl-lib/tests/kcl_samples/gear/ast.snap delete mode 100644 rust/kcl-lib/tests/kcl_samples/gear/ops.snap delete mode 100644 rust/kcl-lib/tests/kcl_samples/gear/program_memory.snap delete mode 100644 rust/kcl-lib/tests/kcl_samples/gear/rendered_model.png create mode 100644 rust/kcl-lib/tests/kcl_samples/helical-gear/artifact_commands.snap create mode 100644 rust/kcl-lib/tests/kcl_samples/helical-gear/artifact_graph_flowchart.snap create mode 100644 rust/kcl-lib/tests/kcl_samples/helical-gear/artifact_graph_flowchart.snap.md create mode 100644 rust/kcl-lib/tests/kcl_samples/helical-gear/ast.snap create mode 100644 rust/kcl-lib/tests/kcl_samples/helical-gear/ops.snap create mode 100644 rust/kcl-lib/tests/kcl_samples/helical-gear/program_memory.snap create mode 100644 rust/kcl-lib/tests/kcl_samples/helical-gear/rendered_model.png create mode 100644 rust/kcl-lib/tests/kcl_samples/helical-planetary-gearset/artifact_commands.snap create mode 100644 rust/kcl-lib/tests/kcl_samples/helical-planetary-gearset/artifact_graph_flowchart.snap create mode 100644 rust/kcl-lib/tests/kcl_samples/helical-planetary-gearset/artifact_graph_flowchart.snap.md create mode 100644 rust/kcl-lib/tests/kcl_samples/helical-planetary-gearset/ast.snap create mode 100644 rust/kcl-lib/tests/kcl_samples/helical-planetary-gearset/ops.snap create mode 100644 rust/kcl-lib/tests/kcl_samples/helical-planetary-gearset/program_memory.snap create mode 100644 rust/kcl-lib/tests/kcl_samples/helical-planetary-gearset/rendered_model.png create mode 100644 rust/kcl-lib/tests/kcl_samples/herringbone-gear/artifact_commands.snap create mode 100644 rust/kcl-lib/tests/kcl_samples/herringbone-gear/artifact_graph_flowchart.snap create mode 100644 rust/kcl-lib/tests/kcl_samples/herringbone-gear/artifact_graph_flowchart.snap.md create mode 100644 rust/kcl-lib/tests/kcl_samples/herringbone-gear/ast.snap create mode 100644 rust/kcl-lib/tests/kcl_samples/herringbone-gear/ops.snap create mode 100644 rust/kcl-lib/tests/kcl_samples/herringbone-gear/program_memory.snap create mode 100644 rust/kcl-lib/tests/kcl_samples/herringbone-gear/rendered_model.png create mode 100644 rust/kcl-lib/tests/kcl_samples/herringbone-planetary-gearset/artifact_commands.snap create mode 100644 rust/kcl-lib/tests/kcl_samples/herringbone-planetary-gearset/artifact_graph_flowchart.snap create mode 100644 rust/kcl-lib/tests/kcl_samples/herringbone-planetary-gearset/artifact_graph_flowchart.snap.md create mode 100644 rust/kcl-lib/tests/kcl_samples/herringbone-planetary-gearset/ast.snap create mode 100644 rust/kcl-lib/tests/kcl_samples/herringbone-planetary-gearset/ops.snap create mode 100644 rust/kcl-lib/tests/kcl_samples/herringbone-planetary-gearset/program_memory.snap create mode 100644 rust/kcl-lib/tests/kcl_samples/herringbone-planetary-gearset/rendered_model.png create mode 100644 rust/kcl-lib/tests/kcl_samples/spur-gear/artifact_commands.snap rename rust/kcl-lib/tests/kcl_samples/{gear => spur-gear}/artifact_graph_flowchart.snap (61%) create mode 100644 rust/kcl-lib/tests/kcl_samples/spur-gear/artifact_graph_flowchart.snap.md create mode 100644 rust/kcl-lib/tests/kcl_samples/spur-gear/ast.snap create mode 100644 rust/kcl-lib/tests/kcl_samples/spur-gear/ops.snap create mode 100644 rust/kcl-lib/tests/kcl_samples/spur-gear/program_memory.snap create mode 100644 rust/kcl-lib/tests/kcl_samples/spur-gear/rendered_model.png create mode 100644 rust/kcl-lib/tests/kcl_samples/spur-reduction-gearset/artifact_commands.snap create mode 100644 rust/kcl-lib/tests/kcl_samples/spur-reduction-gearset/artifact_graph_flowchart.snap create mode 100644 rust/kcl-lib/tests/kcl_samples/spur-reduction-gearset/artifact_graph_flowchart.snap.md create mode 100644 rust/kcl-lib/tests/kcl_samples/spur-reduction-gearset/ast.snap create mode 100644 rust/kcl-lib/tests/kcl_samples/spur-reduction-gearset/ops.snap create mode 100644 rust/kcl-lib/tests/kcl_samples/spur-reduction-gearset/program_memory.snap create mode 100644 rust/kcl-lib/tests/kcl_samples/spur-reduction-gearset/rendered_model.png diff --git a/README.md b/README.md index 9a5a903fa..9194b28da 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ The 3D view in Design Studio is just a video stream from our hosted geometry eng - WebSockets (via [KittyCAD TS client](https://github.com/KittyCAD/kittycad.ts)) - Code Editor - [CodeMirror](https://codemirror.net/) - - Custom WASM LSP Server + - [Custom WASM LSP Server](https://github.com/KittyCAD/modeling-app/tree/main/rust/kcl-lib/src/lsp/kcl) - Modeling - [KittyCAD TypeScript client](https://github.com/KittyCAD/kittycad.ts) diff --git a/public/kcl-samples/README.md b/public/kcl-samples/README.md index f36b9178c..852045308 100644 --- a/public/kcl-samples/README.md +++ b/public/kcl-samples/README.md @@ -55,8 +55,6 @@ When you submit a PR to add or modify KCL samples, images will be generated and [![food-service-spatula](screenshots/food-service-spatula.png)](food-service-spatula/main.kcl) #### [french-press](french-press/main.kcl) ([screenshot](screenshots/french-press.png)) [![french-press](screenshots/french-press.png)](french-press/main.kcl) -#### [gear](gear/main.kcl) ([screenshot](screenshots/gear.png)) -[![gear](screenshots/gear.png)](gear/main.kcl) #### [gear-rack](gear-rack/main.kcl) ([screenshot](screenshots/gear-rack.png)) [![gear-rack](screenshots/gear-rack.png)](gear-rack/main.kcl) #### [gridfinity-baseplate](gridfinity-baseplate/main.kcl) ([screenshot](screenshots/gridfinity-baseplate.png)) @@ -67,6 +65,14 @@ When you submit a PR to add or modify KCL samples, images will be generated and [![gridfinity-bins](screenshots/gridfinity-bins.png)](gridfinity-bins/main.kcl) #### [gridfinity-bins-stacking-lip](gridfinity-bins-stacking-lip/main.kcl) ([screenshot](screenshots/gridfinity-bins-stacking-lip.png)) [![gridfinity-bins-stacking-lip](screenshots/gridfinity-bins-stacking-lip.png)](gridfinity-bins-stacking-lip/main.kcl) +#### [helical-gear](helical-gear/main.kcl) ([screenshot](screenshots/helical-gear.png)) +[![helical-gear](screenshots/helical-gear.png)](helical-gear/main.kcl) +#### [helical-planetary-gearset](helical-planetary-gearset/main.kcl) ([screenshot](screenshots/helical-planetary-gearset.png)) +[![helical-planetary-gearset](screenshots/helical-planetary-gearset.png)](helical-planetary-gearset/main.kcl) +#### [herringbone-gear](herringbone-gear/main.kcl) ([screenshot](screenshots/herringbone-gear.png)) +[![herringbone-gear](screenshots/herringbone-gear.png)](herringbone-gear/main.kcl) +#### [herringbone-planetary-gearset](herringbone-planetary-gearset/main.kcl) ([screenshot](screenshots/herringbone-planetary-gearset.png)) +[![herringbone-planetary-gearset](screenshots/herringbone-planetary-gearset.png)](herringbone-planetary-gearset/main.kcl) #### [hex-nut](hex-nut/main.kcl) ([screenshot](screenshots/hex-nut.png)) [![hex-nut](screenshots/hex-nut.png)](hex-nut/main.kcl) #### [i-beam](i-beam/main.kcl) ([screenshot](screenshots/i-beam.png)) @@ -101,6 +107,10 @@ When you submit a PR to add or modify KCL samples, images will be generated and [![sheet-metal-bracket](screenshots/sheet-metal-bracket.png)](sheet-metal-bracket/main.kcl) #### [socket-head-cap-screw](socket-head-cap-screw/main.kcl) ([screenshot](screenshots/socket-head-cap-screw.png)) [![socket-head-cap-screw](screenshots/socket-head-cap-screw.png)](socket-head-cap-screw/main.kcl) +#### [spur-gear](spur-gear/main.kcl) ([screenshot](screenshots/spur-gear.png)) +[![spur-gear](screenshots/spur-gear.png)](spur-gear/main.kcl) +#### [spur-reduction-gearset](spur-reduction-gearset/main.kcl) ([screenshot](screenshots/spur-reduction-gearset.png)) +[![spur-reduction-gearset](screenshots/spur-reduction-gearset.png)](spur-reduction-gearset/main.kcl) #### [utility-sink](utility-sink/main.kcl) ([screenshot](screenshots/utility-sink.png)) [![utility-sink](screenshots/utility-sink.png)](utility-sink/main.kcl) #### [walkie-talkie](walkie-talkie/main.kcl) ([screenshot](screenshots/walkie-talkie.png)) diff --git a/public/kcl-samples/gear/main.kcl b/public/kcl-samples/gear/main.kcl deleted file mode 100644 index 0b0ebc88f..000000000 --- a/public/kcl-samples/gear/main.kcl +++ /dev/null @@ -1,112 +0,0 @@ -// Spur Gear -// A rotating machine part having cut teeth or, in the case of a cogwheel, inserted teeth (called cogs), which mesh with another toothed part to transmit torque. Geared devices can change the speed, torque, and direction of a power source. The two elements that define a gear are its circular shape and the teeth that are integrated into its outer edge, which are designed to fit into the teeth of another gear. - -// Set units -@settings(defaultLengthUnit = in, kclVersion = 1.0) - -// Define parameters -nTeeth = 21 -module = 0.5 -pitchDiameter = module * nTeeth -pressureAngle = 20 -addendum = module -deddendum = 1.25 * module -baseDiameter = pitchDiameter * cos(pressureAngle) -tipDiameter = pitchDiameter + 2 * module -gearHeight = 3 - -// Interpolate points along the involute curve -cmo = 101 -rs = map( - [0..cmo], - f = fn(@i) { - return baseDiameter / 2 + i / cmo * (tipDiameter - baseDiameter) / 2 - }, -) - -// Calculate operating pressure angle -angles = map( - rs, - f = fn(@r) { - return units::toDegrees(acos(baseDiameter / 2 / r)) - }, -) - -// Calculate the involute function -invas = map( - angles, - f = fn(@a) { - return tan(a) - units::toRadians(a) - }, -) - -// Map the involute curve -xs = map( - [0..cmo], - f = fn(@i) { - return rs[i] * cos(invas[i]: number(rad)) - }, -) - -ys = map( - [0..cmo], - f = fn(@i) { - return rs[i] * sin(invas[i]: number(rad)) - }, -) - -// Extrude the gear body -body = startSketchOn(XY) - |> circle(center = [0, 0], radius = baseDiameter / 2) - |> extrude(length = gearHeight) - -toothAngle = 360 / nTeeth / 1.5 - -// Plot the involute curve -fn leftInvolute(@i, accum) { - j = 100 - i // iterate backwards - return line(accum, endAbsolute = [xs[j], ys[j]]) -} - -fn rightInvolute(@i, accum) { - x = rs[i] * cos(-toothAngle + units::toDegrees(atan(ys[i] / xs[i]))) - y = -rs[i] * sin(-toothAngle + units::toDegrees(atan(ys[i] / xs[i]))) - return line(accum, endAbsolute = [x, y]) -} - -// Draw gear teeth -start = startSketchOn(XY) - |> startProfile(at = [xs[101], ys[101]]) -teeth = reduce([0..100], initial = start, f = leftInvolute) - |> arc(angleStart = 0, angleEnd = toothAngle, radius = baseDiameter / 2) - |> reduce([1..101], initial = %, f = rightInvolute) - |> close() - |> extrude(length = gearHeight) - |> patternCircular3d( - axis = [0, 0, 1], - center = [0, 0, 0], - instances = nTeeth, - arcDegrees = 360, - rotateDuplicates = true, - ) - -// Define the constants of the keyway and the bore hole -keywayWidth = 0.250 -keywayDepth = keywayWidth / 2 -holeDiam = 2 -holeRadius = 1 -startAngle = asin(keywayWidth / 2 / holeRadius) - -// Sketch the keyway and center hole and extrude -keyWay = startSketchOn(body, face = END) - |> startProfile(at = [ - holeRadius * cos(startAngle), - holeRadius * sin(startAngle) - ]) - |> xLine(length = keywayDepth) - |> yLine(length = -keywayWidth) - |> xLine(length = -keywayDepth) - |> arc(angleStart = -1 * units::toDegrees(startAngle) + 360, angleEnd = 180, radius = holeRadius) - |> arc(angleStart = 180, angleEnd = units::toDegrees(startAngle), radius = holeRadius) - |> close() - |> extrude(length = -gearHeight) diff --git a/public/kcl-samples/helical-gear/main.kcl b/public/kcl-samples/helical-gear/main.kcl new file mode 100644 index 000000000..52f20fcc4 --- /dev/null +++ b/public/kcl-samples/helical-gear/main.kcl @@ -0,0 +1,99 @@ +// Helical Gear +// A helical gear is a type of cylindrical gear where the teeth are slanted at an angle relative to the axis of rotation. This greatly reduces noise and wear when transmitting torque across meshed spinning gears + +// Set units +@settings(defaultLengthUnit = mm) + +// Define a function to create a helical gear +fn helicalGear(nTeeth, module, pressureAngle, helixAngle, gearHeight) { + // Calculate gear parameters + pitchDiameter = module * nTeeth + addendum = module + deddendum = 1.25 * module + baseDiameter = pitchDiameter * cos(pressureAngle) + tipDiameter = pitchDiameter + 2 * module + + // Define the constants of the keyway and the bore hole + keywayWidth = 2 + keywayDepth = keywayWidth / 2 + holeDiam = 7 + holeRadius = holeDiam / 2 + startAngle = asin(keywayWidth / 2 / holeRadius) + + // Sketch the keyway and center hole + holeWithKeyway = startSketchOn(XY) + |> startProfile(at = [ + holeRadius * cos(startAngle), + holeRadius * sin(startAngle) + ]) + |> xLine(length = keywayDepth) + |> yLine(length = -keywayWidth) + |> xLine(length = -keywayDepth) + |> arc(angleStart = -1 * startAngle + 360, angleEnd = 180, radius = holeRadius) + |> arc(angleStart = 180, angleEnd = startAngle, radius = holeRadius) + |> close() + + // Define a function to create a rotated gear sketch on an offset plane + fn helicalGearSketch(offsetHeight) { + // Calculate the amount to rotate each planar sketch of the gear given the gear helix angle and total gear height + helixCalc = acos(offsetHeight * tan(helixAngle) / (tipDiameter / 2)) + + // Using the gear parameters, sketch an involute tooth spanning from the base diameter to the tip diameter + helicalGearSketch = startSketchOn(offsetPlane(XY, offset = offsetHeight)) + |> startProfile(at = polar(angle = helixCalc, length = baseDiameter / 2)) + |> involuteCircular( + startRadius = baseDiameter / 2, + endRadius = tipDiameter / 2, + angle = helixCalc, + tag = $seg01, + ) + |> line(endAbsolute = polar(angle = 160 / nTeeth + helixCalc, length = tipDiameter / 2)) + |> involuteCircular( + startRadius = baseDiameter / 2, + endRadius = tipDiameter / 2, + angle = -(4 * atan(segEndY(seg01) / segEndX(seg01)) - (3 * helixCalc)), + reverse = true, + ) + + // Position the end line of the sketch at the start of the next tooth + |> line(endAbsolute = polar(angle = 360 / nTeeth + helixCalc, length = baseDiameter / 2)) + + // Pattern the sketch about the center by the specified number of teeth, then close the sketch + |> patternCircular2d( + %, + instances = nTeeth, + center = [0, 0], + arcDegrees = 360, + rotateDuplicates = true, + ) + |> close() + |> subtract2d(tool = holeWithKeyway) + return helicalGearSketch + } + + // Draw a gear sketch on the base plane + gearSketch001 = helicalGearSketch(offsetHeight = 0) + + // Draw a rotated gear sketch on a middle interstitial plane + gearSketch002 = helicalGearSketch(offsetHeight = gearHeight / 2) + + // Draw a rotated gear sketch at the gear height offset plane + gearSketch003 = helicalGearSketch(offsetHeight = gearHeight) + + // Loft each rotated gear sketch together to form a helical gear + helicalGear = loft([ + gearSketch001, + gearSketch002, + gearSketch003 + ]) + + return helicalGear +} + +helicalGear( + nTeeth = 21, + module = 2, + pressureAngle = 20, + helixAngle = 35, + gearHeight = 7, +) diff --git a/public/kcl-samples/helical-planetary-gearset/main.kcl b/public/kcl-samples/helical-planetary-gearset/main.kcl new file mode 100644 index 000000000..96c0908b8 --- /dev/null +++ b/public/kcl-samples/helical-planetary-gearset/main.kcl @@ -0,0 +1,197 @@ +// Helical Planetary Gearset +// A helical planetary gearset is a type of planetary gear system where the teeth of the sun gear, planet gears, and/or ring gear are helical rather than straight. This design allows for smoother, quieter operation, greater load-carrying capacity, and more flexible shaft alignment. + +// Set units +@settings(defaultLengthUnit = mm) + +// Define a function to create a helical gear +fn helicalGear(nTeeth, module, pressureAngle, helixAngle, gearHeight) { + // Calculate gear parameters + pitchDiameter = module * nTeeth + addendum = module + deddendum = 1.25 * module + baseDiameter = pitchDiameter * cos(pressureAngle) + tipDiameter = pitchDiameter + 2 * module + + // Define the constants of the keyway and the bore hole + keywayWidth = 1 + keywayDepth = keywayWidth / 2 + holeDiam = 7 + holeRadius = holeDiam / 2 + startAngle = asin(keywayWidth / 2 / holeRadius) + + // Sketch the keyway and center hole + holeWithKeyway = startSketchOn(XY) + |> startProfile(at = [ + holeRadius * cos(startAngle), + holeRadius * sin(startAngle) + ]) + |> xLine(length = keywayDepth) + |> yLine(length = -keywayWidth) + |> xLine(length = -keywayDepth) + |> arc(angleStart = -1 * startAngle + 360, angleEnd = 180, radius = holeRadius) + |> arc(angleStart = 180, angleEnd = startAngle, radius = holeRadius) + |> close() + + // Define a function to create a rotated gear sketch on an offset plane + fn helicalGearSketch(offsetHeight) { + // Calculate the amount to rotate each planar sketch of the gear given the gear helix angle and total gear height + helixCalc = acos(offsetHeight * tan(helixAngle) / (tipDiameter / 2)) + + // Using the gear parameters, sketch an involute tooth spanning from the base diameter to the tip diameter + helicalGearSketch = startSketchOn(offsetPlane(XY, offset = offsetHeight)) + |> startProfile(at = polar(angle = helixCalc, length = baseDiameter / 2)) + |> involuteCircular( + startRadius = baseDiameter / 2, + endRadius = tipDiameter / 2, + angle = helixCalc, + tag = $seg01, + ) + |> line(endAbsolute = polar(angle = 160 / nTeeth + helixCalc, length = tipDiameter / 2)) + |> involuteCircular( + startRadius = baseDiameter / 2, + endRadius = tipDiameter / 2, + angle = -(4 * atan(segEndY(seg01) / segEndX(seg01)) - (3 * helixCalc)), + reverse = true, + ) + + // Position the end line of the sketch at the start of the next tooth + |> line(endAbsolute = polar(angle = 360 / nTeeth + helixCalc, length = baseDiameter / 2)) + + // Pattern the sketch about the center by the specified number of teeth, then close the sketch + |> patternCircular2d( + %, + instances = nTeeth, + center = [0, 0], + arcDegrees = 360, + rotateDuplicates = true, + ) + |> close() + |> subtract2d(tool = holeWithKeyway) + return helicalGearSketch + } + + // Draw a gear sketch on the base plane + gearSketch001 = helicalGearSketch(offsetHeight = 0) + + // Draw a rotated gear sketch on a middle interstitial plane + gearSketch002 = helicalGearSketch(offsetHeight = gearHeight / 2) + + // Draw a rotated gear sketch at the gear height offset plane + gearSketch003 = helicalGearSketch(offsetHeight = gearHeight) + + // Loft each rotated gear sketch together to form a helical gear + helicalGear = loft([ + gearSketch001, + gearSketch002, + gearSketch003 + ]) + + return helicalGear +} + +// Define a function to create a ring gear +fn ringGear(nTeeth, module, pressureAngle, helixAngle, gearHeight) { + // Calculate gear parameters + pitchDiameter = module * nTeeth + addendum = module + deddendum = 1.25 * module + baseDiameter = pitchDiameter * cos(pressureAngle) + tipDiameter = pitchDiameter + 2 * module + + // Define a function to create a rotated gear sketch on an offset plane + fn ringGearSketch(offsetHeight) { + // Calculate the amount to rotate each planar sketch of the gear given the gear helix angle and total gear height + helixCalc = acos(offsetHeight * tan(helixAngle) / (tipDiameter / 2)) + + // Using the gear parameters, sketch an involute tooth spanning from the base diameter to the tip diameter + ringTeeth = startSketchOn(offsetPlane(XY, offset = offsetHeight)) + |> startProfile(at = polar(angle = helixCalc, length = baseDiameter / 2)) + |> involuteCircular( + startRadius = baseDiameter / 2, + endRadius = tipDiameter / 2, + angle = helixCalc, + tag = $seg01, + ) + |> line(endAbsolute = polar(angle = 200 / nTeeth + helixCalc, length = tipDiameter / 2)) + |> involuteCircular( + startRadius = baseDiameter / 2, + endRadius = tipDiameter / 2, + angle = -(4 * atan(segEndY(seg01) / segEndX(seg01)) - (3 * helixCalc)), + reverse = true, + ) + + // Position the end line of the sketch at the start of the next tooth + |> line(endAbsolute = polar(angle = 360 / nTeeth + helixCalc, length = baseDiameter / 2)) + + // Pattern the sketch about the center by the specified number of teeth, then close the sketch + |> patternCircular2d( + %, + instances = nTeeth, + center = [0, 0], + arcDegrees = 360, + rotateDuplicates = true, + ) + |> close() + + // Create a circular body that is larger than the tip diameter of the gear, then subtract the gear profile from the body + ringGearSketch = startSketchOn(offsetPlane(XY, offset = offsetHeight)) + |> circle(center = [0, 0], radius = tipDiameter / 1.85) + |> subtract2d(tool = ringTeeth) + return ringGearSketch + } + + // Draw a gear sketch on the base plane + gearSketch001 = ringGearSketch(offsetHeight = 0) + + // Draw a rotated gear sketch on a middle interstitial plane + gearSketch002 = ringGearSketch(offsetHeight = gearHeight / 2) + + // Draw a rotated gear sketch at the gear height offset plane + gearSketch003 = ringGearSketch(offsetHeight = gearHeight) + + // Loft each rotated gear sketch together to form a ring gear + ringGear = loft([ + gearSketch001, + gearSketch002, + gearSketch003 + ]) + + return ringGear +} + +// Create the outer ring gear for the planetary gearset +ringGear( + nTeeth = 42, + module = 1.5, + pressureAngle = 14, + helixAngle = -25, + gearHeight = 5, +) + +// Create a central sun gear using a small helical gear +helicalGear( + nTeeth = 12, + module = 1.5, + pressureAngle = 14, + helixAngle = 25, + gearHeight = 5, +) + +// Create the helical planet gears +numPlanetGears = 3 +helicalGear( + nTeeth = 12, + module = 1.5, + pressureAngle = 14, + helixAngle = -25, + gearHeight = 5, + ) + |> translate(y = (12 + 12) / 2 * 1.5 + 2.7) + |> patternCircular3d( + instances = numPlanetGears, + axis = [0, 0, 1], + center = [0, 0, 0], + arcDegrees = 360, + rotateDuplicates = false, + ) diff --git a/public/kcl-samples/herringbone-gear/main.kcl b/public/kcl-samples/herringbone-gear/main.kcl new file mode 100644 index 000000000..82a2b5534 --- /dev/null +++ b/public/kcl-samples/herringbone-gear/main.kcl @@ -0,0 +1,84 @@ +// Herringbone Gear +// A herringbone, or double-helical gear, is a cylindrical gear type with angled teeth in opposing directions. This allows the quietness and smoothness of a helical gear, without applying a directional load while turning + +// Set units +@settings(defaultLengthUnit = mm) + +// Define a function to create a herringbone gear +fn herringboneGear(nTeeth, module, pressureAngle, helixAngle, gearHeight) { + // Calculate gear parameters + pitchDiameter = module * nTeeth + addendum = module + deddendum = 1.25 * module + baseDiameter = pitchDiameter * cos(pressureAngle) + tipDiameter = pitchDiameter + 2 * module + + // Define a function to create a rotated gear sketch on an offset plane + fn herringboneGearSketch(offsetHeight) { + // Calculate the amount to rotate each planar sketch of the gear given the gear helix angle and total gear height + helixCalc = acos(offsetHeight * tan(helixAngle) / (tipDiameter / 2)) + + // Using the gear parameters, sketch an involute tooth spanning from the base diameter to the tip diameter + herringboneGearSketch = startSketchOn(offsetPlane(XY, offset = offsetHeight)) + |> startProfile(at = polar(angle = helixCalc, length = baseDiameter / 2)) + |> involuteCircular( + startRadius = baseDiameter / 2, + endRadius = tipDiameter / 2, + angle = helixCalc, + tag = $seg01, + ) + |> line(endAbsolute = polar(angle = 160 / nTeeth + helixCalc, length = tipDiameter / 2)) + |> involuteCircular( + startRadius = baseDiameter / 2, + endRadius = tipDiameter / 2, + angle = -(4 * atan(segEndY(seg01) / segEndX(seg01)) - (3 * helixCalc)), + reverse = true, + ) + + // Position the end line of the sketch at the start of the next tooth + |> line(endAbsolute = polar(angle = 360 / nTeeth + helixCalc, length = baseDiameter / 2)) + + // Pattern the sketch about the center by the specified number of teeth, then close the sketch + |> patternCircular2d( + %, + instances = nTeeth, + center = [0, 0], + arcDegrees = 360, + rotateDuplicates = true, + ) + |> close() + // Create a center hole with an 8mm diameter + |> subtract2d(tool = circle(center = [0, 0], radius = 4)) + return herringboneGearSketch + } + + // Draw a gear sketch on the base plane + gearSketch001 = herringboneGearSketch(offsetHeight = 0) + + // Draw a gear sketch that has been rotated by the helix angle + gearSketch002 = herringboneGearSketch(offsetHeight = gearHeight / 2) + + // Draw a gear sketch at the total gear height that reverses the angle direction + gearSketch003 = clone(gearSketch001) + |> translate(z = gearHeight) + + // Loft each rotated gear sketch together to form a herringbone gear + herringboneGear = loft( + [ + gearSketch001, + gearSketch002, + gearSketch003 + ], + vDegree = 1, + ) + + return herringboneGear +} + +herringboneGear( + nTeeth = 25, + module = 1, + pressureAngle = 14, + helixAngle = 40, + gearHeight = 8, +) diff --git a/public/kcl-samples/herringbone-planetary-gearset/main.kcl b/public/kcl-samples/herringbone-planetary-gearset/main.kcl new file mode 100644 index 000000000..4fd110d14 --- /dev/null +++ b/public/kcl-samples/herringbone-planetary-gearset/main.kcl @@ -0,0 +1,186 @@ +// Herringbone Planetary Gearset +// A herringbone planetary gearset is a type of planetary gear system where the teeth of the sun gear, planet gears, and/or ring gear are herringbone rather than straight. This design allows for smoother, quieter operation, greater load-carrying capacity, and more flexible shaft alignment. + +// Set units +@settings(defaultLengthUnit = mm) + +// Define a function to create a herringbone gear +fn herringboneGear(nTeeth, module, pressureAngle, helixAngle, gearHeight) { + // Calculate gear parameters + pitchDiameter = module * nTeeth + addendum = module + deddendum = 1.25 * module + baseDiameter = pitchDiameter * cos(pressureAngle) + tipDiameter = pitchDiameter + 2 * module + + // Define a function to create a rotated gear sketch on an offset plane + fn herringboneGearSketch(offsetHeight) { + // Calculate the amount to rotate each planar sketch of the gear given the gear helix angle and total gear height + helixCalc = acos(offsetHeight * tan(helixAngle) / (tipDiameter / 2)) + + // Using the gear parameters, sketch an involute tooth spanning from the base diameter to the tip diameter + herringboneGearSketch = startSketchOn(offsetPlane(XY, offset = offsetHeight)) + |> startProfile(at = polar(angle = helixCalc, length = baseDiameter / 2)) + |> involuteCircular( + startRadius = baseDiameter / 2, + endRadius = tipDiameter / 2, + angle = helixCalc, + tag = $seg01, + ) + |> line(endAbsolute = polar(angle = 160 / nTeeth + helixCalc, length = tipDiameter / 2)) + |> involuteCircular( + startRadius = baseDiameter / 2, + endRadius = tipDiameter / 2, + angle = -(4 * atan(segEndY(seg01) / segEndX(seg01)) - (3 * helixCalc)), + reverse = true, + ) + + // Position the end line of the sketch at the start of the next tooth + |> line(endAbsolute = polar(angle = 360 / nTeeth + helixCalc, length = baseDiameter / 2)) + + // Pattern the sketch about the center by the specified number of teeth, then close the sketch + |> patternCircular2d( + %, + instances = nTeeth, + center = [0, 0], + arcDegrees = 360, + rotateDuplicates = true, + ) + |> close() + // Create a center hole with an 8mm diameter + |> subtract2d(tool = circle(center = [0, 0], radius = 4)) + return herringboneGearSketch + } + + // Draw a gear sketch on the base plane + gearSketch001 = herringboneGearSketch(offsetHeight = 0) + + // Draw a gear sketch that has been rotated by the helix angle + gearSketch002 = herringboneGearSketch(offsetHeight = gearHeight / 2) + + // Draw a gear sketch at the total gear height that reverses the angle direction + gearSketch003 = clone(gearSketch001) + |> translate(z = gearHeight) + + // Loft each rotated gear sketch together to form a herringbone gear + herringboneGear = loft( + [ + gearSketch001, + gearSketch002, + gearSketch003 + ], + vDegree = 1, + ) + + return herringboneGear +} + +// Define a function to create a ring gear +fn ringGear(nTeeth, module, pressureAngle, helixAngle, gearHeight) { + // Calculate gear parameters + pitchDiameter = module * nTeeth + addendum = module + deddendum = 1.25 * module + baseDiameter = pitchDiameter * cos(pressureAngle) + tipDiameter = pitchDiameter + 2 * module + + // Define a function to create a rotated gear sketch on an offset plane + fn ringGearSketch(offsetHeight) { + // Calculate the amount to rotate each planar sketch of the gear given the gear helix angle and total gear height + helixCalc = acos(offsetHeight * tan(helixAngle) / (tipDiameter / 2)) + + // Using the gear parameters, sketch an involute tooth spanning from the base diameter to the tip diameter + ringTeeth = startSketchOn(offsetPlane(XY, offset = offsetHeight)) + |> startProfile(at = polar(angle = helixCalc, length = baseDiameter / 2)) + |> involuteCircular( + startRadius = baseDiameter / 2, + endRadius = tipDiameter / 2, + angle = helixCalc, + tag = $seg01, + ) + |> line(endAbsolute = polar(angle = 220 / nTeeth + helixCalc, length = tipDiameter / 2)) + |> involuteCircular( + startRadius = baseDiameter / 2, + endRadius = tipDiameter / 2, + angle = -(4 * atan(segEndY(seg01) / segEndX(seg01)) - (3 * helixCalc)), + reverse = true, + ) + + // Position the end line of the sketch at the start of the next tooth + |> line(endAbsolute = polar(angle = 360 / nTeeth + helixCalc, length = baseDiameter / 2)) + + // Pattern the sketch about the center by the specified number of teeth, then close the sketch + |> patternCircular2d( + %, + instances = nTeeth, + center = [0, 0], + arcDegrees = 360, + rotateDuplicates = true, + ) + |> close() + + // Create a circular body that is larger than the tip diameter of the gear, then subtract the gear profile from the body + ringGearSketch = startSketchOn(offsetPlane(XY, offset = offsetHeight)) + |> circle(center = [0, 0], radius = tipDiameter / 1.8) + |> subtract2d(tool = ringTeeth) + return ringGearSketch + } + + // Draw a gear sketch on the base plane + gearSketch001 = ringGearSketch(offsetHeight = 0) + + // Draw a rotated gear sketch on a middle interstitial plane + gearSketch002 = ringGearSketch(offsetHeight = gearHeight / 2) + + // Draw a gear sketch at the total gear height that reverses the angle direction + gearSketch003 = clone(gearSketch001) + |> translate(z = gearHeight) + + // Loft each rotated gear sketch together to form a ring gear + ringGear = loft( + [ + gearSketch001, + gearSketch002, + gearSketch003 + ], + vDegree = 1, + ) + + return ringGear +} + +// Create the outer ring gear for the planetary gearset +ringGear( + nTeeth = 58, + module = 1.5, + pressureAngle = 14, + helixAngle = -35, + gearHeight = 8, +) + +// Create a central sun gear using a small herringbone gear +herringboneGear( + nTeeth = 18, + module = 1.5, + pressureAngle = 14, + helixAngle = 35, + gearHeight = 8, +) + +// Create the herringbone planet gears +numPlanetGears = 4 +herringboneGear( + nTeeth = 18, + module = 1.5, + pressureAngle = 14, + helixAngle = -35, + gearHeight = 8, + ) + |> translate(y = 18 * 1.5 + 1.95) + |> patternCircular3d( + instances = numPlanetGears, + axis = [0, 0, 1], + center = [0, 0, 0], + arcDegrees = 360, + rotateDuplicates = false, + ) diff --git a/public/kcl-samples/manifest.json b/public/kcl-samples/manifest.json index 41dc7a96d..48843d8e1 100644 --- a/public/kcl-samples/manifest.json +++ b/public/kcl-samples/manifest.json @@ -170,16 +170,6 @@ "main.kcl" ] }, - { - "file": "main.kcl", - "pathFromProjectDirectoryToFirstFile": "gear/main.kcl", - "multipleFiles": false, - "title": "Spur Gear", - "description": "A rotating machine part having cut teeth or, in the case of a cogwheel, inserted teeth (called cogs), which mesh with another toothed part to transmit torque. Geared devices can change the speed, torque, and direction of a power source. The two elements that define a gear are its circular shape and the teeth that are integrated into its outer edge, which are designed to fit into the teeth of another gear.", - "files": [ - "main.kcl" - ] - }, { "file": "main.kcl", "pathFromProjectDirectoryToFirstFile": "gear-rack/main.kcl", @@ -230,6 +220,46 @@ "main.kcl" ] }, + { + "file": "main.kcl", + "pathFromProjectDirectoryToFirstFile": "helical-gear/main.kcl", + "multipleFiles": false, + "title": "Helical Gear", + "description": "A helical gear is a type of cylindrical gear where the teeth are slanted at an angle relative to the axis of rotation. This greatly reduces noise and wear when transmitting torque across meshed spinning gears", + "files": [ + "main.kcl" + ] + }, + { + "file": "main.kcl", + "pathFromProjectDirectoryToFirstFile": "helical-planetary-gearset/main.kcl", + "multipleFiles": false, + "title": "Helical Planetary Gearset", + "description": "A helical planetary gearset is a type of planetary gear system where the teeth of the sun gear, planet gears, and/or ring gear are helical rather than straight. This design allows for smoother, quieter operation, greater load-carrying capacity, and more flexible shaft alignment.", + "files": [ + "main.kcl" + ] + }, + { + "file": "main.kcl", + "pathFromProjectDirectoryToFirstFile": "herringbone-gear/main.kcl", + "multipleFiles": false, + "title": "Herringbone Gear", + "description": "A herringbone, or double-helical gear, is a cylindrical gear type with angled teeth in opposing directions. This allows the quietness and smoothness of a helical gear, without applying a directional load while turning", + "files": [ + "main.kcl" + ] + }, + { + "file": "main.kcl", + "pathFromProjectDirectoryToFirstFile": "herringbone-planetary-gearset/main.kcl", + "multipleFiles": false, + "title": "Herringbone Planetary Gearset", + "description": "A herringbone planetary gearset is a type of planetary gear system where the teeth of the sun gear, planet gears, and/or ring gear are herringbone rather than straight. This design allows for smoother, quieter operation, greater load-carrying capacity, and more flexible shaft alignment.", + "files": [ + "main.kcl" + ] + }, { "file": "main.kcl", "pathFromProjectDirectoryToFirstFile": "hex-nut/main.kcl", @@ -412,6 +442,26 @@ "main.kcl" ] }, + { + "file": "main.kcl", + "pathFromProjectDirectoryToFirstFile": "spur-gear/main.kcl", + "multipleFiles": false, + "title": "Spur Gear", + "description": "A rotating machine part having cut teeth or, in the case of a cogwheel, inserted teeth (called cogs), which mesh with another toothed part to transmit torque. Geared devices can change the speed, torque, and direction of a power source. The two elements that define a gear are its circular shape and the teeth that are integrated into its outer edge, which are designed to fit into the teeth of another gear.", + "files": [ + "main.kcl" + ] + }, + { + "file": "main.kcl", + "pathFromProjectDirectoryToFirstFile": "spur-reduction-gearset/main.kcl", + "multipleFiles": false, + "title": "Spur Reduction Gearset", + "description": "A pair of spur gears meshed together, with an equal module and different number of teeth", + "files": [ + "main.kcl" + ] + }, { "file": "main.kcl", "pathFromProjectDirectoryToFirstFile": "utility-sink/main.kcl", diff --git a/public/kcl-samples/screenshots/helical-gear.png b/public/kcl-samples/screenshots/helical-gear.png new file mode 100644 index 0000000000000000000000000000000000000000..f198488057022efdb0249bf8ff6d043c71cd0e81 GIT binary patch literal 103562 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 MUGO*1wNXI3Acnf(Uh* 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 S_{+Wp5B%oii!-^{+RhJjQkBpE literal 0 HcmV?d00001 diff --git a/public/kcl-samples/screenshots/helical-planetary-gearset.png b/public/kcl-samples/screenshots/helical-planetary-gearset.png new file mode 100644 index 0000000000000000000000000000000000000000..dacd1be228f5015fa37548f5c71843c8f910ec48 GIT binary patch literal 142265 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 W)5pK{XoUaOOq+hurf*(x^M3%H+bFyM literal 0 HcmV?d00001 diff --git a/public/kcl-samples/screenshots/spur-gear.png b/public/kcl-samples/screenshots/spur-gear.png new file mode 100644 index 0000000000000000000000000000000000000000..0746e497e96f273e129160c4dd014a4737cc3c72 GIT binary patch literal 63416 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 literal 0 HcmV?d00001 diff --git a/public/kcl-samples/screenshots/spur-reduction-gearset.png b/public/kcl-samples/screenshots/spur-reduction-gearset.png new file mode 100644 index 0000000000000000000000000000000000000000..1814a4c116a3f3dc23ee338f8efffd4a1bf1c0c2 GIT binary patch literal 63558 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%0A0z^hw+} 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 DwdhpC literal 0 HcmV?d00001 diff --git a/public/kcl-samples/spur-gear/main.kcl b/public/kcl-samples/spur-gear/main.kcl new file mode 100644 index 000000000..c27df0b84 --- /dev/null +++ b/public/kcl-samples/spur-gear/main.kcl @@ -0,0 +1,76 @@ +// Spur Gear +// A rotating machine part having cut teeth or, in the case of a cogwheel, inserted teeth (called cogs), which mesh with another toothed part to transmit torque. Geared devices can change the speed, torque, and direction of a power source. The two elements that define a gear are its circular shape and the teeth that are integrated into its outer edge, which are designed to fit into the teeth of another gear. + +// Set units +@settings(defaultLengthUnit = mm) + +// Define a function to create a spur gear +fn spurGear(nTeeth, module, pressureAngle, gearHeight) { + // Define gear parameters + pitchDiameter = module * nTeeth + addendum = module + deddendum = 1.25 * module + baseDiameter = pitchDiameter * cos(pressureAngle) + tipDiameter = pitchDiameter + 2 * module + + // Define the constants of the keyway and the bore hole + keywayWidth = 2 + keywayDepth = keywayWidth / 2 + holeDiam = 5 + holeRadius = holeDiam / 2 + startAngle = asin(keywayWidth / 2 / holeRadius) + + // Sketch the keyway and center hole + holeWithKeyway = startSketchOn(XY) + |> startProfile(at = [ + holeRadius * cos(startAngle), + holeRadius * sin(startAngle) + ]) + |> xLine(length = keywayDepth) + |> yLine(length = -keywayWidth) + |> xLine(length = -keywayDepth) + |> arc(angleStart = -1 * startAngle + 360, angleEnd = 180, radius = holeRadius) + |> arc(angleStart = 180, angleEnd = startAngle, radius = holeRadius) + |> close() + + // Using the gear parameters, sketch an involute tooth spanning from the base diameter to the tip diameter + gearSketch = startSketchOn(XY) + |> startProfile(at = polar(angle = 0, length = baseDiameter / 2)) + |> involuteCircular( + startRadius = baseDiameter / 2, + endRadius = tipDiameter / 2, + angle = 0, + tag = $seg01, + ) + |> line(endAbsolute = polar(angle = 160 / nTeeth, length = tipDiameter / 2)) + |> involuteCircular( + startRadius = baseDiameter / 2, + endRadius = tipDiameter / 2, + angle = -atan(segEndY(seg01) / segEndX(seg01)) - (180 / nTeeth), + reverse = true, + ) + // Position the end line of the sketch at the start of the next tooth + |> line(endAbsolute = polar(angle = 360 / nTeeth, length = baseDiameter / 2)) + // Pattern the sketch about the center by the specified number of teeth, then close the sketch + |> patternCircular2d( + %, + instances = nTeeth, + center = [0, 0], + arcDegrees = 360, + rotateDuplicates = true, + ) + |> close() + // Subtract the keyway sketch from the gear sketch + |> subtract2d(tool = holeWithKeyway) + // Extrude the gear to the specified height + |> extrude(length = gearHeight) + + return gearSketch +} + +spurGear( + nTeeth = 21, + module = 1.5, + pressureAngle = 14, + gearHeight = 6, +) diff --git a/public/kcl-samples/spur-reduction-gearset/main.kcl b/public/kcl-samples/spur-reduction-gearset/main.kcl new file mode 100644 index 000000000..2904f9ceb --- /dev/null +++ b/public/kcl-samples/spur-reduction-gearset/main.kcl @@ -0,0 +1,70 @@ +// Spur Reduction Gearset +// A pair of spur gears meshed together, with an equal module and different number of teeth + +// Set units +@settings(defaultLengthUnit = mm) + +// Define a function to create a spur gear +fn spurGear(nTeeth, module, pressureAngle, gearHeight) { + // Calculate gear parameters + pitchDiameter = module * nTeeth + addendum = module + deddendum = 1.25 * module + baseDiameter = pitchDiameter * cos(pressureAngle) + tipDiameter = pitchDiameter + 2 * module + + // Using the gear parameters, sketch an involute tooth spanning from the base diameter to the tip diameter + gearSketch = startSketchOn(XY) + |> startProfile(at = polar(angle = 0, length = baseDiameter / 2)) + |> involuteCircular( + startRadius = baseDiameter / 2, + endRadius = tipDiameter / 2, + angle = 0, + tag = $seg01, + ) + |> line(endAbsolute = polar(angle = 160 / nTeeth, length = tipDiameter / 2)) + |> involuteCircular( + startRadius = baseDiameter / 2, + endRadius = tipDiameter / 2, + angle = -atan(segEndY(seg01) / segEndX(seg01)) - (180 / nTeeth), + reverse = true, + ) + // Position the end line of the sketch at the start of the next tooth + |> line(endAbsolute = polar(angle = 360 / nTeeth, length = baseDiameter / 2)) + // Pattern the sketch about the center by the specified number of teeth, then close the sketch + |> patternCircular2d( + %, + instances = nTeeth, + center = [0, 0], + arcDegrees = 360, + rotateDuplicates = true, + ) + |> close() + // Subtract a 10mm diameter center hole from the gear + |> subtract2d(tool = circle(center = [0, 0], radius = 5)) + // Extrude the gear to the specified height + |> extrude(length = gearHeight) + + return gearSketch +} + +// Model a small gear +spurGear( + nTeeth = 17, + module = 1.5, + pressureAngle = 14, + gearHeight = 9, +) + +// Model a larger gear with the same module +spurGear( + nTeeth = 51, + module = 1.5, + pressureAngle = 14, + gearHeight = 7, + ) + // Translate the larger gear by the combined pitch radius of both gears, plus a small gap + |> translate(x = (51 + 17) / 2 * 1.5 + 1.3) + + // Rotate the gear so that the teeth mesh but do not intersect + |> rotate(yaw = 3) diff --git a/rust/kcl-lib/tests/kcl_samples/axial-fan/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/axial-fan/artifact_graph_flowchart.snap.md index 42cedb342..613b65d92 100644 --- a/rust/kcl-lib/tests/kcl_samples/axial-fan/artifact_graph_flowchart.snap.md +++ b/rust/kcl-lib/tests/kcl_samples/axial-fan/artifact_graph_flowchart.snap.md @@ -605,19 +605,19 @@ flowchart LR 84 --- 144 84 --- 234 87 --- 161 - 87 x--> 186 + 87 x--> 187 87 --- 206 87 --- 249 89 --- 160 - 89 x--> 186 + 89 x--> 187 89 --- 207 89 --- 250 91 --- 162 - 91 x--> 186 + 91 x--> 187 91 --- 204 91 --- 252 93 --- 159 - 93 x--> 186 + 93 x--> 187 93 --- 205 93 --- 251 119 --- 133 @@ -879,10 +879,10 @@ flowchart LR 200 <--x 185 201 <--x 185 202 <--x 185 - 204 <--x 187 - 205 <--x 187 - 206 <--x 187 - 207 <--x 187 + 204 <--x 186 + 205 <--x 186 + 206 <--x 186 + 207 <--x 186 219 <--x 188 220 <--x 188 221 <--x 188 diff --git a/rust/kcl-lib/tests/kcl_samples/gear/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/gear/artifact_commands.snap deleted file mode 100644 index 933e70986..000000000 --- a/rust/kcl-lib/tests/kcl_samples/gear/artifact_commands.snap +++ /dev/null @@ -1,4221 +0,0 @@ ---- -source: kcl-lib/src/simulation_tests.rs -description: Artifact commands gear.kcl ---- -[ - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "edge_lines_visible", - "hidden": false - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_visible", - "object_id": "[uuid]", - "hidden": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 0.0, - "y": 0.0 - }, - "radius": 125.30801098180088, - "start": { - "unit": "degrees", - "value": 0.0 - }, - "end": { - "unit": "degrees", - "value": 360.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 125.30801098180088, - "y": 0.0, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 76.19999999999999, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 145.596, - "y": 8.5125, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 145.398, - "y": 8.3788, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 145.1999, - "y": 8.2459, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 145.0017, - "y": 8.1139, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 144.8033, - "y": 7.9828, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 144.6048, - "y": 7.8524, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 144.4061, - "y": 7.7229, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 144.2072, - "y": 7.5942, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 144.0083, - "y": 7.4664, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 143.8092, - "y": 7.3393, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 143.6099, - "y": 7.2132, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 143.4106, - "y": 7.0879, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 143.211, - "y": 6.9634, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 143.0114, - "y": 6.8398, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 142.8116, - "y": 6.717, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 142.6117, - "y": 6.5951, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 142.4117, - "y": 6.4741, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 142.2115, - "y": 6.3539, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 142.0113, - "y": 6.2346, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 141.8108, - "y": 6.1161, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 141.6103, - "y": 5.9985, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 141.4097, - "y": 5.8818, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 141.2089, - "y": 5.766, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 141.008, - "y": 5.651, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 140.807, - "y": 5.5369, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 140.6059, - "y": 5.4237, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 140.4047, - "y": 5.3114, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 140.2033, - "y": 5.2, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 140.0019, - "y": 5.0895, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 139.8003, - "y": 4.9799, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 139.5987, - "y": 4.8712, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 139.3969, - "y": 4.7634, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 139.195, - "y": 4.6565, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 138.9931, - "y": 4.5506, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 138.791, - "y": 4.4455, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 138.5888, - "y": 4.3414, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 138.3866, - "y": 4.2382, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 138.1842, - "y": 4.1359, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 137.9817, - "y": 4.0346, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 137.7792, - "y": 3.9342, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 137.5766, - "y": 3.8347, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 137.3738, - "y": 3.7362, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 137.171, - "y": 3.6387, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 136.9681, - "y": 3.5421, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 136.7651, - "y": 3.4465, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 136.562, - "y": 3.3519, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 136.3589, - "y": 3.2582, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 136.1556, - "y": 3.1655, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 135.9523, - "y": 3.0738, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 135.7489, - "y": 2.9831, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 135.5454, - "y": 2.8934, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 135.3419, - "y": 2.8048, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 135.1383, - "y": 2.7171, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 134.9346, - "y": 2.6304, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 134.7308, - "y": 2.5448, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 134.527, - "y": 2.4603, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 134.3231, - "y": 2.3767, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 134.1191, - "y": 2.2942, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 133.9151, - "y": 2.2128, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 133.711, - "y": 2.1325, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 133.5069, - "y": 2.0532, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 133.3027, - "y": 1.975, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 133.0984, - "y": 1.898, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 132.8941, - "y": 1.822, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 132.6897, - "y": 1.7472, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 132.4853, - "y": 1.6735, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 132.2808, - "y": 1.6009, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 132.0762, - "y": 1.5295, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 131.8717, - "y": 1.4593, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 131.667, - "y": 1.3902, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 131.4623, - "y": 1.3224, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 131.2576, - "y": 1.2557, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 131.0529, - "y": 1.1903, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 130.8481, - "y": 1.1261, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 130.6432, - "y": 1.0633, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 130.4383, - "y": 1.0016, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 130.2334, - "y": 0.9413, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 130.0284, - "y": 0.8824, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 129.8234, - "y": 0.8247, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 129.6184, - "y": 0.7685, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 129.4134, - "y": 0.7136, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 129.2083, - "y": 0.6602, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 129.0032, - "y": 0.6082, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 128.798, - "y": 0.5578, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 128.5929, - "y": 0.5088, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 128.3877, - "y": 0.4615, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 128.1825, - "y": 0.4158, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 127.9772, - "y": 0.3717, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 127.772, - "y": 0.3293, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 127.5667, - "y": 0.2888, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 127.3614, - "y": 0.2501, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 127.1561, - "y": 0.2133, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 126.9508, - "y": 0.1786, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 126.7455, - "y": 0.1461, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 126.5402, - "y": 0.1158, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 126.3348, - "y": 0.088, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 126.1295, - "y": 0.0629, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 125.9241, - "y": 0.0408, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 125.7187, - "y": 0.0222, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 125.5134, - "y": 0.0078, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 125.308, - "y": 0.0, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 123.0263, - "y": 24.8623, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 123.2305, - "y": 24.8889, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 123.4354, - "y": 24.9113, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 123.6411, - "y": 24.9304, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 123.8473, - "y": 24.9465, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 124.0541, - "y": 24.9599, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 124.2614, - "y": 24.9709, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 124.4691, - "y": 24.9797, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 124.6772, - "y": 24.9864, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 124.8857, - "y": 24.991, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 125.0946, - "y": 24.9938, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 125.3038, - "y": 24.9947, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 125.5134, - "y": 24.9939, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 125.7233, - "y": 24.9914, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 125.9335, - "y": 24.9872, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 126.144, - "y": 24.9814, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 126.3548, - "y": 24.9741, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 126.5659, - "y": 24.9653, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 126.7772, - "y": 24.955, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 126.9888, - "y": 24.9433, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 127.2007, - "y": 24.9302, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 127.4128, - "y": 24.9156, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 127.6251, - "y": 24.8998, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 127.8377, - "y": 24.8826, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 128.0505, - "y": 24.8641, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 128.2636, - "y": 24.8443, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 128.4768, - "y": 24.8232, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 128.6903, - "y": 24.8009, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 128.9039, - "y": 24.7774, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 129.1178, - "y": 24.7526, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 129.3319, - "y": 24.7267, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 129.5461, - "y": 24.6995, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 129.7606, - "y": 24.6712, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 129.9752, - "y": 24.6418, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 130.19, - "y": 24.6112, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 130.405, - "y": 24.5794, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 130.6201, - "y": 24.5466, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 130.8355, - "y": 24.5126, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 131.051, - "y": 24.4775, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 131.2666, - "y": 24.4414, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 131.4824, - "y": 24.4041, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 131.6984, - "y": 24.3658, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 131.9145, - "y": 24.3264, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 132.1307, - "y": 24.286, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 132.3472, - "y": 24.2445, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 132.5637, - "y": 24.202, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 132.7804, - "y": 24.1585, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 132.9972, - "y": 24.1139, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 133.2142, - "y": 24.0683, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 133.4312, - "y": 24.0217, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 133.6484, - "y": 23.9741, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 133.8658, - "y": 23.9255, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 134.0832, - "y": 23.876, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 134.3008, - "y": 23.8254, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 134.5185, - "y": 23.7738, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 134.7363, - "y": 23.7213, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 134.9542, - "y": 23.6678, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 135.1722, - "y": 23.6134, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 135.3904, - "y": 23.5579, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 135.6086, - "y": 23.5016, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 135.8269, - "y": 23.4443, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 136.0453, - "y": 23.386, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 136.2639, - "y": 23.3268, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 136.4825, - "y": 23.2666, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 136.7012, - "y": 23.2056, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 136.92, - "y": 23.1435, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 137.1389, - "y": 23.0806, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 137.3578, - "y": 23.0168, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 137.5769, - "y": 22.952, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 137.796, - "y": 22.8863, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 138.0152, - "y": 22.8197, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 138.2345, - "y": 22.7522, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 138.4538, - "y": 22.6838, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 138.6732, - "y": 22.6145, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 138.8927, - "y": 22.5443, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 139.1123, - "y": 22.4732, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 139.3319, - "y": 22.4012, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 139.5516, - "y": 22.3284, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 139.7713, - "y": 22.2546, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 139.9911, - "y": 22.18, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 140.211, - "y": 22.1044, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 140.4309, - "y": 22.028, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 140.6508, - "y": 21.9508, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 140.8708, - "y": 21.8726, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 141.0909, - "y": 21.7936, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 141.311, - "y": 21.7137, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 141.5311, - "y": 21.633, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 141.7513, - "y": 21.5514, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 141.9715, - "y": 21.4689, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 142.1918, - "y": 21.3856, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 142.4121, - "y": 21.3014, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 142.6324, - "y": 21.2164, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 142.8527, - "y": 21.1305, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 143.0731, - "y": 21.0438, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 143.2935, - "y": 20.9562, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 143.514, - "y": 20.8677, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 143.7344, - "y": 20.7785, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 143.9549, - "y": 20.6884, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 144.1754, - "y": 20.5974, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 144.3959, - "y": 20.5056, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 144.6164, - "y": 20.413, - "z": 0.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "make_plane", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "x_axis": { - "x": 1.0, - "y": 0.0, - "z": 0.0 - }, - "y_axis": { - "x": 0.0, - "y": 1.0, - "z": 0.0 - }, - "size": 60.0, - "clobber": false, - "hide": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 145.79380266899716, - "y": 8.646941847468915, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": -0.0, - "y": -0.0 - }, - "radius": 125.30801098180088, - "start": { - "unit": "degrees", - "value": 0.0 - }, - "end": { - "unit": "degrees", - "value": 11.428571428571429 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": 76.19999999999999, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "entity_circular_pattern", - "entity_id": "[uuid]", - "axis": { - "x": 0.0, - "y": 0.0, - "z": 1.0 - }, - "center": { - "x": 0.0, - "y": 0.0, - "z": 0.0 - }, - "num_repetitions": 20, - "arc_degrees": 360.0, - "rotate_duplicates": true - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "move_path_pen", - "path": "[uuid]", - "to": { - "x": 25.200781237890226, - "y": 3.175, - "z": 0.0 - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "start_path" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 3.175, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": 0.0, - "y": -6.35, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "line", - "end": { - "x": -3.175, - "y": 0.0, - "z": 0.0 - }, - "relative": true - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 0.0, - "y": 0.0 - }, - "radius": 25.4, - "start": { - "unit": "degrees", - "value": 352.8192442185417 - }, - "end": { - "unit": "degrees", - "value": 180.0 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extend_path", - "path": "[uuid]", - "segment": { - "type": "arc", - "center": { - "x": 0.0, - "y": 0.0 - }, - "radius": 25.4, - "start": { - "unit": "degrees", - "value": 180.0 - }, - "end": { - "unit": "degrees", - "value": 7.180755781458282 - }, - "relative": false - } - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "close_path", - "path_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "enable_sketch_mode", - "entity_id": "[uuid]", - "ortho": false, - "animated": false, - "adjust_camera": false, - "planar_normal": null - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "extrude", - "target": "[uuid]", - "distance": -76.19999999999999, - "faces": null, - "opposite": "None" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "object_bring_to_front", - "object_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "sketch_mode_disable" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_all_edge_faces", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_extrusion_face_info", - "object_id": "[uuid]", - "edge_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_next_adjacent_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - }, - { - "cmdId": "[uuid]", - "range": [], - "command": { - "type": "solid3d_get_opposite_edge", - "object_id": "[uuid]", - "edge_id": "[uuid]", - "face_id": "[uuid]" - } - } -] diff --git a/rust/kcl-lib/tests/kcl_samples/gear/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/gear/artifact_graph_flowchart.snap.md deleted file mode 100644 index fe6f6329d..000000000 --- a/rust/kcl-lib/tests/kcl_samples/gear/artifact_graph_flowchart.snap.md +++ /dev/null @@ -1,526 +0,0 @@ -```mermaid -flowchart LR - subgraph path4 [Path] - 4["Path
[1436, 1486, 0]"] - 7["Segment
[1436, 1486, 0]"] - 219[Solid2d] - end - subgraph path5 [Path] - 5["Path
[1969, 2006, 0]"] - 8["Segment
[1655, 1696, 0]"] - 9["Segment
[1655, 1696, 0]"] - 10["Segment
[1655, 1696, 0]"] - 11["Segment
[1655, 1696, 0]"] - 12["Segment
[1655, 1696, 0]"] - 13["Segment
[1655, 1696, 0]"] - 14["Segment
[1655, 1696, 0]"] - 15["Segment
[1655, 1696, 0]"] - 16["Segment
[1655, 1696, 0]"] - 17["Segment
[1655, 1696, 0]"] - 18["Segment
[1655, 1696, 0]"] - 19["Segment
[1655, 1696, 0]"] - 20["Segment
[1655, 1696, 0]"] - 21["Segment
[1655, 1696, 0]"] - 22["Segment
[1655, 1696, 0]"] - 23["Segment
[1655, 1696, 0]"] - 24["Segment
[1655, 1696, 0]"] - 25["Segment
[1655, 1696, 0]"] - 26["Segment
[1655, 1696, 0]"] - 27["Segment
[1655, 1696, 0]"] - 28["Segment
[1655, 1696, 0]"] - 29["Segment
[1655, 1696, 0]"] - 30["Segment
[1655, 1696, 0]"] - 31["Segment
[1655, 1696, 0]"] - 32["Segment
[1655, 1696, 0]"] - 33["Segment
[1655, 1696, 0]"] - 34["Segment
[1655, 1696, 0]"] - 35["Segment
[1655, 1696, 0]"] - 36["Segment
[1655, 1696, 0]"] - 37["Segment
[1655, 1696, 0]"] - 38["Segment
[1655, 1696, 0]"] - 39["Segment
[1655, 1696, 0]"] - 40["Segment
[1655, 1696, 0]"] - 41["Segment
[1655, 1696, 0]"] - 42["Segment
[1655, 1696, 0]"] - 43["Segment
[1655, 1696, 0]"] - 44["Segment
[1655, 1696, 0]"] - 45["Segment
[1655, 1696, 0]"] - 46["Segment
[1655, 1696, 0]"] - 47["Segment
[1655, 1696, 0]"] - 48["Segment
[1655, 1696, 0]"] - 49["Segment
[1655, 1696, 0]"] - 50["Segment
[1655, 1696, 0]"] - 51["Segment
[1655, 1696, 0]"] - 52["Segment
[1655, 1696, 0]"] - 53["Segment
[1655, 1696, 0]"] - 54["Segment
[1655, 1696, 0]"] - 55["Segment
[1655, 1696, 0]"] - 56["Segment
[1655, 1696, 0]"] - 57["Segment
[1655, 1696, 0]"] - 58["Segment
[1655, 1696, 0]"] - 59["Segment
[1655, 1696, 0]"] - 60["Segment
[1655, 1696, 0]"] - 61["Segment
[1655, 1696, 0]"] - 62["Segment
[1655, 1696, 0]"] - 63["Segment
[1655, 1696, 0]"] - 64["Segment
[1655, 1696, 0]"] - 65["Segment
[1655, 1696, 0]"] - 66["Segment
[1655, 1696, 0]"] - 67["Segment
[1655, 1696, 0]"] - 68["Segment
[1655, 1696, 0]"] - 69["Segment
[1655, 1696, 0]"] - 70["Segment
[1655, 1696, 0]"] - 71["Segment
[1655, 1696, 0]"] - 72["Segment
[1655, 1696, 0]"] - 73["Segment
[1655, 1696, 0]"] - 74["Segment
[1655, 1696, 0]"] - 75["Segment
[1655, 1696, 0]"] - 76["Segment
[1655, 1696, 0]"] - 77["Segment
[1655, 1696, 0]"] - 78["Segment
[1655, 1696, 0]"] - 79["Segment
[1655, 1696, 0]"] - 80["Segment
[1655, 1696, 0]"] - 81["Segment
[1655, 1696, 0]"] - 82["Segment
[1655, 1696, 0]"] - 83["Segment
[1655, 1696, 0]"] - 84["Segment
[1655, 1696, 0]"] - 85["Segment
[1655, 1696, 0]"] - 86["Segment
[1655, 1696, 0]"] - 87["Segment
[1655, 1696, 0]"] - 88["Segment
[1655, 1696, 0]"] - 89["Segment
[1655, 1696, 0]"] - 90["Segment
[1655, 1696, 0]"] - 91["Segment
[1655, 1696, 0]"] - 92["Segment
[1655, 1696, 0]"] - 93["Segment
[1655, 1696, 0]"] - 94["Segment
[1655, 1696, 0]"] - 95["Segment
[1655, 1696, 0]"] - 96["Segment
[1655, 1696, 0]"] - 97["Segment
[1655, 1696, 0]"] - 98["Segment
[1655, 1696, 0]"] - 99["Segment
[1655, 1696, 0]"] - 100["Segment
[1655, 1696, 0]"] - 101["Segment
[1655, 1696, 0]"] - 102["Segment
[1655, 1696, 0]"] - 103["Segment
[1655, 1696, 0]"] - 104["Segment
[1655, 1696, 0]"] - 105["Segment
[1655, 1696, 0]"] - 106["Segment
[1655, 1696, 0]"] - 107["Segment
[1655, 1696, 0]"] - 108["Segment
[1655, 1696, 0]"] - 109["Segment
[1882, 1915, 0]"] - 110["Segment
[1882, 1915, 0]"] - 111["Segment
[1882, 1915, 0]"] - 112["Segment
[1882, 1915, 0]"] - 113["Segment
[1882, 1915, 0]"] - 114["Segment
[1882, 1915, 0]"] - 115["Segment
[1882, 1915, 0]"] - 116["Segment
[1882, 1915, 0]"] - 117["Segment
[1882, 1915, 0]"] - 118["Segment
[1882, 1915, 0]"] - 119["Segment
[1882, 1915, 0]"] - 120["Segment
[1882, 1915, 0]"] - 121["Segment
[1882, 1915, 0]"] - 122["Segment
[1882, 1915, 0]"] - 123["Segment
[1882, 1915, 0]"] - 124["Segment
[1882, 1915, 0]"] - 125["Segment
[1882, 1915, 0]"] - 126["Segment
[1882, 1915, 0]"] - 127["Segment
[1882, 1915, 0]"] - 128["Segment
[1882, 1915, 0]"] - 129["Segment
[1882, 1915, 0]"] - 130["Segment
[1882, 1915, 0]"] - 131["Segment
[1882, 1915, 0]"] - 132["Segment
[1882, 1915, 0]"] - 133["Segment
[1882, 1915, 0]"] - 134["Segment
[1882, 1915, 0]"] - 135["Segment
[1882, 1915, 0]"] - 136["Segment
[1882, 1915, 0]"] - 137["Segment
[1882, 1915, 0]"] - 138["Segment
[1882, 1915, 0]"] - 139["Segment
[1882, 1915, 0]"] - 140["Segment
[1882, 1915, 0]"] - 141["Segment
[1882, 1915, 0]"] - 142["Segment
[1882, 1915, 0]"] - 143["Segment
[1882, 1915, 0]"] - 144["Segment
[1882, 1915, 0]"] - 145["Segment
[1882, 1915, 0]"] - 146["Segment
[1882, 1915, 0]"] - 147["Segment
[1882, 1915, 0]"] - 148["Segment
[1882, 1915, 0]"] - 149["Segment
[1882, 1915, 0]"] - 150["Segment
[1882, 1915, 0]"] - 151["Segment
[1882, 1915, 0]"] - 152["Segment
[1882, 1915, 0]"] - 153["Segment
[1882, 1915, 0]"] - 154["Segment
[1882, 1915, 0]"] - 155["Segment
[1882, 1915, 0]"] - 156["Segment
[1882, 1915, 0]"] - 157["Segment
[1882, 1915, 0]"] - 158["Segment
[1882, 1915, 0]"] - 159["Segment
[1882, 1915, 0]"] - 160["Segment
[1882, 1915, 0]"] - 161["Segment
[1882, 1915, 0]"] - 162["Segment
[1882, 1915, 0]"] - 163["Segment
[1882, 1915, 0]"] - 164["Segment
[1882, 1915, 0]"] - 165["Segment
[1882, 1915, 0]"] - 166["Segment
[1882, 1915, 0]"] - 167["Segment
[1882, 1915, 0]"] - 168["Segment
[1882, 1915, 0]"] - 169["Segment
[1882, 1915, 0]"] - 170["Segment
[1882, 1915, 0]"] - 171["Segment
[1882, 1915, 0]"] - 172["Segment
[1882, 1915, 0]"] - 173["Segment
[1882, 1915, 0]"] - 174["Segment
[1882, 1915, 0]"] - 175["Segment
[1882, 1915, 0]"] - 176["Segment
[1882, 1915, 0]"] - 177["Segment
[1882, 1915, 0]"] - 178["Segment
[1882, 1915, 0]"] - 179["Segment
[1882, 1915, 0]"] - 180["Segment
[1882, 1915, 0]"] - 181["Segment
[1882, 1915, 0]"] - 182["Segment
[1882, 1915, 0]"] - 183["Segment
[1882, 1915, 0]"] - 184["Segment
[1882, 1915, 0]"] - 185["Segment
[1882, 1915, 0]"] - 186["Segment
[1882, 1915, 0]"] - 187["Segment
[1882, 1915, 0]"] - 188["Segment
[1882, 1915, 0]"] - 189["Segment
[1882, 1915, 0]"] - 190["Segment
[1882, 1915, 0]"] - 191["Segment
[1882, 1915, 0]"] - 192["Segment
[1882, 1915, 0]"] - 193["Segment
[1882, 1915, 0]"] - 194["Segment
[1882, 1915, 0]"] - 195["Segment
[1882, 1915, 0]"] - 196["Segment
[1882, 1915, 0]"] - 197["Segment
[1882, 1915, 0]"] - 198["Segment
[1882, 1915, 0]"] - 199["Segment
[1882, 1915, 0]"] - 200["Segment
[1882, 1915, 0]"] - 201["Segment
[1882, 1915, 0]"] - 202["Segment
[1882, 1915, 0]"] - 203["Segment
[1882, 1915, 0]"] - 204["Segment
[1882, 1915, 0]"] - 205["Segment
[1882, 1915, 0]"] - 206["Segment
[1882, 1915, 0]"] - 207["Segment
[1882, 1915, 0]"] - 208["Segment
[1882, 1915, 0]"] - 209["Segment
[1882, 1915, 0]"] - 210["Segment
[2072, 2141, 0]"] - 211["Segment
[2201, 2208, 0]"] - 218[Solid2d] - end - subgraph path6 [Path] - 6["Path
[2689, 2789, 0]"] - 212["Segment
[2795, 2822, 0]"] - 213["Segment
[2828, 2856, 0]"] - 214["Segment
[2862, 2890, 0]"] - 215["Segment
[2896, 2990, 0]"] - 216["Segment
[2996, 3079, 0]"] - 217["Segment
[3085, 3092, 0]"] - 220[Solid2d] - end - 1["Plane
[1413, 1430, 0]"] - 2["Plane
[1946, 1963, 0]"] - 3["StartSketchOnFace
[2652, 2683, 0]"] - 221["Sweep Extrusion
[1492, 1520, 0]"] - 222["Sweep Extrusion
[2214, 2242, 0]"] - 223["Sweep Extrusion
[3098, 3127, 0]"] - 224[Wall] - 225[Wall] - 226[Wall] - 227[Wall] - 228[Wall] - 229["Cap Start"] - 230["Cap End"] - 231["SweepEdge Opposite"] - 232["SweepEdge Opposite"] - 233["SweepEdge Opposite"] - 234["SweepEdge Opposite"] - 235["SweepEdge Opposite"] - 236["SweepEdge Adjacent"] - 237["SweepEdge Adjacent"] - 238["SweepEdge Adjacent"] - 239["SweepEdge Adjacent"] - 240["SweepEdge Adjacent"] - 1 --- 4 - 2 --- 5 - 230 x--> 3 - 4 --- 7 - 4 --- 219 - 4 ---- 221 - 5 --- 8 - 5 --- 9 - 5 --- 10 - 5 --- 11 - 5 --- 12 - 5 --- 13 - 5 --- 14 - 5 --- 15 - 5 --- 16 - 5 --- 17 - 5 --- 18 - 5 --- 19 - 5 --- 20 - 5 --- 21 - 5 --- 22 - 5 --- 23 - 5 --- 24 - 5 --- 25 - 5 --- 26 - 5 --- 27 - 5 --- 28 - 5 --- 29 - 5 --- 30 - 5 --- 31 - 5 --- 32 - 5 --- 33 - 5 --- 34 - 5 --- 35 - 5 --- 36 - 5 --- 37 - 5 --- 38 - 5 --- 39 - 5 --- 40 - 5 --- 41 - 5 --- 42 - 5 --- 43 - 5 --- 44 - 5 --- 45 - 5 --- 46 - 5 --- 47 - 5 --- 48 - 5 --- 49 - 5 --- 50 - 5 --- 51 - 5 --- 52 - 5 --- 53 - 5 --- 54 - 5 --- 55 - 5 --- 56 - 5 --- 57 - 5 --- 58 - 5 --- 59 - 5 --- 60 - 5 --- 61 - 5 --- 62 - 5 --- 63 - 5 --- 64 - 5 --- 65 - 5 --- 66 - 5 --- 67 - 5 --- 68 - 5 --- 69 - 5 --- 70 - 5 --- 71 - 5 --- 72 - 5 --- 73 - 5 --- 74 - 5 --- 75 - 5 --- 76 - 5 --- 77 - 5 --- 78 - 5 --- 79 - 5 --- 80 - 5 --- 81 - 5 --- 82 - 5 --- 83 - 5 --- 84 - 5 --- 85 - 5 --- 86 - 5 --- 87 - 5 --- 88 - 5 --- 89 - 5 --- 90 - 5 --- 91 - 5 --- 92 - 5 --- 93 - 5 --- 94 - 5 --- 95 - 5 --- 96 - 5 --- 97 - 5 --- 98 - 5 --- 99 - 5 --- 100 - 5 --- 101 - 5 --- 102 - 5 --- 103 - 5 --- 104 - 5 --- 105 - 5 --- 106 - 5 --- 107 - 5 --- 108 - 5 --- 109 - 5 --- 110 - 5 --- 111 - 5 --- 112 - 5 --- 113 - 5 --- 114 - 5 --- 115 - 5 --- 116 - 5 --- 117 - 5 --- 118 - 5 --- 119 - 5 --- 120 - 5 --- 121 - 5 --- 122 - 5 --- 123 - 5 --- 124 - 5 --- 125 - 5 --- 126 - 5 --- 127 - 5 --- 128 - 5 --- 129 - 5 --- 130 - 5 --- 131 - 5 --- 132 - 5 --- 133 - 5 --- 134 - 5 --- 135 - 5 --- 136 - 5 --- 137 - 5 --- 138 - 5 --- 139 - 5 --- 140 - 5 --- 141 - 5 --- 142 - 5 --- 143 - 5 --- 144 - 5 --- 145 - 5 --- 146 - 5 --- 147 - 5 --- 148 - 5 --- 149 - 5 --- 150 - 5 --- 151 - 5 --- 152 - 5 --- 153 - 5 --- 154 - 5 --- 155 - 5 --- 156 - 5 --- 157 - 5 --- 158 - 5 --- 159 - 5 --- 160 - 5 --- 161 - 5 --- 162 - 5 --- 163 - 5 --- 164 - 5 --- 165 - 5 --- 166 - 5 --- 167 - 5 --- 168 - 5 --- 169 - 5 --- 170 - 5 --- 171 - 5 --- 172 - 5 --- 173 - 5 --- 174 - 5 --- 175 - 5 --- 176 - 5 --- 177 - 5 --- 178 - 5 --- 179 - 5 --- 180 - 5 --- 181 - 5 --- 182 - 5 --- 183 - 5 --- 184 - 5 --- 185 - 5 --- 186 - 5 --- 187 - 5 --- 188 - 5 --- 189 - 5 --- 190 - 5 --- 191 - 5 --- 192 - 5 --- 193 - 5 --- 194 - 5 --- 195 - 5 --- 196 - 5 --- 197 - 5 --- 198 - 5 --- 199 - 5 --- 200 - 5 --- 201 - 5 --- 202 - 5 --- 203 - 5 --- 204 - 5 --- 205 - 5 --- 206 - 5 --- 207 - 5 --- 208 - 5 --- 209 - 5 --- 210 - 5 --- 211 - 5 --- 218 - 5 ---- 222 - 6 --- 212 - 6 --- 213 - 6 --- 214 - 6 --- 215 - 6 --- 216 - 6 --- 217 - 6 --- 220 - 6 ---- 223 - 230 --- 6 - 7 --- 224 - 7 x--> 229 - 7 --- 231 - 7 --- 236 - 212 --- 227 - 212 x--> 230 - 212 --- 232 - 212 --- 238 - 213 --- 228 - 213 x--> 230 - 213 --- 235 - 213 --- 239 - 214 --- 225 - 214 x--> 230 - 214 --- 234 - 214 --- 240 - 216 --- 226 - 216 x--> 230 - 216 --- 233 - 216 --- 237 - 221 --- 224 - 221 --- 229 - 221 --- 230 - 221 --- 231 - 221 --- 236 - 223 --- 225 - 223 --- 226 - 223 --- 227 - 223 --- 228 - 223 --- 232 - 223 --- 233 - 223 --- 234 - 223 --- 235 - 223 --- 237 - 223 --- 238 - 223 --- 239 - 223 --- 240 - 231 <--x 224 - 236 <--x 224 - 234 <--x 225 - 239 <--x 225 - 240 <--x 225 - 233 <--x 226 - 237 <--x 226 - 240 <--x 226 - 232 <--x 227 - 237 <--x 227 - 238 <--x 227 - 235 <--x 228 - 238 <--x 228 - 239 <--x 228 - 232 <--x 229 - 233 <--x 229 - 234 <--x 229 - 235 <--x 229 - 231 <--x 230 -``` diff --git a/rust/kcl-lib/tests/kcl_samples/gear/ast.snap b/rust/kcl-lib/tests/kcl_samples/gear/ast.snap deleted file mode 100644 index 8cce222be..000000000 --- a/rust/kcl-lib/tests/kcl_samples/gear/ast.snap +++ /dev/null @@ -1,4842 +0,0 @@ ---- -source: kcl-lib/src/simulation_tests.rs -description: Result of parsing gear.kcl ---- -{ - "Ok": { - "body": [ - { - "commentStart": 0, - "declaration": { - "commentStart": 0, - "end": 0, - "id": { - "commentStart": 0, - "end": 0, - "name": "nTeeth", - "start": 0, - "type": "Identifier" - }, - "init": { - "commentStart": 0, - "end": 0, - "raw": "21", - "start": 0, - "type": "Literal", - "type": "Literal", - "value": { - "value": 21.0, - "suffix": "None" - } - }, - "start": 0, - "type": "VariableDeclarator" - }, - "end": 0, - "kind": "const", - "preComments": [ - "// Define parameters" - ], - "start": 0, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "commentStart": 0, - "declaration": { - "commentStart": 0, - "end": 0, - "id": { - "commentStart": 0, - "end": 0, - "name": "module", - "start": 0, - "type": "Identifier" - }, - "init": { - "commentStart": 0, - "end": 0, - "raw": "0.5", - "start": 0, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.5, - "suffix": "None" - } - }, - "start": 0, - "type": "VariableDeclarator" - }, - "end": 0, - "kind": "const", - "start": 0, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "commentStart": 0, - "declaration": { - "commentStart": 0, - "end": 0, - "id": { - "commentStart": 0, - "end": 0, - "name": "pitchDiameter", - "start": 0, - "type": "Identifier" - }, - "init": { - "commentStart": 0, - "end": 0, - "left": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "module", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - }, - "operator": "*", - "right": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "nTeeth", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - }, - "start": 0, - "type": "BinaryExpression", - "type": "BinaryExpression" - }, - "start": 0, - "type": "VariableDeclarator" - }, - "end": 0, - "kind": "const", - "start": 0, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "commentStart": 0, - "declaration": { - "commentStart": 0, - "end": 0, - "id": { - "commentStart": 0, - "end": 0, - "name": "pressureAngle", - "start": 0, - "type": "Identifier" - }, - "init": { - "commentStart": 0, - "end": 0, - "raw": "20", - "start": 0, - "type": "Literal", - "type": "Literal", - "value": { - "value": 20.0, - "suffix": "None" - } - }, - "start": 0, - "type": "VariableDeclarator" - }, - "end": 0, - "kind": "const", - "start": 0, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "commentStart": 0, - "declaration": { - "commentStart": 0, - "end": 0, - "id": { - "commentStart": 0, - "end": 0, - "name": "addendum", - "start": 0, - "type": "Identifier" - }, - "init": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "module", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - }, - "start": 0, - "type": "VariableDeclarator" - }, - "end": 0, - "kind": "const", - "start": 0, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "commentStart": 0, - "declaration": { - "commentStart": 0, - "end": 0, - "id": { - "commentStart": 0, - "end": 0, - "name": "deddendum", - "start": 0, - "type": "Identifier" - }, - "init": { - "commentStart": 0, - "end": 0, - "left": { - "commentStart": 0, - "end": 0, - "raw": "1.25", - "start": 0, - "type": "Literal", - "type": "Literal", - "value": { - "value": 1.25, - "suffix": "None" - } - }, - "operator": "*", - "right": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "module", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - }, - "start": 0, - "type": "BinaryExpression", - "type": "BinaryExpression" - }, - "start": 0, - "type": "VariableDeclarator" - }, - "end": 0, - "kind": "const", - "start": 0, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "commentStart": 0, - "declaration": { - "commentStart": 0, - "end": 0, - "id": { - "commentStart": 0, - "end": 0, - "name": "baseDiameter", - "start": 0, - "type": "Identifier" - }, - "init": { - "commentStart": 0, - "end": 0, - "left": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "pitchDiameter", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - }, - "operator": "*", - "right": { - "callee": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "cos", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "pressureAngle", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - } - }, - "start": 0, - "type": "BinaryExpression", - "type": "BinaryExpression" - }, - "start": 0, - "type": "VariableDeclarator" - }, - "end": 0, - "kind": "const", - "start": 0, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "commentStart": 0, - "declaration": { - "commentStart": 0, - "end": 0, - "id": { - "commentStart": 0, - "end": 0, - "name": "tipDiameter", - "start": 0, - "type": "Identifier" - }, - "init": { - "commentStart": 0, - "end": 0, - "left": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "pitchDiameter", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - }, - "operator": "+", - "right": { - "commentStart": 0, - "end": 0, - "left": { - "commentStart": 0, - "end": 0, - "raw": "2", - "start": 0, - "type": "Literal", - "type": "Literal", - "value": { - "value": 2.0, - "suffix": "None" - } - }, - "operator": "*", - "right": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "module", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - }, - "start": 0, - "type": "BinaryExpression", - "type": "BinaryExpression" - }, - "start": 0, - "type": "BinaryExpression", - "type": "BinaryExpression" - }, - "start": 0, - "type": "VariableDeclarator" - }, - "end": 0, - "kind": "const", - "start": 0, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "commentStart": 0, - "declaration": { - "commentStart": 0, - "end": 0, - "id": { - "commentStart": 0, - "end": 0, - "name": "gearHeight", - "start": 0, - "type": "Identifier" - }, - "init": { - "commentStart": 0, - "end": 0, - "raw": "3", - "start": 0, - "type": "Literal", - "type": "Literal", - "value": { - "value": 3.0, - "suffix": "None" - } - }, - "start": 0, - "type": "VariableDeclarator" - }, - "end": 0, - "kind": "const", - "start": 0, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "commentStart": 0, - "declaration": { - "commentStart": 0, - "end": 0, - "id": { - "commentStart": 0, - "end": 0, - "name": "cmo", - "start": 0, - "type": "Identifier" - }, - "init": { - "commentStart": 0, - "end": 0, - "raw": "101", - "start": 0, - "type": "Literal", - "type": "Literal", - "value": { - "value": 101.0, - "suffix": "None" - } - }, - "start": 0, - "type": "VariableDeclarator" - }, - "end": 0, - "kind": "const", - "preComments": [ - "", - "", - "// Interpolate points along the involute curve" - ], - "start": 0, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "commentStart": 0, - "declaration": { - "commentStart": 0, - "end": 0, - "id": { - "commentStart": 0, - "end": 0, - "name": "rs", - "start": 0, - "type": "Identifier" - }, - "init": { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "commentStart": 0, - "end": 0, - "name": "f", - "start": 0, - "type": "Identifier" - }, - "arg": { - "body": { - "body": [ - { - "argument": { - "commentStart": 0, - "end": 0, - "left": { - "commentStart": 0, - "end": 0, - "left": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "baseDiameter", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - }, - "operator": "/", - "right": { - "commentStart": 0, - "end": 0, - "raw": "2", - "start": 0, - "type": "Literal", - "type": "Literal", - "value": { - "value": 2.0, - "suffix": "None" - } - }, - "start": 0, - "type": "BinaryExpression", - "type": "BinaryExpression" - }, - "operator": "+", - "right": { - "commentStart": 0, - "end": 0, - "left": { - "commentStart": 0, - "end": 0, - "left": { - "commentStart": 0, - "end": 0, - "left": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "i", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - }, - "operator": "/", - "right": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "cmo", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - }, - "start": 0, - "type": "BinaryExpression", - "type": "BinaryExpression" - }, - "operator": "*", - "right": { - "commentStart": 0, - "end": 0, - "left": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "tipDiameter", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - }, - "operator": "-", - "right": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "baseDiameter", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - }, - "start": 0, - "type": "BinaryExpression", - "type": "BinaryExpression" - }, - "start": 0, - "type": "BinaryExpression", - "type": "BinaryExpression" - }, - "operator": "/", - "right": { - "commentStart": 0, - "end": 0, - "raw": "2", - "start": 0, - "type": "Literal", - "type": "Literal", - "value": { - "value": 2.0, - "suffix": "None" - } - }, - "start": 0, - "type": "BinaryExpression", - "type": "BinaryExpression" - }, - "start": 0, - "type": "BinaryExpression", - "type": "BinaryExpression" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "ReturnStatement", - "type": "ReturnStatement" - } - ], - "commentStart": 0, - "end": 0, - "start": 0 - }, - "commentStart": 0, - "end": 0, - "params": [ - { - "type": "Parameter", - "identifier": { - "commentStart": 0, - "end": 0, - "name": "i", - "start": 0, - "type": "Identifier" - }, - "labeled": false - } - ], - "start": 0, - "type": "FunctionExpression", - "type": "FunctionExpression" - } - } - ], - "callee": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "map", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": { - "commentStart": 0, - "end": 0, - "endElement": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "cmo", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - }, - "endInclusive": true, - "start": 0, - "startElement": { - "commentStart": 0, - "end": 0, - "raw": "0", - "start": 0, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.0, - "suffix": "None" - } - }, - "type": "ArrayRangeExpression", - "type": "ArrayRangeExpression" - } - }, - "start": 0, - "type": "VariableDeclarator" - }, - "end": 0, - "kind": "const", - "start": 0, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "commentStart": 0, - "declaration": { - "commentStart": 0, - "end": 0, - "id": { - "commentStart": 0, - "end": 0, - "name": "angles", - "start": 0, - "type": "Identifier" - }, - "init": { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "commentStart": 0, - "end": 0, - "name": "f", - "start": 0, - "type": "Identifier" - }, - "arg": { - "body": { - "body": [ - { - "argument": { - "callee": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "toDegrees", - "start": 0, - "type": "Identifier" - }, - "path": [ - { - "commentStart": 0, - "end": 0, - "name": "units", - "start": 0, - "type": "Identifier" - } - ], - "start": 0, - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": { - "callee": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "acos", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": { - "commentStart": 0, - "end": 0, - "left": { - "commentStart": 0, - "end": 0, - "left": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "baseDiameter", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - }, - "operator": "/", - "right": { - "commentStart": 0, - "end": 0, - "raw": "2", - "start": 0, - "type": "Literal", - "type": "Literal", - "value": { - "value": 2.0, - "suffix": "None" - } - }, - "start": 0, - "type": "BinaryExpression", - "type": "BinaryExpression" - }, - "operator": "/", - "right": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "r", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - }, - "start": 0, - "type": "BinaryExpression", - "type": "BinaryExpression" - } - } - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "ReturnStatement", - "type": "ReturnStatement" - } - ], - "commentStart": 0, - "end": 0, - "start": 0 - }, - "commentStart": 0, - "end": 0, - "params": [ - { - "type": "Parameter", - "identifier": { - "commentStart": 0, - "end": 0, - "name": "r", - "start": 0, - "type": "Identifier" - }, - "labeled": false - } - ], - "start": 0, - "type": "FunctionExpression", - "type": "FunctionExpression" - } - } - ], - "callee": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "map", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "rs", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - } - }, - "start": 0, - "type": "VariableDeclarator" - }, - "end": 0, - "kind": "const", - "preComments": [ - "", - "", - "// Calculate operating pressure angle" - ], - "start": 0, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "commentStart": 0, - "declaration": { - "commentStart": 0, - "end": 0, - "id": { - "commentStart": 0, - "end": 0, - "name": "invas", - "start": 0, - "type": "Identifier" - }, - "init": { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "commentStart": 0, - "end": 0, - "name": "f", - "start": 0, - "type": "Identifier" - }, - "arg": { - "body": { - "body": [ - { - "argument": { - "commentStart": 0, - "end": 0, - "left": { - "callee": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "tan", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "a", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - } - }, - "operator": "-", - "right": { - "callee": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "toRadians", - "start": 0, - "type": "Identifier" - }, - "path": [ - { - "commentStart": 0, - "end": 0, - "name": "units", - "start": 0, - "type": "Identifier" - } - ], - "start": 0, - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "a", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - } - }, - "start": 0, - "type": "BinaryExpression", - "type": "BinaryExpression" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "ReturnStatement", - "type": "ReturnStatement" - } - ], - "commentStart": 0, - "end": 0, - "start": 0 - }, - "commentStart": 0, - "end": 0, - "params": [ - { - "type": "Parameter", - "identifier": { - "commentStart": 0, - "end": 0, - "name": "a", - "start": 0, - "type": "Identifier" - }, - "labeled": false - } - ], - "start": 0, - "type": "FunctionExpression", - "type": "FunctionExpression" - } - } - ], - "callee": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "map", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "angles", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - } - }, - "start": 0, - "type": "VariableDeclarator" - }, - "end": 0, - "kind": "const", - "preComments": [ - "", - "", - "// Calculate the involute function" - ], - "start": 0, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "commentStart": 0, - "declaration": { - "commentStart": 0, - "end": 0, - "id": { - "commentStart": 0, - "end": 0, - "name": "xs", - "start": 0, - "type": "Identifier" - }, - "init": { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "commentStart": 0, - "end": 0, - "name": "f", - "start": 0, - "type": "Identifier" - }, - "arg": { - "body": { - "body": [ - { - "argument": { - "commentStart": 0, - "end": 0, - "left": { - "commentStart": 0, - "computed": true, - "end": 0, - "object": { - "commentStart": 0, - "end": 0, - "name": "rs", - "start": 0, - "type": "Identifier", - "type": "Identifier" - }, - "property": { - "commentStart": 0, - "end": 0, - "name": "i", - "start": 0, - "type": "Identifier", - "type": "Identifier" - }, - "start": 0, - "type": "MemberExpression", - "type": "MemberExpression" - }, - "operator": "*", - "right": { - "callee": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "cos", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": { - "commentStart": 0, - "end": 0, - "expr": { - "commentStart": 0, - "computed": true, - "end": 0, - "object": { - "commentStart": 0, - "end": 0, - "name": "invas", - "start": 0, - "type": "Identifier", - "type": "Identifier" - }, - "property": { - "commentStart": 0, - "end": 0, - "name": "i", - "start": 0, - "type": "Identifier", - "type": "Identifier" - }, - "start": 0, - "type": "MemberExpression", - "type": "MemberExpression" - }, - "start": 0, - "ty": { - "Rad": null, - "commentStart": 0, - "end": 0, - "p_type": "Number", - "start": 0, - "type": "Primitive" - }, - "type": "AscribedExpression", - "type": "AscribedExpression" - } - }, - "start": 0, - "type": "BinaryExpression", - "type": "BinaryExpression" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "ReturnStatement", - "type": "ReturnStatement" - } - ], - "commentStart": 0, - "end": 0, - "start": 0 - }, - "commentStart": 0, - "end": 0, - "params": [ - { - "type": "Parameter", - "identifier": { - "commentStart": 0, - "end": 0, - "name": "i", - "start": 0, - "type": "Identifier" - }, - "labeled": false - } - ], - "start": 0, - "type": "FunctionExpression", - "type": "FunctionExpression" - } - } - ], - "callee": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "map", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": { - "commentStart": 0, - "end": 0, - "endElement": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "cmo", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - }, - "endInclusive": true, - "start": 0, - "startElement": { - "commentStart": 0, - "end": 0, - "raw": "0", - "start": 0, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.0, - "suffix": "None" - } - }, - "type": "ArrayRangeExpression", - "type": "ArrayRangeExpression" - } - }, - "start": 0, - "type": "VariableDeclarator" - }, - "end": 0, - "kind": "const", - "preComments": [ - "", - "", - "// Map the involute curve" - ], - "start": 0, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "commentStart": 0, - "declaration": { - "commentStart": 0, - "end": 0, - "id": { - "commentStart": 0, - "end": 0, - "name": "ys", - "start": 0, - "type": "Identifier" - }, - "init": { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "commentStart": 0, - "end": 0, - "name": "f", - "start": 0, - "type": "Identifier" - }, - "arg": { - "body": { - "body": [ - { - "argument": { - "commentStart": 0, - "end": 0, - "left": { - "commentStart": 0, - "computed": true, - "end": 0, - "object": { - "commentStart": 0, - "end": 0, - "name": "rs", - "start": 0, - "type": "Identifier", - "type": "Identifier" - }, - "property": { - "commentStart": 0, - "end": 0, - "name": "i", - "start": 0, - "type": "Identifier", - "type": "Identifier" - }, - "start": 0, - "type": "MemberExpression", - "type": "MemberExpression" - }, - "operator": "*", - "right": { - "callee": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "sin", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": { - "commentStart": 0, - "end": 0, - "expr": { - "commentStart": 0, - "computed": true, - "end": 0, - "object": { - "commentStart": 0, - "end": 0, - "name": "invas", - "start": 0, - "type": "Identifier", - "type": "Identifier" - }, - "property": { - "commentStart": 0, - "end": 0, - "name": "i", - "start": 0, - "type": "Identifier", - "type": "Identifier" - }, - "start": 0, - "type": "MemberExpression", - "type": "MemberExpression" - }, - "start": 0, - "ty": { - "Rad": null, - "commentStart": 0, - "end": 0, - "p_type": "Number", - "start": 0, - "type": "Primitive" - }, - "type": "AscribedExpression", - "type": "AscribedExpression" - } - }, - "start": 0, - "type": "BinaryExpression", - "type": "BinaryExpression" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "ReturnStatement", - "type": "ReturnStatement" - } - ], - "commentStart": 0, - "end": 0, - "start": 0 - }, - "commentStart": 0, - "end": 0, - "params": [ - { - "type": "Parameter", - "identifier": { - "commentStart": 0, - "end": 0, - "name": "i", - "start": 0, - "type": "Identifier" - }, - "labeled": false - } - ], - "start": 0, - "type": "FunctionExpression", - "type": "FunctionExpression" - } - } - ], - "callee": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "map", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": { - "commentStart": 0, - "end": 0, - "endElement": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "cmo", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - }, - "endInclusive": true, - "start": 0, - "startElement": { - "commentStart": 0, - "end": 0, - "raw": "0", - "start": 0, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.0, - "suffix": "None" - } - }, - "type": "ArrayRangeExpression", - "type": "ArrayRangeExpression" - } - }, - "start": 0, - "type": "VariableDeclarator" - }, - "end": 0, - "kind": "const", - "start": 0, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "commentStart": 0, - "declaration": { - "commentStart": 0, - "end": 0, - "id": { - "commentStart": 0, - "end": 0, - "name": "body", - "start": 0, - "type": "Identifier" - }, - "init": { - "body": [ - { - "callee": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "startSketchOn", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "XY", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - } - }, - { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "commentStart": 0, - "end": 0, - "name": "center", - "start": 0, - "type": "Identifier" - }, - "arg": { - "commentStart": 0, - "elements": [ - { - "commentStart": 0, - "end": 0, - "raw": "0", - "start": 0, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.0, - "suffix": "None" - } - }, - { - "commentStart": 0, - "end": 0, - "raw": "0", - "start": 0, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.0, - "suffix": "None" - } - } - ], - "end": 0, - "start": 0, - "type": "ArrayExpression", - "type": "ArrayExpression" - } - }, - { - "type": "LabeledArg", - "label": { - "commentStart": 0, - "end": 0, - "name": "radius", - "start": 0, - "type": "Identifier" - }, - "arg": { - "commentStart": 0, - "end": 0, - "left": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "baseDiameter", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - }, - "operator": "/", - "right": { - "commentStart": 0, - "end": 0, - "raw": "2", - "start": 0, - "type": "Literal", - "type": "Literal", - "value": { - "value": 2.0, - "suffix": "None" - } - }, - "start": 0, - "type": "BinaryExpression", - "type": "BinaryExpression" - } - } - ], - "callee": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "circle", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null - }, - { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "commentStart": 0, - "end": 0, - "name": "length", - "start": 0, - "type": "Identifier" - }, - "arg": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "gearHeight", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - } - } - ], - "callee": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "extrude", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null - } - ], - "commentStart": 0, - "end": 0, - "start": 0, - "type": "PipeExpression", - "type": "PipeExpression" - }, - "start": 0, - "type": "VariableDeclarator" - }, - "end": 0, - "kind": "const", - "preComments": [ - "", - "", - "// Extrude the gear body" - ], - "start": 0, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "commentStart": 0, - "declaration": { - "commentStart": 0, - "end": 0, - "id": { - "commentStart": 0, - "end": 0, - "name": "toothAngle", - "start": 0, - "type": "Identifier" - }, - "init": { - "commentStart": 0, - "end": 0, - "left": { - "commentStart": 0, - "end": 0, - "left": { - "commentStart": 0, - "end": 0, - "raw": "360", - "start": 0, - "type": "Literal", - "type": "Literal", - "value": { - "value": 360.0, - "suffix": "None" - } - }, - "operator": "/", - "right": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "nTeeth", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - }, - "start": 0, - "type": "BinaryExpression", - "type": "BinaryExpression" - }, - "operator": "/", - "right": { - "commentStart": 0, - "end": 0, - "raw": "1.5", - "start": 0, - "type": "Literal", - "type": "Literal", - "value": { - "value": 1.5, - "suffix": "None" - } - }, - "start": 0, - "type": "BinaryExpression", - "type": "BinaryExpression" - }, - "start": 0, - "type": "VariableDeclarator" - }, - "end": 0, - "kind": "const", - "start": 0, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "commentStart": 0, - "declaration": { - "commentStart": 0, - "end": 0, - "id": { - "commentStart": 0, - "end": 0, - "name": "leftInvolute", - "start": 0, - "type": "Identifier" - }, - "init": { - "body": { - "body": [ - { - "commentStart": 0, - "declaration": { - "commentStart": 0, - "end": 0, - "id": { - "commentStart": 0, - "end": 0, - "name": "j", - "start": 0, - "type": "Identifier" - }, - "init": { - "commentStart": 0, - "end": 0, - "left": { - "commentStart": 0, - "end": 0, - "raw": "100", - "start": 0, - "type": "Literal", - "type": "Literal", - "value": { - "value": 100.0, - "suffix": "None" - } - }, - "operator": "-", - "right": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "i", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - }, - "start": 0, - "type": "BinaryExpression", - "type": "BinaryExpression" - }, - "start": 0, - "type": "VariableDeclarator" - }, - "end": 0, - "kind": "const", - "start": 0, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "argument": { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "commentStart": 0, - "end": 0, - "name": "endAbsolute", - "start": 0, - "type": "Identifier" - }, - "arg": { - "commentStart": 0, - "elements": [ - { - "commentStart": 0, - "computed": true, - "end": 0, - "object": { - "commentStart": 0, - "end": 0, - "name": "xs", - "start": 0, - "type": "Identifier", - "type": "Identifier" - }, - "property": { - "commentStart": 0, - "end": 0, - "name": "j", - "start": 0, - "type": "Identifier", - "type": "Identifier" - }, - "start": 0, - "type": "MemberExpression", - "type": "MemberExpression" - }, - { - "commentStart": 0, - "computed": true, - "end": 0, - "object": { - "commentStart": 0, - "end": 0, - "name": "ys", - "start": 0, - "type": "Identifier", - "type": "Identifier" - }, - "property": { - "commentStart": 0, - "end": 0, - "name": "j", - "start": 0, - "type": "Identifier", - "type": "Identifier" - }, - "start": 0, - "type": "MemberExpression", - "type": "MemberExpression" - } - ], - "end": 0, - "start": 0, - "type": "ArrayExpression", - "type": "ArrayExpression" - } - } - ], - "callee": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "line", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "accum", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - } - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "ReturnStatement", - "type": "ReturnStatement" - } - ], - "commentStart": 0, - "end": 0, - "nonCodeMeta": { - "nonCodeNodes": { - "0": [ - { - "commentStart": 0, - "end": 0, - "start": 0, - "type": "NonCodeNode", - "value": { - "type": "inlineComment", - "value": "iterate backwards", - "style": "line" - } - } - ] - }, - "startNodes": [] - }, - "start": 0 - }, - "commentStart": 0, - "end": 0, - "params": [ - { - "type": "Parameter", - "identifier": { - "commentStart": 0, - "end": 0, - "name": "i", - "start": 0, - "type": "Identifier" - }, - "labeled": false - }, - { - "type": "Parameter", - "identifier": { - "commentStart": 0, - "end": 0, - "name": "accum", - "start": 0, - "type": "Identifier" - } - } - ], - "start": 0, - "type": "FunctionExpression", - "type": "FunctionExpression" - }, - "start": 0, - "type": "VariableDeclarator" - }, - "end": 0, - "kind": "fn", - "preComments": [ - "", - "", - "// Plot the involute curve" - ], - "start": 0, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "commentStart": 0, - "declaration": { - "commentStart": 0, - "end": 0, - "id": { - "commentStart": 0, - "end": 0, - "name": "rightInvolute", - "start": 0, - "type": "Identifier" - }, - "init": { - "body": { - "body": [ - { - "commentStart": 0, - "declaration": { - "commentStart": 0, - "end": 0, - "id": { - "commentStart": 0, - "end": 0, - "name": "x", - "start": 0, - "type": "Identifier" - }, - "init": { - "commentStart": 0, - "end": 0, - "left": { - "commentStart": 0, - "computed": true, - "end": 0, - "object": { - "commentStart": 0, - "end": 0, - "name": "rs", - "start": 0, - "type": "Identifier", - "type": "Identifier" - }, - "property": { - "commentStart": 0, - "end": 0, - "name": "i", - "start": 0, - "type": "Identifier", - "type": "Identifier" - }, - "start": 0, - "type": "MemberExpression", - "type": "MemberExpression" - }, - "operator": "*", - "right": { - "callee": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "cos", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": { - "commentStart": 0, - "end": 0, - "left": { - "argument": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "toothAngle", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "operator": "-", - "start": 0, - "type": "UnaryExpression", - "type": "UnaryExpression" - }, - "operator": "+", - "right": { - "callee": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "toDegrees", - "start": 0, - "type": "Identifier" - }, - "path": [ - { - "commentStart": 0, - "end": 0, - "name": "units", - "start": 0, - "type": "Identifier" - } - ], - "start": 0, - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": { - "callee": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "atan", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": { - "commentStart": 0, - "end": 0, - "left": { - "commentStart": 0, - "computed": true, - "end": 0, - "object": { - "commentStart": 0, - "end": 0, - "name": "ys", - "start": 0, - "type": "Identifier", - "type": "Identifier" - }, - "property": { - "commentStart": 0, - "end": 0, - "name": "i", - "start": 0, - "type": "Identifier", - "type": "Identifier" - }, - "start": 0, - "type": "MemberExpression", - "type": "MemberExpression" - }, - "operator": "/", - "right": { - "commentStart": 0, - "computed": true, - "end": 0, - "object": { - "commentStart": 0, - "end": 0, - "name": "xs", - "start": 0, - "type": "Identifier", - "type": "Identifier" - }, - "property": { - "commentStart": 0, - "end": 0, - "name": "i", - "start": 0, - "type": "Identifier", - "type": "Identifier" - }, - "start": 0, - "type": "MemberExpression", - "type": "MemberExpression" - }, - "start": 0, - "type": "BinaryExpression", - "type": "BinaryExpression" - } - } - }, - "start": 0, - "type": "BinaryExpression", - "type": "BinaryExpression" - } - }, - "start": 0, - "type": "BinaryExpression", - "type": "BinaryExpression" - }, - "start": 0, - "type": "VariableDeclarator" - }, - "end": 0, - "kind": "const", - "start": 0, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "commentStart": 0, - "declaration": { - "commentStart": 0, - "end": 0, - "id": { - "commentStart": 0, - "end": 0, - "name": "y", - "start": 0, - "type": "Identifier" - }, - "init": { - "commentStart": 0, - "end": 0, - "left": { - "argument": { - "commentStart": 0, - "computed": true, - "end": 0, - "object": { - "commentStart": 0, - "end": 0, - "name": "rs", - "start": 0, - "type": "Identifier", - "type": "Identifier" - }, - "property": { - "commentStart": 0, - "end": 0, - "name": "i", - "start": 0, - "type": "Identifier", - "type": "Identifier" - }, - "start": 0, - "type": "MemberExpression", - "type": "MemberExpression" - }, - "commentStart": 0, - "end": 0, - "operator": "-", - "start": 0, - "type": "UnaryExpression", - "type": "UnaryExpression" - }, - "operator": "*", - "right": { - "callee": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "sin", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": { - "commentStart": 0, - "end": 0, - "left": { - "argument": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "toothAngle", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "operator": "-", - "start": 0, - "type": "UnaryExpression", - "type": "UnaryExpression" - }, - "operator": "+", - "right": { - "callee": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "toDegrees", - "start": 0, - "type": "Identifier" - }, - "path": [ - { - "commentStart": 0, - "end": 0, - "name": "units", - "start": 0, - "type": "Identifier" - } - ], - "start": 0, - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": { - "callee": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "atan", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": { - "commentStart": 0, - "end": 0, - "left": { - "commentStart": 0, - "computed": true, - "end": 0, - "object": { - "commentStart": 0, - "end": 0, - "name": "ys", - "start": 0, - "type": "Identifier", - "type": "Identifier" - }, - "property": { - "commentStart": 0, - "end": 0, - "name": "i", - "start": 0, - "type": "Identifier", - "type": "Identifier" - }, - "start": 0, - "type": "MemberExpression", - "type": "MemberExpression" - }, - "operator": "/", - "right": { - "commentStart": 0, - "computed": true, - "end": 0, - "object": { - "commentStart": 0, - "end": 0, - "name": "xs", - "start": 0, - "type": "Identifier", - "type": "Identifier" - }, - "property": { - "commentStart": 0, - "end": 0, - "name": "i", - "start": 0, - "type": "Identifier", - "type": "Identifier" - }, - "start": 0, - "type": "MemberExpression", - "type": "MemberExpression" - }, - "start": 0, - "type": "BinaryExpression", - "type": "BinaryExpression" - } - } - }, - "start": 0, - "type": "BinaryExpression", - "type": "BinaryExpression" - } - }, - "start": 0, - "type": "BinaryExpression", - "type": "BinaryExpression" - }, - "start": 0, - "type": "VariableDeclarator" - }, - "end": 0, - "kind": "const", - "start": 0, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "argument": { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "commentStart": 0, - "end": 0, - "name": "endAbsolute", - "start": 0, - "type": "Identifier" - }, - "arg": { - "commentStart": 0, - "elements": [ - { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "x", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - }, - { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "y", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - } - ], - "end": 0, - "start": 0, - "type": "ArrayExpression", - "type": "ArrayExpression" - } - } - ], - "callee": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "line", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "accum", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - } - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "ReturnStatement", - "type": "ReturnStatement" - } - ], - "commentStart": 0, - "end": 0, - "start": 0 - }, - "commentStart": 0, - "end": 0, - "params": [ - { - "type": "Parameter", - "identifier": { - "commentStart": 0, - "end": 0, - "name": "i", - "start": 0, - "type": "Identifier" - }, - "labeled": false - }, - { - "type": "Parameter", - "identifier": { - "commentStart": 0, - "end": 0, - "name": "accum", - "start": 0, - "type": "Identifier" - } - } - ], - "start": 0, - "type": "FunctionExpression", - "type": "FunctionExpression" - }, - "start": 0, - "type": "VariableDeclarator" - }, - "end": 0, - "kind": "fn", - "start": 0, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "commentStart": 0, - "declaration": { - "commentStart": 0, - "end": 0, - "id": { - "commentStart": 0, - "end": 0, - "name": "start", - "start": 0, - "type": "Identifier" - }, - "init": { - "body": [ - { - "callee": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "startSketchOn", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "XY", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - } - }, - { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "commentStart": 0, - "end": 0, - "name": "at", - "start": 0, - "type": "Identifier" - }, - "arg": { - "commentStart": 0, - "elements": [ - { - "commentStart": 0, - "computed": false, - "end": 0, - "object": { - "commentStart": 0, - "end": 0, - "name": "xs", - "start": 0, - "type": "Identifier", - "type": "Identifier" - }, - "property": { - "commentStart": 0, - "end": 0, - "raw": "101", - "start": 0, - "type": "Literal", - "type": "Literal", - "value": { - "value": 101.0, - "suffix": "None" - } - }, - "start": 0, - "type": "MemberExpression", - "type": "MemberExpression" - }, - { - "commentStart": 0, - "computed": false, - "end": 0, - "object": { - "commentStart": 0, - "end": 0, - "name": "ys", - "start": 0, - "type": "Identifier", - "type": "Identifier" - }, - "property": { - "commentStart": 0, - "end": 0, - "raw": "101", - "start": 0, - "type": "Literal", - "type": "Literal", - "value": { - "value": 101.0, - "suffix": "None" - } - }, - "start": 0, - "type": "MemberExpression", - "type": "MemberExpression" - } - ], - "end": 0, - "start": 0, - "type": "ArrayExpression", - "type": "ArrayExpression" - } - } - ], - "callee": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "startProfile", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null - } - ], - "commentStart": 0, - "end": 0, - "start": 0, - "type": "PipeExpression", - "type": "PipeExpression" - }, - "start": 0, - "type": "VariableDeclarator" - }, - "end": 0, - "kind": "const", - "preComments": [ - "", - "", - "// Draw gear teeth" - ], - "start": 0, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "commentStart": 0, - "declaration": { - "commentStart": 0, - "end": 0, - "id": { - "commentStart": 0, - "end": 0, - "name": "teeth", - "start": 0, - "type": "Identifier" - }, - "init": { - "body": [ - { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "commentStart": 0, - "end": 0, - "name": "initial", - "start": 0, - "type": "Identifier" - }, - "arg": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "start", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - } - }, - { - "type": "LabeledArg", - "label": { - "commentStart": 0, - "end": 0, - "name": "f", - "start": 0, - "type": "Identifier" - }, - "arg": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "leftInvolute", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - } - } - ], - "callee": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "reduce", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": { - "commentStart": 0, - "end": 0, - "endElement": { - "commentStart": 0, - "end": 0, - "raw": "100", - "start": 0, - "type": "Literal", - "type": "Literal", - "value": { - "value": 100.0, - "suffix": "None" - } - }, - "endInclusive": true, - "start": 0, - "startElement": { - "commentStart": 0, - "end": 0, - "raw": "0", - "start": 0, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.0, - "suffix": "None" - } - }, - "type": "ArrayRangeExpression", - "type": "ArrayRangeExpression" - } - }, - { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "commentStart": 0, - "end": 0, - "name": "angleStart", - "start": 0, - "type": "Identifier" - }, - "arg": { - "commentStart": 0, - "end": 0, - "raw": "0", - "start": 0, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.0, - "suffix": "None" - } - } - }, - { - "type": "LabeledArg", - "label": { - "commentStart": 0, - "end": 0, - "name": "angleEnd", - "start": 0, - "type": "Identifier" - }, - "arg": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "toothAngle", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - } - }, - { - "type": "LabeledArg", - "label": { - "commentStart": 0, - "end": 0, - "name": "radius", - "start": 0, - "type": "Identifier" - }, - "arg": { - "commentStart": 0, - "end": 0, - "left": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "baseDiameter", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - }, - "operator": "/", - "right": { - "commentStart": 0, - "end": 0, - "raw": "2", - "start": 0, - "type": "Literal", - "type": "Literal", - "value": { - "value": 2.0, - "suffix": "None" - } - }, - "start": 0, - "type": "BinaryExpression", - "type": "BinaryExpression" - } - } - ], - "callee": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "arc", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null - }, - { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "commentStart": 0, - "end": 0, - "name": "initial", - "start": 0, - "type": "Identifier" - }, - "arg": { - "commentStart": 0, - "end": 0, - "start": 0, - "type": "PipeSubstitution", - "type": "PipeSubstitution" - } - }, - { - "type": "LabeledArg", - "label": { - "commentStart": 0, - "end": 0, - "name": "f", - "start": 0, - "type": "Identifier" - }, - "arg": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "rightInvolute", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - } - } - ], - "callee": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "reduce", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": { - "commentStart": 0, - "end": 0, - "endElement": { - "commentStart": 0, - "end": 0, - "raw": "101", - "start": 0, - "type": "Literal", - "type": "Literal", - "value": { - "value": 101.0, - "suffix": "None" - } - }, - "endInclusive": true, - "start": 0, - "startElement": { - "commentStart": 0, - "end": 0, - "raw": "1", - "start": 0, - "type": "Literal", - "type": "Literal", - "value": { - "value": 1.0, - "suffix": "None" - } - }, - "type": "ArrayRangeExpression", - "type": "ArrayRangeExpression" - } - }, - { - "callee": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "close", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null - }, - { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "commentStart": 0, - "end": 0, - "name": "length", - "start": 0, - "type": "Identifier" - }, - "arg": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "gearHeight", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - } - } - ], - "callee": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "extrude", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null - }, - { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "commentStart": 0, - "end": 0, - "name": "axis", - "start": 0, - "type": "Identifier" - }, - "arg": { - "commentStart": 0, - "elements": [ - { - "commentStart": 0, - "end": 0, - "raw": "0", - "start": 0, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.0, - "suffix": "None" - } - }, - { - "commentStart": 0, - "end": 0, - "raw": "0", - "start": 0, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.0, - "suffix": "None" - } - }, - { - "commentStart": 0, - "end": 0, - "raw": "1", - "start": 0, - "type": "Literal", - "type": "Literal", - "value": { - "value": 1.0, - "suffix": "None" - } - } - ], - "end": 0, - "start": 0, - "type": "ArrayExpression", - "type": "ArrayExpression" - } - }, - { - "type": "LabeledArg", - "label": { - "commentStart": 0, - "end": 0, - "name": "center", - "start": 0, - "type": "Identifier" - }, - "arg": { - "commentStart": 0, - "elements": [ - { - "commentStart": 0, - "end": 0, - "raw": "0", - "start": 0, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.0, - "suffix": "None" - } - }, - { - "commentStart": 0, - "end": 0, - "raw": "0", - "start": 0, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.0, - "suffix": "None" - } - }, - { - "commentStart": 0, - "end": 0, - "raw": "0", - "start": 0, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.0, - "suffix": "None" - } - } - ], - "end": 0, - "start": 0, - "type": "ArrayExpression", - "type": "ArrayExpression" - } - }, - { - "type": "LabeledArg", - "label": { - "commentStart": 0, - "end": 0, - "name": "instances", - "start": 0, - "type": "Identifier" - }, - "arg": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "nTeeth", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - } - }, - { - "type": "LabeledArg", - "label": { - "commentStart": 0, - "end": 0, - "name": "arcDegrees", - "start": 0, - "type": "Identifier" - }, - "arg": { - "commentStart": 0, - "end": 0, - "raw": "360", - "start": 0, - "type": "Literal", - "type": "Literal", - "value": { - "value": 360.0, - "suffix": "None" - } - } - }, - { - "type": "LabeledArg", - "label": { - "commentStart": 0, - "end": 0, - "name": "rotateDuplicates", - "start": 0, - "type": "Identifier" - }, - "arg": { - "commentStart": 0, - "end": 0, - "raw": "true", - "start": 0, - "type": "Literal", - "type": "Literal", - "value": true - } - } - ], - "callee": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "patternCircular3d", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null - } - ], - "commentStart": 0, - "end": 0, - "nonCodeMeta": { - "nonCodeNodes": { - "5": [ - { - "commentStart": 0, - "end": 0, - "start": 0, - "type": "NonCodeNode", - "value": { - "type": "newLineBlockComment", - "value": "Define the constants of the keyway and the bore hole", - "style": "line" - } - } - ] - }, - "startNodes": [] - }, - "start": 0, - "type": "PipeExpression", - "type": "PipeExpression" - }, - "start": 0, - "type": "VariableDeclarator" - }, - "end": 0, - "kind": "const", - "start": 0, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "commentStart": 0, - "declaration": { - "commentStart": 0, - "end": 0, - "id": { - "commentStart": 0, - "end": 0, - "name": "keywayWidth", - "start": 0, - "type": "Identifier" - }, - "init": { - "commentStart": 0, - "end": 0, - "raw": "0.250", - "start": 0, - "type": "Literal", - "type": "Literal", - "value": { - "value": 0.25, - "suffix": "None" - } - }, - "start": 0, - "type": "VariableDeclarator" - }, - "end": 0, - "kind": "const", - "start": 0, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "commentStart": 0, - "declaration": { - "commentStart": 0, - "end": 0, - "id": { - "commentStart": 0, - "end": 0, - "name": "keywayDepth", - "start": 0, - "type": "Identifier" - }, - "init": { - "commentStart": 0, - "end": 0, - "left": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "keywayWidth", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - }, - "operator": "/", - "right": { - "commentStart": 0, - "end": 0, - "raw": "2", - "start": 0, - "type": "Literal", - "type": "Literal", - "value": { - "value": 2.0, - "suffix": "None" - } - }, - "start": 0, - "type": "BinaryExpression", - "type": "BinaryExpression" - }, - "start": 0, - "type": "VariableDeclarator" - }, - "end": 0, - "kind": "const", - "start": 0, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "commentStart": 0, - "declaration": { - "commentStart": 0, - "end": 0, - "id": { - "commentStart": 0, - "end": 0, - "name": "holeDiam", - "start": 0, - "type": "Identifier" - }, - "init": { - "commentStart": 0, - "end": 0, - "raw": "2", - "start": 0, - "type": "Literal", - "type": "Literal", - "value": { - "value": 2.0, - "suffix": "None" - } - }, - "start": 0, - "type": "VariableDeclarator" - }, - "end": 0, - "kind": "const", - "start": 0, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "commentStart": 0, - "declaration": { - "commentStart": 0, - "end": 0, - "id": { - "commentStart": 0, - "end": 0, - "name": "holeRadius", - "start": 0, - "type": "Identifier" - }, - "init": { - "commentStart": 0, - "end": 0, - "raw": "1", - "start": 0, - "type": "Literal", - "type": "Literal", - "value": { - "value": 1.0, - "suffix": "None" - } - }, - "start": 0, - "type": "VariableDeclarator" - }, - "end": 0, - "kind": "const", - "start": 0, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "commentStart": 0, - "declaration": { - "commentStart": 0, - "end": 0, - "id": { - "commentStart": 0, - "end": 0, - "name": "startAngle", - "start": 0, - "type": "Identifier" - }, - "init": { - "callee": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "asin", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": { - "commentStart": 0, - "end": 0, - "left": { - "commentStart": 0, - "end": 0, - "left": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "keywayWidth", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - }, - "operator": "/", - "right": { - "commentStart": 0, - "end": 0, - "raw": "2", - "start": 0, - "type": "Literal", - "type": "Literal", - "value": { - "value": 2.0, - "suffix": "None" - } - }, - "start": 0, - "type": "BinaryExpression", - "type": "BinaryExpression" - }, - "operator": "/", - "right": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "holeRadius", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - }, - "start": 0, - "type": "BinaryExpression", - "type": "BinaryExpression" - } - }, - "start": 0, - "type": "VariableDeclarator" - }, - "end": 0, - "kind": "const", - "start": 0, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - }, - { - "commentStart": 0, - "declaration": { - "commentStart": 0, - "end": 0, - "id": { - "commentStart": 0, - "end": 0, - "name": "keyWay", - "start": 0, - "type": "Identifier" - }, - "init": { - "body": [ - { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "commentStart": 0, - "end": 0, - "name": "face", - "start": 0, - "type": "Identifier" - }, - "arg": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "END", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - } - } - ], - "callee": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "startSketchOn", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "body", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - } - }, - { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "commentStart": 0, - "end": 0, - "name": "at", - "start": 0, - "type": "Identifier" - }, - "arg": { - "commentStart": 0, - "elements": [ - { - "commentStart": 0, - "end": 0, - "left": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "holeRadius", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - }, - "operator": "*", - "right": { - "callee": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "cos", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "startAngle", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - } - }, - "start": 0, - "type": "BinaryExpression", - "type": "BinaryExpression" - }, - { - "commentStart": 0, - "end": 0, - "left": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "holeRadius", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - }, - "operator": "*", - "right": { - "callee": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "sin", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "startAngle", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - } - }, - "start": 0, - "type": "BinaryExpression", - "type": "BinaryExpression" - } - ], - "end": 0, - "start": 0, - "type": "ArrayExpression", - "type": "ArrayExpression" - } - } - ], - "callee": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "startProfile", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null - }, - { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "commentStart": 0, - "end": 0, - "name": "length", - "start": 0, - "type": "Identifier" - }, - "arg": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "keywayDepth", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - } - } - ], - "callee": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "xLine", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null - }, - { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "commentStart": 0, - "end": 0, - "name": "length", - "start": 0, - "type": "Identifier" - }, - "arg": { - "argument": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "keywayWidth", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "operator": "-", - "start": 0, - "type": "UnaryExpression", - "type": "UnaryExpression" - } - } - ], - "callee": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "yLine", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null - }, - { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "commentStart": 0, - "end": 0, - "name": "length", - "start": 0, - "type": "Identifier" - }, - "arg": { - "argument": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "keywayDepth", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "operator": "-", - "start": 0, - "type": "UnaryExpression", - "type": "UnaryExpression" - } - } - ], - "callee": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "xLine", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null - }, - { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "commentStart": 0, - "end": 0, - "name": "angleStart", - "start": 0, - "type": "Identifier" - }, - "arg": { - "commentStart": 0, - "end": 0, - "left": { - "commentStart": 0, - "end": 0, - "left": { - "argument": { - "commentStart": 0, - "end": 0, - "raw": "1", - "start": 0, - "type": "Literal", - "type": "Literal", - "value": { - "value": 1.0, - "suffix": "None" - } - }, - "commentStart": 0, - "end": 0, - "operator": "-", - "start": 0, - "type": "UnaryExpression", - "type": "UnaryExpression" - }, - "operator": "*", - "right": { - "callee": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "toDegrees", - "start": 0, - "type": "Identifier" - }, - "path": [ - { - "commentStart": 0, - "end": 0, - "name": "units", - "start": 0, - "type": "Identifier" - } - ], - "start": 0, - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "startAngle", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - } - }, - "start": 0, - "type": "BinaryExpression", - "type": "BinaryExpression" - }, - "operator": "+", - "right": { - "commentStart": 0, - "end": 0, - "raw": "360", - "start": 0, - "type": "Literal", - "type": "Literal", - "value": { - "value": 360.0, - "suffix": "None" - } - }, - "start": 0, - "type": "BinaryExpression", - "type": "BinaryExpression" - } - }, - { - "type": "LabeledArg", - "label": { - "commentStart": 0, - "end": 0, - "name": "angleEnd", - "start": 0, - "type": "Identifier" - }, - "arg": { - "commentStart": 0, - "end": 0, - "raw": "180", - "start": 0, - "type": "Literal", - "type": "Literal", - "value": { - "value": 180.0, - "suffix": "None" - } - } - }, - { - "type": "LabeledArg", - "label": { - "commentStart": 0, - "end": 0, - "name": "radius", - "start": 0, - "type": "Identifier" - }, - "arg": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "holeRadius", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - } - } - ], - "callee": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "arc", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null - }, - { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "commentStart": 0, - "end": 0, - "name": "angleStart", - "start": 0, - "type": "Identifier" - }, - "arg": { - "commentStart": 0, - "end": 0, - "raw": "180", - "start": 0, - "type": "Literal", - "type": "Literal", - "value": { - "value": 180.0, - "suffix": "None" - } - } - }, - { - "type": "LabeledArg", - "label": { - "commentStart": 0, - "end": 0, - "name": "angleEnd", - "start": 0, - "type": "Identifier" - }, - "arg": { - "callee": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "toDegrees", - "start": 0, - "type": "Identifier" - }, - "path": [ - { - "commentStart": 0, - "end": 0, - "name": "units", - "start": 0, - "type": "Identifier" - } - ], - "start": 0, - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "startAngle", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - } - } - }, - { - "type": "LabeledArg", - "label": { - "commentStart": 0, - "end": 0, - "name": "radius", - "start": 0, - "type": "Identifier" - }, - "arg": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "holeRadius", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - } - } - ], - "callee": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "arc", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null - }, - { - "callee": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "close", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null - }, - { - "arguments": [ - { - "type": "LabeledArg", - "label": { - "commentStart": 0, - "end": 0, - "name": "length", - "start": 0, - "type": "Identifier" - }, - "arg": { - "argument": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "gearHeight", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "operator": "-", - "start": 0, - "type": "UnaryExpression", - "type": "UnaryExpression" - } - } - ], - "callee": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "extrude", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name" - }, - "commentStart": 0, - "end": 0, - "start": 0, - "type": "CallExpressionKw", - "type": "CallExpressionKw", - "unlabeled": null - } - ], - "commentStart": 0, - "end": 0, - "start": 0, - "type": "PipeExpression", - "type": "PipeExpression" - }, - "start": 0, - "type": "VariableDeclarator" - }, - "end": 0, - "kind": "const", - "preComments": [ - "", - "", - "// Sketch the keyway and center hole and extrude" - ], - "start": 0, - "type": "VariableDeclaration", - "type": "VariableDeclaration" - } - ], - "commentStart": 0, - "end": 0, - "innerAttrs": [ - { - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "settings", - "start": 0, - "type": "Identifier" - }, - "preComments": [ - "// Spur Gear", - "// A rotating machine part having cut teeth or, in the case of a cogwheel, inserted teeth (called cogs), which mesh with another toothed part to transmit torque. Geared devices can change the speed, torque, and direction of a power source. The two elements that define a gear are its circular shape and the teeth that are integrated into its outer edge, which are designed to fit into the teeth of another gear.", - "", - "", - "// Set units" - ], - "properties": [ - { - "commentStart": 0, - "end": 0, - "key": { - "commentStart": 0, - "end": 0, - "name": "defaultLengthUnit", - "start": 0, - "type": "Identifier" - }, - "start": 0, - "type": "ObjectProperty", - "value": { - "abs_path": false, - "commentStart": 0, - "end": 0, - "name": { - "commentStart": 0, - "end": 0, - "name": "in", - "start": 0, - "type": "Identifier" - }, - "path": [], - "start": 0, - "type": "Name", - "type": "Name" - } - }, - { - "commentStart": 0, - "end": 0, - "key": { - "commentStart": 0, - "end": 0, - "name": "kclVersion", - "start": 0, - "type": "Identifier" - }, - "start": 0, - "type": "ObjectProperty", - "value": { - "commentStart": 0, - "end": 0, - "raw": "1.0", - "start": 0, - "type": "Literal", - "type": "Literal", - "value": { - "value": 1.0, - "suffix": "None" - } - } - } - ], - "start": 0, - "type": "Annotation" - } - ], - "nonCodeMeta": { - "nonCodeNodes": { - "13": [ - { - "commentStart": 0, - "end": 0, - "start": 0, - "type": "NonCodeNode", - "value": { - "type": "newLine" - } - } - ], - "15": [ - { - "commentStart": 0, - "end": 0, - "start": 0, - "type": "NonCodeNode", - "value": { - "type": "newLine" - } - } - ], - "17": [ - { - "commentStart": 0, - "end": 0, - "start": 0, - "type": "NonCodeNode", - "value": { - "type": "newLine" - } - } - ] - }, - "startNodes": [ - { - "commentStart": 0, - "end": 0, - "start": 0, - "type": "NonCodeNode", - "value": { - "type": "newLine" - } - } - ] - }, - "start": 0 - } -} diff --git a/rust/kcl-lib/tests/kcl_samples/gear/ops.snap b/rust/kcl-lib/tests/kcl_samples/gear/ops.snap deleted file mode 100644 index 8c9979df9..000000000 --- a/rust/kcl-lib/tests/kcl_samples/gear/ops.snap +++ /dev/null @@ -1,32760 +0,0 @@ ---- -source: kcl-lib/src/simulation_tests.rs -description: Operations executed gear.kcl ---- -[ - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 2.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 3.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 4.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 6.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 7.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 8.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 9.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 10.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 11.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 12.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 13.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 14.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 15.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 16.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 17.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 18.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 19.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 20.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 21.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 22.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 23.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 24.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 25.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 26.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 27.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 28.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 29.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 30.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 31.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 32.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 33.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 34.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 35.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 36.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 37.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 38.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 39.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 40.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 41.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 42.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 43.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 44.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 45.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 46.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 47.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 48.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 49.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 50.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 51.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 52.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 53.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 54.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 55.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 56.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 57.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 58.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 59.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 60.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 61.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 62.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 63.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 64.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 65.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 66.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 67.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 68.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 69.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 70.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 71.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 72.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 73.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 74.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 75.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 76.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 77.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 78.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 79.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 80.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 81.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 82.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 83.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 84.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 85.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 86.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 87.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 88.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 89.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 90.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 91.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 92.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 93.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 94.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 95.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 96.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 97.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 98.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 99.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 100.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 101.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 4.9334, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 4.9415, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 4.9496, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 4.9576, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 4.9657, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 4.9738, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 4.9819, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 4.99, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 4.9981, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.0062, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.0142, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.0223, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.0304, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.0385, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.0466, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.0547, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.0628, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.0708, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.0789, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.087, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.0951, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.1032, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.1113, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.1193, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.1274, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.1355, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.1436, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.1517, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.1598, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.1679, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.1759, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.184, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.1921, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.2002, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.2083, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.2164, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.2245, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.2325, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.2406, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.2487, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.2568, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.2649, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.273, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.2811, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.2891, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.2972, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.3053, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.3134, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.3215, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.3296, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.3377, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.3457, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.3538, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.3619, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.37, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.3781, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.3862, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.3942, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.4023, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.4104, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.4185, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.4266, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.4347, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.4428, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.4508, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.4589, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.467, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.4751, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.4832, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.4913, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.4994, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.5074, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.5155, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.5236, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.5317, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.5398, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.5479, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.556, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.564, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.5721, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.5802, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.5883, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.5964, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.6045, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.6126, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.6206, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.6287, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.6368, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.6449, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.653, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.6611, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.6691, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.6772, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.6853, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.6934, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.7015, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.7096, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.7177, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.7257, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.7338, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.7419, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.75, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0572, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0809, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.099, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.1142, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.1276, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.1397, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.1508, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.1611, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.1707, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.1798, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.1885, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.1967, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.2046, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.2122, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.2195, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.2265, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.2334, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.24, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.2464, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.2526, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.2587, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.2646, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.2704, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.276, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.2815, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.2869, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.2922, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.2973, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.3024, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.3074, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.3122, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.317, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.3217, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.3264, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.3309, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.3354, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.3398, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.3441, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.3484, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.3526, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.3568, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.3608, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.3649, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.3689, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.3728, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.3767, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.3805, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.3843, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.388, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.3917, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.3953, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.3989, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.4025, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.406, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.4095, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.413, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.4164, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.4197, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.4231, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.4264, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.4296, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.4329, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.4361, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.4393, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.4424, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.4455, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.4486, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.4516, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.4547, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.4577, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.4606, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.4636, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.4665, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.4694, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.4723, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.4751, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.4779, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.4807, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.4835, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.4863, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.489, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.4917, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.4944, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.4971, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.4997, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.5023, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.5049, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.5075, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.5101, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.5126, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.5152, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.5177, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.5202, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.5226, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.5251, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.5275, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.5299, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.5324, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.5347, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.5371, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.5395, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 3.2781, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 4.6327, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.67, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 6.5427, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 7.31, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 8.0023, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 8.6377, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 9.2278, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 9.781, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 10.3031, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 10.7987, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 11.2713, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 11.7237, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 12.1581, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 12.5764, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 12.9802, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 13.3708, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 13.7492, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 14.1166, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 14.4737, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 14.8213, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 15.16, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 15.4905, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 15.8132, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 16.1286, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 16.4372, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 16.7393, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 17.0353, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 17.3255, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 17.6101, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 17.8895, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 18.1639, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 18.4335, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 18.6985, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 18.9591, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 19.2156, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 19.468, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 19.7165, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 19.9613, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 20.2026, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 20.4404, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 20.6748, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 20.906, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 21.1341, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 21.3592, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 21.5814, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 21.8007, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 22.0174, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 22.2313, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 22.4427, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 22.6516, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 22.858, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 23.0621, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 23.2639, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 23.4635, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 23.6608, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 23.8561, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 24.0492, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 24.2404, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 24.4296, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 24.6168, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 24.8022, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 24.9858, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 25.1675, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 25.3475, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 25.5258, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 25.7024, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 25.8774, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 26.0508, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 26.2226, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 26.3928, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 26.5616, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 26.7289, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 26.8947, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 27.0591, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 27.2221, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 27.3837, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 27.544, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 27.703, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 27.8607, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 28.0171, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 28.1723, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 28.3263, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 28.479, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 28.6306, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 28.781, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 28.9302, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 29.0783, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 29.2254, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 29.3713, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 29.5162, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 29.66, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 29.8028, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 29.9445, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 30.0853, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 30.225, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 30.3638, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 30.5016, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 30.6385, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 30.7744, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 30.9094, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 3.2781, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 4.6327, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.67, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 6.5427, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 7.31, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 8.0023, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 8.6377, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 9.2278, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 9.781, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 10.3031, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 10.7987, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 11.2713, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 11.7237, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 12.1581, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 12.5764, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 12.9802, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 13.3708, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 13.7492, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 14.1166, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 14.4737, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 14.8213, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 15.16, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 15.4905, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 15.8132, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 16.1286, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 16.4372, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 16.7393, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 17.0353, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 17.3255, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 17.6101, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 17.8895, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 18.1639, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 18.4335, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 18.6985, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 18.9591, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 19.2156, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 19.468, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 19.7165, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 19.9613, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 20.2026, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 20.4404, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 20.6748, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 20.906, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 21.1341, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 21.3592, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 21.5814, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 21.8007, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 22.0174, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 22.2313, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 22.4427, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 22.6516, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 22.858, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 23.0621, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 23.2639, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 23.4635, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 23.6608, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 23.8561, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 24.0492, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 24.2404, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 24.4296, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 24.6168, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 24.8022, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 24.9858, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 25.1675, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 25.3475, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 25.5258, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 25.7024, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 25.8774, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 26.0508, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 26.2226, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 26.3928, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 26.5616, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 26.7289, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 26.8947, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 27.0591, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 27.2221, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 27.3837, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 27.544, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 27.703, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 27.8607, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 28.0171, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 28.1723, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 28.3263, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 28.479, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 28.6306, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 28.781, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 28.9302, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 29.0783, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 29.2254, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 29.3713, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 29.5162, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 29.66, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 29.8028, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 29.9445, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 30.0853, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 30.225, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 30.3638, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 30.5016, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 30.6385, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 30.7744, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toRadians", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 30.9094, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 2.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 3.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 4.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 6.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 7.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 8.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 9.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 10.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 11.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 12.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 13.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 14.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 15.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 16.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 17.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 18.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 19.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 20.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 21.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 22.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 23.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 24.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 25.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 26.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 27.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 28.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 29.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 30.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 31.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 32.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 33.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 34.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 35.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 36.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 37.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 38.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 39.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 40.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 41.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 42.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 43.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 44.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 45.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 46.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 47.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 48.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 49.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 50.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 51.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 52.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 53.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 54.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 55.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 56.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 57.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 58.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 59.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 60.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 61.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 62.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 63.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 64.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 65.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 66.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 67.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 68.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 69.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 70.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 71.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 72.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 73.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 74.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 75.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 76.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 77.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 78.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 79.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 80.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 81.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 82.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 83.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 84.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 85.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 86.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 87.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 88.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 89.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 90.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 91.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 92.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 93.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 94.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 95.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 96.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 97.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 98.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 99.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 100.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 101.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 2.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 3.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 4.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 6.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 7.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 8.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 9.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 10.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 11.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 12.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 13.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 14.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 15.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 16.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 17.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 18.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 19.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 20.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 21.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 22.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 23.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 24.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 25.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 26.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 27.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 28.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 29.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 30.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 31.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 32.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 33.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 34.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 35.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 36.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 37.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 38.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 39.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 40.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 41.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 42.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 43.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 44.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 45.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 46.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 47.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 48.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 49.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 50.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 51.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 52.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 53.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 54.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 55.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 56.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 57.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 58.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 59.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 60.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 61.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 62.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 63.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 64.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 65.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 66.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 67.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 68.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 69.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 70.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 71.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 72.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 73.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 74.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 75.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 76.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 77.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 78.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 79.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 80.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 81.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 82.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 83.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 84.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 85.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 86.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 87.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 88.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 89.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 90.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 91.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 92.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 93.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 94.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 95.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 96.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 97.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 98.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 99.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 100.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 101.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": {}, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 3.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0001, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0002, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0003, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0005, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0007, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0009, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0012, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0014, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0017, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.002, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0023, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0026, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0029, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0032, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0036, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.004, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0043, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0047, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0051, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0055, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0059, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0064, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0068, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0072, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0077, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0081, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0086, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0091, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0096, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0101, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0106, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0111, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0116, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0121, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0126, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0132, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0137, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0143, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0148, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0154, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0159, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0165, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0171, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0177, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0183, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0189, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0195, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0201, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0207, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0213, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.022, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0226, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0232, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0239, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0245, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0252, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0259, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0265, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0272, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0279, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0285, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0292, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0299, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0306, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0313, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.032, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0327, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0334, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0342, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0349, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0356, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0363, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0371, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0378, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0386, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0393, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0401, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0408, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0416, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0423, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0431, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0439, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0446, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0454, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0462, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.047, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0478, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0486, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0494, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0502, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.051, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0518, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0526, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0534, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0542, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0551, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0559, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0567, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0576, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0584, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0592, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0001, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0002, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0003, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0005, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0007, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0009, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0012, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0014, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0017, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.002, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0023, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0026, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0029, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0032, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0036, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.004, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0043, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0047, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0051, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0055, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0059, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0064, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0068, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0072, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0077, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0081, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0086, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0091, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0096, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0101, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0106, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0111, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0116, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0121, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0126, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0132, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0137, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0143, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0148, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0154, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0159, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0165, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0171, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0177, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0183, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0189, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0195, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0201, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0207, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0213, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.022, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0226, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0232, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0239, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0245, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0252, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0259, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0265, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0272, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0279, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0285, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0292, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0299, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0306, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0313, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.032, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0327, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0334, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0342, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0349, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0356, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0363, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0371, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0378, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0386, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0393, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0401, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0408, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0416, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0423, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0431, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0439, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0446, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0454, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0462, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.047, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0478, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0486, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0494, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0502, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.051, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0518, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0526, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0534, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0542, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0551, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0559, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0567, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0576, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0584, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0592, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": {}, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Plane", - "artifact_id": "[uuid]" - }, - "sourceRange": [] - } - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 2.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 3.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 4.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 6.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 7.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 8.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 9.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 10.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 11.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 12.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 13.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 14.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 15.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 16.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 17.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 18.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 19.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 20.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 21.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 22.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 23.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 24.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 25.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 26.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 27.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 28.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 29.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 30.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 31.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 32.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 33.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 34.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 35.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 36.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 37.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 38.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 39.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 40.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 41.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 42.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 43.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 44.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 45.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 46.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 47.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 48.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 49.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 50.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 51.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 52.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 53.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 54.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 55.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 56.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 57.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 58.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 59.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 60.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 61.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 62.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 63.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 64.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 65.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 66.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 67.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 68.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 69.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 70.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 71.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 72.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 73.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 74.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 75.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 76.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 77.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 78.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 79.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 80.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 81.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 82.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 83.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 84.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 85.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 86.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 87.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 88.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 89.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 90.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 91.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 92.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 93.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 94.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 95.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 96.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 97.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 98.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 99.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 100.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 2.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 3.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 4.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 5.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 6.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 7.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 8.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 9.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 10.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 11.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 12.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 13.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 14.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 15.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 16.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 17.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 18.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 19.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 20.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 21.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 22.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 23.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 24.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 25.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 26.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 27.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 28.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 29.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 30.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 31.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 32.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 33.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 34.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 35.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 36.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 37.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 38.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 39.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 40.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 41.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 42.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 43.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 44.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 45.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 46.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 47.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 48.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 49.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 50.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 51.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 52.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 53.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 54.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 55.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 56.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 57.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 58.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 59.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 60.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 61.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 62.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 63.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 64.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 65.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 66.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 67.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 68.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 69.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 70.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 71.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 72.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 73.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 74.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 75.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 76.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 77.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 78.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 79.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 80.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 81.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 82.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 83.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 84.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 85.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 86.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 87.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 88.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 89.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 90.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 91.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 92.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 93.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 94.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 95.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 96.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 97.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 98.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 99.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 100.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": null, - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 101.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "labeledArgs": { - "accum": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - } - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": 3.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "arcDegrees": { - "value": { - "type": "Number", - "value": 360.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "axis": { - "value": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "sourceRange": [] - }, - "center": { - "value": { - "type": "Array", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "sourceRange": [] - }, - "instances": { - "value": { - "type": "Number", - "value": 21.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - }, - "rotateDuplicates": { - "value": { - "type": "Bool", - "value": true - }, - "sourceRange": [] - } - }, - "name": "patternCircular3d", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "labeledArgs": { - "face": { - "value": { - "type": "String", - "value": "end" - }, - "sourceRange": [] - } - }, - "name": "startSketchOn", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Solid", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.1253, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "type": "GroupBegin", - "group": { - "type": "FunctionCall", - "name": "units::toDegrees", - "functionSourceRange": [], - "unlabeledArg": { - "value": { - "type": "Number", - "value": 0.1253, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "sourceRange": [] - }, - "labeledArgs": {} - }, - "sourceRange": [] - }, - { - "labeledArgs": { - "length": { - "value": { - "type": "Number", - "value": -3.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "sourceRange": [] - } - }, - "name": "extrude", - "sourceRange": [], - "type": "StdLibCall", - "unlabeledArg": { - "value": { - "type": "Sketch", - "value": { - "artifactId": "[uuid]" - } - }, - "sourceRange": [] - } - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - }, - { - "type": "GroupEnd" - } -] diff --git a/rust/kcl-lib/tests/kcl_samples/gear/program_memory.snap b/rust/kcl-lib/tests/kcl_samples/gear/program_memory.snap deleted file mode 100644 index 7f4d87e83..000000000 --- a/rust/kcl-lib/tests/kcl_samples/gear/program_memory.snap +++ /dev/null @@ -1,89454 +0,0 @@ ---- -source: kcl-lib/src/simulation_tests.rs -description: Variables in memory after executing gear.kcl ---- -{ - "addendum": { - "type": "Number", - "value": 0.5, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "angles": { - "type": "HomArray", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 3.2781, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 4.6327, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 5.67, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 6.5427, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 7.31, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 8.0023, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 8.6377, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 9.2278, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 9.781, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 10.3031, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 10.7987, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 11.2713, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 11.7237, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 12.1581, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 12.5764, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 12.9802, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 13.3708, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 13.7492, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 14.1166, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 14.4737, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 14.8213, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 15.16, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 15.4905, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 15.8132, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 16.1286, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 16.4372, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 16.7393, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 17.0353, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 17.3255, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 17.6101, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 17.8895, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 18.1639, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 18.4335, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 18.6985, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 18.9591, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 19.2156, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 19.468, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 19.7165, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 19.9613, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 20.2026, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 20.4404, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 20.6748, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 20.906, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 21.1341, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 21.3592, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 21.5814, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 21.8007, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 22.0174, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 22.2313, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 22.4427, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 22.6516, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 22.858, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 23.0621, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 23.2639, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 23.4635, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 23.6608, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 23.8561, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 24.0492, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 24.2404, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 24.4296, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 24.6168, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 24.8022, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 24.9858, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 25.1675, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 25.3475, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 25.5258, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 25.7024, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 25.8774, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 26.0508, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 26.2226, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 26.3928, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 26.5616, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 26.7289, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 26.8947, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 27.0591, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 27.2221, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 27.3837, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 27.544, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 27.703, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 27.8607, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 28.0171, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 28.1723, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 28.3263, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 28.479, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 28.6306, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 28.781, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 28.9302, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 29.0783, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 29.2254, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 29.3713, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 29.5162, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 29.66, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 29.8028, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 29.9445, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 30.0853, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 30.225, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 30.3638, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 30.5016, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 30.6385, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 30.7744, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - }, - { - "type": "Number", - "value": 30.9094, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Degrees" - } - } - ] - }, - "baseDiameter": { - "type": "Number", - "value": 9.8668, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "body": { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "ccw": true, - "center": [ - 0.0, - 0.0 - ], - "from": [ - 4.9334, - 0.0 - ], - "radius": 4.933386259126019, - "tag": null, - "to": [ - 4.9334, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" - } - } - ], - "on": { - "artifactId": "[uuid]", - "id": "[uuid]", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Mm" - } - }, - "type": "plane", - "value": "XY", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - } - }, - "start": { - "from": [ - 4.9334, - 0.0 - ], - "to": [ - 4.9334, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - }, - "sectional": false - } - }, - "cmo": { - "type": "Number", - "value": 101.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "deddendum": { - "type": "Number", - "value": 0.625, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "gearHeight": { - "type": "Number", - "value": 3.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "holeDiam": { - "type": "Number", - "value": 2.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "holeRadius": { - "type": "Number", - "value": 1.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "invas": { - "type": "HomArray", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0001, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0002, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0003, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0005, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0007, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0009, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0012, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0014, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0017, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.002, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0023, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0026, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0029, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0032, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0036, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.004, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0043, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0047, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0051, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0055, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0059, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0064, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0068, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0072, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0077, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0081, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0086, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0091, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0096, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0101, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0106, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0111, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0116, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0121, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0126, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0132, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0137, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0143, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0148, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0154, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0159, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0165, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0171, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0177, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0183, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0189, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0195, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0201, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0207, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0213, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.022, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0226, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0232, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0239, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0245, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0252, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0259, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0265, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0272, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0279, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0285, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0292, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0299, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0306, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0313, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.032, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0327, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0334, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0342, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0349, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0356, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0363, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0371, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0378, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0386, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0393, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0401, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0408, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0416, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0423, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0431, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0439, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0446, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0454, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0462, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.047, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0478, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0486, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0494, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0502, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.051, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0518, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0526, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0534, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0542, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0551, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0559, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0567, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0576, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0584, - "ty": { - "type": "Unknown" - } - }, - { - "type": "Number", - "value": 0.0592, - "ty": { - "type": "Unknown" - } - } - ] - }, - "keyWay": { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [], - "tag": null, - "type": "extrudePlane" - }, - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 0.9922, - 0.125 - ], - "tag": null, - "to": [ - 1.1172, - 0.125 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 1.1172, - 0.125 - ], - "tag": null, - "to": [ - 1.1172, - -0.125 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 1.1172, - -0.125 - ], - "tag": null, - "to": [ - 0.9922, - -0.125 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "ccw": false, - "center": [ - 0.0, - 0.0 - ], - "from": [ - 0.9922, - -0.125 - ], - "radius": 1.0, - "tag": null, - "to": [ - -1.0, - 0.0 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "ccw": false, - "center": [ - 0.0, - 0.0 - ], - "from": [ - -1.0, - 0.0 - ], - "radius": 1.0, - "tag": null, - "to": [ - 0.9922, - 0.125 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 0.9922, - 0.125 - ], - "tag": null, - "to": [ - 0.9922, - 0.125 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "type": "face", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": "end", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - }, - "solid": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [ - { - "faceId": "[uuid]", - "id": "[uuid]", - "sourceRange": [], - "tag": null, - "type": "extrudeArc" - } - ], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "ccw": true, - "center": [ - 0.0, - 0.0 - ], - "from": [ - 4.9334, - 0.0 - ], - "radius": 4.933386259126019, - "tag": null, - "to": [ - 4.9334, - 0.0 - ], - "type": "Circle", - "units": { - "type": "Inches" - } - } - ], - "on": { - "artifactId": "[uuid]", - "id": "[uuid]", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Mm" - } - }, - "type": "plane", - "value": "XY", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - } - }, - "start": { - "from": [ - 4.9334, - 0.0 - ], - "to": [ - 4.9334, - 0.0 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.0, - "startCapId": "[uuid]", - "endCapId": "[uuid]", - "units": { - "type": "Inches" - }, - "sectional": false - }, - "units": { - "type": "Inches" - } - }, - "start": { - "from": [ - 0.9922, - 0.125 - ], - "to": [ - 0.9922, - 0.125 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": -3.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" - }, - "sectional": false - } - }, - "keywayDepth": { - "type": "Number", - "value": 0.125, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "keywayWidth": { - "type": "Number", - "value": 0.25, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "leftInvolute": { - "type": "Function", - "value": null - }, - "module": { - "type": "Number", - "value": 0.5, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "nTeeth": { - "type": "Number", - "value": 21.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "pitchDiameter": { - "type": "Number", - "value": 10.5, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "pressureAngle": { - "type": "Number", - "value": 20.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "rightInvolute": { - "type": "Function", - "value": null - }, - "rs": { - "type": "HomArray", - "value": [ - { - "type": "Number", - "value": 4.9334, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 4.9415, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 4.9496, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 4.9576, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 4.9657, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 4.9738, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 4.9819, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 4.99, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 4.9981, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.0062, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.0142, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.0223, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.0304, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.0385, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.0466, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.0547, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.0628, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.0708, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.0789, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.087, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.0951, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.1032, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.1113, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.1193, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.1274, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.1355, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.1436, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.1517, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.1598, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.1679, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.1759, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.184, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.1921, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.2002, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.2083, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.2164, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.2245, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.2325, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.2406, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.2487, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.2568, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.2649, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.273, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.2811, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.2891, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.2972, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.3053, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.3134, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.3215, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.3296, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.3377, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.3457, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.3538, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.3619, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.37, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.3781, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.3862, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.3942, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.4023, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.4104, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.4185, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.4266, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.4347, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.4428, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.4508, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.4589, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.467, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.4751, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.4832, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.4913, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.4994, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.5074, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.5155, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.5236, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.5317, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.5398, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.5479, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.556, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.564, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.5721, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.5802, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.5883, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.5964, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.6045, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.6126, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.6206, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.6287, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.6368, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.6449, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.653, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.6611, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.6691, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.6772, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.6853, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.6934, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.7015, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.7096, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.7177, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.7257, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.7338, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.7419, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.75, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "start": { - "type": "Sketch", - "value": { - "type": "Sketch", - "id": "[uuid]", - "paths": [], - "on": { - "artifactId": "[uuid]", - "id": "[uuid]", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Mm" - } - }, - "type": "plane", - "value": "XY", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - } - }, - "start": { - "from": [ - 5.7399, - 0.3404 - ], - "to": [ - 5.7399, - 0.3404 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - } - }, - "startAngle": { - "type": "Number", - "value": 0.1253, - "ty": { - "type": "Known", - "type": "Angle", - "type": "Radians" - } - }, - "teeth": { - "type": "HomArray", - "value": [ - { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7399, - 0.3404 - ], - "tag": null, - "to": [ - 5.7321, - 0.3351 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7321, - 0.3351 - ], - "tag": null, - "to": [ - 5.7243, - 0.3299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7243, - 0.3299 - ], - "tag": null, - "to": [ - 5.7165, - 0.3246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7165, - 0.3246 - ], - "tag": null, - "to": [ - 5.7087, - 0.3194 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7087, - 0.3194 - ], - "tag": null, - "to": [ - 5.7009, - 0.3143 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7009, - 0.3143 - ], - "tag": null, - "to": [ - 5.6931, - 0.3091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6931, - 0.3091 - ], - "tag": null, - "to": [ - 5.6853, - 0.3041 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6853, - 0.3041 - ], - "tag": null, - "to": [ - 5.6775, - 0.299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6775, - 0.299 - ], - "tag": null, - "to": [ - 5.6696, - 0.294 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6696, - 0.294 - ], - "tag": null, - "to": [ - 5.6618, - 0.289 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6618, - 0.289 - ], - "tag": null, - "to": [ - 5.6539, - 0.284 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6539, - 0.284 - ], - "tag": null, - "to": [ - 5.6461, - 0.279 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6461, - 0.279 - ], - "tag": null, - "to": [ - 5.6382, - 0.2741 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6382, - 0.2741 - ], - "tag": null, - "to": [ - 5.6304, - 0.2693 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6304, - 0.2693 - ], - "tag": null, - "to": [ - 5.6225, - 0.2644 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6225, - 0.2644 - ], - "tag": null, - "to": [ - 5.6146, - 0.2597 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6146, - 0.2597 - ], - "tag": null, - "to": [ - 5.6068, - 0.2549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6068, - 0.2549 - ], - "tag": null, - "to": [ - 5.5989, - 0.2502 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5989, - 0.2502 - ], - "tag": null, - "to": [ - 5.591, - 0.2455 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.591, - 0.2455 - ], - "tag": null, - "to": [ - 5.5831, - 0.2408 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5831, - 0.2408 - ], - "tag": null, - "to": [ - 5.5752, - 0.2362 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5752, - 0.2362 - ], - "tag": null, - "to": [ - 5.5673, - 0.2316 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5673, - 0.2316 - ], - "tag": null, - "to": [ - 5.5594, - 0.227 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5594, - 0.227 - ], - "tag": null, - "to": [ - 5.5515, - 0.2225 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5515, - 0.2225 - ], - "tag": null, - "to": [ - 5.5436, - 0.218 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5436, - 0.218 - ], - "tag": null, - "to": [ - 5.5357, - 0.2135 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5357, - 0.2135 - ], - "tag": null, - "to": [ - 5.5277, - 0.2091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5277, - 0.2091 - ], - "tag": null, - "to": [ - 5.5198, - 0.2047 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5198, - 0.2047 - ], - "tag": null, - "to": [ - 5.5119, - 0.2004 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5119, - 0.2004 - ], - "tag": null, - "to": [ - 5.504, - 0.1961 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.504, - 0.1961 - ], - "tag": null, - "to": [ - 5.496, - 0.1918 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.496, - 0.1918 - ], - "tag": null, - "to": [ - 5.4881, - 0.1875 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4881, - 0.1875 - ], - "tag": null, - "to": [ - 5.4801, - 0.1833 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4801, - 0.1833 - ], - "tag": null, - "to": [ - 5.4722, - 0.1792 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4722, - 0.1792 - ], - "tag": null, - "to": [ - 5.4642, - 0.175 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4642, - 0.175 - ], - "tag": null, - "to": [ - 5.4563, - 0.1709 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4563, - 0.1709 - ], - "tag": null, - "to": [ - 5.4483, - 0.1669 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4483, - 0.1669 - ], - "tag": null, - "to": [ - 5.4403, - 0.1628 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4403, - 0.1628 - ], - "tag": null, - "to": [ - 5.4324, - 0.1588 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4324, - 0.1588 - ], - "tag": null, - "to": [ - 5.4244, - 0.1549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4244, - 0.1549 - ], - "tag": null, - "to": [ - 5.4164, - 0.151 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4164, - 0.151 - ], - "tag": null, - "to": [ - 5.4084, - 0.1471 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4084, - 0.1471 - ], - "tag": null, - "to": [ - 5.4004, - 0.1433 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4004, - 0.1433 - ], - "tag": null, - "to": [ - 5.3924, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3924, - 0.1395 - ], - "tag": null, - "to": [ - 5.3845, - 0.1357 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3845, - 0.1357 - ], - "tag": null, - "to": [ - 5.3765, - 0.132 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3765, - 0.132 - ], - "tag": null, - "to": [ - 5.3685, - 0.1283 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3685, - 0.1283 - ], - "tag": null, - "to": [ - 5.3605, - 0.1246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3605, - 0.1246 - ], - "tag": null, - "to": [ - 5.3525, - 0.121 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3525, - 0.121 - ], - "tag": null, - "to": [ - 5.3444, - 0.1174 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3444, - 0.1174 - ], - "tag": null, - "to": [ - 5.3364, - 0.1139 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3364, - 0.1139 - ], - "tag": null, - "to": [ - 5.3284, - 0.1104 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3284, - 0.1104 - ], - "tag": null, - "to": [ - 5.3204, - 0.107 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3204, - 0.107 - ], - "tag": null, - "to": [ - 5.3124, - 0.1036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3124, - 0.1036 - ], - "tag": null, - "to": [ - 5.3044, - 0.1002 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3044, - 0.1002 - ], - "tag": null, - "to": [ - 5.2963, - 0.0969 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2963, - 0.0969 - ], - "tag": null, - "to": [ - 5.2883, - 0.0936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2883, - 0.0936 - ], - "tag": null, - "to": [ - 5.2803, - 0.0903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2803, - 0.0903 - ], - "tag": null, - "to": [ - 5.2722, - 0.0871 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2722, - 0.0871 - ], - "tag": null, - "to": [ - 5.2642, - 0.084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2642, - 0.084 - ], - "tag": null, - "to": [ - 5.2562, - 0.0808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2562, - 0.0808 - ], - "tag": null, - "to": [ - 5.2481, - 0.0778 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2481, - 0.0778 - ], - "tag": null, - "to": [ - 5.2401, - 0.0747 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2401, - 0.0747 - ], - "tag": null, - "to": [ - 5.2321, - 0.0717 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2321, - 0.0717 - ], - "tag": null, - "to": [ - 5.224, - 0.0688 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.224, - 0.0688 - ], - "tag": null, - "to": [ - 5.216, - 0.0659 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.216, - 0.0659 - ], - "tag": null, - "to": [ - 5.2079, - 0.063 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2079, - 0.063 - ], - "tag": null, - "to": [ - 5.1999, - 0.0602 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1999, - 0.0602 - ], - "tag": null, - "to": [ - 5.1918, - 0.0575 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1918, - 0.0575 - ], - "tag": null, - "to": [ - 5.1837, - 0.0547 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1837, - 0.0547 - ], - "tag": null, - "to": [ - 5.1757, - 0.0521 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1757, - 0.0521 - ], - "tag": null, - "to": [ - 5.1676, - 0.0494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1676, - 0.0494 - ], - "tag": null, - "to": [ - 5.1596, - 0.0469 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1596, - 0.0469 - ], - "tag": null, - "to": [ - 5.1515, - 0.0443 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1515, - 0.0443 - ], - "tag": null, - "to": [ - 5.1434, - 0.0419 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1434, - 0.0419 - ], - "tag": null, - "to": [ - 5.1354, - 0.0394 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1354, - 0.0394 - ], - "tag": null, - "to": [ - 5.1273, - 0.0371 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1273, - 0.0371 - ], - "tag": null, - "to": [ - 5.1192, - 0.0347 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1192, - 0.0347 - ], - "tag": null, - "to": [ - 5.1112, - 0.0325 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1112, - 0.0325 - ], - "tag": null, - "to": [ - 5.1031, - 0.0303 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1031, - 0.0303 - ], - "tag": null, - "to": [ - 5.095, - 0.0281 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.095, - 0.0281 - ], - "tag": null, - "to": [ - 5.0869, - 0.026 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0869, - 0.026 - ], - "tag": null, - "to": [ - 5.0789, - 0.0239 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0789, - 0.0239 - ], - "tag": null, - "to": [ - 5.0708, - 0.022 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0708, - 0.022 - ], - "tag": null, - "to": [ - 5.0627, - 0.02 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0627, - 0.02 - ], - "tag": null, - "to": [ - 5.0546, - 0.0182 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0546, - 0.0182 - ], - "tag": null, - "to": [ - 5.0466, - 0.0164 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0466, - 0.0164 - ], - "tag": null, - "to": [ - 5.0385, - 0.0146 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0385, - 0.0146 - ], - "tag": null, - "to": [ - 5.0304, - 0.013 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0304, - 0.013 - ], - "tag": null, - "to": [ - 5.0223, - 0.0114 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0223, - 0.0114 - ], - "tag": null, - "to": [ - 5.0142, - 0.0098 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0142, - 0.0098 - ], - "tag": null, - "to": [ - 5.0061, - 0.0084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0061, - 0.0084 - ], - "tag": null, - "to": [ - 4.9981, - 0.007 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9981, - 0.007 - ], - "tag": null, - "to": [ - 4.99, - 0.0058 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.99, - 0.0058 - ], - "tag": null, - "to": [ - 4.9819, - 0.0046 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9819, - 0.0046 - ], - "tag": null, - "to": [ - 4.9738, - 0.0035 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9738, - 0.0035 - ], - "tag": null, - "to": [ - 4.9657, - 0.0025 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9657, - 0.0025 - ], - "tag": null, - "to": [ - 4.9576, - 0.0016 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9576, - 0.0016 - ], - "tag": null, - "to": [ - 4.9496, - 0.0009 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9496, - 0.0009 - ], - "tag": null, - "to": [ - 4.9415, - 0.0003 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9415, - 0.0003 - ], - "tag": null, - "to": [ - 4.9334, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "ccw": true, - "center": [ - -0.0, - -0.0 - ], - "from": [ - 4.9334, - 0.0 - ], - "radius": 4.933386259126019, - "tag": null, - "to": [ - 4.8356, - 0.9775 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8356, - 0.9775 - ], - "tag": null, - "to": [ - 4.8436, - 0.9788 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8436, - 0.9788 - ], - "tag": null, - "to": [ - 4.8516, - 0.9799 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8516, - 0.9799 - ], - "tag": null, - "to": [ - 4.8597, - 0.9808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8597, - 0.9808 - ], - "tag": null, - "to": [ - 4.8678, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8678, - 0.9815 - ], - "tag": null, - "to": [ - 4.8759, - 0.9821 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8759, - 0.9821 - ], - "tag": null, - "to": [ - 4.884, - 0.9827 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.884, - 0.9827 - ], - "tag": null, - "to": [ - 4.8922, - 0.9831 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8922, - 0.9831 - ], - "tag": null, - "to": [ - 4.9004, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9004, - 0.9835 - ], - "tag": null, - "to": [ - 4.9086, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9086, - 0.9837 - ], - "tag": null, - "to": [ - 4.9168, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9168, - 0.9839 - ], - "tag": null, - "to": [ - 4.925, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.925, - 0.984 - ], - "tag": null, - "to": [ - 4.9332, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9332, - 0.984 - ], - "tag": null, - "to": [ - 4.9415, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9415, - 0.984 - ], - "tag": null, - "to": [ - 4.9497, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9497, - 0.9839 - ], - "tag": null, - "to": [ - 4.958, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.958, - 0.9837 - ], - "tag": null, - "to": [ - 4.9663, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9663, - 0.9835 - ], - "tag": null, - "to": [ - 4.9746, - 0.9832 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9746, - 0.9832 - ], - "tag": null, - "to": [ - 4.9829, - 0.9829 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9829, - 0.9829 - ], - "tag": null, - "to": [ - 4.9912, - 0.9825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9912, - 0.9825 - ], - "tag": null, - "to": [ - 4.9996, - 0.982 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9996, - 0.982 - ], - "tag": null, - "to": [ - 5.0079, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0079, - 0.9815 - ], - "tag": null, - "to": [ - 5.0163, - 0.9809 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0163, - 0.9809 - ], - "tag": null, - "to": [ - 5.0246, - 0.9803 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0246, - 0.9803 - ], - "tag": null, - "to": [ - 5.033, - 0.9796 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.033, - 0.9796 - ], - "tag": null, - "to": [ - 5.0414, - 0.9789 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0414, - 0.9789 - ], - "tag": null, - "to": [ - 5.0497, - 0.9781 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0497, - 0.9781 - ], - "tag": null, - "to": [ - 5.0581, - 0.9773 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0581, - 0.9773 - ], - "tag": null, - "to": [ - 5.0665, - 0.9764 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0665, - 0.9764 - ], - "tag": null, - "to": [ - 5.075, - 0.9755 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.075, - 0.9755 - ], - "tag": null, - "to": [ - 5.0834, - 0.9745 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0834, - 0.9745 - ], - "tag": null, - "to": [ - 5.0918, - 0.9735 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0918, - 0.9735 - ], - "tag": null, - "to": [ - 5.1002, - 0.9724 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1002, - 0.9724 - ], - "tag": null, - "to": [ - 5.1087, - 0.9713 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1087, - 0.9713 - ], - "tag": null, - "to": [ - 5.1171, - 0.9701 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1171, - 0.9701 - ], - "tag": null, - "to": [ - 5.1256, - 0.9689 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1256, - 0.9689 - ], - "tag": null, - "to": [ - 5.1341, - 0.9677 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1341, - 0.9677 - ], - "tag": null, - "to": [ - 5.1425, - 0.9664 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1425, - 0.9664 - ], - "tag": null, - "to": [ - 5.151, - 0.9651 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.151, - 0.9651 - ], - "tag": null, - "to": [ - 5.1595, - 0.9637 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1595, - 0.9637 - ], - "tag": null, - "to": [ - 5.168, - 0.9623 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.168, - 0.9623 - ], - "tag": null, - "to": [ - 5.1765, - 0.9608 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1765, - 0.9608 - ], - "tag": null, - "to": [ - 5.185, - 0.9593 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.185, - 0.9593 - ], - "tag": null, - "to": [ - 5.1935, - 0.9577 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1935, - 0.9577 - ], - "tag": null, - "to": [ - 5.202, - 0.9561 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.202, - 0.9561 - ], - "tag": null, - "to": [ - 5.2105, - 0.9545 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2105, - 0.9545 - ], - "tag": null, - "to": [ - 5.219, - 0.9528 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.219, - 0.9528 - ], - "tag": null, - "to": [ - 5.2276, - 0.9511 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2276, - 0.9511 - ], - "tag": null, - "to": [ - 5.2361, - 0.9494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2361, - 0.9494 - ], - "tag": null, - "to": [ - 5.2447, - 0.9476 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2447, - 0.9476 - ], - "tag": null, - "to": [ - 5.2532, - 0.9457 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2532, - 0.9457 - ], - "tag": null, - "to": [ - 5.2617, - 0.9439 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2617, - 0.9439 - ], - "tag": null, - "to": [ - 5.2703, - 0.942 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2703, - 0.942 - ], - "tag": null, - "to": [ - 5.2789, - 0.94 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2789, - 0.94 - ], - "tag": null, - "to": [ - 5.2874, - 0.938 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2874, - 0.938 - ], - "tag": null, - "to": [ - 5.296, - 0.936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.296, - 0.936 - ], - "tag": null, - "to": [ - 5.3046, - 0.9339 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3046, - 0.9339 - ], - "tag": null, - "to": [ - 5.3132, - 0.9318 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3132, - 0.9318 - ], - "tag": null, - "to": [ - 5.3217, - 0.9297 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3217, - 0.9297 - ], - "tag": null, - "to": [ - 5.3303, - 0.9275 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3303, - 0.9275 - ], - "tag": null, - "to": [ - 5.3389, - 0.9253 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3389, - 0.9253 - ], - "tag": null, - "to": [ - 5.3475, - 0.923 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3475, - 0.923 - ], - "tag": null, - "to": [ - 5.3561, - 0.9207 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3561, - 0.9207 - ], - "tag": null, - "to": [ - 5.3647, - 0.9184 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3647, - 0.9184 - ], - "tag": null, - "to": [ - 5.3733, - 0.916 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3733, - 0.916 - ], - "tag": null, - "to": [ - 5.3819, - 0.9136 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3819, - 0.9136 - ], - "tag": null, - "to": [ - 5.3906, - 0.9112 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3906, - 0.9112 - ], - "tag": null, - "to": [ - 5.3992, - 0.9087 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3992, - 0.9087 - ], - "tag": null, - "to": [ - 5.4078, - 0.9062 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4078, - 0.9062 - ], - "tag": null, - "to": [ - 5.4164, - 0.9036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4164, - 0.9036 - ], - "tag": null, - "to": [ - 5.425, - 0.901 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.425, - 0.901 - ], - "tag": null, - "to": [ - 5.4337, - 0.8984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4337, - 0.8984 - ], - "tag": null, - "to": [ - 5.4423, - 0.8958 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4423, - 0.8958 - ], - "tag": null, - "to": [ - 5.4509, - 0.8931 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4509, - 0.8931 - ], - "tag": null, - "to": [ - 5.4596, - 0.8903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4596, - 0.8903 - ], - "tag": null, - "to": [ - 5.4682, - 0.8876 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4682, - 0.8876 - ], - "tag": null, - "to": [ - 5.4769, - 0.8848 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4769, - 0.8848 - ], - "tag": null, - "to": [ - 5.4855, - 0.8819 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4855, - 0.8819 - ], - "tag": null, - "to": [ - 5.4942, - 0.8791 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4942, - 0.8791 - ], - "tag": null, - "to": [ - 5.5028, - 0.8762 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5028, - 0.8762 - ], - "tag": null, - "to": [ - 5.5115, - 0.8732 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5115, - 0.8732 - ], - "tag": null, - "to": [ - 5.5201, - 0.8703 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5201, - 0.8703 - ], - "tag": null, - "to": [ - 5.5288, - 0.8672 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5288, - 0.8672 - ], - "tag": null, - "to": [ - 5.5374, - 0.8642 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5374, - 0.8642 - ], - "tag": null, - "to": [ - 5.5461, - 0.8611 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5461, - 0.8611 - ], - "tag": null, - "to": [ - 5.5548, - 0.858 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5548, - 0.858 - ], - "tag": null, - "to": [ - 5.5634, - 0.8549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5634, - 0.8549 - ], - "tag": null, - "to": [ - 5.5721, - 0.8517 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5721, - 0.8517 - ], - "tag": null, - "to": [ - 5.5808, - 0.8485 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5808, - 0.8485 - ], - "tag": null, - "to": [ - 5.5894, - 0.8452 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5894, - 0.8452 - ], - "tag": null, - "to": [ - 5.5981, - 0.842 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5981, - 0.842 - ], - "tag": null, - "to": [ - 5.6068, - 0.8386 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6068, - 0.8386 - ], - "tag": null, - "to": [ - 5.6154, - 0.8353 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6154, - 0.8353 - ], - "tag": null, - "to": [ - 5.6241, - 0.8319 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6241, - 0.8319 - ], - "tag": null, - "to": [ - 5.6328, - 0.8285 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6328, - 0.8285 - ], - "tag": null, - "to": [ - 5.6415, - 0.825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6415, - 0.825 - ], - "tag": null, - "to": [ - 5.6502, - 0.8216 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6502, - 0.8216 - ], - "tag": null, - "to": [ - 5.6588, - 0.8181 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6588, - 0.8181 - ], - "tag": null, - "to": [ - 5.6675, - 0.8145 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6675, - 0.8145 - ], - "tag": null, - "to": [ - 5.6762, - 0.8109 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6762, - 0.8109 - ], - "tag": null, - "to": [ - 5.6849, - 0.8073 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6849, - 0.8073 - ], - "tag": null, - "to": [ - 5.6936, - 0.8037 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6936, - 0.8037 - ], - "tag": null, - "to": [ - 5.7399, - 0.3404 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "artifactId": "[uuid]", - "id": "[uuid]", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Mm" - } - }, - "type": "plane", - "value": "XY", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - } - }, - "start": { - "from": [ - 5.7399, - 0.3404 - ], - "to": [ - 5.7399, - 0.3404 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" - }, - "sectional": false - } - }, - { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7399, - 0.3404 - ], - "tag": null, - "to": [ - 5.7321, - 0.3351 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7321, - 0.3351 - ], - "tag": null, - "to": [ - 5.7243, - 0.3299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7243, - 0.3299 - ], - "tag": null, - "to": [ - 5.7165, - 0.3246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7165, - 0.3246 - ], - "tag": null, - "to": [ - 5.7087, - 0.3194 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7087, - 0.3194 - ], - "tag": null, - "to": [ - 5.7009, - 0.3143 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7009, - 0.3143 - ], - "tag": null, - "to": [ - 5.6931, - 0.3091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6931, - 0.3091 - ], - "tag": null, - "to": [ - 5.6853, - 0.3041 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6853, - 0.3041 - ], - "tag": null, - "to": [ - 5.6775, - 0.299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6775, - 0.299 - ], - "tag": null, - "to": [ - 5.6696, - 0.294 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6696, - 0.294 - ], - "tag": null, - "to": [ - 5.6618, - 0.289 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6618, - 0.289 - ], - "tag": null, - "to": [ - 5.6539, - 0.284 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6539, - 0.284 - ], - "tag": null, - "to": [ - 5.6461, - 0.279 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6461, - 0.279 - ], - "tag": null, - "to": [ - 5.6382, - 0.2741 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6382, - 0.2741 - ], - "tag": null, - "to": [ - 5.6304, - 0.2693 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6304, - 0.2693 - ], - "tag": null, - "to": [ - 5.6225, - 0.2644 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6225, - 0.2644 - ], - "tag": null, - "to": [ - 5.6146, - 0.2597 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6146, - 0.2597 - ], - "tag": null, - "to": [ - 5.6068, - 0.2549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6068, - 0.2549 - ], - "tag": null, - "to": [ - 5.5989, - 0.2502 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5989, - 0.2502 - ], - "tag": null, - "to": [ - 5.591, - 0.2455 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.591, - 0.2455 - ], - "tag": null, - "to": [ - 5.5831, - 0.2408 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5831, - 0.2408 - ], - "tag": null, - "to": [ - 5.5752, - 0.2362 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5752, - 0.2362 - ], - "tag": null, - "to": [ - 5.5673, - 0.2316 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5673, - 0.2316 - ], - "tag": null, - "to": [ - 5.5594, - 0.227 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5594, - 0.227 - ], - "tag": null, - "to": [ - 5.5515, - 0.2225 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5515, - 0.2225 - ], - "tag": null, - "to": [ - 5.5436, - 0.218 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5436, - 0.218 - ], - "tag": null, - "to": [ - 5.5357, - 0.2135 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5357, - 0.2135 - ], - "tag": null, - "to": [ - 5.5277, - 0.2091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5277, - 0.2091 - ], - "tag": null, - "to": [ - 5.5198, - 0.2047 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5198, - 0.2047 - ], - "tag": null, - "to": [ - 5.5119, - 0.2004 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5119, - 0.2004 - ], - "tag": null, - "to": [ - 5.504, - 0.1961 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.504, - 0.1961 - ], - "tag": null, - "to": [ - 5.496, - 0.1918 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.496, - 0.1918 - ], - "tag": null, - "to": [ - 5.4881, - 0.1875 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4881, - 0.1875 - ], - "tag": null, - "to": [ - 5.4801, - 0.1833 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4801, - 0.1833 - ], - "tag": null, - "to": [ - 5.4722, - 0.1792 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4722, - 0.1792 - ], - "tag": null, - "to": [ - 5.4642, - 0.175 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4642, - 0.175 - ], - "tag": null, - "to": [ - 5.4563, - 0.1709 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4563, - 0.1709 - ], - "tag": null, - "to": [ - 5.4483, - 0.1669 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4483, - 0.1669 - ], - "tag": null, - "to": [ - 5.4403, - 0.1628 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4403, - 0.1628 - ], - "tag": null, - "to": [ - 5.4324, - 0.1588 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4324, - 0.1588 - ], - "tag": null, - "to": [ - 5.4244, - 0.1549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4244, - 0.1549 - ], - "tag": null, - "to": [ - 5.4164, - 0.151 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4164, - 0.151 - ], - "tag": null, - "to": [ - 5.4084, - 0.1471 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4084, - 0.1471 - ], - "tag": null, - "to": [ - 5.4004, - 0.1433 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4004, - 0.1433 - ], - "tag": null, - "to": [ - 5.3924, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3924, - 0.1395 - ], - "tag": null, - "to": [ - 5.3845, - 0.1357 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3845, - 0.1357 - ], - "tag": null, - "to": [ - 5.3765, - 0.132 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3765, - 0.132 - ], - "tag": null, - "to": [ - 5.3685, - 0.1283 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3685, - 0.1283 - ], - "tag": null, - "to": [ - 5.3605, - 0.1246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3605, - 0.1246 - ], - "tag": null, - "to": [ - 5.3525, - 0.121 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3525, - 0.121 - ], - "tag": null, - "to": [ - 5.3444, - 0.1174 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3444, - 0.1174 - ], - "tag": null, - "to": [ - 5.3364, - 0.1139 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3364, - 0.1139 - ], - "tag": null, - "to": [ - 5.3284, - 0.1104 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3284, - 0.1104 - ], - "tag": null, - "to": [ - 5.3204, - 0.107 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3204, - 0.107 - ], - "tag": null, - "to": [ - 5.3124, - 0.1036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3124, - 0.1036 - ], - "tag": null, - "to": [ - 5.3044, - 0.1002 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3044, - 0.1002 - ], - "tag": null, - "to": [ - 5.2963, - 0.0969 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2963, - 0.0969 - ], - "tag": null, - "to": [ - 5.2883, - 0.0936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2883, - 0.0936 - ], - "tag": null, - "to": [ - 5.2803, - 0.0903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2803, - 0.0903 - ], - "tag": null, - "to": [ - 5.2722, - 0.0871 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2722, - 0.0871 - ], - "tag": null, - "to": [ - 5.2642, - 0.084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2642, - 0.084 - ], - "tag": null, - "to": [ - 5.2562, - 0.0808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2562, - 0.0808 - ], - "tag": null, - "to": [ - 5.2481, - 0.0778 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2481, - 0.0778 - ], - "tag": null, - "to": [ - 5.2401, - 0.0747 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2401, - 0.0747 - ], - "tag": null, - "to": [ - 5.2321, - 0.0717 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2321, - 0.0717 - ], - "tag": null, - "to": [ - 5.224, - 0.0688 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.224, - 0.0688 - ], - "tag": null, - "to": [ - 5.216, - 0.0659 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.216, - 0.0659 - ], - "tag": null, - "to": [ - 5.2079, - 0.063 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2079, - 0.063 - ], - "tag": null, - "to": [ - 5.1999, - 0.0602 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1999, - 0.0602 - ], - "tag": null, - "to": [ - 5.1918, - 0.0575 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1918, - 0.0575 - ], - "tag": null, - "to": [ - 5.1837, - 0.0547 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1837, - 0.0547 - ], - "tag": null, - "to": [ - 5.1757, - 0.0521 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1757, - 0.0521 - ], - "tag": null, - "to": [ - 5.1676, - 0.0494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1676, - 0.0494 - ], - "tag": null, - "to": [ - 5.1596, - 0.0469 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1596, - 0.0469 - ], - "tag": null, - "to": [ - 5.1515, - 0.0443 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1515, - 0.0443 - ], - "tag": null, - "to": [ - 5.1434, - 0.0419 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1434, - 0.0419 - ], - "tag": null, - "to": [ - 5.1354, - 0.0394 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1354, - 0.0394 - ], - "tag": null, - "to": [ - 5.1273, - 0.0371 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1273, - 0.0371 - ], - "tag": null, - "to": [ - 5.1192, - 0.0347 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1192, - 0.0347 - ], - "tag": null, - "to": [ - 5.1112, - 0.0325 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1112, - 0.0325 - ], - "tag": null, - "to": [ - 5.1031, - 0.0303 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1031, - 0.0303 - ], - "tag": null, - "to": [ - 5.095, - 0.0281 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.095, - 0.0281 - ], - "tag": null, - "to": [ - 5.0869, - 0.026 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0869, - 0.026 - ], - "tag": null, - "to": [ - 5.0789, - 0.0239 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0789, - 0.0239 - ], - "tag": null, - "to": [ - 5.0708, - 0.022 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0708, - 0.022 - ], - "tag": null, - "to": [ - 5.0627, - 0.02 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0627, - 0.02 - ], - "tag": null, - "to": [ - 5.0546, - 0.0182 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0546, - 0.0182 - ], - "tag": null, - "to": [ - 5.0466, - 0.0164 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0466, - 0.0164 - ], - "tag": null, - "to": [ - 5.0385, - 0.0146 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0385, - 0.0146 - ], - "tag": null, - "to": [ - 5.0304, - 0.013 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0304, - 0.013 - ], - "tag": null, - "to": [ - 5.0223, - 0.0114 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0223, - 0.0114 - ], - "tag": null, - "to": [ - 5.0142, - 0.0098 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0142, - 0.0098 - ], - "tag": null, - "to": [ - 5.0061, - 0.0084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0061, - 0.0084 - ], - "tag": null, - "to": [ - 4.9981, - 0.007 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9981, - 0.007 - ], - "tag": null, - "to": [ - 4.99, - 0.0058 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.99, - 0.0058 - ], - "tag": null, - "to": [ - 4.9819, - 0.0046 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9819, - 0.0046 - ], - "tag": null, - "to": [ - 4.9738, - 0.0035 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9738, - 0.0035 - ], - "tag": null, - "to": [ - 4.9657, - 0.0025 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9657, - 0.0025 - ], - "tag": null, - "to": [ - 4.9576, - 0.0016 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9576, - 0.0016 - ], - "tag": null, - "to": [ - 4.9496, - 0.0009 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9496, - 0.0009 - ], - "tag": null, - "to": [ - 4.9415, - 0.0003 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9415, - 0.0003 - ], - "tag": null, - "to": [ - 4.9334, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "ccw": true, - "center": [ - -0.0, - -0.0 - ], - "from": [ - 4.9334, - 0.0 - ], - "radius": 4.933386259126019, - "tag": null, - "to": [ - 4.8356, - 0.9775 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8356, - 0.9775 - ], - "tag": null, - "to": [ - 4.8436, - 0.9788 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8436, - 0.9788 - ], - "tag": null, - "to": [ - 4.8516, - 0.9799 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8516, - 0.9799 - ], - "tag": null, - "to": [ - 4.8597, - 0.9808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8597, - 0.9808 - ], - "tag": null, - "to": [ - 4.8678, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8678, - 0.9815 - ], - "tag": null, - "to": [ - 4.8759, - 0.9821 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8759, - 0.9821 - ], - "tag": null, - "to": [ - 4.884, - 0.9827 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.884, - 0.9827 - ], - "tag": null, - "to": [ - 4.8922, - 0.9831 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8922, - 0.9831 - ], - "tag": null, - "to": [ - 4.9004, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9004, - 0.9835 - ], - "tag": null, - "to": [ - 4.9086, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9086, - 0.9837 - ], - "tag": null, - "to": [ - 4.9168, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9168, - 0.9839 - ], - "tag": null, - "to": [ - 4.925, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.925, - 0.984 - ], - "tag": null, - "to": [ - 4.9332, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9332, - 0.984 - ], - "tag": null, - "to": [ - 4.9415, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9415, - 0.984 - ], - "tag": null, - "to": [ - 4.9497, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9497, - 0.9839 - ], - "tag": null, - "to": [ - 4.958, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.958, - 0.9837 - ], - "tag": null, - "to": [ - 4.9663, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9663, - 0.9835 - ], - "tag": null, - "to": [ - 4.9746, - 0.9832 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9746, - 0.9832 - ], - "tag": null, - "to": [ - 4.9829, - 0.9829 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9829, - 0.9829 - ], - "tag": null, - "to": [ - 4.9912, - 0.9825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9912, - 0.9825 - ], - "tag": null, - "to": [ - 4.9996, - 0.982 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9996, - 0.982 - ], - "tag": null, - "to": [ - 5.0079, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0079, - 0.9815 - ], - "tag": null, - "to": [ - 5.0163, - 0.9809 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0163, - 0.9809 - ], - "tag": null, - "to": [ - 5.0246, - 0.9803 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0246, - 0.9803 - ], - "tag": null, - "to": [ - 5.033, - 0.9796 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.033, - 0.9796 - ], - "tag": null, - "to": [ - 5.0414, - 0.9789 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0414, - 0.9789 - ], - "tag": null, - "to": [ - 5.0497, - 0.9781 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0497, - 0.9781 - ], - "tag": null, - "to": [ - 5.0581, - 0.9773 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0581, - 0.9773 - ], - "tag": null, - "to": [ - 5.0665, - 0.9764 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0665, - 0.9764 - ], - "tag": null, - "to": [ - 5.075, - 0.9755 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.075, - 0.9755 - ], - "tag": null, - "to": [ - 5.0834, - 0.9745 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0834, - 0.9745 - ], - "tag": null, - "to": [ - 5.0918, - 0.9735 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0918, - 0.9735 - ], - "tag": null, - "to": [ - 5.1002, - 0.9724 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1002, - 0.9724 - ], - "tag": null, - "to": [ - 5.1087, - 0.9713 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1087, - 0.9713 - ], - "tag": null, - "to": [ - 5.1171, - 0.9701 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1171, - 0.9701 - ], - "tag": null, - "to": [ - 5.1256, - 0.9689 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1256, - 0.9689 - ], - "tag": null, - "to": [ - 5.1341, - 0.9677 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1341, - 0.9677 - ], - "tag": null, - "to": [ - 5.1425, - 0.9664 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1425, - 0.9664 - ], - "tag": null, - "to": [ - 5.151, - 0.9651 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.151, - 0.9651 - ], - "tag": null, - "to": [ - 5.1595, - 0.9637 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1595, - 0.9637 - ], - "tag": null, - "to": [ - 5.168, - 0.9623 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.168, - 0.9623 - ], - "tag": null, - "to": [ - 5.1765, - 0.9608 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1765, - 0.9608 - ], - "tag": null, - "to": [ - 5.185, - 0.9593 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.185, - 0.9593 - ], - "tag": null, - "to": [ - 5.1935, - 0.9577 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1935, - 0.9577 - ], - "tag": null, - "to": [ - 5.202, - 0.9561 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.202, - 0.9561 - ], - "tag": null, - "to": [ - 5.2105, - 0.9545 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2105, - 0.9545 - ], - "tag": null, - "to": [ - 5.219, - 0.9528 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.219, - 0.9528 - ], - "tag": null, - "to": [ - 5.2276, - 0.9511 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2276, - 0.9511 - ], - "tag": null, - "to": [ - 5.2361, - 0.9494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2361, - 0.9494 - ], - "tag": null, - "to": [ - 5.2447, - 0.9476 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2447, - 0.9476 - ], - "tag": null, - "to": [ - 5.2532, - 0.9457 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2532, - 0.9457 - ], - "tag": null, - "to": [ - 5.2617, - 0.9439 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2617, - 0.9439 - ], - "tag": null, - "to": [ - 5.2703, - 0.942 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2703, - 0.942 - ], - "tag": null, - "to": [ - 5.2789, - 0.94 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2789, - 0.94 - ], - "tag": null, - "to": [ - 5.2874, - 0.938 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2874, - 0.938 - ], - "tag": null, - "to": [ - 5.296, - 0.936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.296, - 0.936 - ], - "tag": null, - "to": [ - 5.3046, - 0.9339 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3046, - 0.9339 - ], - "tag": null, - "to": [ - 5.3132, - 0.9318 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3132, - 0.9318 - ], - "tag": null, - "to": [ - 5.3217, - 0.9297 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3217, - 0.9297 - ], - "tag": null, - "to": [ - 5.3303, - 0.9275 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3303, - 0.9275 - ], - "tag": null, - "to": [ - 5.3389, - 0.9253 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3389, - 0.9253 - ], - "tag": null, - "to": [ - 5.3475, - 0.923 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3475, - 0.923 - ], - "tag": null, - "to": [ - 5.3561, - 0.9207 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3561, - 0.9207 - ], - "tag": null, - "to": [ - 5.3647, - 0.9184 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3647, - 0.9184 - ], - "tag": null, - "to": [ - 5.3733, - 0.916 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3733, - 0.916 - ], - "tag": null, - "to": [ - 5.3819, - 0.9136 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3819, - 0.9136 - ], - "tag": null, - "to": [ - 5.3906, - 0.9112 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3906, - 0.9112 - ], - "tag": null, - "to": [ - 5.3992, - 0.9087 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3992, - 0.9087 - ], - "tag": null, - "to": [ - 5.4078, - 0.9062 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4078, - 0.9062 - ], - "tag": null, - "to": [ - 5.4164, - 0.9036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4164, - 0.9036 - ], - "tag": null, - "to": [ - 5.425, - 0.901 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.425, - 0.901 - ], - "tag": null, - "to": [ - 5.4337, - 0.8984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4337, - 0.8984 - ], - "tag": null, - "to": [ - 5.4423, - 0.8958 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4423, - 0.8958 - ], - "tag": null, - "to": [ - 5.4509, - 0.8931 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4509, - 0.8931 - ], - "tag": null, - "to": [ - 5.4596, - 0.8903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4596, - 0.8903 - ], - "tag": null, - "to": [ - 5.4682, - 0.8876 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4682, - 0.8876 - ], - "tag": null, - "to": [ - 5.4769, - 0.8848 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4769, - 0.8848 - ], - "tag": null, - "to": [ - 5.4855, - 0.8819 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4855, - 0.8819 - ], - "tag": null, - "to": [ - 5.4942, - 0.8791 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4942, - 0.8791 - ], - "tag": null, - "to": [ - 5.5028, - 0.8762 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5028, - 0.8762 - ], - "tag": null, - "to": [ - 5.5115, - 0.8732 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5115, - 0.8732 - ], - "tag": null, - "to": [ - 5.5201, - 0.8703 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5201, - 0.8703 - ], - "tag": null, - "to": [ - 5.5288, - 0.8672 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5288, - 0.8672 - ], - "tag": null, - "to": [ - 5.5374, - 0.8642 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5374, - 0.8642 - ], - "tag": null, - "to": [ - 5.5461, - 0.8611 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5461, - 0.8611 - ], - "tag": null, - "to": [ - 5.5548, - 0.858 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5548, - 0.858 - ], - "tag": null, - "to": [ - 5.5634, - 0.8549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5634, - 0.8549 - ], - "tag": null, - "to": [ - 5.5721, - 0.8517 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5721, - 0.8517 - ], - "tag": null, - "to": [ - 5.5808, - 0.8485 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5808, - 0.8485 - ], - "tag": null, - "to": [ - 5.5894, - 0.8452 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5894, - 0.8452 - ], - "tag": null, - "to": [ - 5.5981, - 0.842 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5981, - 0.842 - ], - "tag": null, - "to": [ - 5.6068, - 0.8386 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6068, - 0.8386 - ], - "tag": null, - "to": [ - 5.6154, - 0.8353 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6154, - 0.8353 - ], - "tag": null, - "to": [ - 5.6241, - 0.8319 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6241, - 0.8319 - ], - "tag": null, - "to": [ - 5.6328, - 0.8285 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6328, - 0.8285 - ], - "tag": null, - "to": [ - 5.6415, - 0.825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6415, - 0.825 - ], - "tag": null, - "to": [ - 5.6502, - 0.8216 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6502, - 0.8216 - ], - "tag": null, - "to": [ - 5.6588, - 0.8181 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6588, - 0.8181 - ], - "tag": null, - "to": [ - 5.6675, - 0.8145 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6675, - 0.8145 - ], - "tag": null, - "to": [ - 5.6762, - 0.8109 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6762, - 0.8109 - ], - "tag": null, - "to": [ - 5.6849, - 0.8073 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6849, - 0.8073 - ], - "tag": null, - "to": [ - 5.6936, - 0.8037 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6936, - 0.8037 - ], - "tag": null, - "to": [ - 5.7399, - 0.3404 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "artifactId": "[uuid]", - "id": "[uuid]", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Mm" - } - }, - "type": "plane", - "value": "XY", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - } - }, - "start": { - "from": [ - 5.7399, - 0.3404 - ], - "to": [ - 5.7399, - 0.3404 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" - }, - "sectional": false - } - }, - { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7399, - 0.3404 - ], - "tag": null, - "to": [ - 5.7321, - 0.3351 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7321, - 0.3351 - ], - "tag": null, - "to": [ - 5.7243, - 0.3299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7243, - 0.3299 - ], - "tag": null, - "to": [ - 5.7165, - 0.3246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7165, - 0.3246 - ], - "tag": null, - "to": [ - 5.7087, - 0.3194 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7087, - 0.3194 - ], - "tag": null, - "to": [ - 5.7009, - 0.3143 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7009, - 0.3143 - ], - "tag": null, - "to": [ - 5.6931, - 0.3091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6931, - 0.3091 - ], - "tag": null, - "to": [ - 5.6853, - 0.3041 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6853, - 0.3041 - ], - "tag": null, - "to": [ - 5.6775, - 0.299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6775, - 0.299 - ], - "tag": null, - "to": [ - 5.6696, - 0.294 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6696, - 0.294 - ], - "tag": null, - "to": [ - 5.6618, - 0.289 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6618, - 0.289 - ], - "tag": null, - "to": [ - 5.6539, - 0.284 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6539, - 0.284 - ], - "tag": null, - "to": [ - 5.6461, - 0.279 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6461, - 0.279 - ], - "tag": null, - "to": [ - 5.6382, - 0.2741 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6382, - 0.2741 - ], - "tag": null, - "to": [ - 5.6304, - 0.2693 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6304, - 0.2693 - ], - "tag": null, - "to": [ - 5.6225, - 0.2644 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6225, - 0.2644 - ], - "tag": null, - "to": [ - 5.6146, - 0.2597 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6146, - 0.2597 - ], - "tag": null, - "to": [ - 5.6068, - 0.2549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6068, - 0.2549 - ], - "tag": null, - "to": [ - 5.5989, - 0.2502 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5989, - 0.2502 - ], - "tag": null, - "to": [ - 5.591, - 0.2455 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.591, - 0.2455 - ], - "tag": null, - "to": [ - 5.5831, - 0.2408 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5831, - 0.2408 - ], - "tag": null, - "to": [ - 5.5752, - 0.2362 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5752, - 0.2362 - ], - "tag": null, - "to": [ - 5.5673, - 0.2316 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5673, - 0.2316 - ], - "tag": null, - "to": [ - 5.5594, - 0.227 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5594, - 0.227 - ], - "tag": null, - "to": [ - 5.5515, - 0.2225 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5515, - 0.2225 - ], - "tag": null, - "to": [ - 5.5436, - 0.218 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5436, - 0.218 - ], - "tag": null, - "to": [ - 5.5357, - 0.2135 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5357, - 0.2135 - ], - "tag": null, - "to": [ - 5.5277, - 0.2091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5277, - 0.2091 - ], - "tag": null, - "to": [ - 5.5198, - 0.2047 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5198, - 0.2047 - ], - "tag": null, - "to": [ - 5.5119, - 0.2004 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5119, - 0.2004 - ], - "tag": null, - "to": [ - 5.504, - 0.1961 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.504, - 0.1961 - ], - "tag": null, - "to": [ - 5.496, - 0.1918 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.496, - 0.1918 - ], - "tag": null, - "to": [ - 5.4881, - 0.1875 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4881, - 0.1875 - ], - "tag": null, - "to": [ - 5.4801, - 0.1833 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4801, - 0.1833 - ], - "tag": null, - "to": [ - 5.4722, - 0.1792 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4722, - 0.1792 - ], - "tag": null, - "to": [ - 5.4642, - 0.175 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4642, - 0.175 - ], - "tag": null, - "to": [ - 5.4563, - 0.1709 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4563, - 0.1709 - ], - "tag": null, - "to": [ - 5.4483, - 0.1669 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4483, - 0.1669 - ], - "tag": null, - "to": [ - 5.4403, - 0.1628 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4403, - 0.1628 - ], - "tag": null, - "to": [ - 5.4324, - 0.1588 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4324, - 0.1588 - ], - "tag": null, - "to": [ - 5.4244, - 0.1549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4244, - 0.1549 - ], - "tag": null, - "to": [ - 5.4164, - 0.151 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4164, - 0.151 - ], - "tag": null, - "to": [ - 5.4084, - 0.1471 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4084, - 0.1471 - ], - "tag": null, - "to": [ - 5.4004, - 0.1433 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4004, - 0.1433 - ], - "tag": null, - "to": [ - 5.3924, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3924, - 0.1395 - ], - "tag": null, - "to": [ - 5.3845, - 0.1357 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3845, - 0.1357 - ], - "tag": null, - "to": [ - 5.3765, - 0.132 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3765, - 0.132 - ], - "tag": null, - "to": [ - 5.3685, - 0.1283 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3685, - 0.1283 - ], - "tag": null, - "to": [ - 5.3605, - 0.1246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3605, - 0.1246 - ], - "tag": null, - "to": [ - 5.3525, - 0.121 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3525, - 0.121 - ], - "tag": null, - "to": [ - 5.3444, - 0.1174 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3444, - 0.1174 - ], - "tag": null, - "to": [ - 5.3364, - 0.1139 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3364, - 0.1139 - ], - "tag": null, - "to": [ - 5.3284, - 0.1104 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3284, - 0.1104 - ], - "tag": null, - "to": [ - 5.3204, - 0.107 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3204, - 0.107 - ], - "tag": null, - "to": [ - 5.3124, - 0.1036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3124, - 0.1036 - ], - "tag": null, - "to": [ - 5.3044, - 0.1002 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3044, - 0.1002 - ], - "tag": null, - "to": [ - 5.2963, - 0.0969 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2963, - 0.0969 - ], - "tag": null, - "to": [ - 5.2883, - 0.0936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2883, - 0.0936 - ], - "tag": null, - "to": [ - 5.2803, - 0.0903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2803, - 0.0903 - ], - "tag": null, - "to": [ - 5.2722, - 0.0871 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2722, - 0.0871 - ], - "tag": null, - "to": [ - 5.2642, - 0.084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2642, - 0.084 - ], - "tag": null, - "to": [ - 5.2562, - 0.0808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2562, - 0.0808 - ], - "tag": null, - "to": [ - 5.2481, - 0.0778 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2481, - 0.0778 - ], - "tag": null, - "to": [ - 5.2401, - 0.0747 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2401, - 0.0747 - ], - "tag": null, - "to": [ - 5.2321, - 0.0717 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2321, - 0.0717 - ], - "tag": null, - "to": [ - 5.224, - 0.0688 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.224, - 0.0688 - ], - "tag": null, - "to": [ - 5.216, - 0.0659 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.216, - 0.0659 - ], - "tag": null, - "to": [ - 5.2079, - 0.063 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2079, - 0.063 - ], - "tag": null, - "to": [ - 5.1999, - 0.0602 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1999, - 0.0602 - ], - "tag": null, - "to": [ - 5.1918, - 0.0575 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1918, - 0.0575 - ], - "tag": null, - "to": [ - 5.1837, - 0.0547 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1837, - 0.0547 - ], - "tag": null, - "to": [ - 5.1757, - 0.0521 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1757, - 0.0521 - ], - "tag": null, - "to": [ - 5.1676, - 0.0494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1676, - 0.0494 - ], - "tag": null, - "to": [ - 5.1596, - 0.0469 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1596, - 0.0469 - ], - "tag": null, - "to": [ - 5.1515, - 0.0443 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1515, - 0.0443 - ], - "tag": null, - "to": [ - 5.1434, - 0.0419 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1434, - 0.0419 - ], - "tag": null, - "to": [ - 5.1354, - 0.0394 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1354, - 0.0394 - ], - "tag": null, - "to": [ - 5.1273, - 0.0371 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1273, - 0.0371 - ], - "tag": null, - "to": [ - 5.1192, - 0.0347 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1192, - 0.0347 - ], - "tag": null, - "to": [ - 5.1112, - 0.0325 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1112, - 0.0325 - ], - "tag": null, - "to": [ - 5.1031, - 0.0303 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1031, - 0.0303 - ], - "tag": null, - "to": [ - 5.095, - 0.0281 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.095, - 0.0281 - ], - "tag": null, - "to": [ - 5.0869, - 0.026 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0869, - 0.026 - ], - "tag": null, - "to": [ - 5.0789, - 0.0239 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0789, - 0.0239 - ], - "tag": null, - "to": [ - 5.0708, - 0.022 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0708, - 0.022 - ], - "tag": null, - "to": [ - 5.0627, - 0.02 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0627, - 0.02 - ], - "tag": null, - "to": [ - 5.0546, - 0.0182 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0546, - 0.0182 - ], - "tag": null, - "to": [ - 5.0466, - 0.0164 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0466, - 0.0164 - ], - "tag": null, - "to": [ - 5.0385, - 0.0146 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0385, - 0.0146 - ], - "tag": null, - "to": [ - 5.0304, - 0.013 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0304, - 0.013 - ], - "tag": null, - "to": [ - 5.0223, - 0.0114 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0223, - 0.0114 - ], - "tag": null, - "to": [ - 5.0142, - 0.0098 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0142, - 0.0098 - ], - "tag": null, - "to": [ - 5.0061, - 0.0084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0061, - 0.0084 - ], - "tag": null, - "to": [ - 4.9981, - 0.007 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9981, - 0.007 - ], - "tag": null, - "to": [ - 4.99, - 0.0058 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.99, - 0.0058 - ], - "tag": null, - "to": [ - 4.9819, - 0.0046 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9819, - 0.0046 - ], - "tag": null, - "to": [ - 4.9738, - 0.0035 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9738, - 0.0035 - ], - "tag": null, - "to": [ - 4.9657, - 0.0025 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9657, - 0.0025 - ], - "tag": null, - "to": [ - 4.9576, - 0.0016 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9576, - 0.0016 - ], - "tag": null, - "to": [ - 4.9496, - 0.0009 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9496, - 0.0009 - ], - "tag": null, - "to": [ - 4.9415, - 0.0003 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9415, - 0.0003 - ], - "tag": null, - "to": [ - 4.9334, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "ccw": true, - "center": [ - -0.0, - -0.0 - ], - "from": [ - 4.9334, - 0.0 - ], - "radius": 4.933386259126019, - "tag": null, - "to": [ - 4.8356, - 0.9775 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8356, - 0.9775 - ], - "tag": null, - "to": [ - 4.8436, - 0.9788 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8436, - 0.9788 - ], - "tag": null, - "to": [ - 4.8516, - 0.9799 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8516, - 0.9799 - ], - "tag": null, - "to": [ - 4.8597, - 0.9808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8597, - 0.9808 - ], - "tag": null, - "to": [ - 4.8678, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8678, - 0.9815 - ], - "tag": null, - "to": [ - 4.8759, - 0.9821 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8759, - 0.9821 - ], - "tag": null, - "to": [ - 4.884, - 0.9827 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.884, - 0.9827 - ], - "tag": null, - "to": [ - 4.8922, - 0.9831 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8922, - 0.9831 - ], - "tag": null, - "to": [ - 4.9004, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9004, - 0.9835 - ], - "tag": null, - "to": [ - 4.9086, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9086, - 0.9837 - ], - "tag": null, - "to": [ - 4.9168, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9168, - 0.9839 - ], - "tag": null, - "to": [ - 4.925, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.925, - 0.984 - ], - "tag": null, - "to": [ - 4.9332, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9332, - 0.984 - ], - "tag": null, - "to": [ - 4.9415, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9415, - 0.984 - ], - "tag": null, - "to": [ - 4.9497, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9497, - 0.9839 - ], - "tag": null, - "to": [ - 4.958, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.958, - 0.9837 - ], - "tag": null, - "to": [ - 4.9663, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9663, - 0.9835 - ], - "tag": null, - "to": [ - 4.9746, - 0.9832 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9746, - 0.9832 - ], - "tag": null, - "to": [ - 4.9829, - 0.9829 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9829, - 0.9829 - ], - "tag": null, - "to": [ - 4.9912, - 0.9825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9912, - 0.9825 - ], - "tag": null, - "to": [ - 4.9996, - 0.982 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9996, - 0.982 - ], - "tag": null, - "to": [ - 5.0079, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0079, - 0.9815 - ], - "tag": null, - "to": [ - 5.0163, - 0.9809 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0163, - 0.9809 - ], - "tag": null, - "to": [ - 5.0246, - 0.9803 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0246, - 0.9803 - ], - "tag": null, - "to": [ - 5.033, - 0.9796 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.033, - 0.9796 - ], - "tag": null, - "to": [ - 5.0414, - 0.9789 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0414, - 0.9789 - ], - "tag": null, - "to": [ - 5.0497, - 0.9781 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0497, - 0.9781 - ], - "tag": null, - "to": [ - 5.0581, - 0.9773 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0581, - 0.9773 - ], - "tag": null, - "to": [ - 5.0665, - 0.9764 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0665, - 0.9764 - ], - "tag": null, - "to": [ - 5.075, - 0.9755 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.075, - 0.9755 - ], - "tag": null, - "to": [ - 5.0834, - 0.9745 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0834, - 0.9745 - ], - "tag": null, - "to": [ - 5.0918, - 0.9735 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0918, - 0.9735 - ], - "tag": null, - "to": [ - 5.1002, - 0.9724 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1002, - 0.9724 - ], - "tag": null, - "to": [ - 5.1087, - 0.9713 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1087, - 0.9713 - ], - "tag": null, - "to": [ - 5.1171, - 0.9701 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1171, - 0.9701 - ], - "tag": null, - "to": [ - 5.1256, - 0.9689 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1256, - 0.9689 - ], - "tag": null, - "to": [ - 5.1341, - 0.9677 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1341, - 0.9677 - ], - "tag": null, - "to": [ - 5.1425, - 0.9664 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1425, - 0.9664 - ], - "tag": null, - "to": [ - 5.151, - 0.9651 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.151, - 0.9651 - ], - "tag": null, - "to": [ - 5.1595, - 0.9637 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1595, - 0.9637 - ], - "tag": null, - "to": [ - 5.168, - 0.9623 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.168, - 0.9623 - ], - "tag": null, - "to": [ - 5.1765, - 0.9608 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1765, - 0.9608 - ], - "tag": null, - "to": [ - 5.185, - 0.9593 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.185, - 0.9593 - ], - "tag": null, - "to": [ - 5.1935, - 0.9577 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1935, - 0.9577 - ], - "tag": null, - "to": [ - 5.202, - 0.9561 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.202, - 0.9561 - ], - "tag": null, - "to": [ - 5.2105, - 0.9545 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2105, - 0.9545 - ], - "tag": null, - "to": [ - 5.219, - 0.9528 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.219, - 0.9528 - ], - "tag": null, - "to": [ - 5.2276, - 0.9511 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2276, - 0.9511 - ], - "tag": null, - "to": [ - 5.2361, - 0.9494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2361, - 0.9494 - ], - "tag": null, - "to": [ - 5.2447, - 0.9476 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2447, - 0.9476 - ], - "tag": null, - "to": [ - 5.2532, - 0.9457 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2532, - 0.9457 - ], - "tag": null, - "to": [ - 5.2617, - 0.9439 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2617, - 0.9439 - ], - "tag": null, - "to": [ - 5.2703, - 0.942 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2703, - 0.942 - ], - "tag": null, - "to": [ - 5.2789, - 0.94 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2789, - 0.94 - ], - "tag": null, - "to": [ - 5.2874, - 0.938 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2874, - 0.938 - ], - "tag": null, - "to": [ - 5.296, - 0.936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.296, - 0.936 - ], - "tag": null, - "to": [ - 5.3046, - 0.9339 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3046, - 0.9339 - ], - "tag": null, - "to": [ - 5.3132, - 0.9318 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3132, - 0.9318 - ], - "tag": null, - "to": [ - 5.3217, - 0.9297 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3217, - 0.9297 - ], - "tag": null, - "to": [ - 5.3303, - 0.9275 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3303, - 0.9275 - ], - "tag": null, - "to": [ - 5.3389, - 0.9253 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3389, - 0.9253 - ], - "tag": null, - "to": [ - 5.3475, - 0.923 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3475, - 0.923 - ], - "tag": null, - "to": [ - 5.3561, - 0.9207 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3561, - 0.9207 - ], - "tag": null, - "to": [ - 5.3647, - 0.9184 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3647, - 0.9184 - ], - "tag": null, - "to": [ - 5.3733, - 0.916 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3733, - 0.916 - ], - "tag": null, - "to": [ - 5.3819, - 0.9136 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3819, - 0.9136 - ], - "tag": null, - "to": [ - 5.3906, - 0.9112 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3906, - 0.9112 - ], - "tag": null, - "to": [ - 5.3992, - 0.9087 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3992, - 0.9087 - ], - "tag": null, - "to": [ - 5.4078, - 0.9062 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4078, - 0.9062 - ], - "tag": null, - "to": [ - 5.4164, - 0.9036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4164, - 0.9036 - ], - "tag": null, - "to": [ - 5.425, - 0.901 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.425, - 0.901 - ], - "tag": null, - "to": [ - 5.4337, - 0.8984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4337, - 0.8984 - ], - "tag": null, - "to": [ - 5.4423, - 0.8958 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4423, - 0.8958 - ], - "tag": null, - "to": [ - 5.4509, - 0.8931 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4509, - 0.8931 - ], - "tag": null, - "to": [ - 5.4596, - 0.8903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4596, - 0.8903 - ], - "tag": null, - "to": [ - 5.4682, - 0.8876 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4682, - 0.8876 - ], - "tag": null, - "to": [ - 5.4769, - 0.8848 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4769, - 0.8848 - ], - "tag": null, - "to": [ - 5.4855, - 0.8819 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4855, - 0.8819 - ], - "tag": null, - "to": [ - 5.4942, - 0.8791 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4942, - 0.8791 - ], - "tag": null, - "to": [ - 5.5028, - 0.8762 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5028, - 0.8762 - ], - "tag": null, - "to": [ - 5.5115, - 0.8732 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5115, - 0.8732 - ], - "tag": null, - "to": [ - 5.5201, - 0.8703 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5201, - 0.8703 - ], - "tag": null, - "to": [ - 5.5288, - 0.8672 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5288, - 0.8672 - ], - "tag": null, - "to": [ - 5.5374, - 0.8642 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5374, - 0.8642 - ], - "tag": null, - "to": [ - 5.5461, - 0.8611 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5461, - 0.8611 - ], - "tag": null, - "to": [ - 5.5548, - 0.858 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5548, - 0.858 - ], - "tag": null, - "to": [ - 5.5634, - 0.8549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5634, - 0.8549 - ], - "tag": null, - "to": [ - 5.5721, - 0.8517 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5721, - 0.8517 - ], - "tag": null, - "to": [ - 5.5808, - 0.8485 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5808, - 0.8485 - ], - "tag": null, - "to": [ - 5.5894, - 0.8452 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5894, - 0.8452 - ], - "tag": null, - "to": [ - 5.5981, - 0.842 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5981, - 0.842 - ], - "tag": null, - "to": [ - 5.6068, - 0.8386 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6068, - 0.8386 - ], - "tag": null, - "to": [ - 5.6154, - 0.8353 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6154, - 0.8353 - ], - "tag": null, - "to": [ - 5.6241, - 0.8319 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6241, - 0.8319 - ], - "tag": null, - "to": [ - 5.6328, - 0.8285 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6328, - 0.8285 - ], - "tag": null, - "to": [ - 5.6415, - 0.825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6415, - 0.825 - ], - "tag": null, - "to": [ - 5.6502, - 0.8216 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6502, - 0.8216 - ], - "tag": null, - "to": [ - 5.6588, - 0.8181 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6588, - 0.8181 - ], - "tag": null, - "to": [ - 5.6675, - 0.8145 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6675, - 0.8145 - ], - "tag": null, - "to": [ - 5.6762, - 0.8109 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6762, - 0.8109 - ], - "tag": null, - "to": [ - 5.6849, - 0.8073 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6849, - 0.8073 - ], - "tag": null, - "to": [ - 5.6936, - 0.8037 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6936, - 0.8037 - ], - "tag": null, - "to": [ - 5.7399, - 0.3404 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "artifactId": "[uuid]", - "id": "[uuid]", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Mm" - } - }, - "type": "plane", - "value": "XY", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - } - }, - "start": { - "from": [ - 5.7399, - 0.3404 - ], - "to": [ - 5.7399, - 0.3404 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" - }, - "sectional": false - } - }, - { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7399, - 0.3404 - ], - "tag": null, - "to": [ - 5.7321, - 0.3351 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7321, - 0.3351 - ], - "tag": null, - "to": [ - 5.7243, - 0.3299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7243, - 0.3299 - ], - "tag": null, - "to": [ - 5.7165, - 0.3246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7165, - 0.3246 - ], - "tag": null, - "to": [ - 5.7087, - 0.3194 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7087, - 0.3194 - ], - "tag": null, - "to": [ - 5.7009, - 0.3143 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7009, - 0.3143 - ], - "tag": null, - "to": [ - 5.6931, - 0.3091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6931, - 0.3091 - ], - "tag": null, - "to": [ - 5.6853, - 0.3041 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6853, - 0.3041 - ], - "tag": null, - "to": [ - 5.6775, - 0.299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6775, - 0.299 - ], - "tag": null, - "to": [ - 5.6696, - 0.294 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6696, - 0.294 - ], - "tag": null, - "to": [ - 5.6618, - 0.289 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6618, - 0.289 - ], - "tag": null, - "to": [ - 5.6539, - 0.284 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6539, - 0.284 - ], - "tag": null, - "to": [ - 5.6461, - 0.279 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6461, - 0.279 - ], - "tag": null, - "to": [ - 5.6382, - 0.2741 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6382, - 0.2741 - ], - "tag": null, - "to": [ - 5.6304, - 0.2693 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6304, - 0.2693 - ], - "tag": null, - "to": [ - 5.6225, - 0.2644 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6225, - 0.2644 - ], - "tag": null, - "to": [ - 5.6146, - 0.2597 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6146, - 0.2597 - ], - "tag": null, - "to": [ - 5.6068, - 0.2549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6068, - 0.2549 - ], - "tag": null, - "to": [ - 5.5989, - 0.2502 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5989, - 0.2502 - ], - "tag": null, - "to": [ - 5.591, - 0.2455 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.591, - 0.2455 - ], - "tag": null, - "to": [ - 5.5831, - 0.2408 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5831, - 0.2408 - ], - "tag": null, - "to": [ - 5.5752, - 0.2362 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5752, - 0.2362 - ], - "tag": null, - "to": [ - 5.5673, - 0.2316 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5673, - 0.2316 - ], - "tag": null, - "to": [ - 5.5594, - 0.227 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5594, - 0.227 - ], - "tag": null, - "to": [ - 5.5515, - 0.2225 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5515, - 0.2225 - ], - "tag": null, - "to": [ - 5.5436, - 0.218 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5436, - 0.218 - ], - "tag": null, - "to": [ - 5.5357, - 0.2135 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5357, - 0.2135 - ], - "tag": null, - "to": [ - 5.5277, - 0.2091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5277, - 0.2091 - ], - "tag": null, - "to": [ - 5.5198, - 0.2047 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5198, - 0.2047 - ], - "tag": null, - "to": [ - 5.5119, - 0.2004 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5119, - 0.2004 - ], - "tag": null, - "to": [ - 5.504, - 0.1961 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.504, - 0.1961 - ], - "tag": null, - "to": [ - 5.496, - 0.1918 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.496, - 0.1918 - ], - "tag": null, - "to": [ - 5.4881, - 0.1875 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4881, - 0.1875 - ], - "tag": null, - "to": [ - 5.4801, - 0.1833 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4801, - 0.1833 - ], - "tag": null, - "to": [ - 5.4722, - 0.1792 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4722, - 0.1792 - ], - "tag": null, - "to": [ - 5.4642, - 0.175 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4642, - 0.175 - ], - "tag": null, - "to": [ - 5.4563, - 0.1709 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4563, - 0.1709 - ], - "tag": null, - "to": [ - 5.4483, - 0.1669 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4483, - 0.1669 - ], - "tag": null, - "to": [ - 5.4403, - 0.1628 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4403, - 0.1628 - ], - "tag": null, - "to": [ - 5.4324, - 0.1588 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4324, - 0.1588 - ], - "tag": null, - "to": [ - 5.4244, - 0.1549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4244, - 0.1549 - ], - "tag": null, - "to": [ - 5.4164, - 0.151 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4164, - 0.151 - ], - "tag": null, - "to": [ - 5.4084, - 0.1471 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4084, - 0.1471 - ], - "tag": null, - "to": [ - 5.4004, - 0.1433 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4004, - 0.1433 - ], - "tag": null, - "to": [ - 5.3924, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3924, - 0.1395 - ], - "tag": null, - "to": [ - 5.3845, - 0.1357 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3845, - 0.1357 - ], - "tag": null, - "to": [ - 5.3765, - 0.132 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3765, - 0.132 - ], - "tag": null, - "to": [ - 5.3685, - 0.1283 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3685, - 0.1283 - ], - "tag": null, - "to": [ - 5.3605, - 0.1246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3605, - 0.1246 - ], - "tag": null, - "to": [ - 5.3525, - 0.121 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3525, - 0.121 - ], - "tag": null, - "to": [ - 5.3444, - 0.1174 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3444, - 0.1174 - ], - "tag": null, - "to": [ - 5.3364, - 0.1139 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3364, - 0.1139 - ], - "tag": null, - "to": [ - 5.3284, - 0.1104 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3284, - 0.1104 - ], - "tag": null, - "to": [ - 5.3204, - 0.107 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3204, - 0.107 - ], - "tag": null, - "to": [ - 5.3124, - 0.1036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3124, - 0.1036 - ], - "tag": null, - "to": [ - 5.3044, - 0.1002 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3044, - 0.1002 - ], - "tag": null, - "to": [ - 5.2963, - 0.0969 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2963, - 0.0969 - ], - "tag": null, - "to": [ - 5.2883, - 0.0936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2883, - 0.0936 - ], - "tag": null, - "to": [ - 5.2803, - 0.0903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2803, - 0.0903 - ], - "tag": null, - "to": [ - 5.2722, - 0.0871 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2722, - 0.0871 - ], - "tag": null, - "to": [ - 5.2642, - 0.084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2642, - 0.084 - ], - "tag": null, - "to": [ - 5.2562, - 0.0808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2562, - 0.0808 - ], - "tag": null, - "to": [ - 5.2481, - 0.0778 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2481, - 0.0778 - ], - "tag": null, - "to": [ - 5.2401, - 0.0747 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2401, - 0.0747 - ], - "tag": null, - "to": [ - 5.2321, - 0.0717 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2321, - 0.0717 - ], - "tag": null, - "to": [ - 5.224, - 0.0688 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.224, - 0.0688 - ], - "tag": null, - "to": [ - 5.216, - 0.0659 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.216, - 0.0659 - ], - "tag": null, - "to": [ - 5.2079, - 0.063 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2079, - 0.063 - ], - "tag": null, - "to": [ - 5.1999, - 0.0602 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1999, - 0.0602 - ], - "tag": null, - "to": [ - 5.1918, - 0.0575 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1918, - 0.0575 - ], - "tag": null, - "to": [ - 5.1837, - 0.0547 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1837, - 0.0547 - ], - "tag": null, - "to": [ - 5.1757, - 0.0521 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1757, - 0.0521 - ], - "tag": null, - "to": [ - 5.1676, - 0.0494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1676, - 0.0494 - ], - "tag": null, - "to": [ - 5.1596, - 0.0469 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1596, - 0.0469 - ], - "tag": null, - "to": [ - 5.1515, - 0.0443 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1515, - 0.0443 - ], - "tag": null, - "to": [ - 5.1434, - 0.0419 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1434, - 0.0419 - ], - "tag": null, - "to": [ - 5.1354, - 0.0394 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1354, - 0.0394 - ], - "tag": null, - "to": [ - 5.1273, - 0.0371 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1273, - 0.0371 - ], - "tag": null, - "to": [ - 5.1192, - 0.0347 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1192, - 0.0347 - ], - "tag": null, - "to": [ - 5.1112, - 0.0325 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1112, - 0.0325 - ], - "tag": null, - "to": [ - 5.1031, - 0.0303 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1031, - 0.0303 - ], - "tag": null, - "to": [ - 5.095, - 0.0281 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.095, - 0.0281 - ], - "tag": null, - "to": [ - 5.0869, - 0.026 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0869, - 0.026 - ], - "tag": null, - "to": [ - 5.0789, - 0.0239 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0789, - 0.0239 - ], - "tag": null, - "to": [ - 5.0708, - 0.022 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0708, - 0.022 - ], - "tag": null, - "to": [ - 5.0627, - 0.02 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0627, - 0.02 - ], - "tag": null, - "to": [ - 5.0546, - 0.0182 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0546, - 0.0182 - ], - "tag": null, - "to": [ - 5.0466, - 0.0164 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0466, - 0.0164 - ], - "tag": null, - "to": [ - 5.0385, - 0.0146 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0385, - 0.0146 - ], - "tag": null, - "to": [ - 5.0304, - 0.013 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0304, - 0.013 - ], - "tag": null, - "to": [ - 5.0223, - 0.0114 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0223, - 0.0114 - ], - "tag": null, - "to": [ - 5.0142, - 0.0098 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0142, - 0.0098 - ], - "tag": null, - "to": [ - 5.0061, - 0.0084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0061, - 0.0084 - ], - "tag": null, - "to": [ - 4.9981, - 0.007 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9981, - 0.007 - ], - "tag": null, - "to": [ - 4.99, - 0.0058 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.99, - 0.0058 - ], - "tag": null, - "to": [ - 4.9819, - 0.0046 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9819, - 0.0046 - ], - "tag": null, - "to": [ - 4.9738, - 0.0035 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9738, - 0.0035 - ], - "tag": null, - "to": [ - 4.9657, - 0.0025 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9657, - 0.0025 - ], - "tag": null, - "to": [ - 4.9576, - 0.0016 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9576, - 0.0016 - ], - "tag": null, - "to": [ - 4.9496, - 0.0009 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9496, - 0.0009 - ], - "tag": null, - "to": [ - 4.9415, - 0.0003 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9415, - 0.0003 - ], - "tag": null, - "to": [ - 4.9334, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "ccw": true, - "center": [ - -0.0, - -0.0 - ], - "from": [ - 4.9334, - 0.0 - ], - "radius": 4.933386259126019, - "tag": null, - "to": [ - 4.8356, - 0.9775 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8356, - 0.9775 - ], - "tag": null, - "to": [ - 4.8436, - 0.9788 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8436, - 0.9788 - ], - "tag": null, - "to": [ - 4.8516, - 0.9799 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8516, - 0.9799 - ], - "tag": null, - "to": [ - 4.8597, - 0.9808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8597, - 0.9808 - ], - "tag": null, - "to": [ - 4.8678, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8678, - 0.9815 - ], - "tag": null, - "to": [ - 4.8759, - 0.9821 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8759, - 0.9821 - ], - "tag": null, - "to": [ - 4.884, - 0.9827 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.884, - 0.9827 - ], - "tag": null, - "to": [ - 4.8922, - 0.9831 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8922, - 0.9831 - ], - "tag": null, - "to": [ - 4.9004, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9004, - 0.9835 - ], - "tag": null, - "to": [ - 4.9086, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9086, - 0.9837 - ], - "tag": null, - "to": [ - 4.9168, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9168, - 0.9839 - ], - "tag": null, - "to": [ - 4.925, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.925, - 0.984 - ], - "tag": null, - "to": [ - 4.9332, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9332, - 0.984 - ], - "tag": null, - "to": [ - 4.9415, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9415, - 0.984 - ], - "tag": null, - "to": [ - 4.9497, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9497, - 0.9839 - ], - "tag": null, - "to": [ - 4.958, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.958, - 0.9837 - ], - "tag": null, - "to": [ - 4.9663, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9663, - 0.9835 - ], - "tag": null, - "to": [ - 4.9746, - 0.9832 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9746, - 0.9832 - ], - "tag": null, - "to": [ - 4.9829, - 0.9829 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9829, - 0.9829 - ], - "tag": null, - "to": [ - 4.9912, - 0.9825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9912, - 0.9825 - ], - "tag": null, - "to": [ - 4.9996, - 0.982 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9996, - 0.982 - ], - "tag": null, - "to": [ - 5.0079, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0079, - 0.9815 - ], - "tag": null, - "to": [ - 5.0163, - 0.9809 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0163, - 0.9809 - ], - "tag": null, - "to": [ - 5.0246, - 0.9803 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0246, - 0.9803 - ], - "tag": null, - "to": [ - 5.033, - 0.9796 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.033, - 0.9796 - ], - "tag": null, - "to": [ - 5.0414, - 0.9789 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0414, - 0.9789 - ], - "tag": null, - "to": [ - 5.0497, - 0.9781 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0497, - 0.9781 - ], - "tag": null, - "to": [ - 5.0581, - 0.9773 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0581, - 0.9773 - ], - "tag": null, - "to": [ - 5.0665, - 0.9764 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0665, - 0.9764 - ], - "tag": null, - "to": [ - 5.075, - 0.9755 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.075, - 0.9755 - ], - "tag": null, - "to": [ - 5.0834, - 0.9745 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0834, - 0.9745 - ], - "tag": null, - "to": [ - 5.0918, - 0.9735 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0918, - 0.9735 - ], - "tag": null, - "to": [ - 5.1002, - 0.9724 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1002, - 0.9724 - ], - "tag": null, - "to": [ - 5.1087, - 0.9713 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1087, - 0.9713 - ], - "tag": null, - "to": [ - 5.1171, - 0.9701 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1171, - 0.9701 - ], - "tag": null, - "to": [ - 5.1256, - 0.9689 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1256, - 0.9689 - ], - "tag": null, - "to": [ - 5.1341, - 0.9677 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1341, - 0.9677 - ], - "tag": null, - "to": [ - 5.1425, - 0.9664 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1425, - 0.9664 - ], - "tag": null, - "to": [ - 5.151, - 0.9651 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.151, - 0.9651 - ], - "tag": null, - "to": [ - 5.1595, - 0.9637 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1595, - 0.9637 - ], - "tag": null, - "to": [ - 5.168, - 0.9623 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.168, - 0.9623 - ], - "tag": null, - "to": [ - 5.1765, - 0.9608 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1765, - 0.9608 - ], - "tag": null, - "to": [ - 5.185, - 0.9593 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.185, - 0.9593 - ], - "tag": null, - "to": [ - 5.1935, - 0.9577 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1935, - 0.9577 - ], - "tag": null, - "to": [ - 5.202, - 0.9561 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.202, - 0.9561 - ], - "tag": null, - "to": [ - 5.2105, - 0.9545 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2105, - 0.9545 - ], - "tag": null, - "to": [ - 5.219, - 0.9528 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.219, - 0.9528 - ], - "tag": null, - "to": [ - 5.2276, - 0.9511 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2276, - 0.9511 - ], - "tag": null, - "to": [ - 5.2361, - 0.9494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2361, - 0.9494 - ], - "tag": null, - "to": [ - 5.2447, - 0.9476 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2447, - 0.9476 - ], - "tag": null, - "to": [ - 5.2532, - 0.9457 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2532, - 0.9457 - ], - "tag": null, - "to": [ - 5.2617, - 0.9439 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2617, - 0.9439 - ], - "tag": null, - "to": [ - 5.2703, - 0.942 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2703, - 0.942 - ], - "tag": null, - "to": [ - 5.2789, - 0.94 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2789, - 0.94 - ], - "tag": null, - "to": [ - 5.2874, - 0.938 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2874, - 0.938 - ], - "tag": null, - "to": [ - 5.296, - 0.936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.296, - 0.936 - ], - "tag": null, - "to": [ - 5.3046, - 0.9339 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3046, - 0.9339 - ], - "tag": null, - "to": [ - 5.3132, - 0.9318 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3132, - 0.9318 - ], - "tag": null, - "to": [ - 5.3217, - 0.9297 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3217, - 0.9297 - ], - "tag": null, - "to": [ - 5.3303, - 0.9275 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3303, - 0.9275 - ], - "tag": null, - "to": [ - 5.3389, - 0.9253 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3389, - 0.9253 - ], - "tag": null, - "to": [ - 5.3475, - 0.923 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3475, - 0.923 - ], - "tag": null, - "to": [ - 5.3561, - 0.9207 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3561, - 0.9207 - ], - "tag": null, - "to": [ - 5.3647, - 0.9184 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3647, - 0.9184 - ], - "tag": null, - "to": [ - 5.3733, - 0.916 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3733, - 0.916 - ], - "tag": null, - "to": [ - 5.3819, - 0.9136 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3819, - 0.9136 - ], - "tag": null, - "to": [ - 5.3906, - 0.9112 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3906, - 0.9112 - ], - "tag": null, - "to": [ - 5.3992, - 0.9087 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3992, - 0.9087 - ], - "tag": null, - "to": [ - 5.4078, - 0.9062 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4078, - 0.9062 - ], - "tag": null, - "to": [ - 5.4164, - 0.9036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4164, - 0.9036 - ], - "tag": null, - "to": [ - 5.425, - 0.901 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.425, - 0.901 - ], - "tag": null, - "to": [ - 5.4337, - 0.8984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4337, - 0.8984 - ], - "tag": null, - "to": [ - 5.4423, - 0.8958 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4423, - 0.8958 - ], - "tag": null, - "to": [ - 5.4509, - 0.8931 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4509, - 0.8931 - ], - "tag": null, - "to": [ - 5.4596, - 0.8903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4596, - 0.8903 - ], - "tag": null, - "to": [ - 5.4682, - 0.8876 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4682, - 0.8876 - ], - "tag": null, - "to": [ - 5.4769, - 0.8848 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4769, - 0.8848 - ], - "tag": null, - "to": [ - 5.4855, - 0.8819 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4855, - 0.8819 - ], - "tag": null, - "to": [ - 5.4942, - 0.8791 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4942, - 0.8791 - ], - "tag": null, - "to": [ - 5.5028, - 0.8762 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5028, - 0.8762 - ], - "tag": null, - "to": [ - 5.5115, - 0.8732 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5115, - 0.8732 - ], - "tag": null, - "to": [ - 5.5201, - 0.8703 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5201, - 0.8703 - ], - "tag": null, - "to": [ - 5.5288, - 0.8672 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5288, - 0.8672 - ], - "tag": null, - "to": [ - 5.5374, - 0.8642 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5374, - 0.8642 - ], - "tag": null, - "to": [ - 5.5461, - 0.8611 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5461, - 0.8611 - ], - "tag": null, - "to": [ - 5.5548, - 0.858 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5548, - 0.858 - ], - "tag": null, - "to": [ - 5.5634, - 0.8549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5634, - 0.8549 - ], - "tag": null, - "to": [ - 5.5721, - 0.8517 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5721, - 0.8517 - ], - "tag": null, - "to": [ - 5.5808, - 0.8485 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5808, - 0.8485 - ], - "tag": null, - "to": [ - 5.5894, - 0.8452 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5894, - 0.8452 - ], - "tag": null, - "to": [ - 5.5981, - 0.842 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5981, - 0.842 - ], - "tag": null, - "to": [ - 5.6068, - 0.8386 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6068, - 0.8386 - ], - "tag": null, - "to": [ - 5.6154, - 0.8353 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6154, - 0.8353 - ], - "tag": null, - "to": [ - 5.6241, - 0.8319 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6241, - 0.8319 - ], - "tag": null, - "to": [ - 5.6328, - 0.8285 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6328, - 0.8285 - ], - "tag": null, - "to": [ - 5.6415, - 0.825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6415, - 0.825 - ], - "tag": null, - "to": [ - 5.6502, - 0.8216 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6502, - 0.8216 - ], - "tag": null, - "to": [ - 5.6588, - 0.8181 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6588, - 0.8181 - ], - "tag": null, - "to": [ - 5.6675, - 0.8145 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6675, - 0.8145 - ], - "tag": null, - "to": [ - 5.6762, - 0.8109 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6762, - 0.8109 - ], - "tag": null, - "to": [ - 5.6849, - 0.8073 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6849, - 0.8073 - ], - "tag": null, - "to": [ - 5.6936, - 0.8037 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6936, - 0.8037 - ], - "tag": null, - "to": [ - 5.7399, - 0.3404 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "artifactId": "[uuid]", - "id": "[uuid]", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Mm" - } - }, - "type": "plane", - "value": "XY", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - } - }, - "start": { - "from": [ - 5.7399, - 0.3404 - ], - "to": [ - 5.7399, - 0.3404 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" - }, - "sectional": false - } - }, - { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7399, - 0.3404 - ], - "tag": null, - "to": [ - 5.7321, - 0.3351 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7321, - 0.3351 - ], - "tag": null, - "to": [ - 5.7243, - 0.3299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7243, - 0.3299 - ], - "tag": null, - "to": [ - 5.7165, - 0.3246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7165, - 0.3246 - ], - "tag": null, - "to": [ - 5.7087, - 0.3194 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7087, - 0.3194 - ], - "tag": null, - "to": [ - 5.7009, - 0.3143 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7009, - 0.3143 - ], - "tag": null, - "to": [ - 5.6931, - 0.3091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6931, - 0.3091 - ], - "tag": null, - "to": [ - 5.6853, - 0.3041 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6853, - 0.3041 - ], - "tag": null, - "to": [ - 5.6775, - 0.299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6775, - 0.299 - ], - "tag": null, - "to": [ - 5.6696, - 0.294 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6696, - 0.294 - ], - "tag": null, - "to": [ - 5.6618, - 0.289 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6618, - 0.289 - ], - "tag": null, - "to": [ - 5.6539, - 0.284 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6539, - 0.284 - ], - "tag": null, - "to": [ - 5.6461, - 0.279 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6461, - 0.279 - ], - "tag": null, - "to": [ - 5.6382, - 0.2741 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6382, - 0.2741 - ], - "tag": null, - "to": [ - 5.6304, - 0.2693 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6304, - 0.2693 - ], - "tag": null, - "to": [ - 5.6225, - 0.2644 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6225, - 0.2644 - ], - "tag": null, - "to": [ - 5.6146, - 0.2597 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6146, - 0.2597 - ], - "tag": null, - "to": [ - 5.6068, - 0.2549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6068, - 0.2549 - ], - "tag": null, - "to": [ - 5.5989, - 0.2502 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5989, - 0.2502 - ], - "tag": null, - "to": [ - 5.591, - 0.2455 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.591, - 0.2455 - ], - "tag": null, - "to": [ - 5.5831, - 0.2408 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5831, - 0.2408 - ], - "tag": null, - "to": [ - 5.5752, - 0.2362 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5752, - 0.2362 - ], - "tag": null, - "to": [ - 5.5673, - 0.2316 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5673, - 0.2316 - ], - "tag": null, - "to": [ - 5.5594, - 0.227 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5594, - 0.227 - ], - "tag": null, - "to": [ - 5.5515, - 0.2225 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5515, - 0.2225 - ], - "tag": null, - "to": [ - 5.5436, - 0.218 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5436, - 0.218 - ], - "tag": null, - "to": [ - 5.5357, - 0.2135 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5357, - 0.2135 - ], - "tag": null, - "to": [ - 5.5277, - 0.2091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5277, - 0.2091 - ], - "tag": null, - "to": [ - 5.5198, - 0.2047 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5198, - 0.2047 - ], - "tag": null, - "to": [ - 5.5119, - 0.2004 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5119, - 0.2004 - ], - "tag": null, - "to": [ - 5.504, - 0.1961 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.504, - 0.1961 - ], - "tag": null, - "to": [ - 5.496, - 0.1918 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.496, - 0.1918 - ], - "tag": null, - "to": [ - 5.4881, - 0.1875 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4881, - 0.1875 - ], - "tag": null, - "to": [ - 5.4801, - 0.1833 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4801, - 0.1833 - ], - "tag": null, - "to": [ - 5.4722, - 0.1792 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4722, - 0.1792 - ], - "tag": null, - "to": [ - 5.4642, - 0.175 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4642, - 0.175 - ], - "tag": null, - "to": [ - 5.4563, - 0.1709 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4563, - 0.1709 - ], - "tag": null, - "to": [ - 5.4483, - 0.1669 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4483, - 0.1669 - ], - "tag": null, - "to": [ - 5.4403, - 0.1628 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4403, - 0.1628 - ], - "tag": null, - "to": [ - 5.4324, - 0.1588 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4324, - 0.1588 - ], - "tag": null, - "to": [ - 5.4244, - 0.1549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4244, - 0.1549 - ], - "tag": null, - "to": [ - 5.4164, - 0.151 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4164, - 0.151 - ], - "tag": null, - "to": [ - 5.4084, - 0.1471 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4084, - 0.1471 - ], - "tag": null, - "to": [ - 5.4004, - 0.1433 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4004, - 0.1433 - ], - "tag": null, - "to": [ - 5.3924, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3924, - 0.1395 - ], - "tag": null, - "to": [ - 5.3845, - 0.1357 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3845, - 0.1357 - ], - "tag": null, - "to": [ - 5.3765, - 0.132 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3765, - 0.132 - ], - "tag": null, - "to": [ - 5.3685, - 0.1283 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3685, - 0.1283 - ], - "tag": null, - "to": [ - 5.3605, - 0.1246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3605, - 0.1246 - ], - "tag": null, - "to": [ - 5.3525, - 0.121 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3525, - 0.121 - ], - "tag": null, - "to": [ - 5.3444, - 0.1174 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3444, - 0.1174 - ], - "tag": null, - "to": [ - 5.3364, - 0.1139 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3364, - 0.1139 - ], - "tag": null, - "to": [ - 5.3284, - 0.1104 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3284, - 0.1104 - ], - "tag": null, - "to": [ - 5.3204, - 0.107 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3204, - 0.107 - ], - "tag": null, - "to": [ - 5.3124, - 0.1036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3124, - 0.1036 - ], - "tag": null, - "to": [ - 5.3044, - 0.1002 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3044, - 0.1002 - ], - "tag": null, - "to": [ - 5.2963, - 0.0969 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2963, - 0.0969 - ], - "tag": null, - "to": [ - 5.2883, - 0.0936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2883, - 0.0936 - ], - "tag": null, - "to": [ - 5.2803, - 0.0903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2803, - 0.0903 - ], - "tag": null, - "to": [ - 5.2722, - 0.0871 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2722, - 0.0871 - ], - "tag": null, - "to": [ - 5.2642, - 0.084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2642, - 0.084 - ], - "tag": null, - "to": [ - 5.2562, - 0.0808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2562, - 0.0808 - ], - "tag": null, - "to": [ - 5.2481, - 0.0778 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2481, - 0.0778 - ], - "tag": null, - "to": [ - 5.2401, - 0.0747 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2401, - 0.0747 - ], - "tag": null, - "to": [ - 5.2321, - 0.0717 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2321, - 0.0717 - ], - "tag": null, - "to": [ - 5.224, - 0.0688 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.224, - 0.0688 - ], - "tag": null, - "to": [ - 5.216, - 0.0659 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.216, - 0.0659 - ], - "tag": null, - "to": [ - 5.2079, - 0.063 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2079, - 0.063 - ], - "tag": null, - "to": [ - 5.1999, - 0.0602 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1999, - 0.0602 - ], - "tag": null, - "to": [ - 5.1918, - 0.0575 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1918, - 0.0575 - ], - "tag": null, - "to": [ - 5.1837, - 0.0547 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1837, - 0.0547 - ], - "tag": null, - "to": [ - 5.1757, - 0.0521 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1757, - 0.0521 - ], - "tag": null, - "to": [ - 5.1676, - 0.0494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1676, - 0.0494 - ], - "tag": null, - "to": [ - 5.1596, - 0.0469 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1596, - 0.0469 - ], - "tag": null, - "to": [ - 5.1515, - 0.0443 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1515, - 0.0443 - ], - "tag": null, - "to": [ - 5.1434, - 0.0419 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1434, - 0.0419 - ], - "tag": null, - "to": [ - 5.1354, - 0.0394 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1354, - 0.0394 - ], - "tag": null, - "to": [ - 5.1273, - 0.0371 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1273, - 0.0371 - ], - "tag": null, - "to": [ - 5.1192, - 0.0347 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1192, - 0.0347 - ], - "tag": null, - "to": [ - 5.1112, - 0.0325 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1112, - 0.0325 - ], - "tag": null, - "to": [ - 5.1031, - 0.0303 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1031, - 0.0303 - ], - "tag": null, - "to": [ - 5.095, - 0.0281 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.095, - 0.0281 - ], - "tag": null, - "to": [ - 5.0869, - 0.026 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0869, - 0.026 - ], - "tag": null, - "to": [ - 5.0789, - 0.0239 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0789, - 0.0239 - ], - "tag": null, - "to": [ - 5.0708, - 0.022 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0708, - 0.022 - ], - "tag": null, - "to": [ - 5.0627, - 0.02 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0627, - 0.02 - ], - "tag": null, - "to": [ - 5.0546, - 0.0182 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0546, - 0.0182 - ], - "tag": null, - "to": [ - 5.0466, - 0.0164 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0466, - 0.0164 - ], - "tag": null, - "to": [ - 5.0385, - 0.0146 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0385, - 0.0146 - ], - "tag": null, - "to": [ - 5.0304, - 0.013 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0304, - 0.013 - ], - "tag": null, - "to": [ - 5.0223, - 0.0114 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0223, - 0.0114 - ], - "tag": null, - "to": [ - 5.0142, - 0.0098 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0142, - 0.0098 - ], - "tag": null, - "to": [ - 5.0061, - 0.0084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0061, - 0.0084 - ], - "tag": null, - "to": [ - 4.9981, - 0.007 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9981, - 0.007 - ], - "tag": null, - "to": [ - 4.99, - 0.0058 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.99, - 0.0058 - ], - "tag": null, - "to": [ - 4.9819, - 0.0046 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9819, - 0.0046 - ], - "tag": null, - "to": [ - 4.9738, - 0.0035 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9738, - 0.0035 - ], - "tag": null, - "to": [ - 4.9657, - 0.0025 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9657, - 0.0025 - ], - "tag": null, - "to": [ - 4.9576, - 0.0016 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9576, - 0.0016 - ], - "tag": null, - "to": [ - 4.9496, - 0.0009 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9496, - 0.0009 - ], - "tag": null, - "to": [ - 4.9415, - 0.0003 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9415, - 0.0003 - ], - "tag": null, - "to": [ - 4.9334, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "ccw": true, - "center": [ - -0.0, - -0.0 - ], - "from": [ - 4.9334, - 0.0 - ], - "radius": 4.933386259126019, - "tag": null, - "to": [ - 4.8356, - 0.9775 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8356, - 0.9775 - ], - "tag": null, - "to": [ - 4.8436, - 0.9788 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8436, - 0.9788 - ], - "tag": null, - "to": [ - 4.8516, - 0.9799 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8516, - 0.9799 - ], - "tag": null, - "to": [ - 4.8597, - 0.9808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8597, - 0.9808 - ], - "tag": null, - "to": [ - 4.8678, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8678, - 0.9815 - ], - "tag": null, - "to": [ - 4.8759, - 0.9821 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8759, - 0.9821 - ], - "tag": null, - "to": [ - 4.884, - 0.9827 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.884, - 0.9827 - ], - "tag": null, - "to": [ - 4.8922, - 0.9831 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8922, - 0.9831 - ], - "tag": null, - "to": [ - 4.9004, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9004, - 0.9835 - ], - "tag": null, - "to": [ - 4.9086, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9086, - 0.9837 - ], - "tag": null, - "to": [ - 4.9168, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9168, - 0.9839 - ], - "tag": null, - "to": [ - 4.925, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.925, - 0.984 - ], - "tag": null, - "to": [ - 4.9332, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9332, - 0.984 - ], - "tag": null, - "to": [ - 4.9415, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9415, - 0.984 - ], - "tag": null, - "to": [ - 4.9497, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9497, - 0.9839 - ], - "tag": null, - "to": [ - 4.958, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.958, - 0.9837 - ], - "tag": null, - "to": [ - 4.9663, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9663, - 0.9835 - ], - "tag": null, - "to": [ - 4.9746, - 0.9832 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9746, - 0.9832 - ], - "tag": null, - "to": [ - 4.9829, - 0.9829 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9829, - 0.9829 - ], - "tag": null, - "to": [ - 4.9912, - 0.9825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9912, - 0.9825 - ], - "tag": null, - "to": [ - 4.9996, - 0.982 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9996, - 0.982 - ], - "tag": null, - "to": [ - 5.0079, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0079, - 0.9815 - ], - "tag": null, - "to": [ - 5.0163, - 0.9809 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0163, - 0.9809 - ], - "tag": null, - "to": [ - 5.0246, - 0.9803 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0246, - 0.9803 - ], - "tag": null, - "to": [ - 5.033, - 0.9796 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.033, - 0.9796 - ], - "tag": null, - "to": [ - 5.0414, - 0.9789 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0414, - 0.9789 - ], - "tag": null, - "to": [ - 5.0497, - 0.9781 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0497, - 0.9781 - ], - "tag": null, - "to": [ - 5.0581, - 0.9773 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0581, - 0.9773 - ], - "tag": null, - "to": [ - 5.0665, - 0.9764 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0665, - 0.9764 - ], - "tag": null, - "to": [ - 5.075, - 0.9755 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.075, - 0.9755 - ], - "tag": null, - "to": [ - 5.0834, - 0.9745 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0834, - 0.9745 - ], - "tag": null, - "to": [ - 5.0918, - 0.9735 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0918, - 0.9735 - ], - "tag": null, - "to": [ - 5.1002, - 0.9724 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1002, - 0.9724 - ], - "tag": null, - "to": [ - 5.1087, - 0.9713 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1087, - 0.9713 - ], - "tag": null, - "to": [ - 5.1171, - 0.9701 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1171, - 0.9701 - ], - "tag": null, - "to": [ - 5.1256, - 0.9689 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1256, - 0.9689 - ], - "tag": null, - "to": [ - 5.1341, - 0.9677 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1341, - 0.9677 - ], - "tag": null, - "to": [ - 5.1425, - 0.9664 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1425, - 0.9664 - ], - "tag": null, - "to": [ - 5.151, - 0.9651 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.151, - 0.9651 - ], - "tag": null, - "to": [ - 5.1595, - 0.9637 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1595, - 0.9637 - ], - "tag": null, - "to": [ - 5.168, - 0.9623 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.168, - 0.9623 - ], - "tag": null, - "to": [ - 5.1765, - 0.9608 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1765, - 0.9608 - ], - "tag": null, - "to": [ - 5.185, - 0.9593 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.185, - 0.9593 - ], - "tag": null, - "to": [ - 5.1935, - 0.9577 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1935, - 0.9577 - ], - "tag": null, - "to": [ - 5.202, - 0.9561 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.202, - 0.9561 - ], - "tag": null, - "to": [ - 5.2105, - 0.9545 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2105, - 0.9545 - ], - "tag": null, - "to": [ - 5.219, - 0.9528 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.219, - 0.9528 - ], - "tag": null, - "to": [ - 5.2276, - 0.9511 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2276, - 0.9511 - ], - "tag": null, - "to": [ - 5.2361, - 0.9494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2361, - 0.9494 - ], - "tag": null, - "to": [ - 5.2447, - 0.9476 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2447, - 0.9476 - ], - "tag": null, - "to": [ - 5.2532, - 0.9457 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2532, - 0.9457 - ], - "tag": null, - "to": [ - 5.2617, - 0.9439 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2617, - 0.9439 - ], - "tag": null, - "to": [ - 5.2703, - 0.942 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2703, - 0.942 - ], - "tag": null, - "to": [ - 5.2789, - 0.94 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2789, - 0.94 - ], - "tag": null, - "to": [ - 5.2874, - 0.938 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2874, - 0.938 - ], - "tag": null, - "to": [ - 5.296, - 0.936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.296, - 0.936 - ], - "tag": null, - "to": [ - 5.3046, - 0.9339 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3046, - 0.9339 - ], - "tag": null, - "to": [ - 5.3132, - 0.9318 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3132, - 0.9318 - ], - "tag": null, - "to": [ - 5.3217, - 0.9297 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3217, - 0.9297 - ], - "tag": null, - "to": [ - 5.3303, - 0.9275 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3303, - 0.9275 - ], - "tag": null, - "to": [ - 5.3389, - 0.9253 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3389, - 0.9253 - ], - "tag": null, - "to": [ - 5.3475, - 0.923 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3475, - 0.923 - ], - "tag": null, - "to": [ - 5.3561, - 0.9207 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3561, - 0.9207 - ], - "tag": null, - "to": [ - 5.3647, - 0.9184 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3647, - 0.9184 - ], - "tag": null, - "to": [ - 5.3733, - 0.916 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3733, - 0.916 - ], - "tag": null, - "to": [ - 5.3819, - 0.9136 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3819, - 0.9136 - ], - "tag": null, - "to": [ - 5.3906, - 0.9112 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3906, - 0.9112 - ], - "tag": null, - "to": [ - 5.3992, - 0.9087 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3992, - 0.9087 - ], - "tag": null, - "to": [ - 5.4078, - 0.9062 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4078, - 0.9062 - ], - "tag": null, - "to": [ - 5.4164, - 0.9036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4164, - 0.9036 - ], - "tag": null, - "to": [ - 5.425, - 0.901 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.425, - 0.901 - ], - "tag": null, - "to": [ - 5.4337, - 0.8984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4337, - 0.8984 - ], - "tag": null, - "to": [ - 5.4423, - 0.8958 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4423, - 0.8958 - ], - "tag": null, - "to": [ - 5.4509, - 0.8931 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4509, - 0.8931 - ], - "tag": null, - "to": [ - 5.4596, - 0.8903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4596, - 0.8903 - ], - "tag": null, - "to": [ - 5.4682, - 0.8876 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4682, - 0.8876 - ], - "tag": null, - "to": [ - 5.4769, - 0.8848 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4769, - 0.8848 - ], - "tag": null, - "to": [ - 5.4855, - 0.8819 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4855, - 0.8819 - ], - "tag": null, - "to": [ - 5.4942, - 0.8791 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4942, - 0.8791 - ], - "tag": null, - "to": [ - 5.5028, - 0.8762 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5028, - 0.8762 - ], - "tag": null, - "to": [ - 5.5115, - 0.8732 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5115, - 0.8732 - ], - "tag": null, - "to": [ - 5.5201, - 0.8703 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5201, - 0.8703 - ], - "tag": null, - "to": [ - 5.5288, - 0.8672 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5288, - 0.8672 - ], - "tag": null, - "to": [ - 5.5374, - 0.8642 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5374, - 0.8642 - ], - "tag": null, - "to": [ - 5.5461, - 0.8611 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5461, - 0.8611 - ], - "tag": null, - "to": [ - 5.5548, - 0.858 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5548, - 0.858 - ], - "tag": null, - "to": [ - 5.5634, - 0.8549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5634, - 0.8549 - ], - "tag": null, - "to": [ - 5.5721, - 0.8517 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5721, - 0.8517 - ], - "tag": null, - "to": [ - 5.5808, - 0.8485 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5808, - 0.8485 - ], - "tag": null, - "to": [ - 5.5894, - 0.8452 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5894, - 0.8452 - ], - "tag": null, - "to": [ - 5.5981, - 0.842 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5981, - 0.842 - ], - "tag": null, - "to": [ - 5.6068, - 0.8386 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6068, - 0.8386 - ], - "tag": null, - "to": [ - 5.6154, - 0.8353 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6154, - 0.8353 - ], - "tag": null, - "to": [ - 5.6241, - 0.8319 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6241, - 0.8319 - ], - "tag": null, - "to": [ - 5.6328, - 0.8285 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6328, - 0.8285 - ], - "tag": null, - "to": [ - 5.6415, - 0.825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6415, - 0.825 - ], - "tag": null, - "to": [ - 5.6502, - 0.8216 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6502, - 0.8216 - ], - "tag": null, - "to": [ - 5.6588, - 0.8181 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6588, - 0.8181 - ], - "tag": null, - "to": [ - 5.6675, - 0.8145 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6675, - 0.8145 - ], - "tag": null, - "to": [ - 5.6762, - 0.8109 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6762, - 0.8109 - ], - "tag": null, - "to": [ - 5.6849, - 0.8073 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6849, - 0.8073 - ], - "tag": null, - "to": [ - 5.6936, - 0.8037 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6936, - 0.8037 - ], - "tag": null, - "to": [ - 5.7399, - 0.3404 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "artifactId": "[uuid]", - "id": "[uuid]", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Mm" - } - }, - "type": "plane", - "value": "XY", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - } - }, - "start": { - "from": [ - 5.7399, - 0.3404 - ], - "to": [ - 5.7399, - 0.3404 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" - }, - "sectional": false - } - }, - { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7399, - 0.3404 - ], - "tag": null, - "to": [ - 5.7321, - 0.3351 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7321, - 0.3351 - ], - "tag": null, - "to": [ - 5.7243, - 0.3299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7243, - 0.3299 - ], - "tag": null, - "to": [ - 5.7165, - 0.3246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7165, - 0.3246 - ], - "tag": null, - "to": [ - 5.7087, - 0.3194 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7087, - 0.3194 - ], - "tag": null, - "to": [ - 5.7009, - 0.3143 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7009, - 0.3143 - ], - "tag": null, - "to": [ - 5.6931, - 0.3091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6931, - 0.3091 - ], - "tag": null, - "to": [ - 5.6853, - 0.3041 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6853, - 0.3041 - ], - "tag": null, - "to": [ - 5.6775, - 0.299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6775, - 0.299 - ], - "tag": null, - "to": [ - 5.6696, - 0.294 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6696, - 0.294 - ], - "tag": null, - "to": [ - 5.6618, - 0.289 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6618, - 0.289 - ], - "tag": null, - "to": [ - 5.6539, - 0.284 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6539, - 0.284 - ], - "tag": null, - "to": [ - 5.6461, - 0.279 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6461, - 0.279 - ], - "tag": null, - "to": [ - 5.6382, - 0.2741 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6382, - 0.2741 - ], - "tag": null, - "to": [ - 5.6304, - 0.2693 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6304, - 0.2693 - ], - "tag": null, - "to": [ - 5.6225, - 0.2644 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6225, - 0.2644 - ], - "tag": null, - "to": [ - 5.6146, - 0.2597 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6146, - 0.2597 - ], - "tag": null, - "to": [ - 5.6068, - 0.2549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6068, - 0.2549 - ], - "tag": null, - "to": [ - 5.5989, - 0.2502 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5989, - 0.2502 - ], - "tag": null, - "to": [ - 5.591, - 0.2455 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.591, - 0.2455 - ], - "tag": null, - "to": [ - 5.5831, - 0.2408 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5831, - 0.2408 - ], - "tag": null, - "to": [ - 5.5752, - 0.2362 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5752, - 0.2362 - ], - "tag": null, - "to": [ - 5.5673, - 0.2316 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5673, - 0.2316 - ], - "tag": null, - "to": [ - 5.5594, - 0.227 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5594, - 0.227 - ], - "tag": null, - "to": [ - 5.5515, - 0.2225 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5515, - 0.2225 - ], - "tag": null, - "to": [ - 5.5436, - 0.218 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5436, - 0.218 - ], - "tag": null, - "to": [ - 5.5357, - 0.2135 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5357, - 0.2135 - ], - "tag": null, - "to": [ - 5.5277, - 0.2091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5277, - 0.2091 - ], - "tag": null, - "to": [ - 5.5198, - 0.2047 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5198, - 0.2047 - ], - "tag": null, - "to": [ - 5.5119, - 0.2004 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5119, - 0.2004 - ], - "tag": null, - "to": [ - 5.504, - 0.1961 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.504, - 0.1961 - ], - "tag": null, - "to": [ - 5.496, - 0.1918 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.496, - 0.1918 - ], - "tag": null, - "to": [ - 5.4881, - 0.1875 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4881, - 0.1875 - ], - "tag": null, - "to": [ - 5.4801, - 0.1833 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4801, - 0.1833 - ], - "tag": null, - "to": [ - 5.4722, - 0.1792 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4722, - 0.1792 - ], - "tag": null, - "to": [ - 5.4642, - 0.175 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4642, - 0.175 - ], - "tag": null, - "to": [ - 5.4563, - 0.1709 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4563, - 0.1709 - ], - "tag": null, - "to": [ - 5.4483, - 0.1669 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4483, - 0.1669 - ], - "tag": null, - "to": [ - 5.4403, - 0.1628 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4403, - 0.1628 - ], - "tag": null, - "to": [ - 5.4324, - 0.1588 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4324, - 0.1588 - ], - "tag": null, - "to": [ - 5.4244, - 0.1549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4244, - 0.1549 - ], - "tag": null, - "to": [ - 5.4164, - 0.151 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4164, - 0.151 - ], - "tag": null, - "to": [ - 5.4084, - 0.1471 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4084, - 0.1471 - ], - "tag": null, - "to": [ - 5.4004, - 0.1433 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4004, - 0.1433 - ], - "tag": null, - "to": [ - 5.3924, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3924, - 0.1395 - ], - "tag": null, - "to": [ - 5.3845, - 0.1357 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3845, - 0.1357 - ], - "tag": null, - "to": [ - 5.3765, - 0.132 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3765, - 0.132 - ], - "tag": null, - "to": [ - 5.3685, - 0.1283 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3685, - 0.1283 - ], - "tag": null, - "to": [ - 5.3605, - 0.1246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3605, - 0.1246 - ], - "tag": null, - "to": [ - 5.3525, - 0.121 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3525, - 0.121 - ], - "tag": null, - "to": [ - 5.3444, - 0.1174 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3444, - 0.1174 - ], - "tag": null, - "to": [ - 5.3364, - 0.1139 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3364, - 0.1139 - ], - "tag": null, - "to": [ - 5.3284, - 0.1104 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3284, - 0.1104 - ], - "tag": null, - "to": [ - 5.3204, - 0.107 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3204, - 0.107 - ], - "tag": null, - "to": [ - 5.3124, - 0.1036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3124, - 0.1036 - ], - "tag": null, - "to": [ - 5.3044, - 0.1002 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3044, - 0.1002 - ], - "tag": null, - "to": [ - 5.2963, - 0.0969 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2963, - 0.0969 - ], - "tag": null, - "to": [ - 5.2883, - 0.0936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2883, - 0.0936 - ], - "tag": null, - "to": [ - 5.2803, - 0.0903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2803, - 0.0903 - ], - "tag": null, - "to": [ - 5.2722, - 0.0871 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2722, - 0.0871 - ], - "tag": null, - "to": [ - 5.2642, - 0.084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2642, - 0.084 - ], - "tag": null, - "to": [ - 5.2562, - 0.0808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2562, - 0.0808 - ], - "tag": null, - "to": [ - 5.2481, - 0.0778 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2481, - 0.0778 - ], - "tag": null, - "to": [ - 5.2401, - 0.0747 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2401, - 0.0747 - ], - "tag": null, - "to": [ - 5.2321, - 0.0717 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2321, - 0.0717 - ], - "tag": null, - "to": [ - 5.224, - 0.0688 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.224, - 0.0688 - ], - "tag": null, - "to": [ - 5.216, - 0.0659 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.216, - 0.0659 - ], - "tag": null, - "to": [ - 5.2079, - 0.063 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2079, - 0.063 - ], - "tag": null, - "to": [ - 5.1999, - 0.0602 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1999, - 0.0602 - ], - "tag": null, - "to": [ - 5.1918, - 0.0575 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1918, - 0.0575 - ], - "tag": null, - "to": [ - 5.1837, - 0.0547 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1837, - 0.0547 - ], - "tag": null, - "to": [ - 5.1757, - 0.0521 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1757, - 0.0521 - ], - "tag": null, - "to": [ - 5.1676, - 0.0494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1676, - 0.0494 - ], - "tag": null, - "to": [ - 5.1596, - 0.0469 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1596, - 0.0469 - ], - "tag": null, - "to": [ - 5.1515, - 0.0443 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1515, - 0.0443 - ], - "tag": null, - "to": [ - 5.1434, - 0.0419 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1434, - 0.0419 - ], - "tag": null, - "to": [ - 5.1354, - 0.0394 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1354, - 0.0394 - ], - "tag": null, - "to": [ - 5.1273, - 0.0371 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1273, - 0.0371 - ], - "tag": null, - "to": [ - 5.1192, - 0.0347 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1192, - 0.0347 - ], - "tag": null, - "to": [ - 5.1112, - 0.0325 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1112, - 0.0325 - ], - "tag": null, - "to": [ - 5.1031, - 0.0303 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1031, - 0.0303 - ], - "tag": null, - "to": [ - 5.095, - 0.0281 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.095, - 0.0281 - ], - "tag": null, - "to": [ - 5.0869, - 0.026 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0869, - 0.026 - ], - "tag": null, - "to": [ - 5.0789, - 0.0239 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0789, - 0.0239 - ], - "tag": null, - "to": [ - 5.0708, - 0.022 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0708, - 0.022 - ], - "tag": null, - "to": [ - 5.0627, - 0.02 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0627, - 0.02 - ], - "tag": null, - "to": [ - 5.0546, - 0.0182 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0546, - 0.0182 - ], - "tag": null, - "to": [ - 5.0466, - 0.0164 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0466, - 0.0164 - ], - "tag": null, - "to": [ - 5.0385, - 0.0146 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0385, - 0.0146 - ], - "tag": null, - "to": [ - 5.0304, - 0.013 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0304, - 0.013 - ], - "tag": null, - "to": [ - 5.0223, - 0.0114 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0223, - 0.0114 - ], - "tag": null, - "to": [ - 5.0142, - 0.0098 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0142, - 0.0098 - ], - "tag": null, - "to": [ - 5.0061, - 0.0084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0061, - 0.0084 - ], - "tag": null, - "to": [ - 4.9981, - 0.007 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9981, - 0.007 - ], - "tag": null, - "to": [ - 4.99, - 0.0058 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.99, - 0.0058 - ], - "tag": null, - "to": [ - 4.9819, - 0.0046 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9819, - 0.0046 - ], - "tag": null, - "to": [ - 4.9738, - 0.0035 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9738, - 0.0035 - ], - "tag": null, - "to": [ - 4.9657, - 0.0025 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9657, - 0.0025 - ], - "tag": null, - "to": [ - 4.9576, - 0.0016 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9576, - 0.0016 - ], - "tag": null, - "to": [ - 4.9496, - 0.0009 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9496, - 0.0009 - ], - "tag": null, - "to": [ - 4.9415, - 0.0003 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9415, - 0.0003 - ], - "tag": null, - "to": [ - 4.9334, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "ccw": true, - "center": [ - -0.0, - -0.0 - ], - "from": [ - 4.9334, - 0.0 - ], - "radius": 4.933386259126019, - "tag": null, - "to": [ - 4.8356, - 0.9775 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8356, - 0.9775 - ], - "tag": null, - "to": [ - 4.8436, - 0.9788 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8436, - 0.9788 - ], - "tag": null, - "to": [ - 4.8516, - 0.9799 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8516, - 0.9799 - ], - "tag": null, - "to": [ - 4.8597, - 0.9808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8597, - 0.9808 - ], - "tag": null, - "to": [ - 4.8678, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8678, - 0.9815 - ], - "tag": null, - "to": [ - 4.8759, - 0.9821 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8759, - 0.9821 - ], - "tag": null, - "to": [ - 4.884, - 0.9827 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.884, - 0.9827 - ], - "tag": null, - "to": [ - 4.8922, - 0.9831 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8922, - 0.9831 - ], - "tag": null, - "to": [ - 4.9004, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9004, - 0.9835 - ], - "tag": null, - "to": [ - 4.9086, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9086, - 0.9837 - ], - "tag": null, - "to": [ - 4.9168, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9168, - 0.9839 - ], - "tag": null, - "to": [ - 4.925, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.925, - 0.984 - ], - "tag": null, - "to": [ - 4.9332, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9332, - 0.984 - ], - "tag": null, - "to": [ - 4.9415, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9415, - 0.984 - ], - "tag": null, - "to": [ - 4.9497, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9497, - 0.9839 - ], - "tag": null, - "to": [ - 4.958, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.958, - 0.9837 - ], - "tag": null, - "to": [ - 4.9663, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9663, - 0.9835 - ], - "tag": null, - "to": [ - 4.9746, - 0.9832 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9746, - 0.9832 - ], - "tag": null, - "to": [ - 4.9829, - 0.9829 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9829, - 0.9829 - ], - "tag": null, - "to": [ - 4.9912, - 0.9825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9912, - 0.9825 - ], - "tag": null, - "to": [ - 4.9996, - 0.982 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9996, - 0.982 - ], - "tag": null, - "to": [ - 5.0079, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0079, - 0.9815 - ], - "tag": null, - "to": [ - 5.0163, - 0.9809 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0163, - 0.9809 - ], - "tag": null, - "to": [ - 5.0246, - 0.9803 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0246, - 0.9803 - ], - "tag": null, - "to": [ - 5.033, - 0.9796 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.033, - 0.9796 - ], - "tag": null, - "to": [ - 5.0414, - 0.9789 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0414, - 0.9789 - ], - "tag": null, - "to": [ - 5.0497, - 0.9781 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0497, - 0.9781 - ], - "tag": null, - "to": [ - 5.0581, - 0.9773 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0581, - 0.9773 - ], - "tag": null, - "to": [ - 5.0665, - 0.9764 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0665, - 0.9764 - ], - "tag": null, - "to": [ - 5.075, - 0.9755 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.075, - 0.9755 - ], - "tag": null, - "to": [ - 5.0834, - 0.9745 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0834, - 0.9745 - ], - "tag": null, - "to": [ - 5.0918, - 0.9735 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0918, - 0.9735 - ], - "tag": null, - "to": [ - 5.1002, - 0.9724 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1002, - 0.9724 - ], - "tag": null, - "to": [ - 5.1087, - 0.9713 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1087, - 0.9713 - ], - "tag": null, - "to": [ - 5.1171, - 0.9701 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1171, - 0.9701 - ], - "tag": null, - "to": [ - 5.1256, - 0.9689 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1256, - 0.9689 - ], - "tag": null, - "to": [ - 5.1341, - 0.9677 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1341, - 0.9677 - ], - "tag": null, - "to": [ - 5.1425, - 0.9664 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1425, - 0.9664 - ], - "tag": null, - "to": [ - 5.151, - 0.9651 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.151, - 0.9651 - ], - "tag": null, - "to": [ - 5.1595, - 0.9637 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1595, - 0.9637 - ], - "tag": null, - "to": [ - 5.168, - 0.9623 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.168, - 0.9623 - ], - "tag": null, - "to": [ - 5.1765, - 0.9608 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1765, - 0.9608 - ], - "tag": null, - "to": [ - 5.185, - 0.9593 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.185, - 0.9593 - ], - "tag": null, - "to": [ - 5.1935, - 0.9577 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1935, - 0.9577 - ], - "tag": null, - "to": [ - 5.202, - 0.9561 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.202, - 0.9561 - ], - "tag": null, - "to": [ - 5.2105, - 0.9545 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2105, - 0.9545 - ], - "tag": null, - "to": [ - 5.219, - 0.9528 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.219, - 0.9528 - ], - "tag": null, - "to": [ - 5.2276, - 0.9511 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2276, - 0.9511 - ], - "tag": null, - "to": [ - 5.2361, - 0.9494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2361, - 0.9494 - ], - "tag": null, - "to": [ - 5.2447, - 0.9476 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2447, - 0.9476 - ], - "tag": null, - "to": [ - 5.2532, - 0.9457 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2532, - 0.9457 - ], - "tag": null, - "to": [ - 5.2617, - 0.9439 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2617, - 0.9439 - ], - "tag": null, - "to": [ - 5.2703, - 0.942 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2703, - 0.942 - ], - "tag": null, - "to": [ - 5.2789, - 0.94 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2789, - 0.94 - ], - "tag": null, - "to": [ - 5.2874, - 0.938 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2874, - 0.938 - ], - "tag": null, - "to": [ - 5.296, - 0.936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.296, - 0.936 - ], - "tag": null, - "to": [ - 5.3046, - 0.9339 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3046, - 0.9339 - ], - "tag": null, - "to": [ - 5.3132, - 0.9318 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3132, - 0.9318 - ], - "tag": null, - "to": [ - 5.3217, - 0.9297 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3217, - 0.9297 - ], - "tag": null, - "to": [ - 5.3303, - 0.9275 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3303, - 0.9275 - ], - "tag": null, - "to": [ - 5.3389, - 0.9253 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3389, - 0.9253 - ], - "tag": null, - "to": [ - 5.3475, - 0.923 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3475, - 0.923 - ], - "tag": null, - "to": [ - 5.3561, - 0.9207 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3561, - 0.9207 - ], - "tag": null, - "to": [ - 5.3647, - 0.9184 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3647, - 0.9184 - ], - "tag": null, - "to": [ - 5.3733, - 0.916 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3733, - 0.916 - ], - "tag": null, - "to": [ - 5.3819, - 0.9136 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3819, - 0.9136 - ], - "tag": null, - "to": [ - 5.3906, - 0.9112 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3906, - 0.9112 - ], - "tag": null, - "to": [ - 5.3992, - 0.9087 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3992, - 0.9087 - ], - "tag": null, - "to": [ - 5.4078, - 0.9062 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4078, - 0.9062 - ], - "tag": null, - "to": [ - 5.4164, - 0.9036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4164, - 0.9036 - ], - "tag": null, - "to": [ - 5.425, - 0.901 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.425, - 0.901 - ], - "tag": null, - "to": [ - 5.4337, - 0.8984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4337, - 0.8984 - ], - "tag": null, - "to": [ - 5.4423, - 0.8958 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4423, - 0.8958 - ], - "tag": null, - "to": [ - 5.4509, - 0.8931 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4509, - 0.8931 - ], - "tag": null, - "to": [ - 5.4596, - 0.8903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4596, - 0.8903 - ], - "tag": null, - "to": [ - 5.4682, - 0.8876 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4682, - 0.8876 - ], - "tag": null, - "to": [ - 5.4769, - 0.8848 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4769, - 0.8848 - ], - "tag": null, - "to": [ - 5.4855, - 0.8819 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4855, - 0.8819 - ], - "tag": null, - "to": [ - 5.4942, - 0.8791 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4942, - 0.8791 - ], - "tag": null, - "to": [ - 5.5028, - 0.8762 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5028, - 0.8762 - ], - "tag": null, - "to": [ - 5.5115, - 0.8732 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5115, - 0.8732 - ], - "tag": null, - "to": [ - 5.5201, - 0.8703 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5201, - 0.8703 - ], - "tag": null, - "to": [ - 5.5288, - 0.8672 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5288, - 0.8672 - ], - "tag": null, - "to": [ - 5.5374, - 0.8642 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5374, - 0.8642 - ], - "tag": null, - "to": [ - 5.5461, - 0.8611 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5461, - 0.8611 - ], - "tag": null, - "to": [ - 5.5548, - 0.858 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5548, - 0.858 - ], - "tag": null, - "to": [ - 5.5634, - 0.8549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5634, - 0.8549 - ], - "tag": null, - "to": [ - 5.5721, - 0.8517 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5721, - 0.8517 - ], - "tag": null, - "to": [ - 5.5808, - 0.8485 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5808, - 0.8485 - ], - "tag": null, - "to": [ - 5.5894, - 0.8452 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5894, - 0.8452 - ], - "tag": null, - "to": [ - 5.5981, - 0.842 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5981, - 0.842 - ], - "tag": null, - "to": [ - 5.6068, - 0.8386 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6068, - 0.8386 - ], - "tag": null, - "to": [ - 5.6154, - 0.8353 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6154, - 0.8353 - ], - "tag": null, - "to": [ - 5.6241, - 0.8319 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6241, - 0.8319 - ], - "tag": null, - "to": [ - 5.6328, - 0.8285 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6328, - 0.8285 - ], - "tag": null, - "to": [ - 5.6415, - 0.825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6415, - 0.825 - ], - "tag": null, - "to": [ - 5.6502, - 0.8216 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6502, - 0.8216 - ], - "tag": null, - "to": [ - 5.6588, - 0.8181 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6588, - 0.8181 - ], - "tag": null, - "to": [ - 5.6675, - 0.8145 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6675, - 0.8145 - ], - "tag": null, - "to": [ - 5.6762, - 0.8109 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6762, - 0.8109 - ], - "tag": null, - "to": [ - 5.6849, - 0.8073 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6849, - 0.8073 - ], - "tag": null, - "to": [ - 5.6936, - 0.8037 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6936, - 0.8037 - ], - "tag": null, - "to": [ - 5.7399, - 0.3404 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "artifactId": "[uuid]", - "id": "[uuid]", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Mm" - } - }, - "type": "plane", - "value": "XY", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - } - }, - "start": { - "from": [ - 5.7399, - 0.3404 - ], - "to": [ - 5.7399, - 0.3404 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" - }, - "sectional": false - } - }, - { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7399, - 0.3404 - ], - "tag": null, - "to": [ - 5.7321, - 0.3351 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7321, - 0.3351 - ], - "tag": null, - "to": [ - 5.7243, - 0.3299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7243, - 0.3299 - ], - "tag": null, - "to": [ - 5.7165, - 0.3246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7165, - 0.3246 - ], - "tag": null, - "to": [ - 5.7087, - 0.3194 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7087, - 0.3194 - ], - "tag": null, - "to": [ - 5.7009, - 0.3143 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7009, - 0.3143 - ], - "tag": null, - "to": [ - 5.6931, - 0.3091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6931, - 0.3091 - ], - "tag": null, - "to": [ - 5.6853, - 0.3041 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6853, - 0.3041 - ], - "tag": null, - "to": [ - 5.6775, - 0.299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6775, - 0.299 - ], - "tag": null, - "to": [ - 5.6696, - 0.294 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6696, - 0.294 - ], - "tag": null, - "to": [ - 5.6618, - 0.289 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6618, - 0.289 - ], - "tag": null, - "to": [ - 5.6539, - 0.284 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6539, - 0.284 - ], - "tag": null, - "to": [ - 5.6461, - 0.279 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6461, - 0.279 - ], - "tag": null, - "to": [ - 5.6382, - 0.2741 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6382, - 0.2741 - ], - "tag": null, - "to": [ - 5.6304, - 0.2693 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6304, - 0.2693 - ], - "tag": null, - "to": [ - 5.6225, - 0.2644 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6225, - 0.2644 - ], - "tag": null, - "to": [ - 5.6146, - 0.2597 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6146, - 0.2597 - ], - "tag": null, - "to": [ - 5.6068, - 0.2549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6068, - 0.2549 - ], - "tag": null, - "to": [ - 5.5989, - 0.2502 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5989, - 0.2502 - ], - "tag": null, - "to": [ - 5.591, - 0.2455 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.591, - 0.2455 - ], - "tag": null, - "to": [ - 5.5831, - 0.2408 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5831, - 0.2408 - ], - "tag": null, - "to": [ - 5.5752, - 0.2362 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5752, - 0.2362 - ], - "tag": null, - "to": [ - 5.5673, - 0.2316 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5673, - 0.2316 - ], - "tag": null, - "to": [ - 5.5594, - 0.227 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5594, - 0.227 - ], - "tag": null, - "to": [ - 5.5515, - 0.2225 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5515, - 0.2225 - ], - "tag": null, - "to": [ - 5.5436, - 0.218 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5436, - 0.218 - ], - "tag": null, - "to": [ - 5.5357, - 0.2135 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5357, - 0.2135 - ], - "tag": null, - "to": [ - 5.5277, - 0.2091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5277, - 0.2091 - ], - "tag": null, - "to": [ - 5.5198, - 0.2047 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5198, - 0.2047 - ], - "tag": null, - "to": [ - 5.5119, - 0.2004 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5119, - 0.2004 - ], - "tag": null, - "to": [ - 5.504, - 0.1961 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.504, - 0.1961 - ], - "tag": null, - "to": [ - 5.496, - 0.1918 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.496, - 0.1918 - ], - "tag": null, - "to": [ - 5.4881, - 0.1875 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4881, - 0.1875 - ], - "tag": null, - "to": [ - 5.4801, - 0.1833 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4801, - 0.1833 - ], - "tag": null, - "to": [ - 5.4722, - 0.1792 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4722, - 0.1792 - ], - "tag": null, - "to": [ - 5.4642, - 0.175 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4642, - 0.175 - ], - "tag": null, - "to": [ - 5.4563, - 0.1709 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4563, - 0.1709 - ], - "tag": null, - "to": [ - 5.4483, - 0.1669 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4483, - 0.1669 - ], - "tag": null, - "to": [ - 5.4403, - 0.1628 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4403, - 0.1628 - ], - "tag": null, - "to": [ - 5.4324, - 0.1588 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4324, - 0.1588 - ], - "tag": null, - "to": [ - 5.4244, - 0.1549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4244, - 0.1549 - ], - "tag": null, - "to": [ - 5.4164, - 0.151 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4164, - 0.151 - ], - "tag": null, - "to": [ - 5.4084, - 0.1471 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4084, - 0.1471 - ], - "tag": null, - "to": [ - 5.4004, - 0.1433 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4004, - 0.1433 - ], - "tag": null, - "to": [ - 5.3924, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3924, - 0.1395 - ], - "tag": null, - "to": [ - 5.3845, - 0.1357 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3845, - 0.1357 - ], - "tag": null, - "to": [ - 5.3765, - 0.132 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3765, - 0.132 - ], - "tag": null, - "to": [ - 5.3685, - 0.1283 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3685, - 0.1283 - ], - "tag": null, - "to": [ - 5.3605, - 0.1246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3605, - 0.1246 - ], - "tag": null, - "to": [ - 5.3525, - 0.121 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3525, - 0.121 - ], - "tag": null, - "to": [ - 5.3444, - 0.1174 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3444, - 0.1174 - ], - "tag": null, - "to": [ - 5.3364, - 0.1139 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3364, - 0.1139 - ], - "tag": null, - "to": [ - 5.3284, - 0.1104 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3284, - 0.1104 - ], - "tag": null, - "to": [ - 5.3204, - 0.107 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3204, - 0.107 - ], - "tag": null, - "to": [ - 5.3124, - 0.1036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3124, - 0.1036 - ], - "tag": null, - "to": [ - 5.3044, - 0.1002 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3044, - 0.1002 - ], - "tag": null, - "to": [ - 5.2963, - 0.0969 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2963, - 0.0969 - ], - "tag": null, - "to": [ - 5.2883, - 0.0936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2883, - 0.0936 - ], - "tag": null, - "to": [ - 5.2803, - 0.0903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2803, - 0.0903 - ], - "tag": null, - "to": [ - 5.2722, - 0.0871 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2722, - 0.0871 - ], - "tag": null, - "to": [ - 5.2642, - 0.084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2642, - 0.084 - ], - "tag": null, - "to": [ - 5.2562, - 0.0808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2562, - 0.0808 - ], - "tag": null, - "to": [ - 5.2481, - 0.0778 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2481, - 0.0778 - ], - "tag": null, - "to": [ - 5.2401, - 0.0747 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2401, - 0.0747 - ], - "tag": null, - "to": [ - 5.2321, - 0.0717 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2321, - 0.0717 - ], - "tag": null, - "to": [ - 5.224, - 0.0688 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.224, - 0.0688 - ], - "tag": null, - "to": [ - 5.216, - 0.0659 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.216, - 0.0659 - ], - "tag": null, - "to": [ - 5.2079, - 0.063 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2079, - 0.063 - ], - "tag": null, - "to": [ - 5.1999, - 0.0602 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1999, - 0.0602 - ], - "tag": null, - "to": [ - 5.1918, - 0.0575 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1918, - 0.0575 - ], - "tag": null, - "to": [ - 5.1837, - 0.0547 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1837, - 0.0547 - ], - "tag": null, - "to": [ - 5.1757, - 0.0521 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1757, - 0.0521 - ], - "tag": null, - "to": [ - 5.1676, - 0.0494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1676, - 0.0494 - ], - "tag": null, - "to": [ - 5.1596, - 0.0469 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1596, - 0.0469 - ], - "tag": null, - "to": [ - 5.1515, - 0.0443 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1515, - 0.0443 - ], - "tag": null, - "to": [ - 5.1434, - 0.0419 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1434, - 0.0419 - ], - "tag": null, - "to": [ - 5.1354, - 0.0394 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1354, - 0.0394 - ], - "tag": null, - "to": [ - 5.1273, - 0.0371 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1273, - 0.0371 - ], - "tag": null, - "to": [ - 5.1192, - 0.0347 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1192, - 0.0347 - ], - "tag": null, - "to": [ - 5.1112, - 0.0325 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1112, - 0.0325 - ], - "tag": null, - "to": [ - 5.1031, - 0.0303 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1031, - 0.0303 - ], - "tag": null, - "to": [ - 5.095, - 0.0281 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.095, - 0.0281 - ], - "tag": null, - "to": [ - 5.0869, - 0.026 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0869, - 0.026 - ], - "tag": null, - "to": [ - 5.0789, - 0.0239 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0789, - 0.0239 - ], - "tag": null, - "to": [ - 5.0708, - 0.022 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0708, - 0.022 - ], - "tag": null, - "to": [ - 5.0627, - 0.02 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0627, - 0.02 - ], - "tag": null, - "to": [ - 5.0546, - 0.0182 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0546, - 0.0182 - ], - "tag": null, - "to": [ - 5.0466, - 0.0164 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0466, - 0.0164 - ], - "tag": null, - "to": [ - 5.0385, - 0.0146 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0385, - 0.0146 - ], - "tag": null, - "to": [ - 5.0304, - 0.013 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0304, - 0.013 - ], - "tag": null, - "to": [ - 5.0223, - 0.0114 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0223, - 0.0114 - ], - "tag": null, - "to": [ - 5.0142, - 0.0098 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0142, - 0.0098 - ], - "tag": null, - "to": [ - 5.0061, - 0.0084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0061, - 0.0084 - ], - "tag": null, - "to": [ - 4.9981, - 0.007 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9981, - 0.007 - ], - "tag": null, - "to": [ - 4.99, - 0.0058 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.99, - 0.0058 - ], - "tag": null, - "to": [ - 4.9819, - 0.0046 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9819, - 0.0046 - ], - "tag": null, - "to": [ - 4.9738, - 0.0035 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9738, - 0.0035 - ], - "tag": null, - "to": [ - 4.9657, - 0.0025 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9657, - 0.0025 - ], - "tag": null, - "to": [ - 4.9576, - 0.0016 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9576, - 0.0016 - ], - "tag": null, - "to": [ - 4.9496, - 0.0009 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9496, - 0.0009 - ], - "tag": null, - "to": [ - 4.9415, - 0.0003 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9415, - 0.0003 - ], - "tag": null, - "to": [ - 4.9334, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "ccw": true, - "center": [ - -0.0, - -0.0 - ], - "from": [ - 4.9334, - 0.0 - ], - "radius": 4.933386259126019, - "tag": null, - "to": [ - 4.8356, - 0.9775 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8356, - 0.9775 - ], - "tag": null, - "to": [ - 4.8436, - 0.9788 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8436, - 0.9788 - ], - "tag": null, - "to": [ - 4.8516, - 0.9799 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8516, - 0.9799 - ], - "tag": null, - "to": [ - 4.8597, - 0.9808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8597, - 0.9808 - ], - "tag": null, - "to": [ - 4.8678, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8678, - 0.9815 - ], - "tag": null, - "to": [ - 4.8759, - 0.9821 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8759, - 0.9821 - ], - "tag": null, - "to": [ - 4.884, - 0.9827 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.884, - 0.9827 - ], - "tag": null, - "to": [ - 4.8922, - 0.9831 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8922, - 0.9831 - ], - "tag": null, - "to": [ - 4.9004, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9004, - 0.9835 - ], - "tag": null, - "to": [ - 4.9086, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9086, - 0.9837 - ], - "tag": null, - "to": [ - 4.9168, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9168, - 0.9839 - ], - "tag": null, - "to": [ - 4.925, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.925, - 0.984 - ], - "tag": null, - "to": [ - 4.9332, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9332, - 0.984 - ], - "tag": null, - "to": [ - 4.9415, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9415, - 0.984 - ], - "tag": null, - "to": [ - 4.9497, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9497, - 0.9839 - ], - "tag": null, - "to": [ - 4.958, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.958, - 0.9837 - ], - "tag": null, - "to": [ - 4.9663, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9663, - 0.9835 - ], - "tag": null, - "to": [ - 4.9746, - 0.9832 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9746, - 0.9832 - ], - "tag": null, - "to": [ - 4.9829, - 0.9829 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9829, - 0.9829 - ], - "tag": null, - "to": [ - 4.9912, - 0.9825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9912, - 0.9825 - ], - "tag": null, - "to": [ - 4.9996, - 0.982 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9996, - 0.982 - ], - "tag": null, - "to": [ - 5.0079, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0079, - 0.9815 - ], - "tag": null, - "to": [ - 5.0163, - 0.9809 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0163, - 0.9809 - ], - "tag": null, - "to": [ - 5.0246, - 0.9803 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0246, - 0.9803 - ], - "tag": null, - "to": [ - 5.033, - 0.9796 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.033, - 0.9796 - ], - "tag": null, - "to": [ - 5.0414, - 0.9789 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0414, - 0.9789 - ], - "tag": null, - "to": [ - 5.0497, - 0.9781 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0497, - 0.9781 - ], - "tag": null, - "to": [ - 5.0581, - 0.9773 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0581, - 0.9773 - ], - "tag": null, - "to": [ - 5.0665, - 0.9764 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0665, - 0.9764 - ], - "tag": null, - "to": [ - 5.075, - 0.9755 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.075, - 0.9755 - ], - "tag": null, - "to": [ - 5.0834, - 0.9745 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0834, - 0.9745 - ], - "tag": null, - "to": [ - 5.0918, - 0.9735 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0918, - 0.9735 - ], - "tag": null, - "to": [ - 5.1002, - 0.9724 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1002, - 0.9724 - ], - "tag": null, - "to": [ - 5.1087, - 0.9713 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1087, - 0.9713 - ], - "tag": null, - "to": [ - 5.1171, - 0.9701 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1171, - 0.9701 - ], - "tag": null, - "to": [ - 5.1256, - 0.9689 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1256, - 0.9689 - ], - "tag": null, - "to": [ - 5.1341, - 0.9677 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1341, - 0.9677 - ], - "tag": null, - "to": [ - 5.1425, - 0.9664 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1425, - 0.9664 - ], - "tag": null, - "to": [ - 5.151, - 0.9651 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.151, - 0.9651 - ], - "tag": null, - "to": [ - 5.1595, - 0.9637 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1595, - 0.9637 - ], - "tag": null, - "to": [ - 5.168, - 0.9623 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.168, - 0.9623 - ], - "tag": null, - "to": [ - 5.1765, - 0.9608 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1765, - 0.9608 - ], - "tag": null, - "to": [ - 5.185, - 0.9593 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.185, - 0.9593 - ], - "tag": null, - "to": [ - 5.1935, - 0.9577 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1935, - 0.9577 - ], - "tag": null, - "to": [ - 5.202, - 0.9561 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.202, - 0.9561 - ], - "tag": null, - "to": [ - 5.2105, - 0.9545 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2105, - 0.9545 - ], - "tag": null, - "to": [ - 5.219, - 0.9528 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.219, - 0.9528 - ], - "tag": null, - "to": [ - 5.2276, - 0.9511 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2276, - 0.9511 - ], - "tag": null, - "to": [ - 5.2361, - 0.9494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2361, - 0.9494 - ], - "tag": null, - "to": [ - 5.2447, - 0.9476 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2447, - 0.9476 - ], - "tag": null, - "to": [ - 5.2532, - 0.9457 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2532, - 0.9457 - ], - "tag": null, - "to": [ - 5.2617, - 0.9439 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2617, - 0.9439 - ], - "tag": null, - "to": [ - 5.2703, - 0.942 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2703, - 0.942 - ], - "tag": null, - "to": [ - 5.2789, - 0.94 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2789, - 0.94 - ], - "tag": null, - "to": [ - 5.2874, - 0.938 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2874, - 0.938 - ], - "tag": null, - "to": [ - 5.296, - 0.936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.296, - 0.936 - ], - "tag": null, - "to": [ - 5.3046, - 0.9339 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3046, - 0.9339 - ], - "tag": null, - "to": [ - 5.3132, - 0.9318 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3132, - 0.9318 - ], - "tag": null, - "to": [ - 5.3217, - 0.9297 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3217, - 0.9297 - ], - "tag": null, - "to": [ - 5.3303, - 0.9275 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3303, - 0.9275 - ], - "tag": null, - "to": [ - 5.3389, - 0.9253 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3389, - 0.9253 - ], - "tag": null, - "to": [ - 5.3475, - 0.923 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3475, - 0.923 - ], - "tag": null, - "to": [ - 5.3561, - 0.9207 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3561, - 0.9207 - ], - "tag": null, - "to": [ - 5.3647, - 0.9184 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3647, - 0.9184 - ], - "tag": null, - "to": [ - 5.3733, - 0.916 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3733, - 0.916 - ], - "tag": null, - "to": [ - 5.3819, - 0.9136 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3819, - 0.9136 - ], - "tag": null, - "to": [ - 5.3906, - 0.9112 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3906, - 0.9112 - ], - "tag": null, - "to": [ - 5.3992, - 0.9087 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3992, - 0.9087 - ], - "tag": null, - "to": [ - 5.4078, - 0.9062 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4078, - 0.9062 - ], - "tag": null, - "to": [ - 5.4164, - 0.9036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4164, - 0.9036 - ], - "tag": null, - "to": [ - 5.425, - 0.901 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.425, - 0.901 - ], - "tag": null, - "to": [ - 5.4337, - 0.8984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4337, - 0.8984 - ], - "tag": null, - "to": [ - 5.4423, - 0.8958 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4423, - 0.8958 - ], - "tag": null, - "to": [ - 5.4509, - 0.8931 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4509, - 0.8931 - ], - "tag": null, - "to": [ - 5.4596, - 0.8903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4596, - 0.8903 - ], - "tag": null, - "to": [ - 5.4682, - 0.8876 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4682, - 0.8876 - ], - "tag": null, - "to": [ - 5.4769, - 0.8848 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4769, - 0.8848 - ], - "tag": null, - "to": [ - 5.4855, - 0.8819 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4855, - 0.8819 - ], - "tag": null, - "to": [ - 5.4942, - 0.8791 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4942, - 0.8791 - ], - "tag": null, - "to": [ - 5.5028, - 0.8762 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5028, - 0.8762 - ], - "tag": null, - "to": [ - 5.5115, - 0.8732 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5115, - 0.8732 - ], - "tag": null, - "to": [ - 5.5201, - 0.8703 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5201, - 0.8703 - ], - "tag": null, - "to": [ - 5.5288, - 0.8672 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5288, - 0.8672 - ], - "tag": null, - "to": [ - 5.5374, - 0.8642 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5374, - 0.8642 - ], - "tag": null, - "to": [ - 5.5461, - 0.8611 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5461, - 0.8611 - ], - "tag": null, - "to": [ - 5.5548, - 0.858 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5548, - 0.858 - ], - "tag": null, - "to": [ - 5.5634, - 0.8549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5634, - 0.8549 - ], - "tag": null, - "to": [ - 5.5721, - 0.8517 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5721, - 0.8517 - ], - "tag": null, - "to": [ - 5.5808, - 0.8485 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5808, - 0.8485 - ], - "tag": null, - "to": [ - 5.5894, - 0.8452 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5894, - 0.8452 - ], - "tag": null, - "to": [ - 5.5981, - 0.842 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5981, - 0.842 - ], - "tag": null, - "to": [ - 5.6068, - 0.8386 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6068, - 0.8386 - ], - "tag": null, - "to": [ - 5.6154, - 0.8353 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6154, - 0.8353 - ], - "tag": null, - "to": [ - 5.6241, - 0.8319 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6241, - 0.8319 - ], - "tag": null, - "to": [ - 5.6328, - 0.8285 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6328, - 0.8285 - ], - "tag": null, - "to": [ - 5.6415, - 0.825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6415, - 0.825 - ], - "tag": null, - "to": [ - 5.6502, - 0.8216 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6502, - 0.8216 - ], - "tag": null, - "to": [ - 5.6588, - 0.8181 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6588, - 0.8181 - ], - "tag": null, - "to": [ - 5.6675, - 0.8145 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6675, - 0.8145 - ], - "tag": null, - "to": [ - 5.6762, - 0.8109 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6762, - 0.8109 - ], - "tag": null, - "to": [ - 5.6849, - 0.8073 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6849, - 0.8073 - ], - "tag": null, - "to": [ - 5.6936, - 0.8037 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6936, - 0.8037 - ], - "tag": null, - "to": [ - 5.7399, - 0.3404 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "artifactId": "[uuid]", - "id": "[uuid]", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Mm" - } - }, - "type": "plane", - "value": "XY", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - } - }, - "start": { - "from": [ - 5.7399, - 0.3404 - ], - "to": [ - 5.7399, - 0.3404 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" - }, - "sectional": false - } - }, - { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7399, - 0.3404 - ], - "tag": null, - "to": [ - 5.7321, - 0.3351 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7321, - 0.3351 - ], - "tag": null, - "to": [ - 5.7243, - 0.3299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7243, - 0.3299 - ], - "tag": null, - "to": [ - 5.7165, - 0.3246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7165, - 0.3246 - ], - "tag": null, - "to": [ - 5.7087, - 0.3194 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7087, - 0.3194 - ], - "tag": null, - "to": [ - 5.7009, - 0.3143 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7009, - 0.3143 - ], - "tag": null, - "to": [ - 5.6931, - 0.3091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6931, - 0.3091 - ], - "tag": null, - "to": [ - 5.6853, - 0.3041 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6853, - 0.3041 - ], - "tag": null, - "to": [ - 5.6775, - 0.299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6775, - 0.299 - ], - "tag": null, - "to": [ - 5.6696, - 0.294 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6696, - 0.294 - ], - "tag": null, - "to": [ - 5.6618, - 0.289 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6618, - 0.289 - ], - "tag": null, - "to": [ - 5.6539, - 0.284 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6539, - 0.284 - ], - "tag": null, - "to": [ - 5.6461, - 0.279 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6461, - 0.279 - ], - "tag": null, - "to": [ - 5.6382, - 0.2741 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6382, - 0.2741 - ], - "tag": null, - "to": [ - 5.6304, - 0.2693 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6304, - 0.2693 - ], - "tag": null, - "to": [ - 5.6225, - 0.2644 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6225, - 0.2644 - ], - "tag": null, - "to": [ - 5.6146, - 0.2597 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6146, - 0.2597 - ], - "tag": null, - "to": [ - 5.6068, - 0.2549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6068, - 0.2549 - ], - "tag": null, - "to": [ - 5.5989, - 0.2502 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5989, - 0.2502 - ], - "tag": null, - "to": [ - 5.591, - 0.2455 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.591, - 0.2455 - ], - "tag": null, - "to": [ - 5.5831, - 0.2408 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5831, - 0.2408 - ], - "tag": null, - "to": [ - 5.5752, - 0.2362 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5752, - 0.2362 - ], - "tag": null, - "to": [ - 5.5673, - 0.2316 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5673, - 0.2316 - ], - "tag": null, - "to": [ - 5.5594, - 0.227 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5594, - 0.227 - ], - "tag": null, - "to": [ - 5.5515, - 0.2225 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5515, - 0.2225 - ], - "tag": null, - "to": [ - 5.5436, - 0.218 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5436, - 0.218 - ], - "tag": null, - "to": [ - 5.5357, - 0.2135 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5357, - 0.2135 - ], - "tag": null, - "to": [ - 5.5277, - 0.2091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5277, - 0.2091 - ], - "tag": null, - "to": [ - 5.5198, - 0.2047 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5198, - 0.2047 - ], - "tag": null, - "to": [ - 5.5119, - 0.2004 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5119, - 0.2004 - ], - "tag": null, - "to": [ - 5.504, - 0.1961 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.504, - 0.1961 - ], - "tag": null, - "to": [ - 5.496, - 0.1918 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.496, - 0.1918 - ], - "tag": null, - "to": [ - 5.4881, - 0.1875 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4881, - 0.1875 - ], - "tag": null, - "to": [ - 5.4801, - 0.1833 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4801, - 0.1833 - ], - "tag": null, - "to": [ - 5.4722, - 0.1792 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4722, - 0.1792 - ], - "tag": null, - "to": [ - 5.4642, - 0.175 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4642, - 0.175 - ], - "tag": null, - "to": [ - 5.4563, - 0.1709 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4563, - 0.1709 - ], - "tag": null, - "to": [ - 5.4483, - 0.1669 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4483, - 0.1669 - ], - "tag": null, - "to": [ - 5.4403, - 0.1628 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4403, - 0.1628 - ], - "tag": null, - "to": [ - 5.4324, - 0.1588 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4324, - 0.1588 - ], - "tag": null, - "to": [ - 5.4244, - 0.1549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4244, - 0.1549 - ], - "tag": null, - "to": [ - 5.4164, - 0.151 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4164, - 0.151 - ], - "tag": null, - "to": [ - 5.4084, - 0.1471 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4084, - 0.1471 - ], - "tag": null, - "to": [ - 5.4004, - 0.1433 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4004, - 0.1433 - ], - "tag": null, - "to": [ - 5.3924, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3924, - 0.1395 - ], - "tag": null, - "to": [ - 5.3845, - 0.1357 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3845, - 0.1357 - ], - "tag": null, - "to": [ - 5.3765, - 0.132 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3765, - 0.132 - ], - "tag": null, - "to": [ - 5.3685, - 0.1283 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3685, - 0.1283 - ], - "tag": null, - "to": [ - 5.3605, - 0.1246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3605, - 0.1246 - ], - "tag": null, - "to": [ - 5.3525, - 0.121 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3525, - 0.121 - ], - "tag": null, - "to": [ - 5.3444, - 0.1174 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3444, - 0.1174 - ], - "tag": null, - "to": [ - 5.3364, - 0.1139 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3364, - 0.1139 - ], - "tag": null, - "to": [ - 5.3284, - 0.1104 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3284, - 0.1104 - ], - "tag": null, - "to": [ - 5.3204, - 0.107 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3204, - 0.107 - ], - "tag": null, - "to": [ - 5.3124, - 0.1036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3124, - 0.1036 - ], - "tag": null, - "to": [ - 5.3044, - 0.1002 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3044, - 0.1002 - ], - "tag": null, - "to": [ - 5.2963, - 0.0969 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2963, - 0.0969 - ], - "tag": null, - "to": [ - 5.2883, - 0.0936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2883, - 0.0936 - ], - "tag": null, - "to": [ - 5.2803, - 0.0903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2803, - 0.0903 - ], - "tag": null, - "to": [ - 5.2722, - 0.0871 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2722, - 0.0871 - ], - "tag": null, - "to": [ - 5.2642, - 0.084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2642, - 0.084 - ], - "tag": null, - "to": [ - 5.2562, - 0.0808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2562, - 0.0808 - ], - "tag": null, - "to": [ - 5.2481, - 0.0778 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2481, - 0.0778 - ], - "tag": null, - "to": [ - 5.2401, - 0.0747 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2401, - 0.0747 - ], - "tag": null, - "to": [ - 5.2321, - 0.0717 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2321, - 0.0717 - ], - "tag": null, - "to": [ - 5.224, - 0.0688 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.224, - 0.0688 - ], - "tag": null, - "to": [ - 5.216, - 0.0659 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.216, - 0.0659 - ], - "tag": null, - "to": [ - 5.2079, - 0.063 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2079, - 0.063 - ], - "tag": null, - "to": [ - 5.1999, - 0.0602 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1999, - 0.0602 - ], - "tag": null, - "to": [ - 5.1918, - 0.0575 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1918, - 0.0575 - ], - "tag": null, - "to": [ - 5.1837, - 0.0547 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1837, - 0.0547 - ], - "tag": null, - "to": [ - 5.1757, - 0.0521 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1757, - 0.0521 - ], - "tag": null, - "to": [ - 5.1676, - 0.0494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1676, - 0.0494 - ], - "tag": null, - "to": [ - 5.1596, - 0.0469 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1596, - 0.0469 - ], - "tag": null, - "to": [ - 5.1515, - 0.0443 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1515, - 0.0443 - ], - "tag": null, - "to": [ - 5.1434, - 0.0419 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1434, - 0.0419 - ], - "tag": null, - "to": [ - 5.1354, - 0.0394 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1354, - 0.0394 - ], - "tag": null, - "to": [ - 5.1273, - 0.0371 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1273, - 0.0371 - ], - "tag": null, - "to": [ - 5.1192, - 0.0347 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1192, - 0.0347 - ], - "tag": null, - "to": [ - 5.1112, - 0.0325 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1112, - 0.0325 - ], - "tag": null, - "to": [ - 5.1031, - 0.0303 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1031, - 0.0303 - ], - "tag": null, - "to": [ - 5.095, - 0.0281 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.095, - 0.0281 - ], - "tag": null, - "to": [ - 5.0869, - 0.026 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0869, - 0.026 - ], - "tag": null, - "to": [ - 5.0789, - 0.0239 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0789, - 0.0239 - ], - "tag": null, - "to": [ - 5.0708, - 0.022 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0708, - 0.022 - ], - "tag": null, - "to": [ - 5.0627, - 0.02 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0627, - 0.02 - ], - "tag": null, - "to": [ - 5.0546, - 0.0182 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0546, - 0.0182 - ], - "tag": null, - "to": [ - 5.0466, - 0.0164 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0466, - 0.0164 - ], - "tag": null, - "to": [ - 5.0385, - 0.0146 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0385, - 0.0146 - ], - "tag": null, - "to": [ - 5.0304, - 0.013 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0304, - 0.013 - ], - "tag": null, - "to": [ - 5.0223, - 0.0114 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0223, - 0.0114 - ], - "tag": null, - "to": [ - 5.0142, - 0.0098 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0142, - 0.0098 - ], - "tag": null, - "to": [ - 5.0061, - 0.0084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0061, - 0.0084 - ], - "tag": null, - "to": [ - 4.9981, - 0.007 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9981, - 0.007 - ], - "tag": null, - "to": [ - 4.99, - 0.0058 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.99, - 0.0058 - ], - "tag": null, - "to": [ - 4.9819, - 0.0046 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9819, - 0.0046 - ], - "tag": null, - "to": [ - 4.9738, - 0.0035 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9738, - 0.0035 - ], - "tag": null, - "to": [ - 4.9657, - 0.0025 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9657, - 0.0025 - ], - "tag": null, - "to": [ - 4.9576, - 0.0016 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9576, - 0.0016 - ], - "tag": null, - "to": [ - 4.9496, - 0.0009 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9496, - 0.0009 - ], - "tag": null, - "to": [ - 4.9415, - 0.0003 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9415, - 0.0003 - ], - "tag": null, - "to": [ - 4.9334, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "ccw": true, - "center": [ - -0.0, - -0.0 - ], - "from": [ - 4.9334, - 0.0 - ], - "radius": 4.933386259126019, - "tag": null, - "to": [ - 4.8356, - 0.9775 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8356, - 0.9775 - ], - "tag": null, - "to": [ - 4.8436, - 0.9788 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8436, - 0.9788 - ], - "tag": null, - "to": [ - 4.8516, - 0.9799 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8516, - 0.9799 - ], - "tag": null, - "to": [ - 4.8597, - 0.9808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8597, - 0.9808 - ], - "tag": null, - "to": [ - 4.8678, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8678, - 0.9815 - ], - "tag": null, - "to": [ - 4.8759, - 0.9821 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8759, - 0.9821 - ], - "tag": null, - "to": [ - 4.884, - 0.9827 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.884, - 0.9827 - ], - "tag": null, - "to": [ - 4.8922, - 0.9831 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8922, - 0.9831 - ], - "tag": null, - "to": [ - 4.9004, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9004, - 0.9835 - ], - "tag": null, - "to": [ - 4.9086, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9086, - 0.9837 - ], - "tag": null, - "to": [ - 4.9168, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9168, - 0.9839 - ], - "tag": null, - "to": [ - 4.925, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.925, - 0.984 - ], - "tag": null, - "to": [ - 4.9332, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9332, - 0.984 - ], - "tag": null, - "to": [ - 4.9415, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9415, - 0.984 - ], - "tag": null, - "to": [ - 4.9497, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9497, - 0.9839 - ], - "tag": null, - "to": [ - 4.958, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.958, - 0.9837 - ], - "tag": null, - "to": [ - 4.9663, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9663, - 0.9835 - ], - "tag": null, - "to": [ - 4.9746, - 0.9832 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9746, - 0.9832 - ], - "tag": null, - "to": [ - 4.9829, - 0.9829 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9829, - 0.9829 - ], - "tag": null, - "to": [ - 4.9912, - 0.9825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9912, - 0.9825 - ], - "tag": null, - "to": [ - 4.9996, - 0.982 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9996, - 0.982 - ], - "tag": null, - "to": [ - 5.0079, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0079, - 0.9815 - ], - "tag": null, - "to": [ - 5.0163, - 0.9809 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0163, - 0.9809 - ], - "tag": null, - "to": [ - 5.0246, - 0.9803 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0246, - 0.9803 - ], - "tag": null, - "to": [ - 5.033, - 0.9796 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.033, - 0.9796 - ], - "tag": null, - "to": [ - 5.0414, - 0.9789 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0414, - 0.9789 - ], - "tag": null, - "to": [ - 5.0497, - 0.9781 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0497, - 0.9781 - ], - "tag": null, - "to": [ - 5.0581, - 0.9773 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0581, - 0.9773 - ], - "tag": null, - "to": [ - 5.0665, - 0.9764 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0665, - 0.9764 - ], - "tag": null, - "to": [ - 5.075, - 0.9755 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.075, - 0.9755 - ], - "tag": null, - "to": [ - 5.0834, - 0.9745 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0834, - 0.9745 - ], - "tag": null, - "to": [ - 5.0918, - 0.9735 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0918, - 0.9735 - ], - "tag": null, - "to": [ - 5.1002, - 0.9724 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1002, - 0.9724 - ], - "tag": null, - "to": [ - 5.1087, - 0.9713 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1087, - 0.9713 - ], - "tag": null, - "to": [ - 5.1171, - 0.9701 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1171, - 0.9701 - ], - "tag": null, - "to": [ - 5.1256, - 0.9689 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1256, - 0.9689 - ], - "tag": null, - "to": [ - 5.1341, - 0.9677 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1341, - 0.9677 - ], - "tag": null, - "to": [ - 5.1425, - 0.9664 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1425, - 0.9664 - ], - "tag": null, - "to": [ - 5.151, - 0.9651 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.151, - 0.9651 - ], - "tag": null, - "to": [ - 5.1595, - 0.9637 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1595, - 0.9637 - ], - "tag": null, - "to": [ - 5.168, - 0.9623 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.168, - 0.9623 - ], - "tag": null, - "to": [ - 5.1765, - 0.9608 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1765, - 0.9608 - ], - "tag": null, - "to": [ - 5.185, - 0.9593 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.185, - 0.9593 - ], - "tag": null, - "to": [ - 5.1935, - 0.9577 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1935, - 0.9577 - ], - "tag": null, - "to": [ - 5.202, - 0.9561 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.202, - 0.9561 - ], - "tag": null, - "to": [ - 5.2105, - 0.9545 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2105, - 0.9545 - ], - "tag": null, - "to": [ - 5.219, - 0.9528 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.219, - 0.9528 - ], - "tag": null, - "to": [ - 5.2276, - 0.9511 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2276, - 0.9511 - ], - "tag": null, - "to": [ - 5.2361, - 0.9494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2361, - 0.9494 - ], - "tag": null, - "to": [ - 5.2447, - 0.9476 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2447, - 0.9476 - ], - "tag": null, - "to": [ - 5.2532, - 0.9457 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2532, - 0.9457 - ], - "tag": null, - "to": [ - 5.2617, - 0.9439 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2617, - 0.9439 - ], - "tag": null, - "to": [ - 5.2703, - 0.942 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2703, - 0.942 - ], - "tag": null, - "to": [ - 5.2789, - 0.94 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2789, - 0.94 - ], - "tag": null, - "to": [ - 5.2874, - 0.938 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2874, - 0.938 - ], - "tag": null, - "to": [ - 5.296, - 0.936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.296, - 0.936 - ], - "tag": null, - "to": [ - 5.3046, - 0.9339 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3046, - 0.9339 - ], - "tag": null, - "to": [ - 5.3132, - 0.9318 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3132, - 0.9318 - ], - "tag": null, - "to": [ - 5.3217, - 0.9297 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3217, - 0.9297 - ], - "tag": null, - "to": [ - 5.3303, - 0.9275 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3303, - 0.9275 - ], - "tag": null, - "to": [ - 5.3389, - 0.9253 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3389, - 0.9253 - ], - "tag": null, - "to": [ - 5.3475, - 0.923 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3475, - 0.923 - ], - "tag": null, - "to": [ - 5.3561, - 0.9207 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3561, - 0.9207 - ], - "tag": null, - "to": [ - 5.3647, - 0.9184 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3647, - 0.9184 - ], - "tag": null, - "to": [ - 5.3733, - 0.916 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3733, - 0.916 - ], - "tag": null, - "to": [ - 5.3819, - 0.9136 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3819, - 0.9136 - ], - "tag": null, - "to": [ - 5.3906, - 0.9112 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3906, - 0.9112 - ], - "tag": null, - "to": [ - 5.3992, - 0.9087 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3992, - 0.9087 - ], - "tag": null, - "to": [ - 5.4078, - 0.9062 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4078, - 0.9062 - ], - "tag": null, - "to": [ - 5.4164, - 0.9036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4164, - 0.9036 - ], - "tag": null, - "to": [ - 5.425, - 0.901 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.425, - 0.901 - ], - "tag": null, - "to": [ - 5.4337, - 0.8984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4337, - 0.8984 - ], - "tag": null, - "to": [ - 5.4423, - 0.8958 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4423, - 0.8958 - ], - "tag": null, - "to": [ - 5.4509, - 0.8931 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4509, - 0.8931 - ], - "tag": null, - "to": [ - 5.4596, - 0.8903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4596, - 0.8903 - ], - "tag": null, - "to": [ - 5.4682, - 0.8876 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4682, - 0.8876 - ], - "tag": null, - "to": [ - 5.4769, - 0.8848 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4769, - 0.8848 - ], - "tag": null, - "to": [ - 5.4855, - 0.8819 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4855, - 0.8819 - ], - "tag": null, - "to": [ - 5.4942, - 0.8791 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4942, - 0.8791 - ], - "tag": null, - "to": [ - 5.5028, - 0.8762 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5028, - 0.8762 - ], - "tag": null, - "to": [ - 5.5115, - 0.8732 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5115, - 0.8732 - ], - "tag": null, - "to": [ - 5.5201, - 0.8703 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5201, - 0.8703 - ], - "tag": null, - "to": [ - 5.5288, - 0.8672 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5288, - 0.8672 - ], - "tag": null, - "to": [ - 5.5374, - 0.8642 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5374, - 0.8642 - ], - "tag": null, - "to": [ - 5.5461, - 0.8611 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5461, - 0.8611 - ], - "tag": null, - "to": [ - 5.5548, - 0.858 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5548, - 0.858 - ], - "tag": null, - "to": [ - 5.5634, - 0.8549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5634, - 0.8549 - ], - "tag": null, - "to": [ - 5.5721, - 0.8517 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5721, - 0.8517 - ], - "tag": null, - "to": [ - 5.5808, - 0.8485 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5808, - 0.8485 - ], - "tag": null, - "to": [ - 5.5894, - 0.8452 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5894, - 0.8452 - ], - "tag": null, - "to": [ - 5.5981, - 0.842 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5981, - 0.842 - ], - "tag": null, - "to": [ - 5.6068, - 0.8386 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6068, - 0.8386 - ], - "tag": null, - "to": [ - 5.6154, - 0.8353 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6154, - 0.8353 - ], - "tag": null, - "to": [ - 5.6241, - 0.8319 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6241, - 0.8319 - ], - "tag": null, - "to": [ - 5.6328, - 0.8285 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6328, - 0.8285 - ], - "tag": null, - "to": [ - 5.6415, - 0.825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6415, - 0.825 - ], - "tag": null, - "to": [ - 5.6502, - 0.8216 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6502, - 0.8216 - ], - "tag": null, - "to": [ - 5.6588, - 0.8181 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6588, - 0.8181 - ], - "tag": null, - "to": [ - 5.6675, - 0.8145 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6675, - 0.8145 - ], - "tag": null, - "to": [ - 5.6762, - 0.8109 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6762, - 0.8109 - ], - "tag": null, - "to": [ - 5.6849, - 0.8073 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6849, - 0.8073 - ], - "tag": null, - "to": [ - 5.6936, - 0.8037 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6936, - 0.8037 - ], - "tag": null, - "to": [ - 5.7399, - 0.3404 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "artifactId": "[uuid]", - "id": "[uuid]", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Mm" - } - }, - "type": "plane", - "value": "XY", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - } - }, - "start": { - "from": [ - 5.7399, - 0.3404 - ], - "to": [ - 5.7399, - 0.3404 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" - }, - "sectional": false - } - }, - { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7399, - 0.3404 - ], - "tag": null, - "to": [ - 5.7321, - 0.3351 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7321, - 0.3351 - ], - "tag": null, - "to": [ - 5.7243, - 0.3299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7243, - 0.3299 - ], - "tag": null, - "to": [ - 5.7165, - 0.3246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7165, - 0.3246 - ], - "tag": null, - "to": [ - 5.7087, - 0.3194 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7087, - 0.3194 - ], - "tag": null, - "to": [ - 5.7009, - 0.3143 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7009, - 0.3143 - ], - "tag": null, - "to": [ - 5.6931, - 0.3091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6931, - 0.3091 - ], - "tag": null, - "to": [ - 5.6853, - 0.3041 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6853, - 0.3041 - ], - "tag": null, - "to": [ - 5.6775, - 0.299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6775, - 0.299 - ], - "tag": null, - "to": [ - 5.6696, - 0.294 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6696, - 0.294 - ], - "tag": null, - "to": [ - 5.6618, - 0.289 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6618, - 0.289 - ], - "tag": null, - "to": [ - 5.6539, - 0.284 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6539, - 0.284 - ], - "tag": null, - "to": [ - 5.6461, - 0.279 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6461, - 0.279 - ], - "tag": null, - "to": [ - 5.6382, - 0.2741 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6382, - 0.2741 - ], - "tag": null, - "to": [ - 5.6304, - 0.2693 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6304, - 0.2693 - ], - "tag": null, - "to": [ - 5.6225, - 0.2644 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6225, - 0.2644 - ], - "tag": null, - "to": [ - 5.6146, - 0.2597 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6146, - 0.2597 - ], - "tag": null, - "to": [ - 5.6068, - 0.2549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6068, - 0.2549 - ], - "tag": null, - "to": [ - 5.5989, - 0.2502 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5989, - 0.2502 - ], - "tag": null, - "to": [ - 5.591, - 0.2455 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.591, - 0.2455 - ], - "tag": null, - "to": [ - 5.5831, - 0.2408 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5831, - 0.2408 - ], - "tag": null, - "to": [ - 5.5752, - 0.2362 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5752, - 0.2362 - ], - "tag": null, - "to": [ - 5.5673, - 0.2316 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5673, - 0.2316 - ], - "tag": null, - "to": [ - 5.5594, - 0.227 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5594, - 0.227 - ], - "tag": null, - "to": [ - 5.5515, - 0.2225 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5515, - 0.2225 - ], - "tag": null, - "to": [ - 5.5436, - 0.218 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5436, - 0.218 - ], - "tag": null, - "to": [ - 5.5357, - 0.2135 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5357, - 0.2135 - ], - "tag": null, - "to": [ - 5.5277, - 0.2091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5277, - 0.2091 - ], - "tag": null, - "to": [ - 5.5198, - 0.2047 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5198, - 0.2047 - ], - "tag": null, - "to": [ - 5.5119, - 0.2004 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5119, - 0.2004 - ], - "tag": null, - "to": [ - 5.504, - 0.1961 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.504, - 0.1961 - ], - "tag": null, - "to": [ - 5.496, - 0.1918 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.496, - 0.1918 - ], - "tag": null, - "to": [ - 5.4881, - 0.1875 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4881, - 0.1875 - ], - "tag": null, - "to": [ - 5.4801, - 0.1833 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4801, - 0.1833 - ], - "tag": null, - "to": [ - 5.4722, - 0.1792 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4722, - 0.1792 - ], - "tag": null, - "to": [ - 5.4642, - 0.175 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4642, - 0.175 - ], - "tag": null, - "to": [ - 5.4563, - 0.1709 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4563, - 0.1709 - ], - "tag": null, - "to": [ - 5.4483, - 0.1669 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4483, - 0.1669 - ], - "tag": null, - "to": [ - 5.4403, - 0.1628 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4403, - 0.1628 - ], - "tag": null, - "to": [ - 5.4324, - 0.1588 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4324, - 0.1588 - ], - "tag": null, - "to": [ - 5.4244, - 0.1549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4244, - 0.1549 - ], - "tag": null, - "to": [ - 5.4164, - 0.151 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4164, - 0.151 - ], - "tag": null, - "to": [ - 5.4084, - 0.1471 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4084, - 0.1471 - ], - "tag": null, - "to": [ - 5.4004, - 0.1433 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4004, - 0.1433 - ], - "tag": null, - "to": [ - 5.3924, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3924, - 0.1395 - ], - "tag": null, - "to": [ - 5.3845, - 0.1357 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3845, - 0.1357 - ], - "tag": null, - "to": [ - 5.3765, - 0.132 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3765, - 0.132 - ], - "tag": null, - "to": [ - 5.3685, - 0.1283 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3685, - 0.1283 - ], - "tag": null, - "to": [ - 5.3605, - 0.1246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3605, - 0.1246 - ], - "tag": null, - "to": [ - 5.3525, - 0.121 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3525, - 0.121 - ], - "tag": null, - "to": [ - 5.3444, - 0.1174 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3444, - 0.1174 - ], - "tag": null, - "to": [ - 5.3364, - 0.1139 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3364, - 0.1139 - ], - "tag": null, - "to": [ - 5.3284, - 0.1104 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3284, - 0.1104 - ], - "tag": null, - "to": [ - 5.3204, - 0.107 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3204, - 0.107 - ], - "tag": null, - "to": [ - 5.3124, - 0.1036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3124, - 0.1036 - ], - "tag": null, - "to": [ - 5.3044, - 0.1002 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3044, - 0.1002 - ], - "tag": null, - "to": [ - 5.2963, - 0.0969 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2963, - 0.0969 - ], - "tag": null, - "to": [ - 5.2883, - 0.0936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2883, - 0.0936 - ], - "tag": null, - "to": [ - 5.2803, - 0.0903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2803, - 0.0903 - ], - "tag": null, - "to": [ - 5.2722, - 0.0871 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2722, - 0.0871 - ], - "tag": null, - "to": [ - 5.2642, - 0.084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2642, - 0.084 - ], - "tag": null, - "to": [ - 5.2562, - 0.0808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2562, - 0.0808 - ], - "tag": null, - "to": [ - 5.2481, - 0.0778 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2481, - 0.0778 - ], - "tag": null, - "to": [ - 5.2401, - 0.0747 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2401, - 0.0747 - ], - "tag": null, - "to": [ - 5.2321, - 0.0717 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2321, - 0.0717 - ], - "tag": null, - "to": [ - 5.224, - 0.0688 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.224, - 0.0688 - ], - "tag": null, - "to": [ - 5.216, - 0.0659 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.216, - 0.0659 - ], - "tag": null, - "to": [ - 5.2079, - 0.063 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2079, - 0.063 - ], - "tag": null, - "to": [ - 5.1999, - 0.0602 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1999, - 0.0602 - ], - "tag": null, - "to": [ - 5.1918, - 0.0575 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1918, - 0.0575 - ], - "tag": null, - "to": [ - 5.1837, - 0.0547 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1837, - 0.0547 - ], - "tag": null, - "to": [ - 5.1757, - 0.0521 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1757, - 0.0521 - ], - "tag": null, - "to": [ - 5.1676, - 0.0494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1676, - 0.0494 - ], - "tag": null, - "to": [ - 5.1596, - 0.0469 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1596, - 0.0469 - ], - "tag": null, - "to": [ - 5.1515, - 0.0443 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1515, - 0.0443 - ], - "tag": null, - "to": [ - 5.1434, - 0.0419 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1434, - 0.0419 - ], - "tag": null, - "to": [ - 5.1354, - 0.0394 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1354, - 0.0394 - ], - "tag": null, - "to": [ - 5.1273, - 0.0371 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1273, - 0.0371 - ], - "tag": null, - "to": [ - 5.1192, - 0.0347 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1192, - 0.0347 - ], - "tag": null, - "to": [ - 5.1112, - 0.0325 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1112, - 0.0325 - ], - "tag": null, - "to": [ - 5.1031, - 0.0303 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1031, - 0.0303 - ], - "tag": null, - "to": [ - 5.095, - 0.0281 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.095, - 0.0281 - ], - "tag": null, - "to": [ - 5.0869, - 0.026 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0869, - 0.026 - ], - "tag": null, - "to": [ - 5.0789, - 0.0239 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0789, - 0.0239 - ], - "tag": null, - "to": [ - 5.0708, - 0.022 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0708, - 0.022 - ], - "tag": null, - "to": [ - 5.0627, - 0.02 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0627, - 0.02 - ], - "tag": null, - "to": [ - 5.0546, - 0.0182 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0546, - 0.0182 - ], - "tag": null, - "to": [ - 5.0466, - 0.0164 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0466, - 0.0164 - ], - "tag": null, - "to": [ - 5.0385, - 0.0146 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0385, - 0.0146 - ], - "tag": null, - "to": [ - 5.0304, - 0.013 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0304, - 0.013 - ], - "tag": null, - "to": [ - 5.0223, - 0.0114 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0223, - 0.0114 - ], - "tag": null, - "to": [ - 5.0142, - 0.0098 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0142, - 0.0098 - ], - "tag": null, - "to": [ - 5.0061, - 0.0084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0061, - 0.0084 - ], - "tag": null, - "to": [ - 4.9981, - 0.007 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9981, - 0.007 - ], - "tag": null, - "to": [ - 4.99, - 0.0058 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.99, - 0.0058 - ], - "tag": null, - "to": [ - 4.9819, - 0.0046 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9819, - 0.0046 - ], - "tag": null, - "to": [ - 4.9738, - 0.0035 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9738, - 0.0035 - ], - "tag": null, - "to": [ - 4.9657, - 0.0025 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9657, - 0.0025 - ], - "tag": null, - "to": [ - 4.9576, - 0.0016 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9576, - 0.0016 - ], - "tag": null, - "to": [ - 4.9496, - 0.0009 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9496, - 0.0009 - ], - "tag": null, - "to": [ - 4.9415, - 0.0003 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9415, - 0.0003 - ], - "tag": null, - "to": [ - 4.9334, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "ccw": true, - "center": [ - -0.0, - -0.0 - ], - "from": [ - 4.9334, - 0.0 - ], - "radius": 4.933386259126019, - "tag": null, - "to": [ - 4.8356, - 0.9775 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8356, - 0.9775 - ], - "tag": null, - "to": [ - 4.8436, - 0.9788 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8436, - 0.9788 - ], - "tag": null, - "to": [ - 4.8516, - 0.9799 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8516, - 0.9799 - ], - "tag": null, - "to": [ - 4.8597, - 0.9808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8597, - 0.9808 - ], - "tag": null, - "to": [ - 4.8678, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8678, - 0.9815 - ], - "tag": null, - "to": [ - 4.8759, - 0.9821 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8759, - 0.9821 - ], - "tag": null, - "to": [ - 4.884, - 0.9827 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.884, - 0.9827 - ], - "tag": null, - "to": [ - 4.8922, - 0.9831 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8922, - 0.9831 - ], - "tag": null, - "to": [ - 4.9004, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9004, - 0.9835 - ], - "tag": null, - "to": [ - 4.9086, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9086, - 0.9837 - ], - "tag": null, - "to": [ - 4.9168, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9168, - 0.9839 - ], - "tag": null, - "to": [ - 4.925, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.925, - 0.984 - ], - "tag": null, - "to": [ - 4.9332, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9332, - 0.984 - ], - "tag": null, - "to": [ - 4.9415, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9415, - 0.984 - ], - "tag": null, - "to": [ - 4.9497, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9497, - 0.9839 - ], - "tag": null, - "to": [ - 4.958, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.958, - 0.9837 - ], - "tag": null, - "to": [ - 4.9663, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9663, - 0.9835 - ], - "tag": null, - "to": [ - 4.9746, - 0.9832 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9746, - 0.9832 - ], - "tag": null, - "to": [ - 4.9829, - 0.9829 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9829, - 0.9829 - ], - "tag": null, - "to": [ - 4.9912, - 0.9825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9912, - 0.9825 - ], - "tag": null, - "to": [ - 4.9996, - 0.982 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9996, - 0.982 - ], - "tag": null, - "to": [ - 5.0079, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0079, - 0.9815 - ], - "tag": null, - "to": [ - 5.0163, - 0.9809 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0163, - 0.9809 - ], - "tag": null, - "to": [ - 5.0246, - 0.9803 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0246, - 0.9803 - ], - "tag": null, - "to": [ - 5.033, - 0.9796 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.033, - 0.9796 - ], - "tag": null, - "to": [ - 5.0414, - 0.9789 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0414, - 0.9789 - ], - "tag": null, - "to": [ - 5.0497, - 0.9781 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0497, - 0.9781 - ], - "tag": null, - "to": [ - 5.0581, - 0.9773 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0581, - 0.9773 - ], - "tag": null, - "to": [ - 5.0665, - 0.9764 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0665, - 0.9764 - ], - "tag": null, - "to": [ - 5.075, - 0.9755 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.075, - 0.9755 - ], - "tag": null, - "to": [ - 5.0834, - 0.9745 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0834, - 0.9745 - ], - "tag": null, - "to": [ - 5.0918, - 0.9735 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0918, - 0.9735 - ], - "tag": null, - "to": [ - 5.1002, - 0.9724 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1002, - 0.9724 - ], - "tag": null, - "to": [ - 5.1087, - 0.9713 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1087, - 0.9713 - ], - "tag": null, - "to": [ - 5.1171, - 0.9701 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1171, - 0.9701 - ], - "tag": null, - "to": [ - 5.1256, - 0.9689 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1256, - 0.9689 - ], - "tag": null, - "to": [ - 5.1341, - 0.9677 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1341, - 0.9677 - ], - "tag": null, - "to": [ - 5.1425, - 0.9664 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1425, - 0.9664 - ], - "tag": null, - "to": [ - 5.151, - 0.9651 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.151, - 0.9651 - ], - "tag": null, - "to": [ - 5.1595, - 0.9637 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1595, - 0.9637 - ], - "tag": null, - "to": [ - 5.168, - 0.9623 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.168, - 0.9623 - ], - "tag": null, - "to": [ - 5.1765, - 0.9608 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1765, - 0.9608 - ], - "tag": null, - "to": [ - 5.185, - 0.9593 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.185, - 0.9593 - ], - "tag": null, - "to": [ - 5.1935, - 0.9577 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1935, - 0.9577 - ], - "tag": null, - "to": [ - 5.202, - 0.9561 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.202, - 0.9561 - ], - "tag": null, - "to": [ - 5.2105, - 0.9545 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2105, - 0.9545 - ], - "tag": null, - "to": [ - 5.219, - 0.9528 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.219, - 0.9528 - ], - "tag": null, - "to": [ - 5.2276, - 0.9511 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2276, - 0.9511 - ], - "tag": null, - "to": [ - 5.2361, - 0.9494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2361, - 0.9494 - ], - "tag": null, - "to": [ - 5.2447, - 0.9476 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2447, - 0.9476 - ], - "tag": null, - "to": [ - 5.2532, - 0.9457 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2532, - 0.9457 - ], - "tag": null, - "to": [ - 5.2617, - 0.9439 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2617, - 0.9439 - ], - "tag": null, - "to": [ - 5.2703, - 0.942 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2703, - 0.942 - ], - "tag": null, - "to": [ - 5.2789, - 0.94 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2789, - 0.94 - ], - "tag": null, - "to": [ - 5.2874, - 0.938 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2874, - 0.938 - ], - "tag": null, - "to": [ - 5.296, - 0.936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.296, - 0.936 - ], - "tag": null, - "to": [ - 5.3046, - 0.9339 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3046, - 0.9339 - ], - "tag": null, - "to": [ - 5.3132, - 0.9318 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3132, - 0.9318 - ], - "tag": null, - "to": [ - 5.3217, - 0.9297 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3217, - 0.9297 - ], - "tag": null, - "to": [ - 5.3303, - 0.9275 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3303, - 0.9275 - ], - "tag": null, - "to": [ - 5.3389, - 0.9253 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3389, - 0.9253 - ], - "tag": null, - "to": [ - 5.3475, - 0.923 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3475, - 0.923 - ], - "tag": null, - "to": [ - 5.3561, - 0.9207 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3561, - 0.9207 - ], - "tag": null, - "to": [ - 5.3647, - 0.9184 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3647, - 0.9184 - ], - "tag": null, - "to": [ - 5.3733, - 0.916 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3733, - 0.916 - ], - "tag": null, - "to": [ - 5.3819, - 0.9136 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3819, - 0.9136 - ], - "tag": null, - "to": [ - 5.3906, - 0.9112 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3906, - 0.9112 - ], - "tag": null, - "to": [ - 5.3992, - 0.9087 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3992, - 0.9087 - ], - "tag": null, - "to": [ - 5.4078, - 0.9062 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4078, - 0.9062 - ], - "tag": null, - "to": [ - 5.4164, - 0.9036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4164, - 0.9036 - ], - "tag": null, - "to": [ - 5.425, - 0.901 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.425, - 0.901 - ], - "tag": null, - "to": [ - 5.4337, - 0.8984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4337, - 0.8984 - ], - "tag": null, - "to": [ - 5.4423, - 0.8958 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4423, - 0.8958 - ], - "tag": null, - "to": [ - 5.4509, - 0.8931 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4509, - 0.8931 - ], - "tag": null, - "to": [ - 5.4596, - 0.8903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4596, - 0.8903 - ], - "tag": null, - "to": [ - 5.4682, - 0.8876 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4682, - 0.8876 - ], - "tag": null, - "to": [ - 5.4769, - 0.8848 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4769, - 0.8848 - ], - "tag": null, - "to": [ - 5.4855, - 0.8819 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4855, - 0.8819 - ], - "tag": null, - "to": [ - 5.4942, - 0.8791 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4942, - 0.8791 - ], - "tag": null, - "to": [ - 5.5028, - 0.8762 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5028, - 0.8762 - ], - "tag": null, - "to": [ - 5.5115, - 0.8732 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5115, - 0.8732 - ], - "tag": null, - "to": [ - 5.5201, - 0.8703 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5201, - 0.8703 - ], - "tag": null, - "to": [ - 5.5288, - 0.8672 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5288, - 0.8672 - ], - "tag": null, - "to": [ - 5.5374, - 0.8642 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5374, - 0.8642 - ], - "tag": null, - "to": [ - 5.5461, - 0.8611 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5461, - 0.8611 - ], - "tag": null, - "to": [ - 5.5548, - 0.858 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5548, - 0.858 - ], - "tag": null, - "to": [ - 5.5634, - 0.8549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5634, - 0.8549 - ], - "tag": null, - "to": [ - 5.5721, - 0.8517 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5721, - 0.8517 - ], - "tag": null, - "to": [ - 5.5808, - 0.8485 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5808, - 0.8485 - ], - "tag": null, - "to": [ - 5.5894, - 0.8452 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5894, - 0.8452 - ], - "tag": null, - "to": [ - 5.5981, - 0.842 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5981, - 0.842 - ], - "tag": null, - "to": [ - 5.6068, - 0.8386 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6068, - 0.8386 - ], - "tag": null, - "to": [ - 5.6154, - 0.8353 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6154, - 0.8353 - ], - "tag": null, - "to": [ - 5.6241, - 0.8319 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6241, - 0.8319 - ], - "tag": null, - "to": [ - 5.6328, - 0.8285 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6328, - 0.8285 - ], - "tag": null, - "to": [ - 5.6415, - 0.825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6415, - 0.825 - ], - "tag": null, - "to": [ - 5.6502, - 0.8216 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6502, - 0.8216 - ], - "tag": null, - "to": [ - 5.6588, - 0.8181 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6588, - 0.8181 - ], - "tag": null, - "to": [ - 5.6675, - 0.8145 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6675, - 0.8145 - ], - "tag": null, - "to": [ - 5.6762, - 0.8109 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6762, - 0.8109 - ], - "tag": null, - "to": [ - 5.6849, - 0.8073 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6849, - 0.8073 - ], - "tag": null, - "to": [ - 5.6936, - 0.8037 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6936, - 0.8037 - ], - "tag": null, - "to": [ - 5.7399, - 0.3404 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "artifactId": "[uuid]", - "id": "[uuid]", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Mm" - } - }, - "type": "plane", - "value": "XY", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - } - }, - "start": { - "from": [ - 5.7399, - 0.3404 - ], - "to": [ - 5.7399, - 0.3404 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" - }, - "sectional": false - } - }, - { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7399, - 0.3404 - ], - "tag": null, - "to": [ - 5.7321, - 0.3351 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7321, - 0.3351 - ], - "tag": null, - "to": [ - 5.7243, - 0.3299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7243, - 0.3299 - ], - "tag": null, - "to": [ - 5.7165, - 0.3246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7165, - 0.3246 - ], - "tag": null, - "to": [ - 5.7087, - 0.3194 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7087, - 0.3194 - ], - "tag": null, - "to": [ - 5.7009, - 0.3143 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7009, - 0.3143 - ], - "tag": null, - "to": [ - 5.6931, - 0.3091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6931, - 0.3091 - ], - "tag": null, - "to": [ - 5.6853, - 0.3041 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6853, - 0.3041 - ], - "tag": null, - "to": [ - 5.6775, - 0.299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6775, - 0.299 - ], - "tag": null, - "to": [ - 5.6696, - 0.294 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6696, - 0.294 - ], - "tag": null, - "to": [ - 5.6618, - 0.289 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6618, - 0.289 - ], - "tag": null, - "to": [ - 5.6539, - 0.284 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6539, - 0.284 - ], - "tag": null, - "to": [ - 5.6461, - 0.279 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6461, - 0.279 - ], - "tag": null, - "to": [ - 5.6382, - 0.2741 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6382, - 0.2741 - ], - "tag": null, - "to": [ - 5.6304, - 0.2693 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6304, - 0.2693 - ], - "tag": null, - "to": [ - 5.6225, - 0.2644 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6225, - 0.2644 - ], - "tag": null, - "to": [ - 5.6146, - 0.2597 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6146, - 0.2597 - ], - "tag": null, - "to": [ - 5.6068, - 0.2549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6068, - 0.2549 - ], - "tag": null, - "to": [ - 5.5989, - 0.2502 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5989, - 0.2502 - ], - "tag": null, - "to": [ - 5.591, - 0.2455 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.591, - 0.2455 - ], - "tag": null, - "to": [ - 5.5831, - 0.2408 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5831, - 0.2408 - ], - "tag": null, - "to": [ - 5.5752, - 0.2362 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5752, - 0.2362 - ], - "tag": null, - "to": [ - 5.5673, - 0.2316 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5673, - 0.2316 - ], - "tag": null, - "to": [ - 5.5594, - 0.227 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5594, - 0.227 - ], - "tag": null, - "to": [ - 5.5515, - 0.2225 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5515, - 0.2225 - ], - "tag": null, - "to": [ - 5.5436, - 0.218 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5436, - 0.218 - ], - "tag": null, - "to": [ - 5.5357, - 0.2135 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5357, - 0.2135 - ], - "tag": null, - "to": [ - 5.5277, - 0.2091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5277, - 0.2091 - ], - "tag": null, - "to": [ - 5.5198, - 0.2047 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5198, - 0.2047 - ], - "tag": null, - "to": [ - 5.5119, - 0.2004 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5119, - 0.2004 - ], - "tag": null, - "to": [ - 5.504, - 0.1961 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.504, - 0.1961 - ], - "tag": null, - "to": [ - 5.496, - 0.1918 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.496, - 0.1918 - ], - "tag": null, - "to": [ - 5.4881, - 0.1875 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4881, - 0.1875 - ], - "tag": null, - "to": [ - 5.4801, - 0.1833 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4801, - 0.1833 - ], - "tag": null, - "to": [ - 5.4722, - 0.1792 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4722, - 0.1792 - ], - "tag": null, - "to": [ - 5.4642, - 0.175 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4642, - 0.175 - ], - "tag": null, - "to": [ - 5.4563, - 0.1709 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4563, - 0.1709 - ], - "tag": null, - "to": [ - 5.4483, - 0.1669 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4483, - 0.1669 - ], - "tag": null, - "to": [ - 5.4403, - 0.1628 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4403, - 0.1628 - ], - "tag": null, - "to": [ - 5.4324, - 0.1588 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4324, - 0.1588 - ], - "tag": null, - "to": [ - 5.4244, - 0.1549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4244, - 0.1549 - ], - "tag": null, - "to": [ - 5.4164, - 0.151 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4164, - 0.151 - ], - "tag": null, - "to": [ - 5.4084, - 0.1471 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4084, - 0.1471 - ], - "tag": null, - "to": [ - 5.4004, - 0.1433 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4004, - 0.1433 - ], - "tag": null, - "to": [ - 5.3924, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3924, - 0.1395 - ], - "tag": null, - "to": [ - 5.3845, - 0.1357 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3845, - 0.1357 - ], - "tag": null, - "to": [ - 5.3765, - 0.132 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3765, - 0.132 - ], - "tag": null, - "to": [ - 5.3685, - 0.1283 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3685, - 0.1283 - ], - "tag": null, - "to": [ - 5.3605, - 0.1246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3605, - 0.1246 - ], - "tag": null, - "to": [ - 5.3525, - 0.121 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3525, - 0.121 - ], - "tag": null, - "to": [ - 5.3444, - 0.1174 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3444, - 0.1174 - ], - "tag": null, - "to": [ - 5.3364, - 0.1139 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3364, - 0.1139 - ], - "tag": null, - "to": [ - 5.3284, - 0.1104 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3284, - 0.1104 - ], - "tag": null, - "to": [ - 5.3204, - 0.107 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3204, - 0.107 - ], - "tag": null, - "to": [ - 5.3124, - 0.1036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3124, - 0.1036 - ], - "tag": null, - "to": [ - 5.3044, - 0.1002 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3044, - 0.1002 - ], - "tag": null, - "to": [ - 5.2963, - 0.0969 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2963, - 0.0969 - ], - "tag": null, - "to": [ - 5.2883, - 0.0936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2883, - 0.0936 - ], - "tag": null, - "to": [ - 5.2803, - 0.0903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2803, - 0.0903 - ], - "tag": null, - "to": [ - 5.2722, - 0.0871 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2722, - 0.0871 - ], - "tag": null, - "to": [ - 5.2642, - 0.084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2642, - 0.084 - ], - "tag": null, - "to": [ - 5.2562, - 0.0808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2562, - 0.0808 - ], - "tag": null, - "to": [ - 5.2481, - 0.0778 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2481, - 0.0778 - ], - "tag": null, - "to": [ - 5.2401, - 0.0747 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2401, - 0.0747 - ], - "tag": null, - "to": [ - 5.2321, - 0.0717 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2321, - 0.0717 - ], - "tag": null, - "to": [ - 5.224, - 0.0688 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.224, - 0.0688 - ], - "tag": null, - "to": [ - 5.216, - 0.0659 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.216, - 0.0659 - ], - "tag": null, - "to": [ - 5.2079, - 0.063 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2079, - 0.063 - ], - "tag": null, - "to": [ - 5.1999, - 0.0602 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1999, - 0.0602 - ], - "tag": null, - "to": [ - 5.1918, - 0.0575 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1918, - 0.0575 - ], - "tag": null, - "to": [ - 5.1837, - 0.0547 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1837, - 0.0547 - ], - "tag": null, - "to": [ - 5.1757, - 0.0521 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1757, - 0.0521 - ], - "tag": null, - "to": [ - 5.1676, - 0.0494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1676, - 0.0494 - ], - "tag": null, - "to": [ - 5.1596, - 0.0469 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1596, - 0.0469 - ], - "tag": null, - "to": [ - 5.1515, - 0.0443 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1515, - 0.0443 - ], - "tag": null, - "to": [ - 5.1434, - 0.0419 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1434, - 0.0419 - ], - "tag": null, - "to": [ - 5.1354, - 0.0394 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1354, - 0.0394 - ], - "tag": null, - "to": [ - 5.1273, - 0.0371 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1273, - 0.0371 - ], - "tag": null, - "to": [ - 5.1192, - 0.0347 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1192, - 0.0347 - ], - "tag": null, - "to": [ - 5.1112, - 0.0325 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1112, - 0.0325 - ], - "tag": null, - "to": [ - 5.1031, - 0.0303 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1031, - 0.0303 - ], - "tag": null, - "to": [ - 5.095, - 0.0281 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.095, - 0.0281 - ], - "tag": null, - "to": [ - 5.0869, - 0.026 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0869, - 0.026 - ], - "tag": null, - "to": [ - 5.0789, - 0.0239 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0789, - 0.0239 - ], - "tag": null, - "to": [ - 5.0708, - 0.022 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0708, - 0.022 - ], - "tag": null, - "to": [ - 5.0627, - 0.02 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0627, - 0.02 - ], - "tag": null, - "to": [ - 5.0546, - 0.0182 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0546, - 0.0182 - ], - "tag": null, - "to": [ - 5.0466, - 0.0164 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0466, - 0.0164 - ], - "tag": null, - "to": [ - 5.0385, - 0.0146 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0385, - 0.0146 - ], - "tag": null, - "to": [ - 5.0304, - 0.013 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0304, - 0.013 - ], - "tag": null, - "to": [ - 5.0223, - 0.0114 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0223, - 0.0114 - ], - "tag": null, - "to": [ - 5.0142, - 0.0098 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0142, - 0.0098 - ], - "tag": null, - "to": [ - 5.0061, - 0.0084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0061, - 0.0084 - ], - "tag": null, - "to": [ - 4.9981, - 0.007 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9981, - 0.007 - ], - "tag": null, - "to": [ - 4.99, - 0.0058 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.99, - 0.0058 - ], - "tag": null, - "to": [ - 4.9819, - 0.0046 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9819, - 0.0046 - ], - "tag": null, - "to": [ - 4.9738, - 0.0035 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9738, - 0.0035 - ], - "tag": null, - "to": [ - 4.9657, - 0.0025 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9657, - 0.0025 - ], - "tag": null, - "to": [ - 4.9576, - 0.0016 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9576, - 0.0016 - ], - "tag": null, - "to": [ - 4.9496, - 0.0009 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9496, - 0.0009 - ], - "tag": null, - "to": [ - 4.9415, - 0.0003 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9415, - 0.0003 - ], - "tag": null, - "to": [ - 4.9334, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "ccw": true, - "center": [ - -0.0, - -0.0 - ], - "from": [ - 4.9334, - 0.0 - ], - "radius": 4.933386259126019, - "tag": null, - "to": [ - 4.8356, - 0.9775 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8356, - 0.9775 - ], - "tag": null, - "to": [ - 4.8436, - 0.9788 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8436, - 0.9788 - ], - "tag": null, - "to": [ - 4.8516, - 0.9799 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8516, - 0.9799 - ], - "tag": null, - "to": [ - 4.8597, - 0.9808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8597, - 0.9808 - ], - "tag": null, - "to": [ - 4.8678, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8678, - 0.9815 - ], - "tag": null, - "to": [ - 4.8759, - 0.9821 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8759, - 0.9821 - ], - "tag": null, - "to": [ - 4.884, - 0.9827 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.884, - 0.9827 - ], - "tag": null, - "to": [ - 4.8922, - 0.9831 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8922, - 0.9831 - ], - "tag": null, - "to": [ - 4.9004, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9004, - 0.9835 - ], - "tag": null, - "to": [ - 4.9086, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9086, - 0.9837 - ], - "tag": null, - "to": [ - 4.9168, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9168, - 0.9839 - ], - "tag": null, - "to": [ - 4.925, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.925, - 0.984 - ], - "tag": null, - "to": [ - 4.9332, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9332, - 0.984 - ], - "tag": null, - "to": [ - 4.9415, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9415, - 0.984 - ], - "tag": null, - "to": [ - 4.9497, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9497, - 0.9839 - ], - "tag": null, - "to": [ - 4.958, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.958, - 0.9837 - ], - "tag": null, - "to": [ - 4.9663, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9663, - 0.9835 - ], - "tag": null, - "to": [ - 4.9746, - 0.9832 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9746, - 0.9832 - ], - "tag": null, - "to": [ - 4.9829, - 0.9829 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9829, - 0.9829 - ], - "tag": null, - "to": [ - 4.9912, - 0.9825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9912, - 0.9825 - ], - "tag": null, - "to": [ - 4.9996, - 0.982 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9996, - 0.982 - ], - "tag": null, - "to": [ - 5.0079, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0079, - 0.9815 - ], - "tag": null, - "to": [ - 5.0163, - 0.9809 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0163, - 0.9809 - ], - "tag": null, - "to": [ - 5.0246, - 0.9803 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0246, - 0.9803 - ], - "tag": null, - "to": [ - 5.033, - 0.9796 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.033, - 0.9796 - ], - "tag": null, - "to": [ - 5.0414, - 0.9789 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0414, - 0.9789 - ], - "tag": null, - "to": [ - 5.0497, - 0.9781 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0497, - 0.9781 - ], - "tag": null, - "to": [ - 5.0581, - 0.9773 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0581, - 0.9773 - ], - "tag": null, - "to": [ - 5.0665, - 0.9764 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0665, - 0.9764 - ], - "tag": null, - "to": [ - 5.075, - 0.9755 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.075, - 0.9755 - ], - "tag": null, - "to": [ - 5.0834, - 0.9745 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0834, - 0.9745 - ], - "tag": null, - "to": [ - 5.0918, - 0.9735 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0918, - 0.9735 - ], - "tag": null, - "to": [ - 5.1002, - 0.9724 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1002, - 0.9724 - ], - "tag": null, - "to": [ - 5.1087, - 0.9713 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1087, - 0.9713 - ], - "tag": null, - "to": [ - 5.1171, - 0.9701 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1171, - 0.9701 - ], - "tag": null, - "to": [ - 5.1256, - 0.9689 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1256, - 0.9689 - ], - "tag": null, - "to": [ - 5.1341, - 0.9677 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1341, - 0.9677 - ], - "tag": null, - "to": [ - 5.1425, - 0.9664 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1425, - 0.9664 - ], - "tag": null, - "to": [ - 5.151, - 0.9651 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.151, - 0.9651 - ], - "tag": null, - "to": [ - 5.1595, - 0.9637 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1595, - 0.9637 - ], - "tag": null, - "to": [ - 5.168, - 0.9623 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.168, - 0.9623 - ], - "tag": null, - "to": [ - 5.1765, - 0.9608 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1765, - 0.9608 - ], - "tag": null, - "to": [ - 5.185, - 0.9593 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.185, - 0.9593 - ], - "tag": null, - "to": [ - 5.1935, - 0.9577 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1935, - 0.9577 - ], - "tag": null, - "to": [ - 5.202, - 0.9561 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.202, - 0.9561 - ], - "tag": null, - "to": [ - 5.2105, - 0.9545 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2105, - 0.9545 - ], - "tag": null, - "to": [ - 5.219, - 0.9528 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.219, - 0.9528 - ], - "tag": null, - "to": [ - 5.2276, - 0.9511 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2276, - 0.9511 - ], - "tag": null, - "to": [ - 5.2361, - 0.9494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2361, - 0.9494 - ], - "tag": null, - "to": [ - 5.2447, - 0.9476 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2447, - 0.9476 - ], - "tag": null, - "to": [ - 5.2532, - 0.9457 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2532, - 0.9457 - ], - "tag": null, - "to": [ - 5.2617, - 0.9439 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2617, - 0.9439 - ], - "tag": null, - "to": [ - 5.2703, - 0.942 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2703, - 0.942 - ], - "tag": null, - "to": [ - 5.2789, - 0.94 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2789, - 0.94 - ], - "tag": null, - "to": [ - 5.2874, - 0.938 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2874, - 0.938 - ], - "tag": null, - "to": [ - 5.296, - 0.936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.296, - 0.936 - ], - "tag": null, - "to": [ - 5.3046, - 0.9339 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3046, - 0.9339 - ], - "tag": null, - "to": [ - 5.3132, - 0.9318 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3132, - 0.9318 - ], - "tag": null, - "to": [ - 5.3217, - 0.9297 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3217, - 0.9297 - ], - "tag": null, - "to": [ - 5.3303, - 0.9275 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3303, - 0.9275 - ], - "tag": null, - "to": [ - 5.3389, - 0.9253 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3389, - 0.9253 - ], - "tag": null, - "to": [ - 5.3475, - 0.923 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3475, - 0.923 - ], - "tag": null, - "to": [ - 5.3561, - 0.9207 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3561, - 0.9207 - ], - "tag": null, - "to": [ - 5.3647, - 0.9184 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3647, - 0.9184 - ], - "tag": null, - "to": [ - 5.3733, - 0.916 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3733, - 0.916 - ], - "tag": null, - "to": [ - 5.3819, - 0.9136 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3819, - 0.9136 - ], - "tag": null, - "to": [ - 5.3906, - 0.9112 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3906, - 0.9112 - ], - "tag": null, - "to": [ - 5.3992, - 0.9087 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3992, - 0.9087 - ], - "tag": null, - "to": [ - 5.4078, - 0.9062 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4078, - 0.9062 - ], - "tag": null, - "to": [ - 5.4164, - 0.9036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4164, - 0.9036 - ], - "tag": null, - "to": [ - 5.425, - 0.901 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.425, - 0.901 - ], - "tag": null, - "to": [ - 5.4337, - 0.8984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4337, - 0.8984 - ], - "tag": null, - "to": [ - 5.4423, - 0.8958 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4423, - 0.8958 - ], - "tag": null, - "to": [ - 5.4509, - 0.8931 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4509, - 0.8931 - ], - "tag": null, - "to": [ - 5.4596, - 0.8903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4596, - 0.8903 - ], - "tag": null, - "to": [ - 5.4682, - 0.8876 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4682, - 0.8876 - ], - "tag": null, - "to": [ - 5.4769, - 0.8848 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4769, - 0.8848 - ], - "tag": null, - "to": [ - 5.4855, - 0.8819 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4855, - 0.8819 - ], - "tag": null, - "to": [ - 5.4942, - 0.8791 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4942, - 0.8791 - ], - "tag": null, - "to": [ - 5.5028, - 0.8762 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5028, - 0.8762 - ], - "tag": null, - "to": [ - 5.5115, - 0.8732 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5115, - 0.8732 - ], - "tag": null, - "to": [ - 5.5201, - 0.8703 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5201, - 0.8703 - ], - "tag": null, - "to": [ - 5.5288, - 0.8672 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5288, - 0.8672 - ], - "tag": null, - "to": [ - 5.5374, - 0.8642 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5374, - 0.8642 - ], - "tag": null, - "to": [ - 5.5461, - 0.8611 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5461, - 0.8611 - ], - "tag": null, - "to": [ - 5.5548, - 0.858 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5548, - 0.858 - ], - "tag": null, - "to": [ - 5.5634, - 0.8549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5634, - 0.8549 - ], - "tag": null, - "to": [ - 5.5721, - 0.8517 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5721, - 0.8517 - ], - "tag": null, - "to": [ - 5.5808, - 0.8485 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5808, - 0.8485 - ], - "tag": null, - "to": [ - 5.5894, - 0.8452 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5894, - 0.8452 - ], - "tag": null, - "to": [ - 5.5981, - 0.842 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5981, - 0.842 - ], - "tag": null, - "to": [ - 5.6068, - 0.8386 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6068, - 0.8386 - ], - "tag": null, - "to": [ - 5.6154, - 0.8353 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6154, - 0.8353 - ], - "tag": null, - "to": [ - 5.6241, - 0.8319 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6241, - 0.8319 - ], - "tag": null, - "to": [ - 5.6328, - 0.8285 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6328, - 0.8285 - ], - "tag": null, - "to": [ - 5.6415, - 0.825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6415, - 0.825 - ], - "tag": null, - "to": [ - 5.6502, - 0.8216 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6502, - 0.8216 - ], - "tag": null, - "to": [ - 5.6588, - 0.8181 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6588, - 0.8181 - ], - "tag": null, - "to": [ - 5.6675, - 0.8145 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6675, - 0.8145 - ], - "tag": null, - "to": [ - 5.6762, - 0.8109 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6762, - 0.8109 - ], - "tag": null, - "to": [ - 5.6849, - 0.8073 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6849, - 0.8073 - ], - "tag": null, - "to": [ - 5.6936, - 0.8037 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6936, - 0.8037 - ], - "tag": null, - "to": [ - 5.7399, - 0.3404 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "artifactId": "[uuid]", - "id": "[uuid]", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Mm" - } - }, - "type": "plane", - "value": "XY", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - } - }, - "start": { - "from": [ - 5.7399, - 0.3404 - ], - "to": [ - 5.7399, - 0.3404 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" - }, - "sectional": false - } - }, - { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7399, - 0.3404 - ], - "tag": null, - "to": [ - 5.7321, - 0.3351 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7321, - 0.3351 - ], - "tag": null, - "to": [ - 5.7243, - 0.3299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7243, - 0.3299 - ], - "tag": null, - "to": [ - 5.7165, - 0.3246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7165, - 0.3246 - ], - "tag": null, - "to": [ - 5.7087, - 0.3194 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7087, - 0.3194 - ], - "tag": null, - "to": [ - 5.7009, - 0.3143 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7009, - 0.3143 - ], - "tag": null, - "to": [ - 5.6931, - 0.3091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6931, - 0.3091 - ], - "tag": null, - "to": [ - 5.6853, - 0.3041 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6853, - 0.3041 - ], - "tag": null, - "to": [ - 5.6775, - 0.299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6775, - 0.299 - ], - "tag": null, - "to": [ - 5.6696, - 0.294 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6696, - 0.294 - ], - "tag": null, - "to": [ - 5.6618, - 0.289 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6618, - 0.289 - ], - "tag": null, - "to": [ - 5.6539, - 0.284 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6539, - 0.284 - ], - "tag": null, - "to": [ - 5.6461, - 0.279 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6461, - 0.279 - ], - "tag": null, - "to": [ - 5.6382, - 0.2741 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6382, - 0.2741 - ], - "tag": null, - "to": [ - 5.6304, - 0.2693 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6304, - 0.2693 - ], - "tag": null, - "to": [ - 5.6225, - 0.2644 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6225, - 0.2644 - ], - "tag": null, - "to": [ - 5.6146, - 0.2597 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6146, - 0.2597 - ], - "tag": null, - "to": [ - 5.6068, - 0.2549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6068, - 0.2549 - ], - "tag": null, - "to": [ - 5.5989, - 0.2502 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5989, - 0.2502 - ], - "tag": null, - "to": [ - 5.591, - 0.2455 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.591, - 0.2455 - ], - "tag": null, - "to": [ - 5.5831, - 0.2408 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5831, - 0.2408 - ], - "tag": null, - "to": [ - 5.5752, - 0.2362 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5752, - 0.2362 - ], - "tag": null, - "to": [ - 5.5673, - 0.2316 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5673, - 0.2316 - ], - "tag": null, - "to": [ - 5.5594, - 0.227 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5594, - 0.227 - ], - "tag": null, - "to": [ - 5.5515, - 0.2225 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5515, - 0.2225 - ], - "tag": null, - "to": [ - 5.5436, - 0.218 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5436, - 0.218 - ], - "tag": null, - "to": [ - 5.5357, - 0.2135 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5357, - 0.2135 - ], - "tag": null, - "to": [ - 5.5277, - 0.2091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5277, - 0.2091 - ], - "tag": null, - "to": [ - 5.5198, - 0.2047 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5198, - 0.2047 - ], - "tag": null, - "to": [ - 5.5119, - 0.2004 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5119, - 0.2004 - ], - "tag": null, - "to": [ - 5.504, - 0.1961 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.504, - 0.1961 - ], - "tag": null, - "to": [ - 5.496, - 0.1918 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.496, - 0.1918 - ], - "tag": null, - "to": [ - 5.4881, - 0.1875 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4881, - 0.1875 - ], - "tag": null, - "to": [ - 5.4801, - 0.1833 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4801, - 0.1833 - ], - "tag": null, - "to": [ - 5.4722, - 0.1792 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4722, - 0.1792 - ], - "tag": null, - "to": [ - 5.4642, - 0.175 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4642, - 0.175 - ], - "tag": null, - "to": [ - 5.4563, - 0.1709 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4563, - 0.1709 - ], - "tag": null, - "to": [ - 5.4483, - 0.1669 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4483, - 0.1669 - ], - "tag": null, - "to": [ - 5.4403, - 0.1628 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4403, - 0.1628 - ], - "tag": null, - "to": [ - 5.4324, - 0.1588 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4324, - 0.1588 - ], - "tag": null, - "to": [ - 5.4244, - 0.1549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4244, - 0.1549 - ], - "tag": null, - "to": [ - 5.4164, - 0.151 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4164, - 0.151 - ], - "tag": null, - "to": [ - 5.4084, - 0.1471 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4084, - 0.1471 - ], - "tag": null, - "to": [ - 5.4004, - 0.1433 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4004, - 0.1433 - ], - "tag": null, - "to": [ - 5.3924, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3924, - 0.1395 - ], - "tag": null, - "to": [ - 5.3845, - 0.1357 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3845, - 0.1357 - ], - "tag": null, - "to": [ - 5.3765, - 0.132 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3765, - 0.132 - ], - "tag": null, - "to": [ - 5.3685, - 0.1283 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3685, - 0.1283 - ], - "tag": null, - "to": [ - 5.3605, - 0.1246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3605, - 0.1246 - ], - "tag": null, - "to": [ - 5.3525, - 0.121 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3525, - 0.121 - ], - "tag": null, - "to": [ - 5.3444, - 0.1174 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3444, - 0.1174 - ], - "tag": null, - "to": [ - 5.3364, - 0.1139 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3364, - 0.1139 - ], - "tag": null, - "to": [ - 5.3284, - 0.1104 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3284, - 0.1104 - ], - "tag": null, - "to": [ - 5.3204, - 0.107 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3204, - 0.107 - ], - "tag": null, - "to": [ - 5.3124, - 0.1036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3124, - 0.1036 - ], - "tag": null, - "to": [ - 5.3044, - 0.1002 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3044, - 0.1002 - ], - "tag": null, - "to": [ - 5.2963, - 0.0969 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2963, - 0.0969 - ], - "tag": null, - "to": [ - 5.2883, - 0.0936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2883, - 0.0936 - ], - "tag": null, - "to": [ - 5.2803, - 0.0903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2803, - 0.0903 - ], - "tag": null, - "to": [ - 5.2722, - 0.0871 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2722, - 0.0871 - ], - "tag": null, - "to": [ - 5.2642, - 0.084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2642, - 0.084 - ], - "tag": null, - "to": [ - 5.2562, - 0.0808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2562, - 0.0808 - ], - "tag": null, - "to": [ - 5.2481, - 0.0778 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2481, - 0.0778 - ], - "tag": null, - "to": [ - 5.2401, - 0.0747 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2401, - 0.0747 - ], - "tag": null, - "to": [ - 5.2321, - 0.0717 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2321, - 0.0717 - ], - "tag": null, - "to": [ - 5.224, - 0.0688 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.224, - 0.0688 - ], - "tag": null, - "to": [ - 5.216, - 0.0659 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.216, - 0.0659 - ], - "tag": null, - "to": [ - 5.2079, - 0.063 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2079, - 0.063 - ], - "tag": null, - "to": [ - 5.1999, - 0.0602 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1999, - 0.0602 - ], - "tag": null, - "to": [ - 5.1918, - 0.0575 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1918, - 0.0575 - ], - "tag": null, - "to": [ - 5.1837, - 0.0547 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1837, - 0.0547 - ], - "tag": null, - "to": [ - 5.1757, - 0.0521 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1757, - 0.0521 - ], - "tag": null, - "to": [ - 5.1676, - 0.0494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1676, - 0.0494 - ], - "tag": null, - "to": [ - 5.1596, - 0.0469 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1596, - 0.0469 - ], - "tag": null, - "to": [ - 5.1515, - 0.0443 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1515, - 0.0443 - ], - "tag": null, - "to": [ - 5.1434, - 0.0419 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1434, - 0.0419 - ], - "tag": null, - "to": [ - 5.1354, - 0.0394 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1354, - 0.0394 - ], - "tag": null, - "to": [ - 5.1273, - 0.0371 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1273, - 0.0371 - ], - "tag": null, - "to": [ - 5.1192, - 0.0347 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1192, - 0.0347 - ], - "tag": null, - "to": [ - 5.1112, - 0.0325 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1112, - 0.0325 - ], - "tag": null, - "to": [ - 5.1031, - 0.0303 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1031, - 0.0303 - ], - "tag": null, - "to": [ - 5.095, - 0.0281 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.095, - 0.0281 - ], - "tag": null, - "to": [ - 5.0869, - 0.026 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0869, - 0.026 - ], - "tag": null, - "to": [ - 5.0789, - 0.0239 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0789, - 0.0239 - ], - "tag": null, - "to": [ - 5.0708, - 0.022 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0708, - 0.022 - ], - "tag": null, - "to": [ - 5.0627, - 0.02 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0627, - 0.02 - ], - "tag": null, - "to": [ - 5.0546, - 0.0182 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0546, - 0.0182 - ], - "tag": null, - "to": [ - 5.0466, - 0.0164 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0466, - 0.0164 - ], - "tag": null, - "to": [ - 5.0385, - 0.0146 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0385, - 0.0146 - ], - "tag": null, - "to": [ - 5.0304, - 0.013 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0304, - 0.013 - ], - "tag": null, - "to": [ - 5.0223, - 0.0114 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0223, - 0.0114 - ], - "tag": null, - "to": [ - 5.0142, - 0.0098 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0142, - 0.0098 - ], - "tag": null, - "to": [ - 5.0061, - 0.0084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0061, - 0.0084 - ], - "tag": null, - "to": [ - 4.9981, - 0.007 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9981, - 0.007 - ], - "tag": null, - "to": [ - 4.99, - 0.0058 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.99, - 0.0058 - ], - "tag": null, - "to": [ - 4.9819, - 0.0046 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9819, - 0.0046 - ], - "tag": null, - "to": [ - 4.9738, - 0.0035 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9738, - 0.0035 - ], - "tag": null, - "to": [ - 4.9657, - 0.0025 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9657, - 0.0025 - ], - "tag": null, - "to": [ - 4.9576, - 0.0016 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9576, - 0.0016 - ], - "tag": null, - "to": [ - 4.9496, - 0.0009 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9496, - 0.0009 - ], - "tag": null, - "to": [ - 4.9415, - 0.0003 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9415, - 0.0003 - ], - "tag": null, - "to": [ - 4.9334, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "ccw": true, - "center": [ - -0.0, - -0.0 - ], - "from": [ - 4.9334, - 0.0 - ], - "radius": 4.933386259126019, - "tag": null, - "to": [ - 4.8356, - 0.9775 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8356, - 0.9775 - ], - "tag": null, - "to": [ - 4.8436, - 0.9788 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8436, - 0.9788 - ], - "tag": null, - "to": [ - 4.8516, - 0.9799 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8516, - 0.9799 - ], - "tag": null, - "to": [ - 4.8597, - 0.9808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8597, - 0.9808 - ], - "tag": null, - "to": [ - 4.8678, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8678, - 0.9815 - ], - "tag": null, - "to": [ - 4.8759, - 0.9821 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8759, - 0.9821 - ], - "tag": null, - "to": [ - 4.884, - 0.9827 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.884, - 0.9827 - ], - "tag": null, - "to": [ - 4.8922, - 0.9831 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8922, - 0.9831 - ], - "tag": null, - "to": [ - 4.9004, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9004, - 0.9835 - ], - "tag": null, - "to": [ - 4.9086, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9086, - 0.9837 - ], - "tag": null, - "to": [ - 4.9168, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9168, - 0.9839 - ], - "tag": null, - "to": [ - 4.925, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.925, - 0.984 - ], - "tag": null, - "to": [ - 4.9332, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9332, - 0.984 - ], - "tag": null, - "to": [ - 4.9415, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9415, - 0.984 - ], - "tag": null, - "to": [ - 4.9497, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9497, - 0.9839 - ], - "tag": null, - "to": [ - 4.958, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.958, - 0.9837 - ], - "tag": null, - "to": [ - 4.9663, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9663, - 0.9835 - ], - "tag": null, - "to": [ - 4.9746, - 0.9832 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9746, - 0.9832 - ], - "tag": null, - "to": [ - 4.9829, - 0.9829 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9829, - 0.9829 - ], - "tag": null, - "to": [ - 4.9912, - 0.9825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9912, - 0.9825 - ], - "tag": null, - "to": [ - 4.9996, - 0.982 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9996, - 0.982 - ], - "tag": null, - "to": [ - 5.0079, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0079, - 0.9815 - ], - "tag": null, - "to": [ - 5.0163, - 0.9809 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0163, - 0.9809 - ], - "tag": null, - "to": [ - 5.0246, - 0.9803 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0246, - 0.9803 - ], - "tag": null, - "to": [ - 5.033, - 0.9796 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.033, - 0.9796 - ], - "tag": null, - "to": [ - 5.0414, - 0.9789 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0414, - 0.9789 - ], - "tag": null, - "to": [ - 5.0497, - 0.9781 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0497, - 0.9781 - ], - "tag": null, - "to": [ - 5.0581, - 0.9773 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0581, - 0.9773 - ], - "tag": null, - "to": [ - 5.0665, - 0.9764 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0665, - 0.9764 - ], - "tag": null, - "to": [ - 5.075, - 0.9755 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.075, - 0.9755 - ], - "tag": null, - "to": [ - 5.0834, - 0.9745 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0834, - 0.9745 - ], - "tag": null, - "to": [ - 5.0918, - 0.9735 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0918, - 0.9735 - ], - "tag": null, - "to": [ - 5.1002, - 0.9724 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1002, - 0.9724 - ], - "tag": null, - "to": [ - 5.1087, - 0.9713 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1087, - 0.9713 - ], - "tag": null, - "to": [ - 5.1171, - 0.9701 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1171, - 0.9701 - ], - "tag": null, - "to": [ - 5.1256, - 0.9689 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1256, - 0.9689 - ], - "tag": null, - "to": [ - 5.1341, - 0.9677 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1341, - 0.9677 - ], - "tag": null, - "to": [ - 5.1425, - 0.9664 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1425, - 0.9664 - ], - "tag": null, - "to": [ - 5.151, - 0.9651 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.151, - 0.9651 - ], - "tag": null, - "to": [ - 5.1595, - 0.9637 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1595, - 0.9637 - ], - "tag": null, - "to": [ - 5.168, - 0.9623 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.168, - 0.9623 - ], - "tag": null, - "to": [ - 5.1765, - 0.9608 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1765, - 0.9608 - ], - "tag": null, - "to": [ - 5.185, - 0.9593 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.185, - 0.9593 - ], - "tag": null, - "to": [ - 5.1935, - 0.9577 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1935, - 0.9577 - ], - "tag": null, - "to": [ - 5.202, - 0.9561 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.202, - 0.9561 - ], - "tag": null, - "to": [ - 5.2105, - 0.9545 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2105, - 0.9545 - ], - "tag": null, - "to": [ - 5.219, - 0.9528 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.219, - 0.9528 - ], - "tag": null, - "to": [ - 5.2276, - 0.9511 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2276, - 0.9511 - ], - "tag": null, - "to": [ - 5.2361, - 0.9494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2361, - 0.9494 - ], - "tag": null, - "to": [ - 5.2447, - 0.9476 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2447, - 0.9476 - ], - "tag": null, - "to": [ - 5.2532, - 0.9457 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2532, - 0.9457 - ], - "tag": null, - "to": [ - 5.2617, - 0.9439 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2617, - 0.9439 - ], - "tag": null, - "to": [ - 5.2703, - 0.942 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2703, - 0.942 - ], - "tag": null, - "to": [ - 5.2789, - 0.94 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2789, - 0.94 - ], - "tag": null, - "to": [ - 5.2874, - 0.938 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2874, - 0.938 - ], - "tag": null, - "to": [ - 5.296, - 0.936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.296, - 0.936 - ], - "tag": null, - "to": [ - 5.3046, - 0.9339 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3046, - 0.9339 - ], - "tag": null, - "to": [ - 5.3132, - 0.9318 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3132, - 0.9318 - ], - "tag": null, - "to": [ - 5.3217, - 0.9297 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3217, - 0.9297 - ], - "tag": null, - "to": [ - 5.3303, - 0.9275 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3303, - 0.9275 - ], - "tag": null, - "to": [ - 5.3389, - 0.9253 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3389, - 0.9253 - ], - "tag": null, - "to": [ - 5.3475, - 0.923 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3475, - 0.923 - ], - "tag": null, - "to": [ - 5.3561, - 0.9207 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3561, - 0.9207 - ], - "tag": null, - "to": [ - 5.3647, - 0.9184 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3647, - 0.9184 - ], - "tag": null, - "to": [ - 5.3733, - 0.916 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3733, - 0.916 - ], - "tag": null, - "to": [ - 5.3819, - 0.9136 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3819, - 0.9136 - ], - "tag": null, - "to": [ - 5.3906, - 0.9112 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3906, - 0.9112 - ], - "tag": null, - "to": [ - 5.3992, - 0.9087 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3992, - 0.9087 - ], - "tag": null, - "to": [ - 5.4078, - 0.9062 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4078, - 0.9062 - ], - "tag": null, - "to": [ - 5.4164, - 0.9036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4164, - 0.9036 - ], - "tag": null, - "to": [ - 5.425, - 0.901 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.425, - 0.901 - ], - "tag": null, - "to": [ - 5.4337, - 0.8984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4337, - 0.8984 - ], - "tag": null, - "to": [ - 5.4423, - 0.8958 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4423, - 0.8958 - ], - "tag": null, - "to": [ - 5.4509, - 0.8931 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4509, - 0.8931 - ], - "tag": null, - "to": [ - 5.4596, - 0.8903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4596, - 0.8903 - ], - "tag": null, - "to": [ - 5.4682, - 0.8876 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4682, - 0.8876 - ], - "tag": null, - "to": [ - 5.4769, - 0.8848 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4769, - 0.8848 - ], - "tag": null, - "to": [ - 5.4855, - 0.8819 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4855, - 0.8819 - ], - "tag": null, - "to": [ - 5.4942, - 0.8791 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4942, - 0.8791 - ], - "tag": null, - "to": [ - 5.5028, - 0.8762 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5028, - 0.8762 - ], - "tag": null, - "to": [ - 5.5115, - 0.8732 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5115, - 0.8732 - ], - "tag": null, - "to": [ - 5.5201, - 0.8703 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5201, - 0.8703 - ], - "tag": null, - "to": [ - 5.5288, - 0.8672 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5288, - 0.8672 - ], - "tag": null, - "to": [ - 5.5374, - 0.8642 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5374, - 0.8642 - ], - "tag": null, - "to": [ - 5.5461, - 0.8611 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5461, - 0.8611 - ], - "tag": null, - "to": [ - 5.5548, - 0.858 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5548, - 0.858 - ], - "tag": null, - "to": [ - 5.5634, - 0.8549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5634, - 0.8549 - ], - "tag": null, - "to": [ - 5.5721, - 0.8517 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5721, - 0.8517 - ], - "tag": null, - "to": [ - 5.5808, - 0.8485 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5808, - 0.8485 - ], - "tag": null, - "to": [ - 5.5894, - 0.8452 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5894, - 0.8452 - ], - "tag": null, - "to": [ - 5.5981, - 0.842 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5981, - 0.842 - ], - "tag": null, - "to": [ - 5.6068, - 0.8386 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6068, - 0.8386 - ], - "tag": null, - "to": [ - 5.6154, - 0.8353 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6154, - 0.8353 - ], - "tag": null, - "to": [ - 5.6241, - 0.8319 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6241, - 0.8319 - ], - "tag": null, - "to": [ - 5.6328, - 0.8285 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6328, - 0.8285 - ], - "tag": null, - "to": [ - 5.6415, - 0.825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6415, - 0.825 - ], - "tag": null, - "to": [ - 5.6502, - 0.8216 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6502, - 0.8216 - ], - "tag": null, - "to": [ - 5.6588, - 0.8181 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6588, - 0.8181 - ], - "tag": null, - "to": [ - 5.6675, - 0.8145 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6675, - 0.8145 - ], - "tag": null, - "to": [ - 5.6762, - 0.8109 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6762, - 0.8109 - ], - "tag": null, - "to": [ - 5.6849, - 0.8073 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6849, - 0.8073 - ], - "tag": null, - "to": [ - 5.6936, - 0.8037 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6936, - 0.8037 - ], - "tag": null, - "to": [ - 5.7399, - 0.3404 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "artifactId": "[uuid]", - "id": "[uuid]", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Mm" - } - }, - "type": "plane", - "value": "XY", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - } - }, - "start": { - "from": [ - 5.7399, - 0.3404 - ], - "to": [ - 5.7399, - 0.3404 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" - }, - "sectional": false - } - }, - { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7399, - 0.3404 - ], - "tag": null, - "to": [ - 5.7321, - 0.3351 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7321, - 0.3351 - ], - "tag": null, - "to": [ - 5.7243, - 0.3299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7243, - 0.3299 - ], - "tag": null, - "to": [ - 5.7165, - 0.3246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7165, - 0.3246 - ], - "tag": null, - "to": [ - 5.7087, - 0.3194 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7087, - 0.3194 - ], - "tag": null, - "to": [ - 5.7009, - 0.3143 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7009, - 0.3143 - ], - "tag": null, - "to": [ - 5.6931, - 0.3091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6931, - 0.3091 - ], - "tag": null, - "to": [ - 5.6853, - 0.3041 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6853, - 0.3041 - ], - "tag": null, - "to": [ - 5.6775, - 0.299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6775, - 0.299 - ], - "tag": null, - "to": [ - 5.6696, - 0.294 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6696, - 0.294 - ], - "tag": null, - "to": [ - 5.6618, - 0.289 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6618, - 0.289 - ], - "tag": null, - "to": [ - 5.6539, - 0.284 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6539, - 0.284 - ], - "tag": null, - "to": [ - 5.6461, - 0.279 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6461, - 0.279 - ], - "tag": null, - "to": [ - 5.6382, - 0.2741 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6382, - 0.2741 - ], - "tag": null, - "to": [ - 5.6304, - 0.2693 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6304, - 0.2693 - ], - "tag": null, - "to": [ - 5.6225, - 0.2644 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6225, - 0.2644 - ], - "tag": null, - "to": [ - 5.6146, - 0.2597 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6146, - 0.2597 - ], - "tag": null, - "to": [ - 5.6068, - 0.2549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6068, - 0.2549 - ], - "tag": null, - "to": [ - 5.5989, - 0.2502 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5989, - 0.2502 - ], - "tag": null, - "to": [ - 5.591, - 0.2455 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.591, - 0.2455 - ], - "tag": null, - "to": [ - 5.5831, - 0.2408 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5831, - 0.2408 - ], - "tag": null, - "to": [ - 5.5752, - 0.2362 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5752, - 0.2362 - ], - "tag": null, - "to": [ - 5.5673, - 0.2316 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5673, - 0.2316 - ], - "tag": null, - "to": [ - 5.5594, - 0.227 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5594, - 0.227 - ], - "tag": null, - "to": [ - 5.5515, - 0.2225 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5515, - 0.2225 - ], - "tag": null, - "to": [ - 5.5436, - 0.218 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5436, - 0.218 - ], - "tag": null, - "to": [ - 5.5357, - 0.2135 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5357, - 0.2135 - ], - "tag": null, - "to": [ - 5.5277, - 0.2091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5277, - 0.2091 - ], - "tag": null, - "to": [ - 5.5198, - 0.2047 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5198, - 0.2047 - ], - "tag": null, - "to": [ - 5.5119, - 0.2004 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5119, - 0.2004 - ], - "tag": null, - "to": [ - 5.504, - 0.1961 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.504, - 0.1961 - ], - "tag": null, - "to": [ - 5.496, - 0.1918 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.496, - 0.1918 - ], - "tag": null, - "to": [ - 5.4881, - 0.1875 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4881, - 0.1875 - ], - "tag": null, - "to": [ - 5.4801, - 0.1833 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4801, - 0.1833 - ], - "tag": null, - "to": [ - 5.4722, - 0.1792 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4722, - 0.1792 - ], - "tag": null, - "to": [ - 5.4642, - 0.175 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4642, - 0.175 - ], - "tag": null, - "to": [ - 5.4563, - 0.1709 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4563, - 0.1709 - ], - "tag": null, - "to": [ - 5.4483, - 0.1669 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4483, - 0.1669 - ], - "tag": null, - "to": [ - 5.4403, - 0.1628 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4403, - 0.1628 - ], - "tag": null, - "to": [ - 5.4324, - 0.1588 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4324, - 0.1588 - ], - "tag": null, - "to": [ - 5.4244, - 0.1549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4244, - 0.1549 - ], - "tag": null, - "to": [ - 5.4164, - 0.151 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4164, - 0.151 - ], - "tag": null, - "to": [ - 5.4084, - 0.1471 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4084, - 0.1471 - ], - "tag": null, - "to": [ - 5.4004, - 0.1433 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4004, - 0.1433 - ], - "tag": null, - "to": [ - 5.3924, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3924, - 0.1395 - ], - "tag": null, - "to": [ - 5.3845, - 0.1357 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3845, - 0.1357 - ], - "tag": null, - "to": [ - 5.3765, - 0.132 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3765, - 0.132 - ], - "tag": null, - "to": [ - 5.3685, - 0.1283 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3685, - 0.1283 - ], - "tag": null, - "to": [ - 5.3605, - 0.1246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3605, - 0.1246 - ], - "tag": null, - "to": [ - 5.3525, - 0.121 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3525, - 0.121 - ], - "tag": null, - "to": [ - 5.3444, - 0.1174 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3444, - 0.1174 - ], - "tag": null, - "to": [ - 5.3364, - 0.1139 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3364, - 0.1139 - ], - "tag": null, - "to": [ - 5.3284, - 0.1104 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3284, - 0.1104 - ], - "tag": null, - "to": [ - 5.3204, - 0.107 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3204, - 0.107 - ], - "tag": null, - "to": [ - 5.3124, - 0.1036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3124, - 0.1036 - ], - "tag": null, - "to": [ - 5.3044, - 0.1002 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3044, - 0.1002 - ], - "tag": null, - "to": [ - 5.2963, - 0.0969 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2963, - 0.0969 - ], - "tag": null, - "to": [ - 5.2883, - 0.0936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2883, - 0.0936 - ], - "tag": null, - "to": [ - 5.2803, - 0.0903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2803, - 0.0903 - ], - "tag": null, - "to": [ - 5.2722, - 0.0871 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2722, - 0.0871 - ], - "tag": null, - "to": [ - 5.2642, - 0.084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2642, - 0.084 - ], - "tag": null, - "to": [ - 5.2562, - 0.0808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2562, - 0.0808 - ], - "tag": null, - "to": [ - 5.2481, - 0.0778 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2481, - 0.0778 - ], - "tag": null, - "to": [ - 5.2401, - 0.0747 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2401, - 0.0747 - ], - "tag": null, - "to": [ - 5.2321, - 0.0717 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2321, - 0.0717 - ], - "tag": null, - "to": [ - 5.224, - 0.0688 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.224, - 0.0688 - ], - "tag": null, - "to": [ - 5.216, - 0.0659 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.216, - 0.0659 - ], - "tag": null, - "to": [ - 5.2079, - 0.063 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2079, - 0.063 - ], - "tag": null, - "to": [ - 5.1999, - 0.0602 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1999, - 0.0602 - ], - "tag": null, - "to": [ - 5.1918, - 0.0575 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1918, - 0.0575 - ], - "tag": null, - "to": [ - 5.1837, - 0.0547 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1837, - 0.0547 - ], - "tag": null, - "to": [ - 5.1757, - 0.0521 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1757, - 0.0521 - ], - "tag": null, - "to": [ - 5.1676, - 0.0494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1676, - 0.0494 - ], - "tag": null, - "to": [ - 5.1596, - 0.0469 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1596, - 0.0469 - ], - "tag": null, - "to": [ - 5.1515, - 0.0443 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1515, - 0.0443 - ], - "tag": null, - "to": [ - 5.1434, - 0.0419 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1434, - 0.0419 - ], - "tag": null, - "to": [ - 5.1354, - 0.0394 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1354, - 0.0394 - ], - "tag": null, - "to": [ - 5.1273, - 0.0371 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1273, - 0.0371 - ], - "tag": null, - "to": [ - 5.1192, - 0.0347 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1192, - 0.0347 - ], - "tag": null, - "to": [ - 5.1112, - 0.0325 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1112, - 0.0325 - ], - "tag": null, - "to": [ - 5.1031, - 0.0303 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1031, - 0.0303 - ], - "tag": null, - "to": [ - 5.095, - 0.0281 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.095, - 0.0281 - ], - "tag": null, - "to": [ - 5.0869, - 0.026 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0869, - 0.026 - ], - "tag": null, - "to": [ - 5.0789, - 0.0239 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0789, - 0.0239 - ], - "tag": null, - "to": [ - 5.0708, - 0.022 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0708, - 0.022 - ], - "tag": null, - "to": [ - 5.0627, - 0.02 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0627, - 0.02 - ], - "tag": null, - "to": [ - 5.0546, - 0.0182 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0546, - 0.0182 - ], - "tag": null, - "to": [ - 5.0466, - 0.0164 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0466, - 0.0164 - ], - "tag": null, - "to": [ - 5.0385, - 0.0146 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0385, - 0.0146 - ], - "tag": null, - "to": [ - 5.0304, - 0.013 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0304, - 0.013 - ], - "tag": null, - "to": [ - 5.0223, - 0.0114 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0223, - 0.0114 - ], - "tag": null, - "to": [ - 5.0142, - 0.0098 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0142, - 0.0098 - ], - "tag": null, - "to": [ - 5.0061, - 0.0084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0061, - 0.0084 - ], - "tag": null, - "to": [ - 4.9981, - 0.007 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9981, - 0.007 - ], - "tag": null, - "to": [ - 4.99, - 0.0058 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.99, - 0.0058 - ], - "tag": null, - "to": [ - 4.9819, - 0.0046 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9819, - 0.0046 - ], - "tag": null, - "to": [ - 4.9738, - 0.0035 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9738, - 0.0035 - ], - "tag": null, - "to": [ - 4.9657, - 0.0025 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9657, - 0.0025 - ], - "tag": null, - "to": [ - 4.9576, - 0.0016 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9576, - 0.0016 - ], - "tag": null, - "to": [ - 4.9496, - 0.0009 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9496, - 0.0009 - ], - "tag": null, - "to": [ - 4.9415, - 0.0003 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9415, - 0.0003 - ], - "tag": null, - "to": [ - 4.9334, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "ccw": true, - "center": [ - -0.0, - -0.0 - ], - "from": [ - 4.9334, - 0.0 - ], - "radius": 4.933386259126019, - "tag": null, - "to": [ - 4.8356, - 0.9775 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8356, - 0.9775 - ], - "tag": null, - "to": [ - 4.8436, - 0.9788 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8436, - 0.9788 - ], - "tag": null, - "to": [ - 4.8516, - 0.9799 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8516, - 0.9799 - ], - "tag": null, - "to": [ - 4.8597, - 0.9808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8597, - 0.9808 - ], - "tag": null, - "to": [ - 4.8678, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8678, - 0.9815 - ], - "tag": null, - "to": [ - 4.8759, - 0.9821 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8759, - 0.9821 - ], - "tag": null, - "to": [ - 4.884, - 0.9827 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.884, - 0.9827 - ], - "tag": null, - "to": [ - 4.8922, - 0.9831 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8922, - 0.9831 - ], - "tag": null, - "to": [ - 4.9004, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9004, - 0.9835 - ], - "tag": null, - "to": [ - 4.9086, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9086, - 0.9837 - ], - "tag": null, - "to": [ - 4.9168, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9168, - 0.9839 - ], - "tag": null, - "to": [ - 4.925, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.925, - 0.984 - ], - "tag": null, - "to": [ - 4.9332, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9332, - 0.984 - ], - "tag": null, - "to": [ - 4.9415, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9415, - 0.984 - ], - "tag": null, - "to": [ - 4.9497, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9497, - 0.9839 - ], - "tag": null, - "to": [ - 4.958, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.958, - 0.9837 - ], - "tag": null, - "to": [ - 4.9663, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9663, - 0.9835 - ], - "tag": null, - "to": [ - 4.9746, - 0.9832 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9746, - 0.9832 - ], - "tag": null, - "to": [ - 4.9829, - 0.9829 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9829, - 0.9829 - ], - "tag": null, - "to": [ - 4.9912, - 0.9825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9912, - 0.9825 - ], - "tag": null, - "to": [ - 4.9996, - 0.982 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9996, - 0.982 - ], - "tag": null, - "to": [ - 5.0079, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0079, - 0.9815 - ], - "tag": null, - "to": [ - 5.0163, - 0.9809 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0163, - 0.9809 - ], - "tag": null, - "to": [ - 5.0246, - 0.9803 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0246, - 0.9803 - ], - "tag": null, - "to": [ - 5.033, - 0.9796 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.033, - 0.9796 - ], - "tag": null, - "to": [ - 5.0414, - 0.9789 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0414, - 0.9789 - ], - "tag": null, - "to": [ - 5.0497, - 0.9781 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0497, - 0.9781 - ], - "tag": null, - "to": [ - 5.0581, - 0.9773 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0581, - 0.9773 - ], - "tag": null, - "to": [ - 5.0665, - 0.9764 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0665, - 0.9764 - ], - "tag": null, - "to": [ - 5.075, - 0.9755 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.075, - 0.9755 - ], - "tag": null, - "to": [ - 5.0834, - 0.9745 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0834, - 0.9745 - ], - "tag": null, - "to": [ - 5.0918, - 0.9735 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0918, - 0.9735 - ], - "tag": null, - "to": [ - 5.1002, - 0.9724 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1002, - 0.9724 - ], - "tag": null, - "to": [ - 5.1087, - 0.9713 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1087, - 0.9713 - ], - "tag": null, - "to": [ - 5.1171, - 0.9701 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1171, - 0.9701 - ], - "tag": null, - "to": [ - 5.1256, - 0.9689 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1256, - 0.9689 - ], - "tag": null, - "to": [ - 5.1341, - 0.9677 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1341, - 0.9677 - ], - "tag": null, - "to": [ - 5.1425, - 0.9664 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1425, - 0.9664 - ], - "tag": null, - "to": [ - 5.151, - 0.9651 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.151, - 0.9651 - ], - "tag": null, - "to": [ - 5.1595, - 0.9637 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1595, - 0.9637 - ], - "tag": null, - "to": [ - 5.168, - 0.9623 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.168, - 0.9623 - ], - "tag": null, - "to": [ - 5.1765, - 0.9608 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1765, - 0.9608 - ], - "tag": null, - "to": [ - 5.185, - 0.9593 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.185, - 0.9593 - ], - "tag": null, - "to": [ - 5.1935, - 0.9577 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1935, - 0.9577 - ], - "tag": null, - "to": [ - 5.202, - 0.9561 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.202, - 0.9561 - ], - "tag": null, - "to": [ - 5.2105, - 0.9545 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2105, - 0.9545 - ], - "tag": null, - "to": [ - 5.219, - 0.9528 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.219, - 0.9528 - ], - "tag": null, - "to": [ - 5.2276, - 0.9511 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2276, - 0.9511 - ], - "tag": null, - "to": [ - 5.2361, - 0.9494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2361, - 0.9494 - ], - "tag": null, - "to": [ - 5.2447, - 0.9476 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2447, - 0.9476 - ], - "tag": null, - "to": [ - 5.2532, - 0.9457 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2532, - 0.9457 - ], - "tag": null, - "to": [ - 5.2617, - 0.9439 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2617, - 0.9439 - ], - "tag": null, - "to": [ - 5.2703, - 0.942 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2703, - 0.942 - ], - "tag": null, - "to": [ - 5.2789, - 0.94 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2789, - 0.94 - ], - "tag": null, - "to": [ - 5.2874, - 0.938 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2874, - 0.938 - ], - "tag": null, - "to": [ - 5.296, - 0.936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.296, - 0.936 - ], - "tag": null, - "to": [ - 5.3046, - 0.9339 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3046, - 0.9339 - ], - "tag": null, - "to": [ - 5.3132, - 0.9318 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3132, - 0.9318 - ], - "tag": null, - "to": [ - 5.3217, - 0.9297 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3217, - 0.9297 - ], - "tag": null, - "to": [ - 5.3303, - 0.9275 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3303, - 0.9275 - ], - "tag": null, - "to": [ - 5.3389, - 0.9253 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3389, - 0.9253 - ], - "tag": null, - "to": [ - 5.3475, - 0.923 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3475, - 0.923 - ], - "tag": null, - "to": [ - 5.3561, - 0.9207 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3561, - 0.9207 - ], - "tag": null, - "to": [ - 5.3647, - 0.9184 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3647, - 0.9184 - ], - "tag": null, - "to": [ - 5.3733, - 0.916 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3733, - 0.916 - ], - "tag": null, - "to": [ - 5.3819, - 0.9136 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3819, - 0.9136 - ], - "tag": null, - "to": [ - 5.3906, - 0.9112 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3906, - 0.9112 - ], - "tag": null, - "to": [ - 5.3992, - 0.9087 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3992, - 0.9087 - ], - "tag": null, - "to": [ - 5.4078, - 0.9062 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4078, - 0.9062 - ], - "tag": null, - "to": [ - 5.4164, - 0.9036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4164, - 0.9036 - ], - "tag": null, - "to": [ - 5.425, - 0.901 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.425, - 0.901 - ], - "tag": null, - "to": [ - 5.4337, - 0.8984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4337, - 0.8984 - ], - "tag": null, - "to": [ - 5.4423, - 0.8958 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4423, - 0.8958 - ], - "tag": null, - "to": [ - 5.4509, - 0.8931 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4509, - 0.8931 - ], - "tag": null, - "to": [ - 5.4596, - 0.8903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4596, - 0.8903 - ], - "tag": null, - "to": [ - 5.4682, - 0.8876 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4682, - 0.8876 - ], - "tag": null, - "to": [ - 5.4769, - 0.8848 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4769, - 0.8848 - ], - "tag": null, - "to": [ - 5.4855, - 0.8819 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4855, - 0.8819 - ], - "tag": null, - "to": [ - 5.4942, - 0.8791 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4942, - 0.8791 - ], - "tag": null, - "to": [ - 5.5028, - 0.8762 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5028, - 0.8762 - ], - "tag": null, - "to": [ - 5.5115, - 0.8732 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5115, - 0.8732 - ], - "tag": null, - "to": [ - 5.5201, - 0.8703 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5201, - 0.8703 - ], - "tag": null, - "to": [ - 5.5288, - 0.8672 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5288, - 0.8672 - ], - "tag": null, - "to": [ - 5.5374, - 0.8642 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5374, - 0.8642 - ], - "tag": null, - "to": [ - 5.5461, - 0.8611 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5461, - 0.8611 - ], - "tag": null, - "to": [ - 5.5548, - 0.858 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5548, - 0.858 - ], - "tag": null, - "to": [ - 5.5634, - 0.8549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5634, - 0.8549 - ], - "tag": null, - "to": [ - 5.5721, - 0.8517 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5721, - 0.8517 - ], - "tag": null, - "to": [ - 5.5808, - 0.8485 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5808, - 0.8485 - ], - "tag": null, - "to": [ - 5.5894, - 0.8452 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5894, - 0.8452 - ], - "tag": null, - "to": [ - 5.5981, - 0.842 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5981, - 0.842 - ], - "tag": null, - "to": [ - 5.6068, - 0.8386 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6068, - 0.8386 - ], - "tag": null, - "to": [ - 5.6154, - 0.8353 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6154, - 0.8353 - ], - "tag": null, - "to": [ - 5.6241, - 0.8319 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6241, - 0.8319 - ], - "tag": null, - "to": [ - 5.6328, - 0.8285 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6328, - 0.8285 - ], - "tag": null, - "to": [ - 5.6415, - 0.825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6415, - 0.825 - ], - "tag": null, - "to": [ - 5.6502, - 0.8216 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6502, - 0.8216 - ], - "tag": null, - "to": [ - 5.6588, - 0.8181 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6588, - 0.8181 - ], - "tag": null, - "to": [ - 5.6675, - 0.8145 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6675, - 0.8145 - ], - "tag": null, - "to": [ - 5.6762, - 0.8109 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6762, - 0.8109 - ], - "tag": null, - "to": [ - 5.6849, - 0.8073 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6849, - 0.8073 - ], - "tag": null, - "to": [ - 5.6936, - 0.8037 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6936, - 0.8037 - ], - "tag": null, - "to": [ - 5.7399, - 0.3404 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "artifactId": "[uuid]", - "id": "[uuid]", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Mm" - } - }, - "type": "plane", - "value": "XY", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - } - }, - "start": { - "from": [ - 5.7399, - 0.3404 - ], - "to": [ - 5.7399, - 0.3404 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" - }, - "sectional": false - } - }, - { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7399, - 0.3404 - ], - "tag": null, - "to": [ - 5.7321, - 0.3351 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7321, - 0.3351 - ], - "tag": null, - "to": [ - 5.7243, - 0.3299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7243, - 0.3299 - ], - "tag": null, - "to": [ - 5.7165, - 0.3246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7165, - 0.3246 - ], - "tag": null, - "to": [ - 5.7087, - 0.3194 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7087, - 0.3194 - ], - "tag": null, - "to": [ - 5.7009, - 0.3143 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7009, - 0.3143 - ], - "tag": null, - "to": [ - 5.6931, - 0.3091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6931, - 0.3091 - ], - "tag": null, - "to": [ - 5.6853, - 0.3041 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6853, - 0.3041 - ], - "tag": null, - "to": [ - 5.6775, - 0.299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6775, - 0.299 - ], - "tag": null, - "to": [ - 5.6696, - 0.294 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6696, - 0.294 - ], - "tag": null, - "to": [ - 5.6618, - 0.289 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6618, - 0.289 - ], - "tag": null, - "to": [ - 5.6539, - 0.284 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6539, - 0.284 - ], - "tag": null, - "to": [ - 5.6461, - 0.279 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6461, - 0.279 - ], - "tag": null, - "to": [ - 5.6382, - 0.2741 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6382, - 0.2741 - ], - "tag": null, - "to": [ - 5.6304, - 0.2693 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6304, - 0.2693 - ], - "tag": null, - "to": [ - 5.6225, - 0.2644 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6225, - 0.2644 - ], - "tag": null, - "to": [ - 5.6146, - 0.2597 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6146, - 0.2597 - ], - "tag": null, - "to": [ - 5.6068, - 0.2549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6068, - 0.2549 - ], - "tag": null, - "to": [ - 5.5989, - 0.2502 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5989, - 0.2502 - ], - "tag": null, - "to": [ - 5.591, - 0.2455 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.591, - 0.2455 - ], - "tag": null, - "to": [ - 5.5831, - 0.2408 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5831, - 0.2408 - ], - "tag": null, - "to": [ - 5.5752, - 0.2362 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5752, - 0.2362 - ], - "tag": null, - "to": [ - 5.5673, - 0.2316 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5673, - 0.2316 - ], - "tag": null, - "to": [ - 5.5594, - 0.227 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5594, - 0.227 - ], - "tag": null, - "to": [ - 5.5515, - 0.2225 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5515, - 0.2225 - ], - "tag": null, - "to": [ - 5.5436, - 0.218 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5436, - 0.218 - ], - "tag": null, - "to": [ - 5.5357, - 0.2135 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5357, - 0.2135 - ], - "tag": null, - "to": [ - 5.5277, - 0.2091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5277, - 0.2091 - ], - "tag": null, - "to": [ - 5.5198, - 0.2047 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5198, - 0.2047 - ], - "tag": null, - "to": [ - 5.5119, - 0.2004 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5119, - 0.2004 - ], - "tag": null, - "to": [ - 5.504, - 0.1961 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.504, - 0.1961 - ], - "tag": null, - "to": [ - 5.496, - 0.1918 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.496, - 0.1918 - ], - "tag": null, - "to": [ - 5.4881, - 0.1875 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4881, - 0.1875 - ], - "tag": null, - "to": [ - 5.4801, - 0.1833 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4801, - 0.1833 - ], - "tag": null, - "to": [ - 5.4722, - 0.1792 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4722, - 0.1792 - ], - "tag": null, - "to": [ - 5.4642, - 0.175 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4642, - 0.175 - ], - "tag": null, - "to": [ - 5.4563, - 0.1709 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4563, - 0.1709 - ], - "tag": null, - "to": [ - 5.4483, - 0.1669 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4483, - 0.1669 - ], - "tag": null, - "to": [ - 5.4403, - 0.1628 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4403, - 0.1628 - ], - "tag": null, - "to": [ - 5.4324, - 0.1588 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4324, - 0.1588 - ], - "tag": null, - "to": [ - 5.4244, - 0.1549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4244, - 0.1549 - ], - "tag": null, - "to": [ - 5.4164, - 0.151 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4164, - 0.151 - ], - "tag": null, - "to": [ - 5.4084, - 0.1471 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4084, - 0.1471 - ], - "tag": null, - "to": [ - 5.4004, - 0.1433 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4004, - 0.1433 - ], - "tag": null, - "to": [ - 5.3924, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3924, - 0.1395 - ], - "tag": null, - "to": [ - 5.3845, - 0.1357 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3845, - 0.1357 - ], - "tag": null, - "to": [ - 5.3765, - 0.132 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3765, - 0.132 - ], - "tag": null, - "to": [ - 5.3685, - 0.1283 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3685, - 0.1283 - ], - "tag": null, - "to": [ - 5.3605, - 0.1246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3605, - 0.1246 - ], - "tag": null, - "to": [ - 5.3525, - 0.121 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3525, - 0.121 - ], - "tag": null, - "to": [ - 5.3444, - 0.1174 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3444, - 0.1174 - ], - "tag": null, - "to": [ - 5.3364, - 0.1139 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3364, - 0.1139 - ], - "tag": null, - "to": [ - 5.3284, - 0.1104 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3284, - 0.1104 - ], - "tag": null, - "to": [ - 5.3204, - 0.107 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3204, - 0.107 - ], - "tag": null, - "to": [ - 5.3124, - 0.1036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3124, - 0.1036 - ], - "tag": null, - "to": [ - 5.3044, - 0.1002 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3044, - 0.1002 - ], - "tag": null, - "to": [ - 5.2963, - 0.0969 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2963, - 0.0969 - ], - "tag": null, - "to": [ - 5.2883, - 0.0936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2883, - 0.0936 - ], - "tag": null, - "to": [ - 5.2803, - 0.0903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2803, - 0.0903 - ], - "tag": null, - "to": [ - 5.2722, - 0.0871 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2722, - 0.0871 - ], - "tag": null, - "to": [ - 5.2642, - 0.084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2642, - 0.084 - ], - "tag": null, - "to": [ - 5.2562, - 0.0808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2562, - 0.0808 - ], - "tag": null, - "to": [ - 5.2481, - 0.0778 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2481, - 0.0778 - ], - "tag": null, - "to": [ - 5.2401, - 0.0747 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2401, - 0.0747 - ], - "tag": null, - "to": [ - 5.2321, - 0.0717 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2321, - 0.0717 - ], - "tag": null, - "to": [ - 5.224, - 0.0688 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.224, - 0.0688 - ], - "tag": null, - "to": [ - 5.216, - 0.0659 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.216, - 0.0659 - ], - "tag": null, - "to": [ - 5.2079, - 0.063 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2079, - 0.063 - ], - "tag": null, - "to": [ - 5.1999, - 0.0602 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1999, - 0.0602 - ], - "tag": null, - "to": [ - 5.1918, - 0.0575 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1918, - 0.0575 - ], - "tag": null, - "to": [ - 5.1837, - 0.0547 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1837, - 0.0547 - ], - "tag": null, - "to": [ - 5.1757, - 0.0521 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1757, - 0.0521 - ], - "tag": null, - "to": [ - 5.1676, - 0.0494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1676, - 0.0494 - ], - "tag": null, - "to": [ - 5.1596, - 0.0469 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1596, - 0.0469 - ], - "tag": null, - "to": [ - 5.1515, - 0.0443 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1515, - 0.0443 - ], - "tag": null, - "to": [ - 5.1434, - 0.0419 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1434, - 0.0419 - ], - "tag": null, - "to": [ - 5.1354, - 0.0394 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1354, - 0.0394 - ], - "tag": null, - "to": [ - 5.1273, - 0.0371 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1273, - 0.0371 - ], - "tag": null, - "to": [ - 5.1192, - 0.0347 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1192, - 0.0347 - ], - "tag": null, - "to": [ - 5.1112, - 0.0325 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1112, - 0.0325 - ], - "tag": null, - "to": [ - 5.1031, - 0.0303 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1031, - 0.0303 - ], - "tag": null, - "to": [ - 5.095, - 0.0281 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.095, - 0.0281 - ], - "tag": null, - "to": [ - 5.0869, - 0.026 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0869, - 0.026 - ], - "tag": null, - "to": [ - 5.0789, - 0.0239 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0789, - 0.0239 - ], - "tag": null, - "to": [ - 5.0708, - 0.022 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0708, - 0.022 - ], - "tag": null, - "to": [ - 5.0627, - 0.02 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0627, - 0.02 - ], - "tag": null, - "to": [ - 5.0546, - 0.0182 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0546, - 0.0182 - ], - "tag": null, - "to": [ - 5.0466, - 0.0164 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0466, - 0.0164 - ], - "tag": null, - "to": [ - 5.0385, - 0.0146 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0385, - 0.0146 - ], - "tag": null, - "to": [ - 5.0304, - 0.013 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0304, - 0.013 - ], - "tag": null, - "to": [ - 5.0223, - 0.0114 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0223, - 0.0114 - ], - "tag": null, - "to": [ - 5.0142, - 0.0098 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0142, - 0.0098 - ], - "tag": null, - "to": [ - 5.0061, - 0.0084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0061, - 0.0084 - ], - "tag": null, - "to": [ - 4.9981, - 0.007 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9981, - 0.007 - ], - "tag": null, - "to": [ - 4.99, - 0.0058 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.99, - 0.0058 - ], - "tag": null, - "to": [ - 4.9819, - 0.0046 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9819, - 0.0046 - ], - "tag": null, - "to": [ - 4.9738, - 0.0035 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9738, - 0.0035 - ], - "tag": null, - "to": [ - 4.9657, - 0.0025 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9657, - 0.0025 - ], - "tag": null, - "to": [ - 4.9576, - 0.0016 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9576, - 0.0016 - ], - "tag": null, - "to": [ - 4.9496, - 0.0009 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9496, - 0.0009 - ], - "tag": null, - "to": [ - 4.9415, - 0.0003 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9415, - 0.0003 - ], - "tag": null, - "to": [ - 4.9334, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "ccw": true, - "center": [ - -0.0, - -0.0 - ], - "from": [ - 4.9334, - 0.0 - ], - "radius": 4.933386259126019, - "tag": null, - "to": [ - 4.8356, - 0.9775 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8356, - 0.9775 - ], - "tag": null, - "to": [ - 4.8436, - 0.9788 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8436, - 0.9788 - ], - "tag": null, - "to": [ - 4.8516, - 0.9799 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8516, - 0.9799 - ], - "tag": null, - "to": [ - 4.8597, - 0.9808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8597, - 0.9808 - ], - "tag": null, - "to": [ - 4.8678, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8678, - 0.9815 - ], - "tag": null, - "to": [ - 4.8759, - 0.9821 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8759, - 0.9821 - ], - "tag": null, - "to": [ - 4.884, - 0.9827 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.884, - 0.9827 - ], - "tag": null, - "to": [ - 4.8922, - 0.9831 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8922, - 0.9831 - ], - "tag": null, - "to": [ - 4.9004, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9004, - 0.9835 - ], - "tag": null, - "to": [ - 4.9086, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9086, - 0.9837 - ], - "tag": null, - "to": [ - 4.9168, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9168, - 0.9839 - ], - "tag": null, - "to": [ - 4.925, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.925, - 0.984 - ], - "tag": null, - "to": [ - 4.9332, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9332, - 0.984 - ], - "tag": null, - "to": [ - 4.9415, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9415, - 0.984 - ], - "tag": null, - "to": [ - 4.9497, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9497, - 0.9839 - ], - "tag": null, - "to": [ - 4.958, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.958, - 0.9837 - ], - "tag": null, - "to": [ - 4.9663, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9663, - 0.9835 - ], - "tag": null, - "to": [ - 4.9746, - 0.9832 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9746, - 0.9832 - ], - "tag": null, - "to": [ - 4.9829, - 0.9829 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9829, - 0.9829 - ], - "tag": null, - "to": [ - 4.9912, - 0.9825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9912, - 0.9825 - ], - "tag": null, - "to": [ - 4.9996, - 0.982 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9996, - 0.982 - ], - "tag": null, - "to": [ - 5.0079, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0079, - 0.9815 - ], - "tag": null, - "to": [ - 5.0163, - 0.9809 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0163, - 0.9809 - ], - "tag": null, - "to": [ - 5.0246, - 0.9803 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0246, - 0.9803 - ], - "tag": null, - "to": [ - 5.033, - 0.9796 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.033, - 0.9796 - ], - "tag": null, - "to": [ - 5.0414, - 0.9789 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0414, - 0.9789 - ], - "tag": null, - "to": [ - 5.0497, - 0.9781 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0497, - 0.9781 - ], - "tag": null, - "to": [ - 5.0581, - 0.9773 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0581, - 0.9773 - ], - "tag": null, - "to": [ - 5.0665, - 0.9764 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0665, - 0.9764 - ], - "tag": null, - "to": [ - 5.075, - 0.9755 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.075, - 0.9755 - ], - "tag": null, - "to": [ - 5.0834, - 0.9745 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0834, - 0.9745 - ], - "tag": null, - "to": [ - 5.0918, - 0.9735 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0918, - 0.9735 - ], - "tag": null, - "to": [ - 5.1002, - 0.9724 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1002, - 0.9724 - ], - "tag": null, - "to": [ - 5.1087, - 0.9713 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1087, - 0.9713 - ], - "tag": null, - "to": [ - 5.1171, - 0.9701 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1171, - 0.9701 - ], - "tag": null, - "to": [ - 5.1256, - 0.9689 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1256, - 0.9689 - ], - "tag": null, - "to": [ - 5.1341, - 0.9677 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1341, - 0.9677 - ], - "tag": null, - "to": [ - 5.1425, - 0.9664 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1425, - 0.9664 - ], - "tag": null, - "to": [ - 5.151, - 0.9651 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.151, - 0.9651 - ], - "tag": null, - "to": [ - 5.1595, - 0.9637 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1595, - 0.9637 - ], - "tag": null, - "to": [ - 5.168, - 0.9623 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.168, - 0.9623 - ], - "tag": null, - "to": [ - 5.1765, - 0.9608 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1765, - 0.9608 - ], - "tag": null, - "to": [ - 5.185, - 0.9593 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.185, - 0.9593 - ], - "tag": null, - "to": [ - 5.1935, - 0.9577 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1935, - 0.9577 - ], - "tag": null, - "to": [ - 5.202, - 0.9561 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.202, - 0.9561 - ], - "tag": null, - "to": [ - 5.2105, - 0.9545 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2105, - 0.9545 - ], - "tag": null, - "to": [ - 5.219, - 0.9528 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.219, - 0.9528 - ], - "tag": null, - "to": [ - 5.2276, - 0.9511 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2276, - 0.9511 - ], - "tag": null, - "to": [ - 5.2361, - 0.9494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2361, - 0.9494 - ], - "tag": null, - "to": [ - 5.2447, - 0.9476 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2447, - 0.9476 - ], - "tag": null, - "to": [ - 5.2532, - 0.9457 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2532, - 0.9457 - ], - "tag": null, - "to": [ - 5.2617, - 0.9439 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2617, - 0.9439 - ], - "tag": null, - "to": [ - 5.2703, - 0.942 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2703, - 0.942 - ], - "tag": null, - "to": [ - 5.2789, - 0.94 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2789, - 0.94 - ], - "tag": null, - "to": [ - 5.2874, - 0.938 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2874, - 0.938 - ], - "tag": null, - "to": [ - 5.296, - 0.936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.296, - 0.936 - ], - "tag": null, - "to": [ - 5.3046, - 0.9339 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3046, - 0.9339 - ], - "tag": null, - "to": [ - 5.3132, - 0.9318 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3132, - 0.9318 - ], - "tag": null, - "to": [ - 5.3217, - 0.9297 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3217, - 0.9297 - ], - "tag": null, - "to": [ - 5.3303, - 0.9275 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3303, - 0.9275 - ], - "tag": null, - "to": [ - 5.3389, - 0.9253 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3389, - 0.9253 - ], - "tag": null, - "to": [ - 5.3475, - 0.923 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3475, - 0.923 - ], - "tag": null, - "to": [ - 5.3561, - 0.9207 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3561, - 0.9207 - ], - "tag": null, - "to": [ - 5.3647, - 0.9184 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3647, - 0.9184 - ], - "tag": null, - "to": [ - 5.3733, - 0.916 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3733, - 0.916 - ], - "tag": null, - "to": [ - 5.3819, - 0.9136 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3819, - 0.9136 - ], - "tag": null, - "to": [ - 5.3906, - 0.9112 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3906, - 0.9112 - ], - "tag": null, - "to": [ - 5.3992, - 0.9087 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3992, - 0.9087 - ], - "tag": null, - "to": [ - 5.4078, - 0.9062 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4078, - 0.9062 - ], - "tag": null, - "to": [ - 5.4164, - 0.9036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4164, - 0.9036 - ], - "tag": null, - "to": [ - 5.425, - 0.901 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.425, - 0.901 - ], - "tag": null, - "to": [ - 5.4337, - 0.8984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4337, - 0.8984 - ], - "tag": null, - "to": [ - 5.4423, - 0.8958 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4423, - 0.8958 - ], - "tag": null, - "to": [ - 5.4509, - 0.8931 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4509, - 0.8931 - ], - "tag": null, - "to": [ - 5.4596, - 0.8903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4596, - 0.8903 - ], - "tag": null, - "to": [ - 5.4682, - 0.8876 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4682, - 0.8876 - ], - "tag": null, - "to": [ - 5.4769, - 0.8848 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4769, - 0.8848 - ], - "tag": null, - "to": [ - 5.4855, - 0.8819 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4855, - 0.8819 - ], - "tag": null, - "to": [ - 5.4942, - 0.8791 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4942, - 0.8791 - ], - "tag": null, - "to": [ - 5.5028, - 0.8762 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5028, - 0.8762 - ], - "tag": null, - "to": [ - 5.5115, - 0.8732 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5115, - 0.8732 - ], - "tag": null, - "to": [ - 5.5201, - 0.8703 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5201, - 0.8703 - ], - "tag": null, - "to": [ - 5.5288, - 0.8672 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5288, - 0.8672 - ], - "tag": null, - "to": [ - 5.5374, - 0.8642 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5374, - 0.8642 - ], - "tag": null, - "to": [ - 5.5461, - 0.8611 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5461, - 0.8611 - ], - "tag": null, - "to": [ - 5.5548, - 0.858 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5548, - 0.858 - ], - "tag": null, - "to": [ - 5.5634, - 0.8549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5634, - 0.8549 - ], - "tag": null, - "to": [ - 5.5721, - 0.8517 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5721, - 0.8517 - ], - "tag": null, - "to": [ - 5.5808, - 0.8485 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5808, - 0.8485 - ], - "tag": null, - "to": [ - 5.5894, - 0.8452 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5894, - 0.8452 - ], - "tag": null, - "to": [ - 5.5981, - 0.842 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5981, - 0.842 - ], - "tag": null, - "to": [ - 5.6068, - 0.8386 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6068, - 0.8386 - ], - "tag": null, - "to": [ - 5.6154, - 0.8353 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6154, - 0.8353 - ], - "tag": null, - "to": [ - 5.6241, - 0.8319 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6241, - 0.8319 - ], - "tag": null, - "to": [ - 5.6328, - 0.8285 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6328, - 0.8285 - ], - "tag": null, - "to": [ - 5.6415, - 0.825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6415, - 0.825 - ], - "tag": null, - "to": [ - 5.6502, - 0.8216 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6502, - 0.8216 - ], - "tag": null, - "to": [ - 5.6588, - 0.8181 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6588, - 0.8181 - ], - "tag": null, - "to": [ - 5.6675, - 0.8145 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6675, - 0.8145 - ], - "tag": null, - "to": [ - 5.6762, - 0.8109 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6762, - 0.8109 - ], - "tag": null, - "to": [ - 5.6849, - 0.8073 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6849, - 0.8073 - ], - "tag": null, - "to": [ - 5.6936, - 0.8037 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6936, - 0.8037 - ], - "tag": null, - "to": [ - 5.7399, - 0.3404 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "artifactId": "[uuid]", - "id": "[uuid]", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Mm" - } - }, - "type": "plane", - "value": "XY", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - } - }, - "start": { - "from": [ - 5.7399, - 0.3404 - ], - "to": [ - 5.7399, - 0.3404 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" - }, - "sectional": false - } - }, - { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7399, - 0.3404 - ], - "tag": null, - "to": [ - 5.7321, - 0.3351 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7321, - 0.3351 - ], - "tag": null, - "to": [ - 5.7243, - 0.3299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7243, - 0.3299 - ], - "tag": null, - "to": [ - 5.7165, - 0.3246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7165, - 0.3246 - ], - "tag": null, - "to": [ - 5.7087, - 0.3194 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7087, - 0.3194 - ], - "tag": null, - "to": [ - 5.7009, - 0.3143 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7009, - 0.3143 - ], - "tag": null, - "to": [ - 5.6931, - 0.3091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6931, - 0.3091 - ], - "tag": null, - "to": [ - 5.6853, - 0.3041 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6853, - 0.3041 - ], - "tag": null, - "to": [ - 5.6775, - 0.299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6775, - 0.299 - ], - "tag": null, - "to": [ - 5.6696, - 0.294 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6696, - 0.294 - ], - "tag": null, - "to": [ - 5.6618, - 0.289 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6618, - 0.289 - ], - "tag": null, - "to": [ - 5.6539, - 0.284 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6539, - 0.284 - ], - "tag": null, - "to": [ - 5.6461, - 0.279 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6461, - 0.279 - ], - "tag": null, - "to": [ - 5.6382, - 0.2741 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6382, - 0.2741 - ], - "tag": null, - "to": [ - 5.6304, - 0.2693 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6304, - 0.2693 - ], - "tag": null, - "to": [ - 5.6225, - 0.2644 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6225, - 0.2644 - ], - "tag": null, - "to": [ - 5.6146, - 0.2597 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6146, - 0.2597 - ], - "tag": null, - "to": [ - 5.6068, - 0.2549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6068, - 0.2549 - ], - "tag": null, - "to": [ - 5.5989, - 0.2502 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5989, - 0.2502 - ], - "tag": null, - "to": [ - 5.591, - 0.2455 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.591, - 0.2455 - ], - "tag": null, - "to": [ - 5.5831, - 0.2408 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5831, - 0.2408 - ], - "tag": null, - "to": [ - 5.5752, - 0.2362 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5752, - 0.2362 - ], - "tag": null, - "to": [ - 5.5673, - 0.2316 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5673, - 0.2316 - ], - "tag": null, - "to": [ - 5.5594, - 0.227 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5594, - 0.227 - ], - "tag": null, - "to": [ - 5.5515, - 0.2225 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5515, - 0.2225 - ], - "tag": null, - "to": [ - 5.5436, - 0.218 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5436, - 0.218 - ], - "tag": null, - "to": [ - 5.5357, - 0.2135 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5357, - 0.2135 - ], - "tag": null, - "to": [ - 5.5277, - 0.2091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5277, - 0.2091 - ], - "tag": null, - "to": [ - 5.5198, - 0.2047 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5198, - 0.2047 - ], - "tag": null, - "to": [ - 5.5119, - 0.2004 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5119, - 0.2004 - ], - "tag": null, - "to": [ - 5.504, - 0.1961 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.504, - 0.1961 - ], - "tag": null, - "to": [ - 5.496, - 0.1918 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.496, - 0.1918 - ], - "tag": null, - "to": [ - 5.4881, - 0.1875 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4881, - 0.1875 - ], - "tag": null, - "to": [ - 5.4801, - 0.1833 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4801, - 0.1833 - ], - "tag": null, - "to": [ - 5.4722, - 0.1792 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4722, - 0.1792 - ], - "tag": null, - "to": [ - 5.4642, - 0.175 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4642, - 0.175 - ], - "tag": null, - "to": [ - 5.4563, - 0.1709 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4563, - 0.1709 - ], - "tag": null, - "to": [ - 5.4483, - 0.1669 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4483, - 0.1669 - ], - "tag": null, - "to": [ - 5.4403, - 0.1628 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4403, - 0.1628 - ], - "tag": null, - "to": [ - 5.4324, - 0.1588 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4324, - 0.1588 - ], - "tag": null, - "to": [ - 5.4244, - 0.1549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4244, - 0.1549 - ], - "tag": null, - "to": [ - 5.4164, - 0.151 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4164, - 0.151 - ], - "tag": null, - "to": [ - 5.4084, - 0.1471 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4084, - 0.1471 - ], - "tag": null, - "to": [ - 5.4004, - 0.1433 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4004, - 0.1433 - ], - "tag": null, - "to": [ - 5.3924, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3924, - 0.1395 - ], - "tag": null, - "to": [ - 5.3845, - 0.1357 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3845, - 0.1357 - ], - "tag": null, - "to": [ - 5.3765, - 0.132 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3765, - 0.132 - ], - "tag": null, - "to": [ - 5.3685, - 0.1283 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3685, - 0.1283 - ], - "tag": null, - "to": [ - 5.3605, - 0.1246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3605, - 0.1246 - ], - "tag": null, - "to": [ - 5.3525, - 0.121 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3525, - 0.121 - ], - "tag": null, - "to": [ - 5.3444, - 0.1174 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3444, - 0.1174 - ], - "tag": null, - "to": [ - 5.3364, - 0.1139 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3364, - 0.1139 - ], - "tag": null, - "to": [ - 5.3284, - 0.1104 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3284, - 0.1104 - ], - "tag": null, - "to": [ - 5.3204, - 0.107 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3204, - 0.107 - ], - "tag": null, - "to": [ - 5.3124, - 0.1036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3124, - 0.1036 - ], - "tag": null, - "to": [ - 5.3044, - 0.1002 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3044, - 0.1002 - ], - "tag": null, - "to": [ - 5.2963, - 0.0969 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2963, - 0.0969 - ], - "tag": null, - "to": [ - 5.2883, - 0.0936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2883, - 0.0936 - ], - "tag": null, - "to": [ - 5.2803, - 0.0903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2803, - 0.0903 - ], - "tag": null, - "to": [ - 5.2722, - 0.0871 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2722, - 0.0871 - ], - "tag": null, - "to": [ - 5.2642, - 0.084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2642, - 0.084 - ], - "tag": null, - "to": [ - 5.2562, - 0.0808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2562, - 0.0808 - ], - "tag": null, - "to": [ - 5.2481, - 0.0778 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2481, - 0.0778 - ], - "tag": null, - "to": [ - 5.2401, - 0.0747 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2401, - 0.0747 - ], - "tag": null, - "to": [ - 5.2321, - 0.0717 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2321, - 0.0717 - ], - "tag": null, - "to": [ - 5.224, - 0.0688 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.224, - 0.0688 - ], - "tag": null, - "to": [ - 5.216, - 0.0659 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.216, - 0.0659 - ], - "tag": null, - "to": [ - 5.2079, - 0.063 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2079, - 0.063 - ], - "tag": null, - "to": [ - 5.1999, - 0.0602 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1999, - 0.0602 - ], - "tag": null, - "to": [ - 5.1918, - 0.0575 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1918, - 0.0575 - ], - "tag": null, - "to": [ - 5.1837, - 0.0547 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1837, - 0.0547 - ], - "tag": null, - "to": [ - 5.1757, - 0.0521 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1757, - 0.0521 - ], - "tag": null, - "to": [ - 5.1676, - 0.0494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1676, - 0.0494 - ], - "tag": null, - "to": [ - 5.1596, - 0.0469 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1596, - 0.0469 - ], - "tag": null, - "to": [ - 5.1515, - 0.0443 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1515, - 0.0443 - ], - "tag": null, - "to": [ - 5.1434, - 0.0419 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1434, - 0.0419 - ], - "tag": null, - "to": [ - 5.1354, - 0.0394 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1354, - 0.0394 - ], - "tag": null, - "to": [ - 5.1273, - 0.0371 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1273, - 0.0371 - ], - "tag": null, - "to": [ - 5.1192, - 0.0347 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1192, - 0.0347 - ], - "tag": null, - "to": [ - 5.1112, - 0.0325 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1112, - 0.0325 - ], - "tag": null, - "to": [ - 5.1031, - 0.0303 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1031, - 0.0303 - ], - "tag": null, - "to": [ - 5.095, - 0.0281 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.095, - 0.0281 - ], - "tag": null, - "to": [ - 5.0869, - 0.026 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0869, - 0.026 - ], - "tag": null, - "to": [ - 5.0789, - 0.0239 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0789, - 0.0239 - ], - "tag": null, - "to": [ - 5.0708, - 0.022 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0708, - 0.022 - ], - "tag": null, - "to": [ - 5.0627, - 0.02 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0627, - 0.02 - ], - "tag": null, - "to": [ - 5.0546, - 0.0182 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0546, - 0.0182 - ], - "tag": null, - "to": [ - 5.0466, - 0.0164 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0466, - 0.0164 - ], - "tag": null, - "to": [ - 5.0385, - 0.0146 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0385, - 0.0146 - ], - "tag": null, - "to": [ - 5.0304, - 0.013 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0304, - 0.013 - ], - "tag": null, - "to": [ - 5.0223, - 0.0114 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0223, - 0.0114 - ], - "tag": null, - "to": [ - 5.0142, - 0.0098 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0142, - 0.0098 - ], - "tag": null, - "to": [ - 5.0061, - 0.0084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0061, - 0.0084 - ], - "tag": null, - "to": [ - 4.9981, - 0.007 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9981, - 0.007 - ], - "tag": null, - "to": [ - 4.99, - 0.0058 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.99, - 0.0058 - ], - "tag": null, - "to": [ - 4.9819, - 0.0046 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9819, - 0.0046 - ], - "tag": null, - "to": [ - 4.9738, - 0.0035 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9738, - 0.0035 - ], - "tag": null, - "to": [ - 4.9657, - 0.0025 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9657, - 0.0025 - ], - "tag": null, - "to": [ - 4.9576, - 0.0016 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9576, - 0.0016 - ], - "tag": null, - "to": [ - 4.9496, - 0.0009 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9496, - 0.0009 - ], - "tag": null, - "to": [ - 4.9415, - 0.0003 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9415, - 0.0003 - ], - "tag": null, - "to": [ - 4.9334, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "ccw": true, - "center": [ - -0.0, - -0.0 - ], - "from": [ - 4.9334, - 0.0 - ], - "radius": 4.933386259126019, - "tag": null, - "to": [ - 4.8356, - 0.9775 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8356, - 0.9775 - ], - "tag": null, - "to": [ - 4.8436, - 0.9788 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8436, - 0.9788 - ], - "tag": null, - "to": [ - 4.8516, - 0.9799 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8516, - 0.9799 - ], - "tag": null, - "to": [ - 4.8597, - 0.9808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8597, - 0.9808 - ], - "tag": null, - "to": [ - 4.8678, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8678, - 0.9815 - ], - "tag": null, - "to": [ - 4.8759, - 0.9821 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8759, - 0.9821 - ], - "tag": null, - "to": [ - 4.884, - 0.9827 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.884, - 0.9827 - ], - "tag": null, - "to": [ - 4.8922, - 0.9831 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8922, - 0.9831 - ], - "tag": null, - "to": [ - 4.9004, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9004, - 0.9835 - ], - "tag": null, - "to": [ - 4.9086, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9086, - 0.9837 - ], - "tag": null, - "to": [ - 4.9168, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9168, - 0.9839 - ], - "tag": null, - "to": [ - 4.925, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.925, - 0.984 - ], - "tag": null, - "to": [ - 4.9332, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9332, - 0.984 - ], - "tag": null, - "to": [ - 4.9415, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9415, - 0.984 - ], - "tag": null, - "to": [ - 4.9497, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9497, - 0.9839 - ], - "tag": null, - "to": [ - 4.958, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.958, - 0.9837 - ], - "tag": null, - "to": [ - 4.9663, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9663, - 0.9835 - ], - "tag": null, - "to": [ - 4.9746, - 0.9832 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9746, - 0.9832 - ], - "tag": null, - "to": [ - 4.9829, - 0.9829 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9829, - 0.9829 - ], - "tag": null, - "to": [ - 4.9912, - 0.9825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9912, - 0.9825 - ], - "tag": null, - "to": [ - 4.9996, - 0.982 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9996, - 0.982 - ], - "tag": null, - "to": [ - 5.0079, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0079, - 0.9815 - ], - "tag": null, - "to": [ - 5.0163, - 0.9809 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0163, - 0.9809 - ], - "tag": null, - "to": [ - 5.0246, - 0.9803 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0246, - 0.9803 - ], - "tag": null, - "to": [ - 5.033, - 0.9796 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.033, - 0.9796 - ], - "tag": null, - "to": [ - 5.0414, - 0.9789 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0414, - 0.9789 - ], - "tag": null, - "to": [ - 5.0497, - 0.9781 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0497, - 0.9781 - ], - "tag": null, - "to": [ - 5.0581, - 0.9773 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0581, - 0.9773 - ], - "tag": null, - "to": [ - 5.0665, - 0.9764 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0665, - 0.9764 - ], - "tag": null, - "to": [ - 5.075, - 0.9755 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.075, - 0.9755 - ], - "tag": null, - "to": [ - 5.0834, - 0.9745 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0834, - 0.9745 - ], - "tag": null, - "to": [ - 5.0918, - 0.9735 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0918, - 0.9735 - ], - "tag": null, - "to": [ - 5.1002, - 0.9724 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1002, - 0.9724 - ], - "tag": null, - "to": [ - 5.1087, - 0.9713 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1087, - 0.9713 - ], - "tag": null, - "to": [ - 5.1171, - 0.9701 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1171, - 0.9701 - ], - "tag": null, - "to": [ - 5.1256, - 0.9689 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1256, - 0.9689 - ], - "tag": null, - "to": [ - 5.1341, - 0.9677 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1341, - 0.9677 - ], - "tag": null, - "to": [ - 5.1425, - 0.9664 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1425, - 0.9664 - ], - "tag": null, - "to": [ - 5.151, - 0.9651 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.151, - 0.9651 - ], - "tag": null, - "to": [ - 5.1595, - 0.9637 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1595, - 0.9637 - ], - "tag": null, - "to": [ - 5.168, - 0.9623 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.168, - 0.9623 - ], - "tag": null, - "to": [ - 5.1765, - 0.9608 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1765, - 0.9608 - ], - "tag": null, - "to": [ - 5.185, - 0.9593 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.185, - 0.9593 - ], - "tag": null, - "to": [ - 5.1935, - 0.9577 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1935, - 0.9577 - ], - "tag": null, - "to": [ - 5.202, - 0.9561 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.202, - 0.9561 - ], - "tag": null, - "to": [ - 5.2105, - 0.9545 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2105, - 0.9545 - ], - "tag": null, - "to": [ - 5.219, - 0.9528 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.219, - 0.9528 - ], - "tag": null, - "to": [ - 5.2276, - 0.9511 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2276, - 0.9511 - ], - "tag": null, - "to": [ - 5.2361, - 0.9494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2361, - 0.9494 - ], - "tag": null, - "to": [ - 5.2447, - 0.9476 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2447, - 0.9476 - ], - "tag": null, - "to": [ - 5.2532, - 0.9457 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2532, - 0.9457 - ], - "tag": null, - "to": [ - 5.2617, - 0.9439 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2617, - 0.9439 - ], - "tag": null, - "to": [ - 5.2703, - 0.942 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2703, - 0.942 - ], - "tag": null, - "to": [ - 5.2789, - 0.94 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2789, - 0.94 - ], - "tag": null, - "to": [ - 5.2874, - 0.938 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2874, - 0.938 - ], - "tag": null, - "to": [ - 5.296, - 0.936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.296, - 0.936 - ], - "tag": null, - "to": [ - 5.3046, - 0.9339 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3046, - 0.9339 - ], - "tag": null, - "to": [ - 5.3132, - 0.9318 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3132, - 0.9318 - ], - "tag": null, - "to": [ - 5.3217, - 0.9297 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3217, - 0.9297 - ], - "tag": null, - "to": [ - 5.3303, - 0.9275 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3303, - 0.9275 - ], - "tag": null, - "to": [ - 5.3389, - 0.9253 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3389, - 0.9253 - ], - "tag": null, - "to": [ - 5.3475, - 0.923 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3475, - 0.923 - ], - "tag": null, - "to": [ - 5.3561, - 0.9207 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3561, - 0.9207 - ], - "tag": null, - "to": [ - 5.3647, - 0.9184 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3647, - 0.9184 - ], - "tag": null, - "to": [ - 5.3733, - 0.916 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3733, - 0.916 - ], - "tag": null, - "to": [ - 5.3819, - 0.9136 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3819, - 0.9136 - ], - "tag": null, - "to": [ - 5.3906, - 0.9112 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3906, - 0.9112 - ], - "tag": null, - "to": [ - 5.3992, - 0.9087 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3992, - 0.9087 - ], - "tag": null, - "to": [ - 5.4078, - 0.9062 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4078, - 0.9062 - ], - "tag": null, - "to": [ - 5.4164, - 0.9036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4164, - 0.9036 - ], - "tag": null, - "to": [ - 5.425, - 0.901 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.425, - 0.901 - ], - "tag": null, - "to": [ - 5.4337, - 0.8984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4337, - 0.8984 - ], - "tag": null, - "to": [ - 5.4423, - 0.8958 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4423, - 0.8958 - ], - "tag": null, - "to": [ - 5.4509, - 0.8931 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4509, - 0.8931 - ], - "tag": null, - "to": [ - 5.4596, - 0.8903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4596, - 0.8903 - ], - "tag": null, - "to": [ - 5.4682, - 0.8876 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4682, - 0.8876 - ], - "tag": null, - "to": [ - 5.4769, - 0.8848 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4769, - 0.8848 - ], - "tag": null, - "to": [ - 5.4855, - 0.8819 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4855, - 0.8819 - ], - "tag": null, - "to": [ - 5.4942, - 0.8791 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4942, - 0.8791 - ], - "tag": null, - "to": [ - 5.5028, - 0.8762 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5028, - 0.8762 - ], - "tag": null, - "to": [ - 5.5115, - 0.8732 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5115, - 0.8732 - ], - "tag": null, - "to": [ - 5.5201, - 0.8703 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5201, - 0.8703 - ], - "tag": null, - "to": [ - 5.5288, - 0.8672 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5288, - 0.8672 - ], - "tag": null, - "to": [ - 5.5374, - 0.8642 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5374, - 0.8642 - ], - "tag": null, - "to": [ - 5.5461, - 0.8611 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5461, - 0.8611 - ], - "tag": null, - "to": [ - 5.5548, - 0.858 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5548, - 0.858 - ], - "tag": null, - "to": [ - 5.5634, - 0.8549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5634, - 0.8549 - ], - "tag": null, - "to": [ - 5.5721, - 0.8517 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5721, - 0.8517 - ], - "tag": null, - "to": [ - 5.5808, - 0.8485 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5808, - 0.8485 - ], - "tag": null, - "to": [ - 5.5894, - 0.8452 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5894, - 0.8452 - ], - "tag": null, - "to": [ - 5.5981, - 0.842 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5981, - 0.842 - ], - "tag": null, - "to": [ - 5.6068, - 0.8386 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6068, - 0.8386 - ], - "tag": null, - "to": [ - 5.6154, - 0.8353 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6154, - 0.8353 - ], - "tag": null, - "to": [ - 5.6241, - 0.8319 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6241, - 0.8319 - ], - "tag": null, - "to": [ - 5.6328, - 0.8285 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6328, - 0.8285 - ], - "tag": null, - "to": [ - 5.6415, - 0.825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6415, - 0.825 - ], - "tag": null, - "to": [ - 5.6502, - 0.8216 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6502, - 0.8216 - ], - "tag": null, - "to": [ - 5.6588, - 0.8181 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6588, - 0.8181 - ], - "tag": null, - "to": [ - 5.6675, - 0.8145 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6675, - 0.8145 - ], - "tag": null, - "to": [ - 5.6762, - 0.8109 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6762, - 0.8109 - ], - "tag": null, - "to": [ - 5.6849, - 0.8073 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6849, - 0.8073 - ], - "tag": null, - "to": [ - 5.6936, - 0.8037 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6936, - 0.8037 - ], - "tag": null, - "to": [ - 5.7399, - 0.3404 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "artifactId": "[uuid]", - "id": "[uuid]", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Mm" - } - }, - "type": "plane", - "value": "XY", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - } - }, - "start": { - "from": [ - 5.7399, - 0.3404 - ], - "to": [ - 5.7399, - 0.3404 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" - }, - "sectional": false - } - }, - { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7399, - 0.3404 - ], - "tag": null, - "to": [ - 5.7321, - 0.3351 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7321, - 0.3351 - ], - "tag": null, - "to": [ - 5.7243, - 0.3299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7243, - 0.3299 - ], - "tag": null, - "to": [ - 5.7165, - 0.3246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7165, - 0.3246 - ], - "tag": null, - "to": [ - 5.7087, - 0.3194 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7087, - 0.3194 - ], - "tag": null, - "to": [ - 5.7009, - 0.3143 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7009, - 0.3143 - ], - "tag": null, - "to": [ - 5.6931, - 0.3091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6931, - 0.3091 - ], - "tag": null, - "to": [ - 5.6853, - 0.3041 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6853, - 0.3041 - ], - "tag": null, - "to": [ - 5.6775, - 0.299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6775, - 0.299 - ], - "tag": null, - "to": [ - 5.6696, - 0.294 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6696, - 0.294 - ], - "tag": null, - "to": [ - 5.6618, - 0.289 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6618, - 0.289 - ], - "tag": null, - "to": [ - 5.6539, - 0.284 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6539, - 0.284 - ], - "tag": null, - "to": [ - 5.6461, - 0.279 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6461, - 0.279 - ], - "tag": null, - "to": [ - 5.6382, - 0.2741 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6382, - 0.2741 - ], - "tag": null, - "to": [ - 5.6304, - 0.2693 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6304, - 0.2693 - ], - "tag": null, - "to": [ - 5.6225, - 0.2644 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6225, - 0.2644 - ], - "tag": null, - "to": [ - 5.6146, - 0.2597 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6146, - 0.2597 - ], - "tag": null, - "to": [ - 5.6068, - 0.2549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6068, - 0.2549 - ], - "tag": null, - "to": [ - 5.5989, - 0.2502 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5989, - 0.2502 - ], - "tag": null, - "to": [ - 5.591, - 0.2455 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.591, - 0.2455 - ], - "tag": null, - "to": [ - 5.5831, - 0.2408 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5831, - 0.2408 - ], - "tag": null, - "to": [ - 5.5752, - 0.2362 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5752, - 0.2362 - ], - "tag": null, - "to": [ - 5.5673, - 0.2316 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5673, - 0.2316 - ], - "tag": null, - "to": [ - 5.5594, - 0.227 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5594, - 0.227 - ], - "tag": null, - "to": [ - 5.5515, - 0.2225 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5515, - 0.2225 - ], - "tag": null, - "to": [ - 5.5436, - 0.218 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5436, - 0.218 - ], - "tag": null, - "to": [ - 5.5357, - 0.2135 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5357, - 0.2135 - ], - "tag": null, - "to": [ - 5.5277, - 0.2091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5277, - 0.2091 - ], - "tag": null, - "to": [ - 5.5198, - 0.2047 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5198, - 0.2047 - ], - "tag": null, - "to": [ - 5.5119, - 0.2004 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5119, - 0.2004 - ], - "tag": null, - "to": [ - 5.504, - 0.1961 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.504, - 0.1961 - ], - "tag": null, - "to": [ - 5.496, - 0.1918 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.496, - 0.1918 - ], - "tag": null, - "to": [ - 5.4881, - 0.1875 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4881, - 0.1875 - ], - "tag": null, - "to": [ - 5.4801, - 0.1833 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4801, - 0.1833 - ], - "tag": null, - "to": [ - 5.4722, - 0.1792 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4722, - 0.1792 - ], - "tag": null, - "to": [ - 5.4642, - 0.175 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4642, - 0.175 - ], - "tag": null, - "to": [ - 5.4563, - 0.1709 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4563, - 0.1709 - ], - "tag": null, - "to": [ - 5.4483, - 0.1669 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4483, - 0.1669 - ], - "tag": null, - "to": [ - 5.4403, - 0.1628 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4403, - 0.1628 - ], - "tag": null, - "to": [ - 5.4324, - 0.1588 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4324, - 0.1588 - ], - "tag": null, - "to": [ - 5.4244, - 0.1549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4244, - 0.1549 - ], - "tag": null, - "to": [ - 5.4164, - 0.151 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4164, - 0.151 - ], - "tag": null, - "to": [ - 5.4084, - 0.1471 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4084, - 0.1471 - ], - "tag": null, - "to": [ - 5.4004, - 0.1433 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4004, - 0.1433 - ], - "tag": null, - "to": [ - 5.3924, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3924, - 0.1395 - ], - "tag": null, - "to": [ - 5.3845, - 0.1357 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3845, - 0.1357 - ], - "tag": null, - "to": [ - 5.3765, - 0.132 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3765, - 0.132 - ], - "tag": null, - "to": [ - 5.3685, - 0.1283 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3685, - 0.1283 - ], - "tag": null, - "to": [ - 5.3605, - 0.1246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3605, - 0.1246 - ], - "tag": null, - "to": [ - 5.3525, - 0.121 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3525, - 0.121 - ], - "tag": null, - "to": [ - 5.3444, - 0.1174 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3444, - 0.1174 - ], - "tag": null, - "to": [ - 5.3364, - 0.1139 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3364, - 0.1139 - ], - "tag": null, - "to": [ - 5.3284, - 0.1104 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3284, - 0.1104 - ], - "tag": null, - "to": [ - 5.3204, - 0.107 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3204, - 0.107 - ], - "tag": null, - "to": [ - 5.3124, - 0.1036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3124, - 0.1036 - ], - "tag": null, - "to": [ - 5.3044, - 0.1002 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3044, - 0.1002 - ], - "tag": null, - "to": [ - 5.2963, - 0.0969 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2963, - 0.0969 - ], - "tag": null, - "to": [ - 5.2883, - 0.0936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2883, - 0.0936 - ], - "tag": null, - "to": [ - 5.2803, - 0.0903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2803, - 0.0903 - ], - "tag": null, - "to": [ - 5.2722, - 0.0871 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2722, - 0.0871 - ], - "tag": null, - "to": [ - 5.2642, - 0.084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2642, - 0.084 - ], - "tag": null, - "to": [ - 5.2562, - 0.0808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2562, - 0.0808 - ], - "tag": null, - "to": [ - 5.2481, - 0.0778 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2481, - 0.0778 - ], - "tag": null, - "to": [ - 5.2401, - 0.0747 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2401, - 0.0747 - ], - "tag": null, - "to": [ - 5.2321, - 0.0717 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2321, - 0.0717 - ], - "tag": null, - "to": [ - 5.224, - 0.0688 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.224, - 0.0688 - ], - "tag": null, - "to": [ - 5.216, - 0.0659 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.216, - 0.0659 - ], - "tag": null, - "to": [ - 5.2079, - 0.063 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2079, - 0.063 - ], - "tag": null, - "to": [ - 5.1999, - 0.0602 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1999, - 0.0602 - ], - "tag": null, - "to": [ - 5.1918, - 0.0575 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1918, - 0.0575 - ], - "tag": null, - "to": [ - 5.1837, - 0.0547 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1837, - 0.0547 - ], - "tag": null, - "to": [ - 5.1757, - 0.0521 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1757, - 0.0521 - ], - "tag": null, - "to": [ - 5.1676, - 0.0494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1676, - 0.0494 - ], - "tag": null, - "to": [ - 5.1596, - 0.0469 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1596, - 0.0469 - ], - "tag": null, - "to": [ - 5.1515, - 0.0443 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1515, - 0.0443 - ], - "tag": null, - "to": [ - 5.1434, - 0.0419 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1434, - 0.0419 - ], - "tag": null, - "to": [ - 5.1354, - 0.0394 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1354, - 0.0394 - ], - "tag": null, - "to": [ - 5.1273, - 0.0371 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1273, - 0.0371 - ], - "tag": null, - "to": [ - 5.1192, - 0.0347 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1192, - 0.0347 - ], - "tag": null, - "to": [ - 5.1112, - 0.0325 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1112, - 0.0325 - ], - "tag": null, - "to": [ - 5.1031, - 0.0303 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1031, - 0.0303 - ], - "tag": null, - "to": [ - 5.095, - 0.0281 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.095, - 0.0281 - ], - "tag": null, - "to": [ - 5.0869, - 0.026 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0869, - 0.026 - ], - "tag": null, - "to": [ - 5.0789, - 0.0239 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0789, - 0.0239 - ], - "tag": null, - "to": [ - 5.0708, - 0.022 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0708, - 0.022 - ], - "tag": null, - "to": [ - 5.0627, - 0.02 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0627, - 0.02 - ], - "tag": null, - "to": [ - 5.0546, - 0.0182 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0546, - 0.0182 - ], - "tag": null, - "to": [ - 5.0466, - 0.0164 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0466, - 0.0164 - ], - "tag": null, - "to": [ - 5.0385, - 0.0146 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0385, - 0.0146 - ], - "tag": null, - "to": [ - 5.0304, - 0.013 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0304, - 0.013 - ], - "tag": null, - "to": [ - 5.0223, - 0.0114 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0223, - 0.0114 - ], - "tag": null, - "to": [ - 5.0142, - 0.0098 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0142, - 0.0098 - ], - "tag": null, - "to": [ - 5.0061, - 0.0084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0061, - 0.0084 - ], - "tag": null, - "to": [ - 4.9981, - 0.007 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9981, - 0.007 - ], - "tag": null, - "to": [ - 4.99, - 0.0058 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.99, - 0.0058 - ], - "tag": null, - "to": [ - 4.9819, - 0.0046 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9819, - 0.0046 - ], - "tag": null, - "to": [ - 4.9738, - 0.0035 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9738, - 0.0035 - ], - "tag": null, - "to": [ - 4.9657, - 0.0025 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9657, - 0.0025 - ], - "tag": null, - "to": [ - 4.9576, - 0.0016 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9576, - 0.0016 - ], - "tag": null, - "to": [ - 4.9496, - 0.0009 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9496, - 0.0009 - ], - "tag": null, - "to": [ - 4.9415, - 0.0003 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9415, - 0.0003 - ], - "tag": null, - "to": [ - 4.9334, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "ccw": true, - "center": [ - -0.0, - -0.0 - ], - "from": [ - 4.9334, - 0.0 - ], - "radius": 4.933386259126019, - "tag": null, - "to": [ - 4.8356, - 0.9775 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8356, - 0.9775 - ], - "tag": null, - "to": [ - 4.8436, - 0.9788 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8436, - 0.9788 - ], - "tag": null, - "to": [ - 4.8516, - 0.9799 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8516, - 0.9799 - ], - "tag": null, - "to": [ - 4.8597, - 0.9808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8597, - 0.9808 - ], - "tag": null, - "to": [ - 4.8678, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8678, - 0.9815 - ], - "tag": null, - "to": [ - 4.8759, - 0.9821 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8759, - 0.9821 - ], - "tag": null, - "to": [ - 4.884, - 0.9827 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.884, - 0.9827 - ], - "tag": null, - "to": [ - 4.8922, - 0.9831 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8922, - 0.9831 - ], - "tag": null, - "to": [ - 4.9004, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9004, - 0.9835 - ], - "tag": null, - "to": [ - 4.9086, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9086, - 0.9837 - ], - "tag": null, - "to": [ - 4.9168, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9168, - 0.9839 - ], - "tag": null, - "to": [ - 4.925, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.925, - 0.984 - ], - "tag": null, - "to": [ - 4.9332, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9332, - 0.984 - ], - "tag": null, - "to": [ - 4.9415, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9415, - 0.984 - ], - "tag": null, - "to": [ - 4.9497, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9497, - 0.9839 - ], - "tag": null, - "to": [ - 4.958, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.958, - 0.9837 - ], - "tag": null, - "to": [ - 4.9663, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9663, - 0.9835 - ], - "tag": null, - "to": [ - 4.9746, - 0.9832 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9746, - 0.9832 - ], - "tag": null, - "to": [ - 4.9829, - 0.9829 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9829, - 0.9829 - ], - "tag": null, - "to": [ - 4.9912, - 0.9825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9912, - 0.9825 - ], - "tag": null, - "to": [ - 4.9996, - 0.982 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9996, - 0.982 - ], - "tag": null, - "to": [ - 5.0079, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0079, - 0.9815 - ], - "tag": null, - "to": [ - 5.0163, - 0.9809 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0163, - 0.9809 - ], - "tag": null, - "to": [ - 5.0246, - 0.9803 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0246, - 0.9803 - ], - "tag": null, - "to": [ - 5.033, - 0.9796 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.033, - 0.9796 - ], - "tag": null, - "to": [ - 5.0414, - 0.9789 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0414, - 0.9789 - ], - "tag": null, - "to": [ - 5.0497, - 0.9781 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0497, - 0.9781 - ], - "tag": null, - "to": [ - 5.0581, - 0.9773 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0581, - 0.9773 - ], - "tag": null, - "to": [ - 5.0665, - 0.9764 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0665, - 0.9764 - ], - "tag": null, - "to": [ - 5.075, - 0.9755 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.075, - 0.9755 - ], - "tag": null, - "to": [ - 5.0834, - 0.9745 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0834, - 0.9745 - ], - "tag": null, - "to": [ - 5.0918, - 0.9735 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0918, - 0.9735 - ], - "tag": null, - "to": [ - 5.1002, - 0.9724 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1002, - 0.9724 - ], - "tag": null, - "to": [ - 5.1087, - 0.9713 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1087, - 0.9713 - ], - "tag": null, - "to": [ - 5.1171, - 0.9701 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1171, - 0.9701 - ], - "tag": null, - "to": [ - 5.1256, - 0.9689 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1256, - 0.9689 - ], - "tag": null, - "to": [ - 5.1341, - 0.9677 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1341, - 0.9677 - ], - "tag": null, - "to": [ - 5.1425, - 0.9664 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1425, - 0.9664 - ], - "tag": null, - "to": [ - 5.151, - 0.9651 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.151, - 0.9651 - ], - "tag": null, - "to": [ - 5.1595, - 0.9637 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1595, - 0.9637 - ], - "tag": null, - "to": [ - 5.168, - 0.9623 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.168, - 0.9623 - ], - "tag": null, - "to": [ - 5.1765, - 0.9608 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1765, - 0.9608 - ], - "tag": null, - "to": [ - 5.185, - 0.9593 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.185, - 0.9593 - ], - "tag": null, - "to": [ - 5.1935, - 0.9577 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1935, - 0.9577 - ], - "tag": null, - "to": [ - 5.202, - 0.9561 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.202, - 0.9561 - ], - "tag": null, - "to": [ - 5.2105, - 0.9545 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2105, - 0.9545 - ], - "tag": null, - "to": [ - 5.219, - 0.9528 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.219, - 0.9528 - ], - "tag": null, - "to": [ - 5.2276, - 0.9511 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2276, - 0.9511 - ], - "tag": null, - "to": [ - 5.2361, - 0.9494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2361, - 0.9494 - ], - "tag": null, - "to": [ - 5.2447, - 0.9476 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2447, - 0.9476 - ], - "tag": null, - "to": [ - 5.2532, - 0.9457 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2532, - 0.9457 - ], - "tag": null, - "to": [ - 5.2617, - 0.9439 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2617, - 0.9439 - ], - "tag": null, - "to": [ - 5.2703, - 0.942 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2703, - 0.942 - ], - "tag": null, - "to": [ - 5.2789, - 0.94 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2789, - 0.94 - ], - "tag": null, - "to": [ - 5.2874, - 0.938 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2874, - 0.938 - ], - "tag": null, - "to": [ - 5.296, - 0.936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.296, - 0.936 - ], - "tag": null, - "to": [ - 5.3046, - 0.9339 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3046, - 0.9339 - ], - "tag": null, - "to": [ - 5.3132, - 0.9318 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3132, - 0.9318 - ], - "tag": null, - "to": [ - 5.3217, - 0.9297 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3217, - 0.9297 - ], - "tag": null, - "to": [ - 5.3303, - 0.9275 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3303, - 0.9275 - ], - "tag": null, - "to": [ - 5.3389, - 0.9253 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3389, - 0.9253 - ], - "tag": null, - "to": [ - 5.3475, - 0.923 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3475, - 0.923 - ], - "tag": null, - "to": [ - 5.3561, - 0.9207 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3561, - 0.9207 - ], - "tag": null, - "to": [ - 5.3647, - 0.9184 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3647, - 0.9184 - ], - "tag": null, - "to": [ - 5.3733, - 0.916 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3733, - 0.916 - ], - "tag": null, - "to": [ - 5.3819, - 0.9136 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3819, - 0.9136 - ], - "tag": null, - "to": [ - 5.3906, - 0.9112 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3906, - 0.9112 - ], - "tag": null, - "to": [ - 5.3992, - 0.9087 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3992, - 0.9087 - ], - "tag": null, - "to": [ - 5.4078, - 0.9062 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4078, - 0.9062 - ], - "tag": null, - "to": [ - 5.4164, - 0.9036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4164, - 0.9036 - ], - "tag": null, - "to": [ - 5.425, - 0.901 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.425, - 0.901 - ], - "tag": null, - "to": [ - 5.4337, - 0.8984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4337, - 0.8984 - ], - "tag": null, - "to": [ - 5.4423, - 0.8958 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4423, - 0.8958 - ], - "tag": null, - "to": [ - 5.4509, - 0.8931 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4509, - 0.8931 - ], - "tag": null, - "to": [ - 5.4596, - 0.8903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4596, - 0.8903 - ], - "tag": null, - "to": [ - 5.4682, - 0.8876 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4682, - 0.8876 - ], - "tag": null, - "to": [ - 5.4769, - 0.8848 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4769, - 0.8848 - ], - "tag": null, - "to": [ - 5.4855, - 0.8819 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4855, - 0.8819 - ], - "tag": null, - "to": [ - 5.4942, - 0.8791 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4942, - 0.8791 - ], - "tag": null, - "to": [ - 5.5028, - 0.8762 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5028, - 0.8762 - ], - "tag": null, - "to": [ - 5.5115, - 0.8732 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5115, - 0.8732 - ], - "tag": null, - "to": [ - 5.5201, - 0.8703 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5201, - 0.8703 - ], - "tag": null, - "to": [ - 5.5288, - 0.8672 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5288, - 0.8672 - ], - "tag": null, - "to": [ - 5.5374, - 0.8642 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5374, - 0.8642 - ], - "tag": null, - "to": [ - 5.5461, - 0.8611 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5461, - 0.8611 - ], - "tag": null, - "to": [ - 5.5548, - 0.858 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5548, - 0.858 - ], - "tag": null, - "to": [ - 5.5634, - 0.8549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5634, - 0.8549 - ], - "tag": null, - "to": [ - 5.5721, - 0.8517 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5721, - 0.8517 - ], - "tag": null, - "to": [ - 5.5808, - 0.8485 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5808, - 0.8485 - ], - "tag": null, - "to": [ - 5.5894, - 0.8452 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5894, - 0.8452 - ], - "tag": null, - "to": [ - 5.5981, - 0.842 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5981, - 0.842 - ], - "tag": null, - "to": [ - 5.6068, - 0.8386 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6068, - 0.8386 - ], - "tag": null, - "to": [ - 5.6154, - 0.8353 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6154, - 0.8353 - ], - "tag": null, - "to": [ - 5.6241, - 0.8319 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6241, - 0.8319 - ], - "tag": null, - "to": [ - 5.6328, - 0.8285 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6328, - 0.8285 - ], - "tag": null, - "to": [ - 5.6415, - 0.825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6415, - 0.825 - ], - "tag": null, - "to": [ - 5.6502, - 0.8216 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6502, - 0.8216 - ], - "tag": null, - "to": [ - 5.6588, - 0.8181 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6588, - 0.8181 - ], - "tag": null, - "to": [ - 5.6675, - 0.8145 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6675, - 0.8145 - ], - "tag": null, - "to": [ - 5.6762, - 0.8109 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6762, - 0.8109 - ], - "tag": null, - "to": [ - 5.6849, - 0.8073 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6849, - 0.8073 - ], - "tag": null, - "to": [ - 5.6936, - 0.8037 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6936, - 0.8037 - ], - "tag": null, - "to": [ - 5.7399, - 0.3404 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "artifactId": "[uuid]", - "id": "[uuid]", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Mm" - } - }, - "type": "plane", - "value": "XY", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - } - }, - "start": { - "from": [ - 5.7399, - 0.3404 - ], - "to": [ - 5.7399, - 0.3404 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" - }, - "sectional": false - } - }, - { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7399, - 0.3404 - ], - "tag": null, - "to": [ - 5.7321, - 0.3351 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7321, - 0.3351 - ], - "tag": null, - "to": [ - 5.7243, - 0.3299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7243, - 0.3299 - ], - "tag": null, - "to": [ - 5.7165, - 0.3246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7165, - 0.3246 - ], - "tag": null, - "to": [ - 5.7087, - 0.3194 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7087, - 0.3194 - ], - "tag": null, - "to": [ - 5.7009, - 0.3143 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7009, - 0.3143 - ], - "tag": null, - "to": [ - 5.6931, - 0.3091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6931, - 0.3091 - ], - "tag": null, - "to": [ - 5.6853, - 0.3041 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6853, - 0.3041 - ], - "tag": null, - "to": [ - 5.6775, - 0.299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6775, - 0.299 - ], - "tag": null, - "to": [ - 5.6696, - 0.294 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6696, - 0.294 - ], - "tag": null, - "to": [ - 5.6618, - 0.289 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6618, - 0.289 - ], - "tag": null, - "to": [ - 5.6539, - 0.284 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6539, - 0.284 - ], - "tag": null, - "to": [ - 5.6461, - 0.279 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6461, - 0.279 - ], - "tag": null, - "to": [ - 5.6382, - 0.2741 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6382, - 0.2741 - ], - "tag": null, - "to": [ - 5.6304, - 0.2693 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6304, - 0.2693 - ], - "tag": null, - "to": [ - 5.6225, - 0.2644 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6225, - 0.2644 - ], - "tag": null, - "to": [ - 5.6146, - 0.2597 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6146, - 0.2597 - ], - "tag": null, - "to": [ - 5.6068, - 0.2549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6068, - 0.2549 - ], - "tag": null, - "to": [ - 5.5989, - 0.2502 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5989, - 0.2502 - ], - "tag": null, - "to": [ - 5.591, - 0.2455 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.591, - 0.2455 - ], - "tag": null, - "to": [ - 5.5831, - 0.2408 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5831, - 0.2408 - ], - "tag": null, - "to": [ - 5.5752, - 0.2362 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5752, - 0.2362 - ], - "tag": null, - "to": [ - 5.5673, - 0.2316 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5673, - 0.2316 - ], - "tag": null, - "to": [ - 5.5594, - 0.227 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5594, - 0.227 - ], - "tag": null, - "to": [ - 5.5515, - 0.2225 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5515, - 0.2225 - ], - "tag": null, - "to": [ - 5.5436, - 0.218 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5436, - 0.218 - ], - "tag": null, - "to": [ - 5.5357, - 0.2135 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5357, - 0.2135 - ], - "tag": null, - "to": [ - 5.5277, - 0.2091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5277, - 0.2091 - ], - "tag": null, - "to": [ - 5.5198, - 0.2047 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5198, - 0.2047 - ], - "tag": null, - "to": [ - 5.5119, - 0.2004 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5119, - 0.2004 - ], - "tag": null, - "to": [ - 5.504, - 0.1961 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.504, - 0.1961 - ], - "tag": null, - "to": [ - 5.496, - 0.1918 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.496, - 0.1918 - ], - "tag": null, - "to": [ - 5.4881, - 0.1875 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4881, - 0.1875 - ], - "tag": null, - "to": [ - 5.4801, - 0.1833 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4801, - 0.1833 - ], - "tag": null, - "to": [ - 5.4722, - 0.1792 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4722, - 0.1792 - ], - "tag": null, - "to": [ - 5.4642, - 0.175 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4642, - 0.175 - ], - "tag": null, - "to": [ - 5.4563, - 0.1709 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4563, - 0.1709 - ], - "tag": null, - "to": [ - 5.4483, - 0.1669 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4483, - 0.1669 - ], - "tag": null, - "to": [ - 5.4403, - 0.1628 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4403, - 0.1628 - ], - "tag": null, - "to": [ - 5.4324, - 0.1588 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4324, - 0.1588 - ], - "tag": null, - "to": [ - 5.4244, - 0.1549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4244, - 0.1549 - ], - "tag": null, - "to": [ - 5.4164, - 0.151 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4164, - 0.151 - ], - "tag": null, - "to": [ - 5.4084, - 0.1471 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4084, - 0.1471 - ], - "tag": null, - "to": [ - 5.4004, - 0.1433 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4004, - 0.1433 - ], - "tag": null, - "to": [ - 5.3924, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3924, - 0.1395 - ], - "tag": null, - "to": [ - 5.3845, - 0.1357 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3845, - 0.1357 - ], - "tag": null, - "to": [ - 5.3765, - 0.132 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3765, - 0.132 - ], - "tag": null, - "to": [ - 5.3685, - 0.1283 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3685, - 0.1283 - ], - "tag": null, - "to": [ - 5.3605, - 0.1246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3605, - 0.1246 - ], - "tag": null, - "to": [ - 5.3525, - 0.121 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3525, - 0.121 - ], - "tag": null, - "to": [ - 5.3444, - 0.1174 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3444, - 0.1174 - ], - "tag": null, - "to": [ - 5.3364, - 0.1139 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3364, - 0.1139 - ], - "tag": null, - "to": [ - 5.3284, - 0.1104 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3284, - 0.1104 - ], - "tag": null, - "to": [ - 5.3204, - 0.107 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3204, - 0.107 - ], - "tag": null, - "to": [ - 5.3124, - 0.1036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3124, - 0.1036 - ], - "tag": null, - "to": [ - 5.3044, - 0.1002 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3044, - 0.1002 - ], - "tag": null, - "to": [ - 5.2963, - 0.0969 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2963, - 0.0969 - ], - "tag": null, - "to": [ - 5.2883, - 0.0936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2883, - 0.0936 - ], - "tag": null, - "to": [ - 5.2803, - 0.0903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2803, - 0.0903 - ], - "tag": null, - "to": [ - 5.2722, - 0.0871 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2722, - 0.0871 - ], - "tag": null, - "to": [ - 5.2642, - 0.084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2642, - 0.084 - ], - "tag": null, - "to": [ - 5.2562, - 0.0808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2562, - 0.0808 - ], - "tag": null, - "to": [ - 5.2481, - 0.0778 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2481, - 0.0778 - ], - "tag": null, - "to": [ - 5.2401, - 0.0747 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2401, - 0.0747 - ], - "tag": null, - "to": [ - 5.2321, - 0.0717 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2321, - 0.0717 - ], - "tag": null, - "to": [ - 5.224, - 0.0688 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.224, - 0.0688 - ], - "tag": null, - "to": [ - 5.216, - 0.0659 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.216, - 0.0659 - ], - "tag": null, - "to": [ - 5.2079, - 0.063 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2079, - 0.063 - ], - "tag": null, - "to": [ - 5.1999, - 0.0602 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1999, - 0.0602 - ], - "tag": null, - "to": [ - 5.1918, - 0.0575 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1918, - 0.0575 - ], - "tag": null, - "to": [ - 5.1837, - 0.0547 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1837, - 0.0547 - ], - "tag": null, - "to": [ - 5.1757, - 0.0521 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1757, - 0.0521 - ], - "tag": null, - "to": [ - 5.1676, - 0.0494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1676, - 0.0494 - ], - "tag": null, - "to": [ - 5.1596, - 0.0469 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1596, - 0.0469 - ], - "tag": null, - "to": [ - 5.1515, - 0.0443 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1515, - 0.0443 - ], - "tag": null, - "to": [ - 5.1434, - 0.0419 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1434, - 0.0419 - ], - "tag": null, - "to": [ - 5.1354, - 0.0394 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1354, - 0.0394 - ], - "tag": null, - "to": [ - 5.1273, - 0.0371 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1273, - 0.0371 - ], - "tag": null, - "to": [ - 5.1192, - 0.0347 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1192, - 0.0347 - ], - "tag": null, - "to": [ - 5.1112, - 0.0325 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1112, - 0.0325 - ], - "tag": null, - "to": [ - 5.1031, - 0.0303 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1031, - 0.0303 - ], - "tag": null, - "to": [ - 5.095, - 0.0281 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.095, - 0.0281 - ], - "tag": null, - "to": [ - 5.0869, - 0.026 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0869, - 0.026 - ], - "tag": null, - "to": [ - 5.0789, - 0.0239 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0789, - 0.0239 - ], - "tag": null, - "to": [ - 5.0708, - 0.022 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0708, - 0.022 - ], - "tag": null, - "to": [ - 5.0627, - 0.02 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0627, - 0.02 - ], - "tag": null, - "to": [ - 5.0546, - 0.0182 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0546, - 0.0182 - ], - "tag": null, - "to": [ - 5.0466, - 0.0164 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0466, - 0.0164 - ], - "tag": null, - "to": [ - 5.0385, - 0.0146 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0385, - 0.0146 - ], - "tag": null, - "to": [ - 5.0304, - 0.013 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0304, - 0.013 - ], - "tag": null, - "to": [ - 5.0223, - 0.0114 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0223, - 0.0114 - ], - "tag": null, - "to": [ - 5.0142, - 0.0098 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0142, - 0.0098 - ], - "tag": null, - "to": [ - 5.0061, - 0.0084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0061, - 0.0084 - ], - "tag": null, - "to": [ - 4.9981, - 0.007 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9981, - 0.007 - ], - "tag": null, - "to": [ - 4.99, - 0.0058 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.99, - 0.0058 - ], - "tag": null, - "to": [ - 4.9819, - 0.0046 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9819, - 0.0046 - ], - "tag": null, - "to": [ - 4.9738, - 0.0035 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9738, - 0.0035 - ], - "tag": null, - "to": [ - 4.9657, - 0.0025 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9657, - 0.0025 - ], - "tag": null, - "to": [ - 4.9576, - 0.0016 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9576, - 0.0016 - ], - "tag": null, - "to": [ - 4.9496, - 0.0009 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9496, - 0.0009 - ], - "tag": null, - "to": [ - 4.9415, - 0.0003 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9415, - 0.0003 - ], - "tag": null, - "to": [ - 4.9334, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "ccw": true, - "center": [ - -0.0, - -0.0 - ], - "from": [ - 4.9334, - 0.0 - ], - "radius": 4.933386259126019, - "tag": null, - "to": [ - 4.8356, - 0.9775 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8356, - 0.9775 - ], - "tag": null, - "to": [ - 4.8436, - 0.9788 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8436, - 0.9788 - ], - "tag": null, - "to": [ - 4.8516, - 0.9799 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8516, - 0.9799 - ], - "tag": null, - "to": [ - 4.8597, - 0.9808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8597, - 0.9808 - ], - "tag": null, - "to": [ - 4.8678, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8678, - 0.9815 - ], - "tag": null, - "to": [ - 4.8759, - 0.9821 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8759, - 0.9821 - ], - "tag": null, - "to": [ - 4.884, - 0.9827 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.884, - 0.9827 - ], - "tag": null, - "to": [ - 4.8922, - 0.9831 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8922, - 0.9831 - ], - "tag": null, - "to": [ - 4.9004, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9004, - 0.9835 - ], - "tag": null, - "to": [ - 4.9086, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9086, - 0.9837 - ], - "tag": null, - "to": [ - 4.9168, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9168, - 0.9839 - ], - "tag": null, - "to": [ - 4.925, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.925, - 0.984 - ], - "tag": null, - "to": [ - 4.9332, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9332, - 0.984 - ], - "tag": null, - "to": [ - 4.9415, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9415, - 0.984 - ], - "tag": null, - "to": [ - 4.9497, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9497, - 0.9839 - ], - "tag": null, - "to": [ - 4.958, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.958, - 0.9837 - ], - "tag": null, - "to": [ - 4.9663, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9663, - 0.9835 - ], - "tag": null, - "to": [ - 4.9746, - 0.9832 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9746, - 0.9832 - ], - "tag": null, - "to": [ - 4.9829, - 0.9829 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9829, - 0.9829 - ], - "tag": null, - "to": [ - 4.9912, - 0.9825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9912, - 0.9825 - ], - "tag": null, - "to": [ - 4.9996, - 0.982 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9996, - 0.982 - ], - "tag": null, - "to": [ - 5.0079, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0079, - 0.9815 - ], - "tag": null, - "to": [ - 5.0163, - 0.9809 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0163, - 0.9809 - ], - "tag": null, - "to": [ - 5.0246, - 0.9803 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0246, - 0.9803 - ], - "tag": null, - "to": [ - 5.033, - 0.9796 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.033, - 0.9796 - ], - "tag": null, - "to": [ - 5.0414, - 0.9789 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0414, - 0.9789 - ], - "tag": null, - "to": [ - 5.0497, - 0.9781 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0497, - 0.9781 - ], - "tag": null, - "to": [ - 5.0581, - 0.9773 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0581, - 0.9773 - ], - "tag": null, - "to": [ - 5.0665, - 0.9764 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0665, - 0.9764 - ], - "tag": null, - "to": [ - 5.075, - 0.9755 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.075, - 0.9755 - ], - "tag": null, - "to": [ - 5.0834, - 0.9745 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0834, - 0.9745 - ], - "tag": null, - "to": [ - 5.0918, - 0.9735 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0918, - 0.9735 - ], - "tag": null, - "to": [ - 5.1002, - 0.9724 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1002, - 0.9724 - ], - "tag": null, - "to": [ - 5.1087, - 0.9713 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1087, - 0.9713 - ], - "tag": null, - "to": [ - 5.1171, - 0.9701 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1171, - 0.9701 - ], - "tag": null, - "to": [ - 5.1256, - 0.9689 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1256, - 0.9689 - ], - "tag": null, - "to": [ - 5.1341, - 0.9677 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1341, - 0.9677 - ], - "tag": null, - "to": [ - 5.1425, - 0.9664 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1425, - 0.9664 - ], - "tag": null, - "to": [ - 5.151, - 0.9651 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.151, - 0.9651 - ], - "tag": null, - "to": [ - 5.1595, - 0.9637 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1595, - 0.9637 - ], - "tag": null, - "to": [ - 5.168, - 0.9623 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.168, - 0.9623 - ], - "tag": null, - "to": [ - 5.1765, - 0.9608 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1765, - 0.9608 - ], - "tag": null, - "to": [ - 5.185, - 0.9593 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.185, - 0.9593 - ], - "tag": null, - "to": [ - 5.1935, - 0.9577 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1935, - 0.9577 - ], - "tag": null, - "to": [ - 5.202, - 0.9561 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.202, - 0.9561 - ], - "tag": null, - "to": [ - 5.2105, - 0.9545 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2105, - 0.9545 - ], - "tag": null, - "to": [ - 5.219, - 0.9528 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.219, - 0.9528 - ], - "tag": null, - "to": [ - 5.2276, - 0.9511 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2276, - 0.9511 - ], - "tag": null, - "to": [ - 5.2361, - 0.9494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2361, - 0.9494 - ], - "tag": null, - "to": [ - 5.2447, - 0.9476 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2447, - 0.9476 - ], - "tag": null, - "to": [ - 5.2532, - 0.9457 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2532, - 0.9457 - ], - "tag": null, - "to": [ - 5.2617, - 0.9439 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2617, - 0.9439 - ], - "tag": null, - "to": [ - 5.2703, - 0.942 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2703, - 0.942 - ], - "tag": null, - "to": [ - 5.2789, - 0.94 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2789, - 0.94 - ], - "tag": null, - "to": [ - 5.2874, - 0.938 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2874, - 0.938 - ], - "tag": null, - "to": [ - 5.296, - 0.936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.296, - 0.936 - ], - "tag": null, - "to": [ - 5.3046, - 0.9339 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3046, - 0.9339 - ], - "tag": null, - "to": [ - 5.3132, - 0.9318 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3132, - 0.9318 - ], - "tag": null, - "to": [ - 5.3217, - 0.9297 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3217, - 0.9297 - ], - "tag": null, - "to": [ - 5.3303, - 0.9275 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3303, - 0.9275 - ], - "tag": null, - "to": [ - 5.3389, - 0.9253 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3389, - 0.9253 - ], - "tag": null, - "to": [ - 5.3475, - 0.923 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3475, - 0.923 - ], - "tag": null, - "to": [ - 5.3561, - 0.9207 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3561, - 0.9207 - ], - "tag": null, - "to": [ - 5.3647, - 0.9184 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3647, - 0.9184 - ], - "tag": null, - "to": [ - 5.3733, - 0.916 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3733, - 0.916 - ], - "tag": null, - "to": [ - 5.3819, - 0.9136 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3819, - 0.9136 - ], - "tag": null, - "to": [ - 5.3906, - 0.9112 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3906, - 0.9112 - ], - "tag": null, - "to": [ - 5.3992, - 0.9087 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3992, - 0.9087 - ], - "tag": null, - "to": [ - 5.4078, - 0.9062 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4078, - 0.9062 - ], - "tag": null, - "to": [ - 5.4164, - 0.9036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4164, - 0.9036 - ], - "tag": null, - "to": [ - 5.425, - 0.901 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.425, - 0.901 - ], - "tag": null, - "to": [ - 5.4337, - 0.8984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4337, - 0.8984 - ], - "tag": null, - "to": [ - 5.4423, - 0.8958 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4423, - 0.8958 - ], - "tag": null, - "to": [ - 5.4509, - 0.8931 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4509, - 0.8931 - ], - "tag": null, - "to": [ - 5.4596, - 0.8903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4596, - 0.8903 - ], - "tag": null, - "to": [ - 5.4682, - 0.8876 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4682, - 0.8876 - ], - "tag": null, - "to": [ - 5.4769, - 0.8848 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4769, - 0.8848 - ], - "tag": null, - "to": [ - 5.4855, - 0.8819 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4855, - 0.8819 - ], - "tag": null, - "to": [ - 5.4942, - 0.8791 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4942, - 0.8791 - ], - "tag": null, - "to": [ - 5.5028, - 0.8762 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5028, - 0.8762 - ], - "tag": null, - "to": [ - 5.5115, - 0.8732 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5115, - 0.8732 - ], - "tag": null, - "to": [ - 5.5201, - 0.8703 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5201, - 0.8703 - ], - "tag": null, - "to": [ - 5.5288, - 0.8672 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5288, - 0.8672 - ], - "tag": null, - "to": [ - 5.5374, - 0.8642 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5374, - 0.8642 - ], - "tag": null, - "to": [ - 5.5461, - 0.8611 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5461, - 0.8611 - ], - "tag": null, - "to": [ - 5.5548, - 0.858 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5548, - 0.858 - ], - "tag": null, - "to": [ - 5.5634, - 0.8549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5634, - 0.8549 - ], - "tag": null, - "to": [ - 5.5721, - 0.8517 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5721, - 0.8517 - ], - "tag": null, - "to": [ - 5.5808, - 0.8485 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5808, - 0.8485 - ], - "tag": null, - "to": [ - 5.5894, - 0.8452 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5894, - 0.8452 - ], - "tag": null, - "to": [ - 5.5981, - 0.842 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5981, - 0.842 - ], - "tag": null, - "to": [ - 5.6068, - 0.8386 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6068, - 0.8386 - ], - "tag": null, - "to": [ - 5.6154, - 0.8353 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6154, - 0.8353 - ], - "tag": null, - "to": [ - 5.6241, - 0.8319 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6241, - 0.8319 - ], - "tag": null, - "to": [ - 5.6328, - 0.8285 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6328, - 0.8285 - ], - "tag": null, - "to": [ - 5.6415, - 0.825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6415, - 0.825 - ], - "tag": null, - "to": [ - 5.6502, - 0.8216 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6502, - 0.8216 - ], - "tag": null, - "to": [ - 5.6588, - 0.8181 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6588, - 0.8181 - ], - "tag": null, - "to": [ - 5.6675, - 0.8145 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6675, - 0.8145 - ], - "tag": null, - "to": [ - 5.6762, - 0.8109 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6762, - 0.8109 - ], - "tag": null, - "to": [ - 5.6849, - 0.8073 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6849, - 0.8073 - ], - "tag": null, - "to": [ - 5.6936, - 0.8037 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6936, - 0.8037 - ], - "tag": null, - "to": [ - 5.7399, - 0.3404 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "artifactId": "[uuid]", - "id": "[uuid]", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Mm" - } - }, - "type": "plane", - "value": "XY", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - } - }, - "start": { - "from": [ - 5.7399, - 0.3404 - ], - "to": [ - 5.7399, - 0.3404 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" - }, - "sectional": false - } - }, - { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7399, - 0.3404 - ], - "tag": null, - "to": [ - 5.7321, - 0.3351 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7321, - 0.3351 - ], - "tag": null, - "to": [ - 5.7243, - 0.3299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7243, - 0.3299 - ], - "tag": null, - "to": [ - 5.7165, - 0.3246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7165, - 0.3246 - ], - "tag": null, - "to": [ - 5.7087, - 0.3194 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7087, - 0.3194 - ], - "tag": null, - "to": [ - 5.7009, - 0.3143 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7009, - 0.3143 - ], - "tag": null, - "to": [ - 5.6931, - 0.3091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6931, - 0.3091 - ], - "tag": null, - "to": [ - 5.6853, - 0.3041 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6853, - 0.3041 - ], - "tag": null, - "to": [ - 5.6775, - 0.299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6775, - 0.299 - ], - "tag": null, - "to": [ - 5.6696, - 0.294 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6696, - 0.294 - ], - "tag": null, - "to": [ - 5.6618, - 0.289 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6618, - 0.289 - ], - "tag": null, - "to": [ - 5.6539, - 0.284 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6539, - 0.284 - ], - "tag": null, - "to": [ - 5.6461, - 0.279 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6461, - 0.279 - ], - "tag": null, - "to": [ - 5.6382, - 0.2741 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6382, - 0.2741 - ], - "tag": null, - "to": [ - 5.6304, - 0.2693 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6304, - 0.2693 - ], - "tag": null, - "to": [ - 5.6225, - 0.2644 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6225, - 0.2644 - ], - "tag": null, - "to": [ - 5.6146, - 0.2597 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6146, - 0.2597 - ], - "tag": null, - "to": [ - 5.6068, - 0.2549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6068, - 0.2549 - ], - "tag": null, - "to": [ - 5.5989, - 0.2502 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5989, - 0.2502 - ], - "tag": null, - "to": [ - 5.591, - 0.2455 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.591, - 0.2455 - ], - "tag": null, - "to": [ - 5.5831, - 0.2408 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5831, - 0.2408 - ], - "tag": null, - "to": [ - 5.5752, - 0.2362 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5752, - 0.2362 - ], - "tag": null, - "to": [ - 5.5673, - 0.2316 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5673, - 0.2316 - ], - "tag": null, - "to": [ - 5.5594, - 0.227 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5594, - 0.227 - ], - "tag": null, - "to": [ - 5.5515, - 0.2225 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5515, - 0.2225 - ], - "tag": null, - "to": [ - 5.5436, - 0.218 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5436, - 0.218 - ], - "tag": null, - "to": [ - 5.5357, - 0.2135 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5357, - 0.2135 - ], - "tag": null, - "to": [ - 5.5277, - 0.2091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5277, - 0.2091 - ], - "tag": null, - "to": [ - 5.5198, - 0.2047 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5198, - 0.2047 - ], - "tag": null, - "to": [ - 5.5119, - 0.2004 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5119, - 0.2004 - ], - "tag": null, - "to": [ - 5.504, - 0.1961 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.504, - 0.1961 - ], - "tag": null, - "to": [ - 5.496, - 0.1918 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.496, - 0.1918 - ], - "tag": null, - "to": [ - 5.4881, - 0.1875 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4881, - 0.1875 - ], - "tag": null, - "to": [ - 5.4801, - 0.1833 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4801, - 0.1833 - ], - "tag": null, - "to": [ - 5.4722, - 0.1792 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4722, - 0.1792 - ], - "tag": null, - "to": [ - 5.4642, - 0.175 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4642, - 0.175 - ], - "tag": null, - "to": [ - 5.4563, - 0.1709 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4563, - 0.1709 - ], - "tag": null, - "to": [ - 5.4483, - 0.1669 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4483, - 0.1669 - ], - "tag": null, - "to": [ - 5.4403, - 0.1628 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4403, - 0.1628 - ], - "tag": null, - "to": [ - 5.4324, - 0.1588 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4324, - 0.1588 - ], - "tag": null, - "to": [ - 5.4244, - 0.1549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4244, - 0.1549 - ], - "tag": null, - "to": [ - 5.4164, - 0.151 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4164, - 0.151 - ], - "tag": null, - "to": [ - 5.4084, - 0.1471 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4084, - 0.1471 - ], - "tag": null, - "to": [ - 5.4004, - 0.1433 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4004, - 0.1433 - ], - "tag": null, - "to": [ - 5.3924, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3924, - 0.1395 - ], - "tag": null, - "to": [ - 5.3845, - 0.1357 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3845, - 0.1357 - ], - "tag": null, - "to": [ - 5.3765, - 0.132 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3765, - 0.132 - ], - "tag": null, - "to": [ - 5.3685, - 0.1283 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3685, - 0.1283 - ], - "tag": null, - "to": [ - 5.3605, - 0.1246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3605, - 0.1246 - ], - "tag": null, - "to": [ - 5.3525, - 0.121 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3525, - 0.121 - ], - "tag": null, - "to": [ - 5.3444, - 0.1174 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3444, - 0.1174 - ], - "tag": null, - "to": [ - 5.3364, - 0.1139 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3364, - 0.1139 - ], - "tag": null, - "to": [ - 5.3284, - 0.1104 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3284, - 0.1104 - ], - "tag": null, - "to": [ - 5.3204, - 0.107 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3204, - 0.107 - ], - "tag": null, - "to": [ - 5.3124, - 0.1036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3124, - 0.1036 - ], - "tag": null, - "to": [ - 5.3044, - 0.1002 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3044, - 0.1002 - ], - "tag": null, - "to": [ - 5.2963, - 0.0969 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2963, - 0.0969 - ], - "tag": null, - "to": [ - 5.2883, - 0.0936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2883, - 0.0936 - ], - "tag": null, - "to": [ - 5.2803, - 0.0903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2803, - 0.0903 - ], - "tag": null, - "to": [ - 5.2722, - 0.0871 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2722, - 0.0871 - ], - "tag": null, - "to": [ - 5.2642, - 0.084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2642, - 0.084 - ], - "tag": null, - "to": [ - 5.2562, - 0.0808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2562, - 0.0808 - ], - "tag": null, - "to": [ - 5.2481, - 0.0778 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2481, - 0.0778 - ], - "tag": null, - "to": [ - 5.2401, - 0.0747 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2401, - 0.0747 - ], - "tag": null, - "to": [ - 5.2321, - 0.0717 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2321, - 0.0717 - ], - "tag": null, - "to": [ - 5.224, - 0.0688 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.224, - 0.0688 - ], - "tag": null, - "to": [ - 5.216, - 0.0659 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.216, - 0.0659 - ], - "tag": null, - "to": [ - 5.2079, - 0.063 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2079, - 0.063 - ], - "tag": null, - "to": [ - 5.1999, - 0.0602 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1999, - 0.0602 - ], - "tag": null, - "to": [ - 5.1918, - 0.0575 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1918, - 0.0575 - ], - "tag": null, - "to": [ - 5.1837, - 0.0547 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1837, - 0.0547 - ], - "tag": null, - "to": [ - 5.1757, - 0.0521 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1757, - 0.0521 - ], - "tag": null, - "to": [ - 5.1676, - 0.0494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1676, - 0.0494 - ], - "tag": null, - "to": [ - 5.1596, - 0.0469 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1596, - 0.0469 - ], - "tag": null, - "to": [ - 5.1515, - 0.0443 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1515, - 0.0443 - ], - "tag": null, - "to": [ - 5.1434, - 0.0419 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1434, - 0.0419 - ], - "tag": null, - "to": [ - 5.1354, - 0.0394 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1354, - 0.0394 - ], - "tag": null, - "to": [ - 5.1273, - 0.0371 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1273, - 0.0371 - ], - "tag": null, - "to": [ - 5.1192, - 0.0347 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1192, - 0.0347 - ], - "tag": null, - "to": [ - 5.1112, - 0.0325 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1112, - 0.0325 - ], - "tag": null, - "to": [ - 5.1031, - 0.0303 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1031, - 0.0303 - ], - "tag": null, - "to": [ - 5.095, - 0.0281 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.095, - 0.0281 - ], - "tag": null, - "to": [ - 5.0869, - 0.026 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0869, - 0.026 - ], - "tag": null, - "to": [ - 5.0789, - 0.0239 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0789, - 0.0239 - ], - "tag": null, - "to": [ - 5.0708, - 0.022 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0708, - 0.022 - ], - "tag": null, - "to": [ - 5.0627, - 0.02 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0627, - 0.02 - ], - "tag": null, - "to": [ - 5.0546, - 0.0182 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0546, - 0.0182 - ], - "tag": null, - "to": [ - 5.0466, - 0.0164 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0466, - 0.0164 - ], - "tag": null, - "to": [ - 5.0385, - 0.0146 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0385, - 0.0146 - ], - "tag": null, - "to": [ - 5.0304, - 0.013 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0304, - 0.013 - ], - "tag": null, - "to": [ - 5.0223, - 0.0114 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0223, - 0.0114 - ], - "tag": null, - "to": [ - 5.0142, - 0.0098 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0142, - 0.0098 - ], - "tag": null, - "to": [ - 5.0061, - 0.0084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0061, - 0.0084 - ], - "tag": null, - "to": [ - 4.9981, - 0.007 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9981, - 0.007 - ], - "tag": null, - "to": [ - 4.99, - 0.0058 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.99, - 0.0058 - ], - "tag": null, - "to": [ - 4.9819, - 0.0046 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9819, - 0.0046 - ], - "tag": null, - "to": [ - 4.9738, - 0.0035 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9738, - 0.0035 - ], - "tag": null, - "to": [ - 4.9657, - 0.0025 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9657, - 0.0025 - ], - "tag": null, - "to": [ - 4.9576, - 0.0016 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9576, - 0.0016 - ], - "tag": null, - "to": [ - 4.9496, - 0.0009 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9496, - 0.0009 - ], - "tag": null, - "to": [ - 4.9415, - 0.0003 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9415, - 0.0003 - ], - "tag": null, - "to": [ - 4.9334, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "ccw": true, - "center": [ - -0.0, - -0.0 - ], - "from": [ - 4.9334, - 0.0 - ], - "radius": 4.933386259126019, - "tag": null, - "to": [ - 4.8356, - 0.9775 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8356, - 0.9775 - ], - "tag": null, - "to": [ - 4.8436, - 0.9788 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8436, - 0.9788 - ], - "tag": null, - "to": [ - 4.8516, - 0.9799 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8516, - 0.9799 - ], - "tag": null, - "to": [ - 4.8597, - 0.9808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8597, - 0.9808 - ], - "tag": null, - "to": [ - 4.8678, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8678, - 0.9815 - ], - "tag": null, - "to": [ - 4.8759, - 0.9821 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8759, - 0.9821 - ], - "tag": null, - "to": [ - 4.884, - 0.9827 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.884, - 0.9827 - ], - "tag": null, - "to": [ - 4.8922, - 0.9831 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8922, - 0.9831 - ], - "tag": null, - "to": [ - 4.9004, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9004, - 0.9835 - ], - "tag": null, - "to": [ - 4.9086, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9086, - 0.9837 - ], - "tag": null, - "to": [ - 4.9168, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9168, - 0.9839 - ], - "tag": null, - "to": [ - 4.925, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.925, - 0.984 - ], - "tag": null, - "to": [ - 4.9332, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9332, - 0.984 - ], - "tag": null, - "to": [ - 4.9415, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9415, - 0.984 - ], - "tag": null, - "to": [ - 4.9497, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9497, - 0.9839 - ], - "tag": null, - "to": [ - 4.958, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.958, - 0.9837 - ], - "tag": null, - "to": [ - 4.9663, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9663, - 0.9835 - ], - "tag": null, - "to": [ - 4.9746, - 0.9832 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9746, - 0.9832 - ], - "tag": null, - "to": [ - 4.9829, - 0.9829 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9829, - 0.9829 - ], - "tag": null, - "to": [ - 4.9912, - 0.9825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9912, - 0.9825 - ], - "tag": null, - "to": [ - 4.9996, - 0.982 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9996, - 0.982 - ], - "tag": null, - "to": [ - 5.0079, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0079, - 0.9815 - ], - "tag": null, - "to": [ - 5.0163, - 0.9809 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0163, - 0.9809 - ], - "tag": null, - "to": [ - 5.0246, - 0.9803 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0246, - 0.9803 - ], - "tag": null, - "to": [ - 5.033, - 0.9796 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.033, - 0.9796 - ], - "tag": null, - "to": [ - 5.0414, - 0.9789 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0414, - 0.9789 - ], - "tag": null, - "to": [ - 5.0497, - 0.9781 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0497, - 0.9781 - ], - "tag": null, - "to": [ - 5.0581, - 0.9773 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0581, - 0.9773 - ], - "tag": null, - "to": [ - 5.0665, - 0.9764 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0665, - 0.9764 - ], - "tag": null, - "to": [ - 5.075, - 0.9755 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.075, - 0.9755 - ], - "tag": null, - "to": [ - 5.0834, - 0.9745 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0834, - 0.9745 - ], - "tag": null, - "to": [ - 5.0918, - 0.9735 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0918, - 0.9735 - ], - "tag": null, - "to": [ - 5.1002, - 0.9724 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1002, - 0.9724 - ], - "tag": null, - "to": [ - 5.1087, - 0.9713 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1087, - 0.9713 - ], - "tag": null, - "to": [ - 5.1171, - 0.9701 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1171, - 0.9701 - ], - "tag": null, - "to": [ - 5.1256, - 0.9689 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1256, - 0.9689 - ], - "tag": null, - "to": [ - 5.1341, - 0.9677 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1341, - 0.9677 - ], - "tag": null, - "to": [ - 5.1425, - 0.9664 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1425, - 0.9664 - ], - "tag": null, - "to": [ - 5.151, - 0.9651 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.151, - 0.9651 - ], - "tag": null, - "to": [ - 5.1595, - 0.9637 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1595, - 0.9637 - ], - "tag": null, - "to": [ - 5.168, - 0.9623 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.168, - 0.9623 - ], - "tag": null, - "to": [ - 5.1765, - 0.9608 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1765, - 0.9608 - ], - "tag": null, - "to": [ - 5.185, - 0.9593 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.185, - 0.9593 - ], - "tag": null, - "to": [ - 5.1935, - 0.9577 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1935, - 0.9577 - ], - "tag": null, - "to": [ - 5.202, - 0.9561 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.202, - 0.9561 - ], - "tag": null, - "to": [ - 5.2105, - 0.9545 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2105, - 0.9545 - ], - "tag": null, - "to": [ - 5.219, - 0.9528 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.219, - 0.9528 - ], - "tag": null, - "to": [ - 5.2276, - 0.9511 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2276, - 0.9511 - ], - "tag": null, - "to": [ - 5.2361, - 0.9494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2361, - 0.9494 - ], - "tag": null, - "to": [ - 5.2447, - 0.9476 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2447, - 0.9476 - ], - "tag": null, - "to": [ - 5.2532, - 0.9457 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2532, - 0.9457 - ], - "tag": null, - "to": [ - 5.2617, - 0.9439 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2617, - 0.9439 - ], - "tag": null, - "to": [ - 5.2703, - 0.942 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2703, - 0.942 - ], - "tag": null, - "to": [ - 5.2789, - 0.94 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2789, - 0.94 - ], - "tag": null, - "to": [ - 5.2874, - 0.938 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2874, - 0.938 - ], - "tag": null, - "to": [ - 5.296, - 0.936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.296, - 0.936 - ], - "tag": null, - "to": [ - 5.3046, - 0.9339 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3046, - 0.9339 - ], - "tag": null, - "to": [ - 5.3132, - 0.9318 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3132, - 0.9318 - ], - "tag": null, - "to": [ - 5.3217, - 0.9297 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3217, - 0.9297 - ], - "tag": null, - "to": [ - 5.3303, - 0.9275 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3303, - 0.9275 - ], - "tag": null, - "to": [ - 5.3389, - 0.9253 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3389, - 0.9253 - ], - "tag": null, - "to": [ - 5.3475, - 0.923 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3475, - 0.923 - ], - "tag": null, - "to": [ - 5.3561, - 0.9207 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3561, - 0.9207 - ], - "tag": null, - "to": [ - 5.3647, - 0.9184 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3647, - 0.9184 - ], - "tag": null, - "to": [ - 5.3733, - 0.916 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3733, - 0.916 - ], - "tag": null, - "to": [ - 5.3819, - 0.9136 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3819, - 0.9136 - ], - "tag": null, - "to": [ - 5.3906, - 0.9112 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3906, - 0.9112 - ], - "tag": null, - "to": [ - 5.3992, - 0.9087 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3992, - 0.9087 - ], - "tag": null, - "to": [ - 5.4078, - 0.9062 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4078, - 0.9062 - ], - "tag": null, - "to": [ - 5.4164, - 0.9036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4164, - 0.9036 - ], - "tag": null, - "to": [ - 5.425, - 0.901 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.425, - 0.901 - ], - "tag": null, - "to": [ - 5.4337, - 0.8984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4337, - 0.8984 - ], - "tag": null, - "to": [ - 5.4423, - 0.8958 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4423, - 0.8958 - ], - "tag": null, - "to": [ - 5.4509, - 0.8931 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4509, - 0.8931 - ], - "tag": null, - "to": [ - 5.4596, - 0.8903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4596, - 0.8903 - ], - "tag": null, - "to": [ - 5.4682, - 0.8876 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4682, - 0.8876 - ], - "tag": null, - "to": [ - 5.4769, - 0.8848 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4769, - 0.8848 - ], - "tag": null, - "to": [ - 5.4855, - 0.8819 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4855, - 0.8819 - ], - "tag": null, - "to": [ - 5.4942, - 0.8791 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4942, - 0.8791 - ], - "tag": null, - "to": [ - 5.5028, - 0.8762 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5028, - 0.8762 - ], - "tag": null, - "to": [ - 5.5115, - 0.8732 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5115, - 0.8732 - ], - "tag": null, - "to": [ - 5.5201, - 0.8703 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5201, - 0.8703 - ], - "tag": null, - "to": [ - 5.5288, - 0.8672 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5288, - 0.8672 - ], - "tag": null, - "to": [ - 5.5374, - 0.8642 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5374, - 0.8642 - ], - "tag": null, - "to": [ - 5.5461, - 0.8611 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5461, - 0.8611 - ], - "tag": null, - "to": [ - 5.5548, - 0.858 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5548, - 0.858 - ], - "tag": null, - "to": [ - 5.5634, - 0.8549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5634, - 0.8549 - ], - "tag": null, - "to": [ - 5.5721, - 0.8517 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5721, - 0.8517 - ], - "tag": null, - "to": [ - 5.5808, - 0.8485 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5808, - 0.8485 - ], - "tag": null, - "to": [ - 5.5894, - 0.8452 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5894, - 0.8452 - ], - "tag": null, - "to": [ - 5.5981, - 0.842 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5981, - 0.842 - ], - "tag": null, - "to": [ - 5.6068, - 0.8386 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6068, - 0.8386 - ], - "tag": null, - "to": [ - 5.6154, - 0.8353 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6154, - 0.8353 - ], - "tag": null, - "to": [ - 5.6241, - 0.8319 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6241, - 0.8319 - ], - "tag": null, - "to": [ - 5.6328, - 0.8285 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6328, - 0.8285 - ], - "tag": null, - "to": [ - 5.6415, - 0.825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6415, - 0.825 - ], - "tag": null, - "to": [ - 5.6502, - 0.8216 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6502, - 0.8216 - ], - "tag": null, - "to": [ - 5.6588, - 0.8181 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6588, - 0.8181 - ], - "tag": null, - "to": [ - 5.6675, - 0.8145 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6675, - 0.8145 - ], - "tag": null, - "to": [ - 5.6762, - 0.8109 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6762, - 0.8109 - ], - "tag": null, - "to": [ - 5.6849, - 0.8073 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6849, - 0.8073 - ], - "tag": null, - "to": [ - 5.6936, - 0.8037 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6936, - 0.8037 - ], - "tag": null, - "to": [ - 5.7399, - 0.3404 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "artifactId": "[uuid]", - "id": "[uuid]", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Mm" - } - }, - "type": "plane", - "value": "XY", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - } - }, - "start": { - "from": [ - 5.7399, - 0.3404 - ], - "to": [ - 5.7399, - 0.3404 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" - }, - "sectional": false - } - }, - { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7399, - 0.3404 - ], - "tag": null, - "to": [ - 5.7321, - 0.3351 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7321, - 0.3351 - ], - "tag": null, - "to": [ - 5.7243, - 0.3299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7243, - 0.3299 - ], - "tag": null, - "to": [ - 5.7165, - 0.3246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7165, - 0.3246 - ], - "tag": null, - "to": [ - 5.7087, - 0.3194 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7087, - 0.3194 - ], - "tag": null, - "to": [ - 5.7009, - 0.3143 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7009, - 0.3143 - ], - "tag": null, - "to": [ - 5.6931, - 0.3091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6931, - 0.3091 - ], - "tag": null, - "to": [ - 5.6853, - 0.3041 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6853, - 0.3041 - ], - "tag": null, - "to": [ - 5.6775, - 0.299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6775, - 0.299 - ], - "tag": null, - "to": [ - 5.6696, - 0.294 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6696, - 0.294 - ], - "tag": null, - "to": [ - 5.6618, - 0.289 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6618, - 0.289 - ], - "tag": null, - "to": [ - 5.6539, - 0.284 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6539, - 0.284 - ], - "tag": null, - "to": [ - 5.6461, - 0.279 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6461, - 0.279 - ], - "tag": null, - "to": [ - 5.6382, - 0.2741 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6382, - 0.2741 - ], - "tag": null, - "to": [ - 5.6304, - 0.2693 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6304, - 0.2693 - ], - "tag": null, - "to": [ - 5.6225, - 0.2644 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6225, - 0.2644 - ], - "tag": null, - "to": [ - 5.6146, - 0.2597 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6146, - 0.2597 - ], - "tag": null, - "to": [ - 5.6068, - 0.2549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6068, - 0.2549 - ], - "tag": null, - "to": [ - 5.5989, - 0.2502 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5989, - 0.2502 - ], - "tag": null, - "to": [ - 5.591, - 0.2455 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.591, - 0.2455 - ], - "tag": null, - "to": [ - 5.5831, - 0.2408 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5831, - 0.2408 - ], - "tag": null, - "to": [ - 5.5752, - 0.2362 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5752, - 0.2362 - ], - "tag": null, - "to": [ - 5.5673, - 0.2316 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5673, - 0.2316 - ], - "tag": null, - "to": [ - 5.5594, - 0.227 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5594, - 0.227 - ], - "tag": null, - "to": [ - 5.5515, - 0.2225 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5515, - 0.2225 - ], - "tag": null, - "to": [ - 5.5436, - 0.218 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5436, - 0.218 - ], - "tag": null, - "to": [ - 5.5357, - 0.2135 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5357, - 0.2135 - ], - "tag": null, - "to": [ - 5.5277, - 0.2091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5277, - 0.2091 - ], - "tag": null, - "to": [ - 5.5198, - 0.2047 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5198, - 0.2047 - ], - "tag": null, - "to": [ - 5.5119, - 0.2004 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5119, - 0.2004 - ], - "tag": null, - "to": [ - 5.504, - 0.1961 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.504, - 0.1961 - ], - "tag": null, - "to": [ - 5.496, - 0.1918 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.496, - 0.1918 - ], - "tag": null, - "to": [ - 5.4881, - 0.1875 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4881, - 0.1875 - ], - "tag": null, - "to": [ - 5.4801, - 0.1833 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4801, - 0.1833 - ], - "tag": null, - "to": [ - 5.4722, - 0.1792 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4722, - 0.1792 - ], - "tag": null, - "to": [ - 5.4642, - 0.175 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4642, - 0.175 - ], - "tag": null, - "to": [ - 5.4563, - 0.1709 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4563, - 0.1709 - ], - "tag": null, - "to": [ - 5.4483, - 0.1669 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4483, - 0.1669 - ], - "tag": null, - "to": [ - 5.4403, - 0.1628 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4403, - 0.1628 - ], - "tag": null, - "to": [ - 5.4324, - 0.1588 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4324, - 0.1588 - ], - "tag": null, - "to": [ - 5.4244, - 0.1549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4244, - 0.1549 - ], - "tag": null, - "to": [ - 5.4164, - 0.151 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4164, - 0.151 - ], - "tag": null, - "to": [ - 5.4084, - 0.1471 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4084, - 0.1471 - ], - "tag": null, - "to": [ - 5.4004, - 0.1433 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4004, - 0.1433 - ], - "tag": null, - "to": [ - 5.3924, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3924, - 0.1395 - ], - "tag": null, - "to": [ - 5.3845, - 0.1357 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3845, - 0.1357 - ], - "tag": null, - "to": [ - 5.3765, - 0.132 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3765, - 0.132 - ], - "tag": null, - "to": [ - 5.3685, - 0.1283 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3685, - 0.1283 - ], - "tag": null, - "to": [ - 5.3605, - 0.1246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3605, - 0.1246 - ], - "tag": null, - "to": [ - 5.3525, - 0.121 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3525, - 0.121 - ], - "tag": null, - "to": [ - 5.3444, - 0.1174 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3444, - 0.1174 - ], - "tag": null, - "to": [ - 5.3364, - 0.1139 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3364, - 0.1139 - ], - "tag": null, - "to": [ - 5.3284, - 0.1104 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3284, - 0.1104 - ], - "tag": null, - "to": [ - 5.3204, - 0.107 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3204, - 0.107 - ], - "tag": null, - "to": [ - 5.3124, - 0.1036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3124, - 0.1036 - ], - "tag": null, - "to": [ - 5.3044, - 0.1002 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3044, - 0.1002 - ], - "tag": null, - "to": [ - 5.2963, - 0.0969 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2963, - 0.0969 - ], - "tag": null, - "to": [ - 5.2883, - 0.0936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2883, - 0.0936 - ], - "tag": null, - "to": [ - 5.2803, - 0.0903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2803, - 0.0903 - ], - "tag": null, - "to": [ - 5.2722, - 0.0871 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2722, - 0.0871 - ], - "tag": null, - "to": [ - 5.2642, - 0.084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2642, - 0.084 - ], - "tag": null, - "to": [ - 5.2562, - 0.0808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2562, - 0.0808 - ], - "tag": null, - "to": [ - 5.2481, - 0.0778 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2481, - 0.0778 - ], - "tag": null, - "to": [ - 5.2401, - 0.0747 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2401, - 0.0747 - ], - "tag": null, - "to": [ - 5.2321, - 0.0717 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2321, - 0.0717 - ], - "tag": null, - "to": [ - 5.224, - 0.0688 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.224, - 0.0688 - ], - "tag": null, - "to": [ - 5.216, - 0.0659 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.216, - 0.0659 - ], - "tag": null, - "to": [ - 5.2079, - 0.063 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2079, - 0.063 - ], - "tag": null, - "to": [ - 5.1999, - 0.0602 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1999, - 0.0602 - ], - "tag": null, - "to": [ - 5.1918, - 0.0575 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1918, - 0.0575 - ], - "tag": null, - "to": [ - 5.1837, - 0.0547 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1837, - 0.0547 - ], - "tag": null, - "to": [ - 5.1757, - 0.0521 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1757, - 0.0521 - ], - "tag": null, - "to": [ - 5.1676, - 0.0494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1676, - 0.0494 - ], - "tag": null, - "to": [ - 5.1596, - 0.0469 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1596, - 0.0469 - ], - "tag": null, - "to": [ - 5.1515, - 0.0443 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1515, - 0.0443 - ], - "tag": null, - "to": [ - 5.1434, - 0.0419 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1434, - 0.0419 - ], - "tag": null, - "to": [ - 5.1354, - 0.0394 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1354, - 0.0394 - ], - "tag": null, - "to": [ - 5.1273, - 0.0371 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1273, - 0.0371 - ], - "tag": null, - "to": [ - 5.1192, - 0.0347 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1192, - 0.0347 - ], - "tag": null, - "to": [ - 5.1112, - 0.0325 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1112, - 0.0325 - ], - "tag": null, - "to": [ - 5.1031, - 0.0303 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1031, - 0.0303 - ], - "tag": null, - "to": [ - 5.095, - 0.0281 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.095, - 0.0281 - ], - "tag": null, - "to": [ - 5.0869, - 0.026 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0869, - 0.026 - ], - "tag": null, - "to": [ - 5.0789, - 0.0239 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0789, - 0.0239 - ], - "tag": null, - "to": [ - 5.0708, - 0.022 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0708, - 0.022 - ], - "tag": null, - "to": [ - 5.0627, - 0.02 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0627, - 0.02 - ], - "tag": null, - "to": [ - 5.0546, - 0.0182 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0546, - 0.0182 - ], - "tag": null, - "to": [ - 5.0466, - 0.0164 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0466, - 0.0164 - ], - "tag": null, - "to": [ - 5.0385, - 0.0146 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0385, - 0.0146 - ], - "tag": null, - "to": [ - 5.0304, - 0.013 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0304, - 0.013 - ], - "tag": null, - "to": [ - 5.0223, - 0.0114 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0223, - 0.0114 - ], - "tag": null, - "to": [ - 5.0142, - 0.0098 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0142, - 0.0098 - ], - "tag": null, - "to": [ - 5.0061, - 0.0084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0061, - 0.0084 - ], - "tag": null, - "to": [ - 4.9981, - 0.007 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9981, - 0.007 - ], - "tag": null, - "to": [ - 4.99, - 0.0058 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.99, - 0.0058 - ], - "tag": null, - "to": [ - 4.9819, - 0.0046 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9819, - 0.0046 - ], - "tag": null, - "to": [ - 4.9738, - 0.0035 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9738, - 0.0035 - ], - "tag": null, - "to": [ - 4.9657, - 0.0025 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9657, - 0.0025 - ], - "tag": null, - "to": [ - 4.9576, - 0.0016 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9576, - 0.0016 - ], - "tag": null, - "to": [ - 4.9496, - 0.0009 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9496, - 0.0009 - ], - "tag": null, - "to": [ - 4.9415, - 0.0003 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9415, - 0.0003 - ], - "tag": null, - "to": [ - 4.9334, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "ccw": true, - "center": [ - -0.0, - -0.0 - ], - "from": [ - 4.9334, - 0.0 - ], - "radius": 4.933386259126019, - "tag": null, - "to": [ - 4.8356, - 0.9775 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8356, - 0.9775 - ], - "tag": null, - "to": [ - 4.8436, - 0.9788 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8436, - 0.9788 - ], - "tag": null, - "to": [ - 4.8516, - 0.9799 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8516, - 0.9799 - ], - "tag": null, - "to": [ - 4.8597, - 0.9808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8597, - 0.9808 - ], - "tag": null, - "to": [ - 4.8678, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8678, - 0.9815 - ], - "tag": null, - "to": [ - 4.8759, - 0.9821 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8759, - 0.9821 - ], - "tag": null, - "to": [ - 4.884, - 0.9827 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.884, - 0.9827 - ], - "tag": null, - "to": [ - 4.8922, - 0.9831 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8922, - 0.9831 - ], - "tag": null, - "to": [ - 4.9004, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9004, - 0.9835 - ], - "tag": null, - "to": [ - 4.9086, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9086, - 0.9837 - ], - "tag": null, - "to": [ - 4.9168, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9168, - 0.9839 - ], - "tag": null, - "to": [ - 4.925, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.925, - 0.984 - ], - "tag": null, - "to": [ - 4.9332, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9332, - 0.984 - ], - "tag": null, - "to": [ - 4.9415, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9415, - 0.984 - ], - "tag": null, - "to": [ - 4.9497, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9497, - 0.9839 - ], - "tag": null, - "to": [ - 4.958, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.958, - 0.9837 - ], - "tag": null, - "to": [ - 4.9663, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9663, - 0.9835 - ], - "tag": null, - "to": [ - 4.9746, - 0.9832 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9746, - 0.9832 - ], - "tag": null, - "to": [ - 4.9829, - 0.9829 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9829, - 0.9829 - ], - "tag": null, - "to": [ - 4.9912, - 0.9825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9912, - 0.9825 - ], - "tag": null, - "to": [ - 4.9996, - 0.982 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9996, - 0.982 - ], - "tag": null, - "to": [ - 5.0079, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0079, - 0.9815 - ], - "tag": null, - "to": [ - 5.0163, - 0.9809 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0163, - 0.9809 - ], - "tag": null, - "to": [ - 5.0246, - 0.9803 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0246, - 0.9803 - ], - "tag": null, - "to": [ - 5.033, - 0.9796 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.033, - 0.9796 - ], - "tag": null, - "to": [ - 5.0414, - 0.9789 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0414, - 0.9789 - ], - "tag": null, - "to": [ - 5.0497, - 0.9781 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0497, - 0.9781 - ], - "tag": null, - "to": [ - 5.0581, - 0.9773 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0581, - 0.9773 - ], - "tag": null, - "to": [ - 5.0665, - 0.9764 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0665, - 0.9764 - ], - "tag": null, - "to": [ - 5.075, - 0.9755 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.075, - 0.9755 - ], - "tag": null, - "to": [ - 5.0834, - 0.9745 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0834, - 0.9745 - ], - "tag": null, - "to": [ - 5.0918, - 0.9735 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0918, - 0.9735 - ], - "tag": null, - "to": [ - 5.1002, - 0.9724 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1002, - 0.9724 - ], - "tag": null, - "to": [ - 5.1087, - 0.9713 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1087, - 0.9713 - ], - "tag": null, - "to": [ - 5.1171, - 0.9701 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1171, - 0.9701 - ], - "tag": null, - "to": [ - 5.1256, - 0.9689 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1256, - 0.9689 - ], - "tag": null, - "to": [ - 5.1341, - 0.9677 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1341, - 0.9677 - ], - "tag": null, - "to": [ - 5.1425, - 0.9664 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1425, - 0.9664 - ], - "tag": null, - "to": [ - 5.151, - 0.9651 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.151, - 0.9651 - ], - "tag": null, - "to": [ - 5.1595, - 0.9637 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1595, - 0.9637 - ], - "tag": null, - "to": [ - 5.168, - 0.9623 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.168, - 0.9623 - ], - "tag": null, - "to": [ - 5.1765, - 0.9608 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1765, - 0.9608 - ], - "tag": null, - "to": [ - 5.185, - 0.9593 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.185, - 0.9593 - ], - "tag": null, - "to": [ - 5.1935, - 0.9577 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1935, - 0.9577 - ], - "tag": null, - "to": [ - 5.202, - 0.9561 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.202, - 0.9561 - ], - "tag": null, - "to": [ - 5.2105, - 0.9545 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2105, - 0.9545 - ], - "tag": null, - "to": [ - 5.219, - 0.9528 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.219, - 0.9528 - ], - "tag": null, - "to": [ - 5.2276, - 0.9511 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2276, - 0.9511 - ], - "tag": null, - "to": [ - 5.2361, - 0.9494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2361, - 0.9494 - ], - "tag": null, - "to": [ - 5.2447, - 0.9476 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2447, - 0.9476 - ], - "tag": null, - "to": [ - 5.2532, - 0.9457 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2532, - 0.9457 - ], - "tag": null, - "to": [ - 5.2617, - 0.9439 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2617, - 0.9439 - ], - "tag": null, - "to": [ - 5.2703, - 0.942 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2703, - 0.942 - ], - "tag": null, - "to": [ - 5.2789, - 0.94 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2789, - 0.94 - ], - "tag": null, - "to": [ - 5.2874, - 0.938 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2874, - 0.938 - ], - "tag": null, - "to": [ - 5.296, - 0.936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.296, - 0.936 - ], - "tag": null, - "to": [ - 5.3046, - 0.9339 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3046, - 0.9339 - ], - "tag": null, - "to": [ - 5.3132, - 0.9318 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3132, - 0.9318 - ], - "tag": null, - "to": [ - 5.3217, - 0.9297 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3217, - 0.9297 - ], - "tag": null, - "to": [ - 5.3303, - 0.9275 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3303, - 0.9275 - ], - "tag": null, - "to": [ - 5.3389, - 0.9253 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3389, - 0.9253 - ], - "tag": null, - "to": [ - 5.3475, - 0.923 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3475, - 0.923 - ], - "tag": null, - "to": [ - 5.3561, - 0.9207 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3561, - 0.9207 - ], - "tag": null, - "to": [ - 5.3647, - 0.9184 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3647, - 0.9184 - ], - "tag": null, - "to": [ - 5.3733, - 0.916 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3733, - 0.916 - ], - "tag": null, - "to": [ - 5.3819, - 0.9136 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3819, - 0.9136 - ], - "tag": null, - "to": [ - 5.3906, - 0.9112 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3906, - 0.9112 - ], - "tag": null, - "to": [ - 5.3992, - 0.9087 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3992, - 0.9087 - ], - "tag": null, - "to": [ - 5.4078, - 0.9062 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4078, - 0.9062 - ], - "tag": null, - "to": [ - 5.4164, - 0.9036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4164, - 0.9036 - ], - "tag": null, - "to": [ - 5.425, - 0.901 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.425, - 0.901 - ], - "tag": null, - "to": [ - 5.4337, - 0.8984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4337, - 0.8984 - ], - "tag": null, - "to": [ - 5.4423, - 0.8958 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4423, - 0.8958 - ], - "tag": null, - "to": [ - 5.4509, - 0.8931 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4509, - 0.8931 - ], - "tag": null, - "to": [ - 5.4596, - 0.8903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4596, - 0.8903 - ], - "tag": null, - "to": [ - 5.4682, - 0.8876 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4682, - 0.8876 - ], - "tag": null, - "to": [ - 5.4769, - 0.8848 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4769, - 0.8848 - ], - "tag": null, - "to": [ - 5.4855, - 0.8819 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4855, - 0.8819 - ], - "tag": null, - "to": [ - 5.4942, - 0.8791 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4942, - 0.8791 - ], - "tag": null, - "to": [ - 5.5028, - 0.8762 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5028, - 0.8762 - ], - "tag": null, - "to": [ - 5.5115, - 0.8732 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5115, - 0.8732 - ], - "tag": null, - "to": [ - 5.5201, - 0.8703 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5201, - 0.8703 - ], - "tag": null, - "to": [ - 5.5288, - 0.8672 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5288, - 0.8672 - ], - "tag": null, - "to": [ - 5.5374, - 0.8642 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5374, - 0.8642 - ], - "tag": null, - "to": [ - 5.5461, - 0.8611 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5461, - 0.8611 - ], - "tag": null, - "to": [ - 5.5548, - 0.858 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5548, - 0.858 - ], - "tag": null, - "to": [ - 5.5634, - 0.8549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5634, - 0.8549 - ], - "tag": null, - "to": [ - 5.5721, - 0.8517 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5721, - 0.8517 - ], - "tag": null, - "to": [ - 5.5808, - 0.8485 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5808, - 0.8485 - ], - "tag": null, - "to": [ - 5.5894, - 0.8452 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5894, - 0.8452 - ], - "tag": null, - "to": [ - 5.5981, - 0.842 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5981, - 0.842 - ], - "tag": null, - "to": [ - 5.6068, - 0.8386 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6068, - 0.8386 - ], - "tag": null, - "to": [ - 5.6154, - 0.8353 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6154, - 0.8353 - ], - "tag": null, - "to": [ - 5.6241, - 0.8319 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6241, - 0.8319 - ], - "tag": null, - "to": [ - 5.6328, - 0.8285 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6328, - 0.8285 - ], - "tag": null, - "to": [ - 5.6415, - 0.825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6415, - 0.825 - ], - "tag": null, - "to": [ - 5.6502, - 0.8216 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6502, - 0.8216 - ], - "tag": null, - "to": [ - 5.6588, - 0.8181 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6588, - 0.8181 - ], - "tag": null, - "to": [ - 5.6675, - 0.8145 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6675, - 0.8145 - ], - "tag": null, - "to": [ - 5.6762, - 0.8109 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6762, - 0.8109 - ], - "tag": null, - "to": [ - 5.6849, - 0.8073 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6849, - 0.8073 - ], - "tag": null, - "to": [ - 5.6936, - 0.8037 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6936, - 0.8037 - ], - "tag": null, - "to": [ - 5.7399, - 0.3404 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "artifactId": "[uuid]", - "id": "[uuid]", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Mm" - } - }, - "type": "plane", - "value": "XY", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - } - }, - "start": { - "from": [ - 5.7399, - 0.3404 - ], - "to": [ - 5.7399, - 0.3404 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" - }, - "sectional": false - } - }, - { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7399, - 0.3404 - ], - "tag": null, - "to": [ - 5.7321, - 0.3351 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7321, - 0.3351 - ], - "tag": null, - "to": [ - 5.7243, - 0.3299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7243, - 0.3299 - ], - "tag": null, - "to": [ - 5.7165, - 0.3246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7165, - 0.3246 - ], - "tag": null, - "to": [ - 5.7087, - 0.3194 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7087, - 0.3194 - ], - "tag": null, - "to": [ - 5.7009, - 0.3143 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7009, - 0.3143 - ], - "tag": null, - "to": [ - 5.6931, - 0.3091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6931, - 0.3091 - ], - "tag": null, - "to": [ - 5.6853, - 0.3041 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6853, - 0.3041 - ], - "tag": null, - "to": [ - 5.6775, - 0.299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6775, - 0.299 - ], - "tag": null, - "to": [ - 5.6696, - 0.294 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6696, - 0.294 - ], - "tag": null, - "to": [ - 5.6618, - 0.289 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6618, - 0.289 - ], - "tag": null, - "to": [ - 5.6539, - 0.284 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6539, - 0.284 - ], - "tag": null, - "to": [ - 5.6461, - 0.279 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6461, - 0.279 - ], - "tag": null, - "to": [ - 5.6382, - 0.2741 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6382, - 0.2741 - ], - "tag": null, - "to": [ - 5.6304, - 0.2693 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6304, - 0.2693 - ], - "tag": null, - "to": [ - 5.6225, - 0.2644 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6225, - 0.2644 - ], - "tag": null, - "to": [ - 5.6146, - 0.2597 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6146, - 0.2597 - ], - "tag": null, - "to": [ - 5.6068, - 0.2549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6068, - 0.2549 - ], - "tag": null, - "to": [ - 5.5989, - 0.2502 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5989, - 0.2502 - ], - "tag": null, - "to": [ - 5.591, - 0.2455 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.591, - 0.2455 - ], - "tag": null, - "to": [ - 5.5831, - 0.2408 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5831, - 0.2408 - ], - "tag": null, - "to": [ - 5.5752, - 0.2362 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5752, - 0.2362 - ], - "tag": null, - "to": [ - 5.5673, - 0.2316 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5673, - 0.2316 - ], - "tag": null, - "to": [ - 5.5594, - 0.227 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5594, - 0.227 - ], - "tag": null, - "to": [ - 5.5515, - 0.2225 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5515, - 0.2225 - ], - "tag": null, - "to": [ - 5.5436, - 0.218 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5436, - 0.218 - ], - "tag": null, - "to": [ - 5.5357, - 0.2135 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5357, - 0.2135 - ], - "tag": null, - "to": [ - 5.5277, - 0.2091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5277, - 0.2091 - ], - "tag": null, - "to": [ - 5.5198, - 0.2047 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5198, - 0.2047 - ], - "tag": null, - "to": [ - 5.5119, - 0.2004 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5119, - 0.2004 - ], - "tag": null, - "to": [ - 5.504, - 0.1961 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.504, - 0.1961 - ], - "tag": null, - "to": [ - 5.496, - 0.1918 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.496, - 0.1918 - ], - "tag": null, - "to": [ - 5.4881, - 0.1875 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4881, - 0.1875 - ], - "tag": null, - "to": [ - 5.4801, - 0.1833 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4801, - 0.1833 - ], - "tag": null, - "to": [ - 5.4722, - 0.1792 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4722, - 0.1792 - ], - "tag": null, - "to": [ - 5.4642, - 0.175 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4642, - 0.175 - ], - "tag": null, - "to": [ - 5.4563, - 0.1709 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4563, - 0.1709 - ], - "tag": null, - "to": [ - 5.4483, - 0.1669 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4483, - 0.1669 - ], - "tag": null, - "to": [ - 5.4403, - 0.1628 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4403, - 0.1628 - ], - "tag": null, - "to": [ - 5.4324, - 0.1588 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4324, - 0.1588 - ], - "tag": null, - "to": [ - 5.4244, - 0.1549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4244, - 0.1549 - ], - "tag": null, - "to": [ - 5.4164, - 0.151 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4164, - 0.151 - ], - "tag": null, - "to": [ - 5.4084, - 0.1471 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4084, - 0.1471 - ], - "tag": null, - "to": [ - 5.4004, - 0.1433 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4004, - 0.1433 - ], - "tag": null, - "to": [ - 5.3924, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3924, - 0.1395 - ], - "tag": null, - "to": [ - 5.3845, - 0.1357 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3845, - 0.1357 - ], - "tag": null, - "to": [ - 5.3765, - 0.132 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3765, - 0.132 - ], - "tag": null, - "to": [ - 5.3685, - 0.1283 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3685, - 0.1283 - ], - "tag": null, - "to": [ - 5.3605, - 0.1246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3605, - 0.1246 - ], - "tag": null, - "to": [ - 5.3525, - 0.121 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3525, - 0.121 - ], - "tag": null, - "to": [ - 5.3444, - 0.1174 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3444, - 0.1174 - ], - "tag": null, - "to": [ - 5.3364, - 0.1139 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3364, - 0.1139 - ], - "tag": null, - "to": [ - 5.3284, - 0.1104 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3284, - 0.1104 - ], - "tag": null, - "to": [ - 5.3204, - 0.107 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3204, - 0.107 - ], - "tag": null, - "to": [ - 5.3124, - 0.1036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3124, - 0.1036 - ], - "tag": null, - "to": [ - 5.3044, - 0.1002 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3044, - 0.1002 - ], - "tag": null, - "to": [ - 5.2963, - 0.0969 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2963, - 0.0969 - ], - "tag": null, - "to": [ - 5.2883, - 0.0936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2883, - 0.0936 - ], - "tag": null, - "to": [ - 5.2803, - 0.0903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2803, - 0.0903 - ], - "tag": null, - "to": [ - 5.2722, - 0.0871 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2722, - 0.0871 - ], - "tag": null, - "to": [ - 5.2642, - 0.084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2642, - 0.084 - ], - "tag": null, - "to": [ - 5.2562, - 0.0808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2562, - 0.0808 - ], - "tag": null, - "to": [ - 5.2481, - 0.0778 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2481, - 0.0778 - ], - "tag": null, - "to": [ - 5.2401, - 0.0747 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2401, - 0.0747 - ], - "tag": null, - "to": [ - 5.2321, - 0.0717 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2321, - 0.0717 - ], - "tag": null, - "to": [ - 5.224, - 0.0688 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.224, - 0.0688 - ], - "tag": null, - "to": [ - 5.216, - 0.0659 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.216, - 0.0659 - ], - "tag": null, - "to": [ - 5.2079, - 0.063 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2079, - 0.063 - ], - "tag": null, - "to": [ - 5.1999, - 0.0602 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1999, - 0.0602 - ], - "tag": null, - "to": [ - 5.1918, - 0.0575 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1918, - 0.0575 - ], - "tag": null, - "to": [ - 5.1837, - 0.0547 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1837, - 0.0547 - ], - "tag": null, - "to": [ - 5.1757, - 0.0521 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1757, - 0.0521 - ], - "tag": null, - "to": [ - 5.1676, - 0.0494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1676, - 0.0494 - ], - "tag": null, - "to": [ - 5.1596, - 0.0469 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1596, - 0.0469 - ], - "tag": null, - "to": [ - 5.1515, - 0.0443 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1515, - 0.0443 - ], - "tag": null, - "to": [ - 5.1434, - 0.0419 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1434, - 0.0419 - ], - "tag": null, - "to": [ - 5.1354, - 0.0394 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1354, - 0.0394 - ], - "tag": null, - "to": [ - 5.1273, - 0.0371 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1273, - 0.0371 - ], - "tag": null, - "to": [ - 5.1192, - 0.0347 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1192, - 0.0347 - ], - "tag": null, - "to": [ - 5.1112, - 0.0325 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1112, - 0.0325 - ], - "tag": null, - "to": [ - 5.1031, - 0.0303 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1031, - 0.0303 - ], - "tag": null, - "to": [ - 5.095, - 0.0281 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.095, - 0.0281 - ], - "tag": null, - "to": [ - 5.0869, - 0.026 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0869, - 0.026 - ], - "tag": null, - "to": [ - 5.0789, - 0.0239 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0789, - 0.0239 - ], - "tag": null, - "to": [ - 5.0708, - 0.022 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0708, - 0.022 - ], - "tag": null, - "to": [ - 5.0627, - 0.02 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0627, - 0.02 - ], - "tag": null, - "to": [ - 5.0546, - 0.0182 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0546, - 0.0182 - ], - "tag": null, - "to": [ - 5.0466, - 0.0164 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0466, - 0.0164 - ], - "tag": null, - "to": [ - 5.0385, - 0.0146 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0385, - 0.0146 - ], - "tag": null, - "to": [ - 5.0304, - 0.013 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0304, - 0.013 - ], - "tag": null, - "to": [ - 5.0223, - 0.0114 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0223, - 0.0114 - ], - "tag": null, - "to": [ - 5.0142, - 0.0098 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0142, - 0.0098 - ], - "tag": null, - "to": [ - 5.0061, - 0.0084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0061, - 0.0084 - ], - "tag": null, - "to": [ - 4.9981, - 0.007 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9981, - 0.007 - ], - "tag": null, - "to": [ - 4.99, - 0.0058 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.99, - 0.0058 - ], - "tag": null, - "to": [ - 4.9819, - 0.0046 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9819, - 0.0046 - ], - "tag": null, - "to": [ - 4.9738, - 0.0035 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9738, - 0.0035 - ], - "tag": null, - "to": [ - 4.9657, - 0.0025 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9657, - 0.0025 - ], - "tag": null, - "to": [ - 4.9576, - 0.0016 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9576, - 0.0016 - ], - "tag": null, - "to": [ - 4.9496, - 0.0009 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9496, - 0.0009 - ], - "tag": null, - "to": [ - 4.9415, - 0.0003 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9415, - 0.0003 - ], - "tag": null, - "to": [ - 4.9334, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "ccw": true, - "center": [ - -0.0, - -0.0 - ], - "from": [ - 4.9334, - 0.0 - ], - "radius": 4.933386259126019, - "tag": null, - "to": [ - 4.8356, - 0.9775 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8356, - 0.9775 - ], - "tag": null, - "to": [ - 4.8436, - 0.9788 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8436, - 0.9788 - ], - "tag": null, - "to": [ - 4.8516, - 0.9799 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8516, - 0.9799 - ], - "tag": null, - "to": [ - 4.8597, - 0.9808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8597, - 0.9808 - ], - "tag": null, - "to": [ - 4.8678, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8678, - 0.9815 - ], - "tag": null, - "to": [ - 4.8759, - 0.9821 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8759, - 0.9821 - ], - "tag": null, - "to": [ - 4.884, - 0.9827 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.884, - 0.9827 - ], - "tag": null, - "to": [ - 4.8922, - 0.9831 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8922, - 0.9831 - ], - "tag": null, - "to": [ - 4.9004, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9004, - 0.9835 - ], - "tag": null, - "to": [ - 4.9086, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9086, - 0.9837 - ], - "tag": null, - "to": [ - 4.9168, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9168, - 0.9839 - ], - "tag": null, - "to": [ - 4.925, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.925, - 0.984 - ], - "tag": null, - "to": [ - 4.9332, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9332, - 0.984 - ], - "tag": null, - "to": [ - 4.9415, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9415, - 0.984 - ], - "tag": null, - "to": [ - 4.9497, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9497, - 0.9839 - ], - "tag": null, - "to": [ - 4.958, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.958, - 0.9837 - ], - "tag": null, - "to": [ - 4.9663, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9663, - 0.9835 - ], - "tag": null, - "to": [ - 4.9746, - 0.9832 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9746, - 0.9832 - ], - "tag": null, - "to": [ - 4.9829, - 0.9829 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9829, - 0.9829 - ], - "tag": null, - "to": [ - 4.9912, - 0.9825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9912, - 0.9825 - ], - "tag": null, - "to": [ - 4.9996, - 0.982 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9996, - 0.982 - ], - "tag": null, - "to": [ - 5.0079, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0079, - 0.9815 - ], - "tag": null, - "to": [ - 5.0163, - 0.9809 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0163, - 0.9809 - ], - "tag": null, - "to": [ - 5.0246, - 0.9803 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0246, - 0.9803 - ], - "tag": null, - "to": [ - 5.033, - 0.9796 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.033, - 0.9796 - ], - "tag": null, - "to": [ - 5.0414, - 0.9789 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0414, - 0.9789 - ], - "tag": null, - "to": [ - 5.0497, - 0.9781 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0497, - 0.9781 - ], - "tag": null, - "to": [ - 5.0581, - 0.9773 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0581, - 0.9773 - ], - "tag": null, - "to": [ - 5.0665, - 0.9764 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0665, - 0.9764 - ], - "tag": null, - "to": [ - 5.075, - 0.9755 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.075, - 0.9755 - ], - "tag": null, - "to": [ - 5.0834, - 0.9745 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0834, - 0.9745 - ], - "tag": null, - "to": [ - 5.0918, - 0.9735 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0918, - 0.9735 - ], - "tag": null, - "to": [ - 5.1002, - 0.9724 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1002, - 0.9724 - ], - "tag": null, - "to": [ - 5.1087, - 0.9713 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1087, - 0.9713 - ], - "tag": null, - "to": [ - 5.1171, - 0.9701 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1171, - 0.9701 - ], - "tag": null, - "to": [ - 5.1256, - 0.9689 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1256, - 0.9689 - ], - "tag": null, - "to": [ - 5.1341, - 0.9677 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1341, - 0.9677 - ], - "tag": null, - "to": [ - 5.1425, - 0.9664 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1425, - 0.9664 - ], - "tag": null, - "to": [ - 5.151, - 0.9651 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.151, - 0.9651 - ], - "tag": null, - "to": [ - 5.1595, - 0.9637 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1595, - 0.9637 - ], - "tag": null, - "to": [ - 5.168, - 0.9623 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.168, - 0.9623 - ], - "tag": null, - "to": [ - 5.1765, - 0.9608 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1765, - 0.9608 - ], - "tag": null, - "to": [ - 5.185, - 0.9593 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.185, - 0.9593 - ], - "tag": null, - "to": [ - 5.1935, - 0.9577 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1935, - 0.9577 - ], - "tag": null, - "to": [ - 5.202, - 0.9561 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.202, - 0.9561 - ], - "tag": null, - "to": [ - 5.2105, - 0.9545 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2105, - 0.9545 - ], - "tag": null, - "to": [ - 5.219, - 0.9528 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.219, - 0.9528 - ], - "tag": null, - "to": [ - 5.2276, - 0.9511 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2276, - 0.9511 - ], - "tag": null, - "to": [ - 5.2361, - 0.9494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2361, - 0.9494 - ], - "tag": null, - "to": [ - 5.2447, - 0.9476 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2447, - 0.9476 - ], - "tag": null, - "to": [ - 5.2532, - 0.9457 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2532, - 0.9457 - ], - "tag": null, - "to": [ - 5.2617, - 0.9439 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2617, - 0.9439 - ], - "tag": null, - "to": [ - 5.2703, - 0.942 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2703, - 0.942 - ], - "tag": null, - "to": [ - 5.2789, - 0.94 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2789, - 0.94 - ], - "tag": null, - "to": [ - 5.2874, - 0.938 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2874, - 0.938 - ], - "tag": null, - "to": [ - 5.296, - 0.936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.296, - 0.936 - ], - "tag": null, - "to": [ - 5.3046, - 0.9339 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3046, - 0.9339 - ], - "tag": null, - "to": [ - 5.3132, - 0.9318 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3132, - 0.9318 - ], - "tag": null, - "to": [ - 5.3217, - 0.9297 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3217, - 0.9297 - ], - "tag": null, - "to": [ - 5.3303, - 0.9275 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3303, - 0.9275 - ], - "tag": null, - "to": [ - 5.3389, - 0.9253 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3389, - 0.9253 - ], - "tag": null, - "to": [ - 5.3475, - 0.923 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3475, - 0.923 - ], - "tag": null, - "to": [ - 5.3561, - 0.9207 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3561, - 0.9207 - ], - "tag": null, - "to": [ - 5.3647, - 0.9184 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3647, - 0.9184 - ], - "tag": null, - "to": [ - 5.3733, - 0.916 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3733, - 0.916 - ], - "tag": null, - "to": [ - 5.3819, - 0.9136 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3819, - 0.9136 - ], - "tag": null, - "to": [ - 5.3906, - 0.9112 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3906, - 0.9112 - ], - "tag": null, - "to": [ - 5.3992, - 0.9087 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3992, - 0.9087 - ], - "tag": null, - "to": [ - 5.4078, - 0.9062 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4078, - 0.9062 - ], - "tag": null, - "to": [ - 5.4164, - 0.9036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4164, - 0.9036 - ], - "tag": null, - "to": [ - 5.425, - 0.901 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.425, - 0.901 - ], - "tag": null, - "to": [ - 5.4337, - 0.8984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4337, - 0.8984 - ], - "tag": null, - "to": [ - 5.4423, - 0.8958 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4423, - 0.8958 - ], - "tag": null, - "to": [ - 5.4509, - 0.8931 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4509, - 0.8931 - ], - "tag": null, - "to": [ - 5.4596, - 0.8903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4596, - 0.8903 - ], - "tag": null, - "to": [ - 5.4682, - 0.8876 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4682, - 0.8876 - ], - "tag": null, - "to": [ - 5.4769, - 0.8848 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4769, - 0.8848 - ], - "tag": null, - "to": [ - 5.4855, - 0.8819 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4855, - 0.8819 - ], - "tag": null, - "to": [ - 5.4942, - 0.8791 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4942, - 0.8791 - ], - "tag": null, - "to": [ - 5.5028, - 0.8762 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5028, - 0.8762 - ], - "tag": null, - "to": [ - 5.5115, - 0.8732 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5115, - 0.8732 - ], - "tag": null, - "to": [ - 5.5201, - 0.8703 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5201, - 0.8703 - ], - "tag": null, - "to": [ - 5.5288, - 0.8672 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5288, - 0.8672 - ], - "tag": null, - "to": [ - 5.5374, - 0.8642 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5374, - 0.8642 - ], - "tag": null, - "to": [ - 5.5461, - 0.8611 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5461, - 0.8611 - ], - "tag": null, - "to": [ - 5.5548, - 0.858 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5548, - 0.858 - ], - "tag": null, - "to": [ - 5.5634, - 0.8549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5634, - 0.8549 - ], - "tag": null, - "to": [ - 5.5721, - 0.8517 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5721, - 0.8517 - ], - "tag": null, - "to": [ - 5.5808, - 0.8485 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5808, - 0.8485 - ], - "tag": null, - "to": [ - 5.5894, - 0.8452 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5894, - 0.8452 - ], - "tag": null, - "to": [ - 5.5981, - 0.842 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5981, - 0.842 - ], - "tag": null, - "to": [ - 5.6068, - 0.8386 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6068, - 0.8386 - ], - "tag": null, - "to": [ - 5.6154, - 0.8353 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6154, - 0.8353 - ], - "tag": null, - "to": [ - 5.6241, - 0.8319 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6241, - 0.8319 - ], - "tag": null, - "to": [ - 5.6328, - 0.8285 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6328, - 0.8285 - ], - "tag": null, - "to": [ - 5.6415, - 0.825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6415, - 0.825 - ], - "tag": null, - "to": [ - 5.6502, - 0.8216 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6502, - 0.8216 - ], - "tag": null, - "to": [ - 5.6588, - 0.8181 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6588, - 0.8181 - ], - "tag": null, - "to": [ - 5.6675, - 0.8145 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6675, - 0.8145 - ], - "tag": null, - "to": [ - 5.6762, - 0.8109 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6762, - 0.8109 - ], - "tag": null, - "to": [ - 5.6849, - 0.8073 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6849, - 0.8073 - ], - "tag": null, - "to": [ - 5.6936, - 0.8037 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6936, - 0.8037 - ], - "tag": null, - "to": [ - 5.7399, - 0.3404 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "artifactId": "[uuid]", - "id": "[uuid]", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Mm" - } - }, - "type": "plane", - "value": "XY", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - } - }, - "start": { - "from": [ - 5.7399, - 0.3404 - ], - "to": [ - 5.7399, - 0.3404 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" - }, - "sectional": false - } - }, - { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7399, - 0.3404 - ], - "tag": null, - "to": [ - 5.7321, - 0.3351 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7321, - 0.3351 - ], - "tag": null, - "to": [ - 5.7243, - 0.3299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7243, - 0.3299 - ], - "tag": null, - "to": [ - 5.7165, - 0.3246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7165, - 0.3246 - ], - "tag": null, - "to": [ - 5.7087, - 0.3194 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7087, - 0.3194 - ], - "tag": null, - "to": [ - 5.7009, - 0.3143 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7009, - 0.3143 - ], - "tag": null, - "to": [ - 5.6931, - 0.3091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6931, - 0.3091 - ], - "tag": null, - "to": [ - 5.6853, - 0.3041 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6853, - 0.3041 - ], - "tag": null, - "to": [ - 5.6775, - 0.299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6775, - 0.299 - ], - "tag": null, - "to": [ - 5.6696, - 0.294 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6696, - 0.294 - ], - "tag": null, - "to": [ - 5.6618, - 0.289 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6618, - 0.289 - ], - "tag": null, - "to": [ - 5.6539, - 0.284 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6539, - 0.284 - ], - "tag": null, - "to": [ - 5.6461, - 0.279 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6461, - 0.279 - ], - "tag": null, - "to": [ - 5.6382, - 0.2741 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6382, - 0.2741 - ], - "tag": null, - "to": [ - 5.6304, - 0.2693 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6304, - 0.2693 - ], - "tag": null, - "to": [ - 5.6225, - 0.2644 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6225, - 0.2644 - ], - "tag": null, - "to": [ - 5.6146, - 0.2597 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6146, - 0.2597 - ], - "tag": null, - "to": [ - 5.6068, - 0.2549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6068, - 0.2549 - ], - "tag": null, - "to": [ - 5.5989, - 0.2502 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5989, - 0.2502 - ], - "tag": null, - "to": [ - 5.591, - 0.2455 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.591, - 0.2455 - ], - "tag": null, - "to": [ - 5.5831, - 0.2408 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5831, - 0.2408 - ], - "tag": null, - "to": [ - 5.5752, - 0.2362 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5752, - 0.2362 - ], - "tag": null, - "to": [ - 5.5673, - 0.2316 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5673, - 0.2316 - ], - "tag": null, - "to": [ - 5.5594, - 0.227 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5594, - 0.227 - ], - "tag": null, - "to": [ - 5.5515, - 0.2225 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5515, - 0.2225 - ], - "tag": null, - "to": [ - 5.5436, - 0.218 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5436, - 0.218 - ], - "tag": null, - "to": [ - 5.5357, - 0.2135 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5357, - 0.2135 - ], - "tag": null, - "to": [ - 5.5277, - 0.2091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5277, - 0.2091 - ], - "tag": null, - "to": [ - 5.5198, - 0.2047 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5198, - 0.2047 - ], - "tag": null, - "to": [ - 5.5119, - 0.2004 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5119, - 0.2004 - ], - "tag": null, - "to": [ - 5.504, - 0.1961 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.504, - 0.1961 - ], - "tag": null, - "to": [ - 5.496, - 0.1918 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.496, - 0.1918 - ], - "tag": null, - "to": [ - 5.4881, - 0.1875 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4881, - 0.1875 - ], - "tag": null, - "to": [ - 5.4801, - 0.1833 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4801, - 0.1833 - ], - "tag": null, - "to": [ - 5.4722, - 0.1792 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4722, - 0.1792 - ], - "tag": null, - "to": [ - 5.4642, - 0.175 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4642, - 0.175 - ], - "tag": null, - "to": [ - 5.4563, - 0.1709 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4563, - 0.1709 - ], - "tag": null, - "to": [ - 5.4483, - 0.1669 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4483, - 0.1669 - ], - "tag": null, - "to": [ - 5.4403, - 0.1628 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4403, - 0.1628 - ], - "tag": null, - "to": [ - 5.4324, - 0.1588 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4324, - 0.1588 - ], - "tag": null, - "to": [ - 5.4244, - 0.1549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4244, - 0.1549 - ], - "tag": null, - "to": [ - 5.4164, - 0.151 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4164, - 0.151 - ], - "tag": null, - "to": [ - 5.4084, - 0.1471 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4084, - 0.1471 - ], - "tag": null, - "to": [ - 5.4004, - 0.1433 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4004, - 0.1433 - ], - "tag": null, - "to": [ - 5.3924, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3924, - 0.1395 - ], - "tag": null, - "to": [ - 5.3845, - 0.1357 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3845, - 0.1357 - ], - "tag": null, - "to": [ - 5.3765, - 0.132 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3765, - 0.132 - ], - "tag": null, - "to": [ - 5.3685, - 0.1283 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3685, - 0.1283 - ], - "tag": null, - "to": [ - 5.3605, - 0.1246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3605, - 0.1246 - ], - "tag": null, - "to": [ - 5.3525, - 0.121 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3525, - 0.121 - ], - "tag": null, - "to": [ - 5.3444, - 0.1174 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3444, - 0.1174 - ], - "tag": null, - "to": [ - 5.3364, - 0.1139 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3364, - 0.1139 - ], - "tag": null, - "to": [ - 5.3284, - 0.1104 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3284, - 0.1104 - ], - "tag": null, - "to": [ - 5.3204, - 0.107 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3204, - 0.107 - ], - "tag": null, - "to": [ - 5.3124, - 0.1036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3124, - 0.1036 - ], - "tag": null, - "to": [ - 5.3044, - 0.1002 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3044, - 0.1002 - ], - "tag": null, - "to": [ - 5.2963, - 0.0969 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2963, - 0.0969 - ], - "tag": null, - "to": [ - 5.2883, - 0.0936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2883, - 0.0936 - ], - "tag": null, - "to": [ - 5.2803, - 0.0903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2803, - 0.0903 - ], - "tag": null, - "to": [ - 5.2722, - 0.0871 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2722, - 0.0871 - ], - "tag": null, - "to": [ - 5.2642, - 0.084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2642, - 0.084 - ], - "tag": null, - "to": [ - 5.2562, - 0.0808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2562, - 0.0808 - ], - "tag": null, - "to": [ - 5.2481, - 0.0778 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2481, - 0.0778 - ], - "tag": null, - "to": [ - 5.2401, - 0.0747 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2401, - 0.0747 - ], - "tag": null, - "to": [ - 5.2321, - 0.0717 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2321, - 0.0717 - ], - "tag": null, - "to": [ - 5.224, - 0.0688 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.224, - 0.0688 - ], - "tag": null, - "to": [ - 5.216, - 0.0659 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.216, - 0.0659 - ], - "tag": null, - "to": [ - 5.2079, - 0.063 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2079, - 0.063 - ], - "tag": null, - "to": [ - 5.1999, - 0.0602 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1999, - 0.0602 - ], - "tag": null, - "to": [ - 5.1918, - 0.0575 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1918, - 0.0575 - ], - "tag": null, - "to": [ - 5.1837, - 0.0547 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1837, - 0.0547 - ], - "tag": null, - "to": [ - 5.1757, - 0.0521 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1757, - 0.0521 - ], - "tag": null, - "to": [ - 5.1676, - 0.0494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1676, - 0.0494 - ], - "tag": null, - "to": [ - 5.1596, - 0.0469 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1596, - 0.0469 - ], - "tag": null, - "to": [ - 5.1515, - 0.0443 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1515, - 0.0443 - ], - "tag": null, - "to": [ - 5.1434, - 0.0419 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1434, - 0.0419 - ], - "tag": null, - "to": [ - 5.1354, - 0.0394 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1354, - 0.0394 - ], - "tag": null, - "to": [ - 5.1273, - 0.0371 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1273, - 0.0371 - ], - "tag": null, - "to": [ - 5.1192, - 0.0347 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1192, - 0.0347 - ], - "tag": null, - "to": [ - 5.1112, - 0.0325 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1112, - 0.0325 - ], - "tag": null, - "to": [ - 5.1031, - 0.0303 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1031, - 0.0303 - ], - "tag": null, - "to": [ - 5.095, - 0.0281 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.095, - 0.0281 - ], - "tag": null, - "to": [ - 5.0869, - 0.026 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0869, - 0.026 - ], - "tag": null, - "to": [ - 5.0789, - 0.0239 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0789, - 0.0239 - ], - "tag": null, - "to": [ - 5.0708, - 0.022 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0708, - 0.022 - ], - "tag": null, - "to": [ - 5.0627, - 0.02 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0627, - 0.02 - ], - "tag": null, - "to": [ - 5.0546, - 0.0182 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0546, - 0.0182 - ], - "tag": null, - "to": [ - 5.0466, - 0.0164 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0466, - 0.0164 - ], - "tag": null, - "to": [ - 5.0385, - 0.0146 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0385, - 0.0146 - ], - "tag": null, - "to": [ - 5.0304, - 0.013 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0304, - 0.013 - ], - "tag": null, - "to": [ - 5.0223, - 0.0114 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0223, - 0.0114 - ], - "tag": null, - "to": [ - 5.0142, - 0.0098 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0142, - 0.0098 - ], - "tag": null, - "to": [ - 5.0061, - 0.0084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0061, - 0.0084 - ], - "tag": null, - "to": [ - 4.9981, - 0.007 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9981, - 0.007 - ], - "tag": null, - "to": [ - 4.99, - 0.0058 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.99, - 0.0058 - ], - "tag": null, - "to": [ - 4.9819, - 0.0046 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9819, - 0.0046 - ], - "tag": null, - "to": [ - 4.9738, - 0.0035 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9738, - 0.0035 - ], - "tag": null, - "to": [ - 4.9657, - 0.0025 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9657, - 0.0025 - ], - "tag": null, - "to": [ - 4.9576, - 0.0016 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9576, - 0.0016 - ], - "tag": null, - "to": [ - 4.9496, - 0.0009 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9496, - 0.0009 - ], - "tag": null, - "to": [ - 4.9415, - 0.0003 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9415, - 0.0003 - ], - "tag": null, - "to": [ - 4.9334, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "ccw": true, - "center": [ - -0.0, - -0.0 - ], - "from": [ - 4.9334, - 0.0 - ], - "radius": 4.933386259126019, - "tag": null, - "to": [ - 4.8356, - 0.9775 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8356, - 0.9775 - ], - "tag": null, - "to": [ - 4.8436, - 0.9788 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8436, - 0.9788 - ], - "tag": null, - "to": [ - 4.8516, - 0.9799 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8516, - 0.9799 - ], - "tag": null, - "to": [ - 4.8597, - 0.9808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8597, - 0.9808 - ], - "tag": null, - "to": [ - 4.8678, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8678, - 0.9815 - ], - "tag": null, - "to": [ - 4.8759, - 0.9821 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8759, - 0.9821 - ], - "tag": null, - "to": [ - 4.884, - 0.9827 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.884, - 0.9827 - ], - "tag": null, - "to": [ - 4.8922, - 0.9831 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8922, - 0.9831 - ], - "tag": null, - "to": [ - 4.9004, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9004, - 0.9835 - ], - "tag": null, - "to": [ - 4.9086, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9086, - 0.9837 - ], - "tag": null, - "to": [ - 4.9168, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9168, - 0.9839 - ], - "tag": null, - "to": [ - 4.925, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.925, - 0.984 - ], - "tag": null, - "to": [ - 4.9332, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9332, - 0.984 - ], - "tag": null, - "to": [ - 4.9415, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9415, - 0.984 - ], - "tag": null, - "to": [ - 4.9497, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9497, - 0.9839 - ], - "tag": null, - "to": [ - 4.958, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.958, - 0.9837 - ], - "tag": null, - "to": [ - 4.9663, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9663, - 0.9835 - ], - "tag": null, - "to": [ - 4.9746, - 0.9832 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9746, - 0.9832 - ], - "tag": null, - "to": [ - 4.9829, - 0.9829 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9829, - 0.9829 - ], - "tag": null, - "to": [ - 4.9912, - 0.9825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9912, - 0.9825 - ], - "tag": null, - "to": [ - 4.9996, - 0.982 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9996, - 0.982 - ], - "tag": null, - "to": [ - 5.0079, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0079, - 0.9815 - ], - "tag": null, - "to": [ - 5.0163, - 0.9809 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0163, - 0.9809 - ], - "tag": null, - "to": [ - 5.0246, - 0.9803 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0246, - 0.9803 - ], - "tag": null, - "to": [ - 5.033, - 0.9796 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.033, - 0.9796 - ], - "tag": null, - "to": [ - 5.0414, - 0.9789 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0414, - 0.9789 - ], - "tag": null, - "to": [ - 5.0497, - 0.9781 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0497, - 0.9781 - ], - "tag": null, - "to": [ - 5.0581, - 0.9773 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0581, - 0.9773 - ], - "tag": null, - "to": [ - 5.0665, - 0.9764 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0665, - 0.9764 - ], - "tag": null, - "to": [ - 5.075, - 0.9755 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.075, - 0.9755 - ], - "tag": null, - "to": [ - 5.0834, - 0.9745 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0834, - 0.9745 - ], - "tag": null, - "to": [ - 5.0918, - 0.9735 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0918, - 0.9735 - ], - "tag": null, - "to": [ - 5.1002, - 0.9724 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1002, - 0.9724 - ], - "tag": null, - "to": [ - 5.1087, - 0.9713 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1087, - 0.9713 - ], - "tag": null, - "to": [ - 5.1171, - 0.9701 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1171, - 0.9701 - ], - "tag": null, - "to": [ - 5.1256, - 0.9689 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1256, - 0.9689 - ], - "tag": null, - "to": [ - 5.1341, - 0.9677 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1341, - 0.9677 - ], - "tag": null, - "to": [ - 5.1425, - 0.9664 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1425, - 0.9664 - ], - "tag": null, - "to": [ - 5.151, - 0.9651 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.151, - 0.9651 - ], - "tag": null, - "to": [ - 5.1595, - 0.9637 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1595, - 0.9637 - ], - "tag": null, - "to": [ - 5.168, - 0.9623 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.168, - 0.9623 - ], - "tag": null, - "to": [ - 5.1765, - 0.9608 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1765, - 0.9608 - ], - "tag": null, - "to": [ - 5.185, - 0.9593 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.185, - 0.9593 - ], - "tag": null, - "to": [ - 5.1935, - 0.9577 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1935, - 0.9577 - ], - "tag": null, - "to": [ - 5.202, - 0.9561 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.202, - 0.9561 - ], - "tag": null, - "to": [ - 5.2105, - 0.9545 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2105, - 0.9545 - ], - "tag": null, - "to": [ - 5.219, - 0.9528 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.219, - 0.9528 - ], - "tag": null, - "to": [ - 5.2276, - 0.9511 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2276, - 0.9511 - ], - "tag": null, - "to": [ - 5.2361, - 0.9494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2361, - 0.9494 - ], - "tag": null, - "to": [ - 5.2447, - 0.9476 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2447, - 0.9476 - ], - "tag": null, - "to": [ - 5.2532, - 0.9457 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2532, - 0.9457 - ], - "tag": null, - "to": [ - 5.2617, - 0.9439 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2617, - 0.9439 - ], - "tag": null, - "to": [ - 5.2703, - 0.942 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2703, - 0.942 - ], - "tag": null, - "to": [ - 5.2789, - 0.94 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2789, - 0.94 - ], - "tag": null, - "to": [ - 5.2874, - 0.938 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2874, - 0.938 - ], - "tag": null, - "to": [ - 5.296, - 0.936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.296, - 0.936 - ], - "tag": null, - "to": [ - 5.3046, - 0.9339 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3046, - 0.9339 - ], - "tag": null, - "to": [ - 5.3132, - 0.9318 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3132, - 0.9318 - ], - "tag": null, - "to": [ - 5.3217, - 0.9297 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3217, - 0.9297 - ], - "tag": null, - "to": [ - 5.3303, - 0.9275 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3303, - 0.9275 - ], - "tag": null, - "to": [ - 5.3389, - 0.9253 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3389, - 0.9253 - ], - "tag": null, - "to": [ - 5.3475, - 0.923 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3475, - 0.923 - ], - "tag": null, - "to": [ - 5.3561, - 0.9207 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3561, - 0.9207 - ], - "tag": null, - "to": [ - 5.3647, - 0.9184 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3647, - 0.9184 - ], - "tag": null, - "to": [ - 5.3733, - 0.916 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3733, - 0.916 - ], - "tag": null, - "to": [ - 5.3819, - 0.9136 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3819, - 0.9136 - ], - "tag": null, - "to": [ - 5.3906, - 0.9112 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3906, - 0.9112 - ], - "tag": null, - "to": [ - 5.3992, - 0.9087 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3992, - 0.9087 - ], - "tag": null, - "to": [ - 5.4078, - 0.9062 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4078, - 0.9062 - ], - "tag": null, - "to": [ - 5.4164, - 0.9036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4164, - 0.9036 - ], - "tag": null, - "to": [ - 5.425, - 0.901 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.425, - 0.901 - ], - "tag": null, - "to": [ - 5.4337, - 0.8984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4337, - 0.8984 - ], - "tag": null, - "to": [ - 5.4423, - 0.8958 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4423, - 0.8958 - ], - "tag": null, - "to": [ - 5.4509, - 0.8931 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4509, - 0.8931 - ], - "tag": null, - "to": [ - 5.4596, - 0.8903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4596, - 0.8903 - ], - "tag": null, - "to": [ - 5.4682, - 0.8876 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4682, - 0.8876 - ], - "tag": null, - "to": [ - 5.4769, - 0.8848 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4769, - 0.8848 - ], - "tag": null, - "to": [ - 5.4855, - 0.8819 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4855, - 0.8819 - ], - "tag": null, - "to": [ - 5.4942, - 0.8791 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4942, - 0.8791 - ], - "tag": null, - "to": [ - 5.5028, - 0.8762 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5028, - 0.8762 - ], - "tag": null, - "to": [ - 5.5115, - 0.8732 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5115, - 0.8732 - ], - "tag": null, - "to": [ - 5.5201, - 0.8703 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5201, - 0.8703 - ], - "tag": null, - "to": [ - 5.5288, - 0.8672 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5288, - 0.8672 - ], - "tag": null, - "to": [ - 5.5374, - 0.8642 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5374, - 0.8642 - ], - "tag": null, - "to": [ - 5.5461, - 0.8611 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5461, - 0.8611 - ], - "tag": null, - "to": [ - 5.5548, - 0.858 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5548, - 0.858 - ], - "tag": null, - "to": [ - 5.5634, - 0.8549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5634, - 0.8549 - ], - "tag": null, - "to": [ - 5.5721, - 0.8517 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5721, - 0.8517 - ], - "tag": null, - "to": [ - 5.5808, - 0.8485 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5808, - 0.8485 - ], - "tag": null, - "to": [ - 5.5894, - 0.8452 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5894, - 0.8452 - ], - "tag": null, - "to": [ - 5.5981, - 0.842 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5981, - 0.842 - ], - "tag": null, - "to": [ - 5.6068, - 0.8386 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6068, - 0.8386 - ], - "tag": null, - "to": [ - 5.6154, - 0.8353 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6154, - 0.8353 - ], - "tag": null, - "to": [ - 5.6241, - 0.8319 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6241, - 0.8319 - ], - "tag": null, - "to": [ - 5.6328, - 0.8285 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6328, - 0.8285 - ], - "tag": null, - "to": [ - 5.6415, - 0.825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6415, - 0.825 - ], - "tag": null, - "to": [ - 5.6502, - 0.8216 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6502, - 0.8216 - ], - "tag": null, - "to": [ - 5.6588, - 0.8181 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6588, - 0.8181 - ], - "tag": null, - "to": [ - 5.6675, - 0.8145 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6675, - 0.8145 - ], - "tag": null, - "to": [ - 5.6762, - 0.8109 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6762, - 0.8109 - ], - "tag": null, - "to": [ - 5.6849, - 0.8073 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6849, - 0.8073 - ], - "tag": null, - "to": [ - 5.6936, - 0.8037 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6936, - 0.8037 - ], - "tag": null, - "to": [ - 5.7399, - 0.3404 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "artifactId": "[uuid]", - "id": "[uuid]", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Mm" - } - }, - "type": "plane", - "value": "XY", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - } - }, - "start": { - "from": [ - 5.7399, - 0.3404 - ], - "to": [ - 5.7399, - 0.3404 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" - }, - "sectional": false - } - }, - { - "type": "Solid", - "value": { - "type": "Solid", - "id": "[uuid]", - "artifactId": "[uuid]", - "value": [], - "sketch": { - "type": "Sketch", - "id": "[uuid]", - "paths": [ - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7399, - 0.3404 - ], - "tag": null, - "to": [ - 5.7321, - 0.3351 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7321, - 0.3351 - ], - "tag": null, - "to": [ - 5.7243, - 0.3299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7243, - 0.3299 - ], - "tag": null, - "to": [ - 5.7165, - 0.3246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7165, - 0.3246 - ], - "tag": null, - "to": [ - 5.7087, - 0.3194 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7087, - 0.3194 - ], - "tag": null, - "to": [ - 5.7009, - 0.3143 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.7009, - 0.3143 - ], - "tag": null, - "to": [ - 5.6931, - 0.3091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6931, - 0.3091 - ], - "tag": null, - "to": [ - 5.6853, - 0.3041 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6853, - 0.3041 - ], - "tag": null, - "to": [ - 5.6775, - 0.299 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6775, - 0.299 - ], - "tag": null, - "to": [ - 5.6696, - 0.294 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6696, - 0.294 - ], - "tag": null, - "to": [ - 5.6618, - 0.289 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6618, - 0.289 - ], - "tag": null, - "to": [ - 5.6539, - 0.284 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6539, - 0.284 - ], - "tag": null, - "to": [ - 5.6461, - 0.279 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6461, - 0.279 - ], - "tag": null, - "to": [ - 5.6382, - 0.2741 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6382, - 0.2741 - ], - "tag": null, - "to": [ - 5.6304, - 0.2693 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6304, - 0.2693 - ], - "tag": null, - "to": [ - 5.6225, - 0.2644 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6225, - 0.2644 - ], - "tag": null, - "to": [ - 5.6146, - 0.2597 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6146, - 0.2597 - ], - "tag": null, - "to": [ - 5.6068, - 0.2549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6068, - 0.2549 - ], - "tag": null, - "to": [ - 5.5989, - 0.2502 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5989, - 0.2502 - ], - "tag": null, - "to": [ - 5.591, - 0.2455 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.591, - 0.2455 - ], - "tag": null, - "to": [ - 5.5831, - 0.2408 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5831, - 0.2408 - ], - "tag": null, - "to": [ - 5.5752, - 0.2362 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5752, - 0.2362 - ], - "tag": null, - "to": [ - 5.5673, - 0.2316 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5673, - 0.2316 - ], - "tag": null, - "to": [ - 5.5594, - 0.227 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5594, - 0.227 - ], - "tag": null, - "to": [ - 5.5515, - 0.2225 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5515, - 0.2225 - ], - "tag": null, - "to": [ - 5.5436, - 0.218 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5436, - 0.218 - ], - "tag": null, - "to": [ - 5.5357, - 0.2135 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5357, - 0.2135 - ], - "tag": null, - "to": [ - 5.5277, - 0.2091 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5277, - 0.2091 - ], - "tag": null, - "to": [ - 5.5198, - 0.2047 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5198, - 0.2047 - ], - "tag": null, - "to": [ - 5.5119, - 0.2004 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5119, - 0.2004 - ], - "tag": null, - "to": [ - 5.504, - 0.1961 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.504, - 0.1961 - ], - "tag": null, - "to": [ - 5.496, - 0.1918 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.496, - 0.1918 - ], - "tag": null, - "to": [ - 5.4881, - 0.1875 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4881, - 0.1875 - ], - "tag": null, - "to": [ - 5.4801, - 0.1833 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4801, - 0.1833 - ], - "tag": null, - "to": [ - 5.4722, - 0.1792 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4722, - 0.1792 - ], - "tag": null, - "to": [ - 5.4642, - 0.175 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4642, - 0.175 - ], - "tag": null, - "to": [ - 5.4563, - 0.1709 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4563, - 0.1709 - ], - "tag": null, - "to": [ - 5.4483, - 0.1669 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4483, - 0.1669 - ], - "tag": null, - "to": [ - 5.4403, - 0.1628 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4403, - 0.1628 - ], - "tag": null, - "to": [ - 5.4324, - 0.1588 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4324, - 0.1588 - ], - "tag": null, - "to": [ - 5.4244, - 0.1549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4244, - 0.1549 - ], - "tag": null, - "to": [ - 5.4164, - 0.151 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4164, - 0.151 - ], - "tag": null, - "to": [ - 5.4084, - 0.1471 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4084, - 0.1471 - ], - "tag": null, - "to": [ - 5.4004, - 0.1433 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4004, - 0.1433 - ], - "tag": null, - "to": [ - 5.3924, - 0.1395 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3924, - 0.1395 - ], - "tag": null, - "to": [ - 5.3845, - 0.1357 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3845, - 0.1357 - ], - "tag": null, - "to": [ - 5.3765, - 0.132 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3765, - 0.132 - ], - "tag": null, - "to": [ - 5.3685, - 0.1283 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3685, - 0.1283 - ], - "tag": null, - "to": [ - 5.3605, - 0.1246 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3605, - 0.1246 - ], - "tag": null, - "to": [ - 5.3525, - 0.121 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3525, - 0.121 - ], - "tag": null, - "to": [ - 5.3444, - 0.1174 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3444, - 0.1174 - ], - "tag": null, - "to": [ - 5.3364, - 0.1139 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3364, - 0.1139 - ], - "tag": null, - "to": [ - 5.3284, - 0.1104 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3284, - 0.1104 - ], - "tag": null, - "to": [ - 5.3204, - 0.107 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3204, - 0.107 - ], - "tag": null, - "to": [ - 5.3124, - 0.1036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3124, - 0.1036 - ], - "tag": null, - "to": [ - 5.3044, - 0.1002 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3044, - 0.1002 - ], - "tag": null, - "to": [ - 5.2963, - 0.0969 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2963, - 0.0969 - ], - "tag": null, - "to": [ - 5.2883, - 0.0936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2883, - 0.0936 - ], - "tag": null, - "to": [ - 5.2803, - 0.0903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2803, - 0.0903 - ], - "tag": null, - "to": [ - 5.2722, - 0.0871 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2722, - 0.0871 - ], - "tag": null, - "to": [ - 5.2642, - 0.084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2642, - 0.084 - ], - "tag": null, - "to": [ - 5.2562, - 0.0808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2562, - 0.0808 - ], - "tag": null, - "to": [ - 5.2481, - 0.0778 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2481, - 0.0778 - ], - "tag": null, - "to": [ - 5.2401, - 0.0747 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2401, - 0.0747 - ], - "tag": null, - "to": [ - 5.2321, - 0.0717 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2321, - 0.0717 - ], - "tag": null, - "to": [ - 5.224, - 0.0688 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.224, - 0.0688 - ], - "tag": null, - "to": [ - 5.216, - 0.0659 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.216, - 0.0659 - ], - "tag": null, - "to": [ - 5.2079, - 0.063 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2079, - 0.063 - ], - "tag": null, - "to": [ - 5.1999, - 0.0602 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1999, - 0.0602 - ], - "tag": null, - "to": [ - 5.1918, - 0.0575 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1918, - 0.0575 - ], - "tag": null, - "to": [ - 5.1837, - 0.0547 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1837, - 0.0547 - ], - "tag": null, - "to": [ - 5.1757, - 0.0521 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1757, - 0.0521 - ], - "tag": null, - "to": [ - 5.1676, - 0.0494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1676, - 0.0494 - ], - "tag": null, - "to": [ - 5.1596, - 0.0469 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1596, - 0.0469 - ], - "tag": null, - "to": [ - 5.1515, - 0.0443 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1515, - 0.0443 - ], - "tag": null, - "to": [ - 5.1434, - 0.0419 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1434, - 0.0419 - ], - "tag": null, - "to": [ - 5.1354, - 0.0394 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1354, - 0.0394 - ], - "tag": null, - "to": [ - 5.1273, - 0.0371 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1273, - 0.0371 - ], - "tag": null, - "to": [ - 5.1192, - 0.0347 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1192, - 0.0347 - ], - "tag": null, - "to": [ - 5.1112, - 0.0325 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1112, - 0.0325 - ], - "tag": null, - "to": [ - 5.1031, - 0.0303 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1031, - 0.0303 - ], - "tag": null, - "to": [ - 5.095, - 0.0281 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.095, - 0.0281 - ], - "tag": null, - "to": [ - 5.0869, - 0.026 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0869, - 0.026 - ], - "tag": null, - "to": [ - 5.0789, - 0.0239 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0789, - 0.0239 - ], - "tag": null, - "to": [ - 5.0708, - 0.022 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0708, - 0.022 - ], - "tag": null, - "to": [ - 5.0627, - 0.02 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0627, - 0.02 - ], - "tag": null, - "to": [ - 5.0546, - 0.0182 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0546, - 0.0182 - ], - "tag": null, - "to": [ - 5.0466, - 0.0164 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0466, - 0.0164 - ], - "tag": null, - "to": [ - 5.0385, - 0.0146 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0385, - 0.0146 - ], - "tag": null, - "to": [ - 5.0304, - 0.013 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0304, - 0.013 - ], - "tag": null, - "to": [ - 5.0223, - 0.0114 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0223, - 0.0114 - ], - "tag": null, - "to": [ - 5.0142, - 0.0098 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0142, - 0.0098 - ], - "tag": null, - "to": [ - 5.0061, - 0.0084 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0061, - 0.0084 - ], - "tag": null, - "to": [ - 4.9981, - 0.007 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9981, - 0.007 - ], - "tag": null, - "to": [ - 4.99, - 0.0058 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.99, - 0.0058 - ], - "tag": null, - "to": [ - 4.9819, - 0.0046 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9819, - 0.0046 - ], - "tag": null, - "to": [ - 4.9738, - 0.0035 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9738, - 0.0035 - ], - "tag": null, - "to": [ - 4.9657, - 0.0025 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9657, - 0.0025 - ], - "tag": null, - "to": [ - 4.9576, - 0.0016 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9576, - 0.0016 - ], - "tag": null, - "to": [ - 4.9496, - 0.0009 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9496, - 0.0009 - ], - "tag": null, - "to": [ - 4.9415, - 0.0003 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9415, - 0.0003 - ], - "tag": null, - "to": [ - 4.9334, - 0.0 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "ccw": true, - "center": [ - -0.0, - -0.0 - ], - "from": [ - 4.9334, - 0.0 - ], - "radius": 4.933386259126019, - "tag": null, - "to": [ - 4.8356, - 0.9775 - ], - "type": "Arc", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8356, - 0.9775 - ], - "tag": null, - "to": [ - 4.8436, - 0.9788 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8436, - 0.9788 - ], - "tag": null, - "to": [ - 4.8516, - 0.9799 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8516, - 0.9799 - ], - "tag": null, - "to": [ - 4.8597, - 0.9808 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8597, - 0.9808 - ], - "tag": null, - "to": [ - 4.8678, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8678, - 0.9815 - ], - "tag": null, - "to": [ - 4.8759, - 0.9821 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8759, - 0.9821 - ], - "tag": null, - "to": [ - 4.884, - 0.9827 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.884, - 0.9827 - ], - "tag": null, - "to": [ - 4.8922, - 0.9831 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.8922, - 0.9831 - ], - "tag": null, - "to": [ - 4.9004, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9004, - 0.9835 - ], - "tag": null, - "to": [ - 4.9086, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9086, - 0.9837 - ], - "tag": null, - "to": [ - 4.9168, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9168, - 0.9839 - ], - "tag": null, - "to": [ - 4.925, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.925, - 0.984 - ], - "tag": null, - "to": [ - 4.9332, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9332, - 0.984 - ], - "tag": null, - "to": [ - 4.9415, - 0.984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9415, - 0.984 - ], - "tag": null, - "to": [ - 4.9497, - 0.9839 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9497, - 0.9839 - ], - "tag": null, - "to": [ - 4.958, - 0.9837 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.958, - 0.9837 - ], - "tag": null, - "to": [ - 4.9663, - 0.9835 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9663, - 0.9835 - ], - "tag": null, - "to": [ - 4.9746, - 0.9832 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9746, - 0.9832 - ], - "tag": null, - "to": [ - 4.9829, - 0.9829 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9829, - 0.9829 - ], - "tag": null, - "to": [ - 4.9912, - 0.9825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9912, - 0.9825 - ], - "tag": null, - "to": [ - 4.9996, - 0.982 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 4.9996, - 0.982 - ], - "tag": null, - "to": [ - 5.0079, - 0.9815 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0079, - 0.9815 - ], - "tag": null, - "to": [ - 5.0163, - 0.9809 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0163, - 0.9809 - ], - "tag": null, - "to": [ - 5.0246, - 0.9803 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0246, - 0.9803 - ], - "tag": null, - "to": [ - 5.033, - 0.9796 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.033, - 0.9796 - ], - "tag": null, - "to": [ - 5.0414, - 0.9789 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0414, - 0.9789 - ], - "tag": null, - "to": [ - 5.0497, - 0.9781 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0497, - 0.9781 - ], - "tag": null, - "to": [ - 5.0581, - 0.9773 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0581, - 0.9773 - ], - "tag": null, - "to": [ - 5.0665, - 0.9764 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0665, - 0.9764 - ], - "tag": null, - "to": [ - 5.075, - 0.9755 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.075, - 0.9755 - ], - "tag": null, - "to": [ - 5.0834, - 0.9745 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0834, - 0.9745 - ], - "tag": null, - "to": [ - 5.0918, - 0.9735 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.0918, - 0.9735 - ], - "tag": null, - "to": [ - 5.1002, - 0.9724 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1002, - 0.9724 - ], - "tag": null, - "to": [ - 5.1087, - 0.9713 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1087, - 0.9713 - ], - "tag": null, - "to": [ - 5.1171, - 0.9701 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1171, - 0.9701 - ], - "tag": null, - "to": [ - 5.1256, - 0.9689 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1256, - 0.9689 - ], - "tag": null, - "to": [ - 5.1341, - 0.9677 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1341, - 0.9677 - ], - "tag": null, - "to": [ - 5.1425, - 0.9664 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1425, - 0.9664 - ], - "tag": null, - "to": [ - 5.151, - 0.9651 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.151, - 0.9651 - ], - "tag": null, - "to": [ - 5.1595, - 0.9637 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1595, - 0.9637 - ], - "tag": null, - "to": [ - 5.168, - 0.9623 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.168, - 0.9623 - ], - "tag": null, - "to": [ - 5.1765, - 0.9608 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1765, - 0.9608 - ], - "tag": null, - "to": [ - 5.185, - 0.9593 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.185, - 0.9593 - ], - "tag": null, - "to": [ - 5.1935, - 0.9577 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.1935, - 0.9577 - ], - "tag": null, - "to": [ - 5.202, - 0.9561 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.202, - 0.9561 - ], - "tag": null, - "to": [ - 5.2105, - 0.9545 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2105, - 0.9545 - ], - "tag": null, - "to": [ - 5.219, - 0.9528 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.219, - 0.9528 - ], - "tag": null, - "to": [ - 5.2276, - 0.9511 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2276, - 0.9511 - ], - "tag": null, - "to": [ - 5.2361, - 0.9494 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2361, - 0.9494 - ], - "tag": null, - "to": [ - 5.2447, - 0.9476 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2447, - 0.9476 - ], - "tag": null, - "to": [ - 5.2532, - 0.9457 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2532, - 0.9457 - ], - "tag": null, - "to": [ - 5.2617, - 0.9439 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2617, - 0.9439 - ], - "tag": null, - "to": [ - 5.2703, - 0.942 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2703, - 0.942 - ], - "tag": null, - "to": [ - 5.2789, - 0.94 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2789, - 0.94 - ], - "tag": null, - "to": [ - 5.2874, - 0.938 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.2874, - 0.938 - ], - "tag": null, - "to": [ - 5.296, - 0.936 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.296, - 0.936 - ], - "tag": null, - "to": [ - 5.3046, - 0.9339 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3046, - 0.9339 - ], - "tag": null, - "to": [ - 5.3132, - 0.9318 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3132, - 0.9318 - ], - "tag": null, - "to": [ - 5.3217, - 0.9297 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3217, - 0.9297 - ], - "tag": null, - "to": [ - 5.3303, - 0.9275 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3303, - 0.9275 - ], - "tag": null, - "to": [ - 5.3389, - 0.9253 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3389, - 0.9253 - ], - "tag": null, - "to": [ - 5.3475, - 0.923 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3475, - 0.923 - ], - "tag": null, - "to": [ - 5.3561, - 0.9207 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3561, - 0.9207 - ], - "tag": null, - "to": [ - 5.3647, - 0.9184 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3647, - 0.9184 - ], - "tag": null, - "to": [ - 5.3733, - 0.916 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3733, - 0.916 - ], - "tag": null, - "to": [ - 5.3819, - 0.9136 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3819, - 0.9136 - ], - "tag": null, - "to": [ - 5.3906, - 0.9112 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3906, - 0.9112 - ], - "tag": null, - "to": [ - 5.3992, - 0.9087 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.3992, - 0.9087 - ], - "tag": null, - "to": [ - 5.4078, - 0.9062 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4078, - 0.9062 - ], - "tag": null, - "to": [ - 5.4164, - 0.9036 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4164, - 0.9036 - ], - "tag": null, - "to": [ - 5.425, - 0.901 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.425, - 0.901 - ], - "tag": null, - "to": [ - 5.4337, - 0.8984 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4337, - 0.8984 - ], - "tag": null, - "to": [ - 5.4423, - 0.8958 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4423, - 0.8958 - ], - "tag": null, - "to": [ - 5.4509, - 0.8931 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4509, - 0.8931 - ], - "tag": null, - "to": [ - 5.4596, - 0.8903 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4596, - 0.8903 - ], - "tag": null, - "to": [ - 5.4682, - 0.8876 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4682, - 0.8876 - ], - "tag": null, - "to": [ - 5.4769, - 0.8848 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4769, - 0.8848 - ], - "tag": null, - "to": [ - 5.4855, - 0.8819 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4855, - 0.8819 - ], - "tag": null, - "to": [ - 5.4942, - 0.8791 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.4942, - 0.8791 - ], - "tag": null, - "to": [ - 5.5028, - 0.8762 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5028, - 0.8762 - ], - "tag": null, - "to": [ - 5.5115, - 0.8732 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5115, - 0.8732 - ], - "tag": null, - "to": [ - 5.5201, - 0.8703 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5201, - 0.8703 - ], - "tag": null, - "to": [ - 5.5288, - 0.8672 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5288, - 0.8672 - ], - "tag": null, - "to": [ - 5.5374, - 0.8642 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5374, - 0.8642 - ], - "tag": null, - "to": [ - 5.5461, - 0.8611 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5461, - 0.8611 - ], - "tag": null, - "to": [ - 5.5548, - 0.858 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5548, - 0.858 - ], - "tag": null, - "to": [ - 5.5634, - 0.8549 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5634, - 0.8549 - ], - "tag": null, - "to": [ - 5.5721, - 0.8517 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5721, - 0.8517 - ], - "tag": null, - "to": [ - 5.5808, - 0.8485 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5808, - 0.8485 - ], - "tag": null, - "to": [ - 5.5894, - 0.8452 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5894, - 0.8452 - ], - "tag": null, - "to": [ - 5.5981, - 0.842 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.5981, - 0.842 - ], - "tag": null, - "to": [ - 5.6068, - 0.8386 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6068, - 0.8386 - ], - "tag": null, - "to": [ - 5.6154, - 0.8353 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6154, - 0.8353 - ], - "tag": null, - "to": [ - 5.6241, - 0.8319 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6241, - 0.8319 - ], - "tag": null, - "to": [ - 5.6328, - 0.8285 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6328, - 0.8285 - ], - "tag": null, - "to": [ - 5.6415, - 0.825 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6415, - 0.825 - ], - "tag": null, - "to": [ - 5.6502, - 0.8216 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6502, - 0.8216 - ], - "tag": null, - "to": [ - 5.6588, - 0.8181 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6588, - 0.8181 - ], - "tag": null, - "to": [ - 5.6675, - 0.8145 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6675, - 0.8145 - ], - "tag": null, - "to": [ - 5.6762, - 0.8109 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6762, - 0.8109 - ], - "tag": null, - "to": [ - 5.6849, - 0.8073 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6849, - 0.8073 - ], - "tag": null, - "to": [ - 5.6936, - 0.8037 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - }, - { - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - }, - "from": [ - 5.6936, - 0.8037 - ], - "tag": null, - "to": [ - 5.7399, - 0.3404 - ], - "type": "ToPoint", - "units": { - "type": "Inches" - } - } - ], - "on": { - "artifactId": "[uuid]", - "id": "[uuid]", - "origin": { - "x": 0.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Mm" - } - }, - "type": "plane", - "value": "XY", - "xAxis": { - "x": 1.0, - "y": 0.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - }, - "yAxis": { - "x": 0.0, - "y": 1.0, - "z": 0.0, - "units": { - "type": "Unknown" - } - } - }, - "start": { - "from": [ - 5.7399, - 0.3404 - ], - "to": [ - 5.7399, - 0.3404 - ], - "units": { - "type": "Inches" - }, - "tag": null, - "__geoMeta": { - "id": "[uuid]", - "sourceRange": [] - } - }, - "artifactId": "[uuid]", - "originalId": "[uuid]", - "units": { - "type": "Inches" - } - }, - "height": 3.0, - "startCapId": null, - "endCapId": null, - "units": { - "type": "Inches" - }, - "sectional": false - } - } - ] - }, - "tipDiameter": { - "type": "Number", - "value": 11.5, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "toothAngle": { - "type": "Number", - "value": 11.4286, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - "xs": { - "type": "HomArray", - "value": [ - { - "type": "Number", - "value": 4.9334, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 4.9415, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 4.9496, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 4.9576, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 4.9657, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 4.9738, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 4.9819, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 4.99, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 4.9981, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.0061, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.0142, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.0223, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.0304, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.0385, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.0466, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.0546, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.0627, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.0708, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.0789, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.0869, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.095, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.1031, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.1112, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.1192, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.1273, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.1354, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.1434, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.1515, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.1596, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.1676, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.1757, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.1837, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.1918, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.1999, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.2079, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.216, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.224, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.2321, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.2401, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.2481, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.2562, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.2642, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.2722, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.2803, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.2883, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.2963, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.3044, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.3124, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.3204, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.3284, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.3364, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.3444, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.3525, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.3605, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.3685, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.3765, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.3845, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.3924, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.4004, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.4084, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.4164, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.4244, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.4324, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.4403, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.4483, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.4563, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.4642, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.4722, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.4801, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.4881, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.496, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.504, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.5119, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.5198, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.5277, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.5357, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.5436, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.5515, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.5594, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.5673, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.5752, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.5831, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.591, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.5989, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.6068, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.6146, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.6225, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.6304, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.6382, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.6461, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.6539, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.6618, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.6696, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.6775, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.6853, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.6931, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.7009, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.7087, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.7165, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.7243, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.7321, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 5.7399, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - }, - "ys": { - "type": "HomArray", - "value": [ - { - "type": "Number", - "value": 0.0, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0003, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0009, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0016, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0025, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0035, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0046, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0058, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.007, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0084, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0098, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0114, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.013, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0146, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0164, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0182, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.02, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.022, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0239, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.026, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0281, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0303, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0325, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0347, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0371, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0394, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0419, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0443, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0469, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0494, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0521, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0547, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0575, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0602, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.063, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0659, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0688, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0717, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0747, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0778, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0808, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.084, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0871, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0903, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0936, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.0969, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.1002, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.1036, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.107, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.1104, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.1139, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.1174, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.121, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.1246, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.1283, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.132, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.1357, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.1395, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.1433, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.1471, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.151, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.1549, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.1588, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.1628, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.1669, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.1709, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.175, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.1792, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.1833, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.1875, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.1918, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.1961, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.2004, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.2047, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.2091, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.2135, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.218, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.2225, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.227, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.2316, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.2362, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.2408, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.2455, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.2502, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.2549, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.2597, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.2644, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.2693, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.2741, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.279, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.284, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.289, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.294, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.299, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.3041, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.3091, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.3143, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.3194, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.3246, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.3299, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.3351, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - }, - { - "type": "Number", - "value": 0.3404, - "ty": { - "type": "Default", - "len": { - "type": "Inches" - }, - "angle": { - "type": "Degrees" - } - } - } - ] - } -} diff --git a/rust/kcl-lib/tests/kcl_samples/gear/rendered_model.png b/rust/kcl-lib/tests/kcl_samples/gear/rendered_model.png deleted file mode 100644 index c8e9d00f54374d6336d60ca91b26916e7620c660..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 90082 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 T_m>p^yL7}4hClkPtLFYcAT2;; diff --git a/rust/kcl-lib/tests/kcl_samples/helical-gear/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/helical-gear/artifact_commands.snap new file mode 100644 index 000000000..924177df8 --- /dev/null +++ b/rust/kcl-lib/tests/kcl_samples/helical-gear/artifact_commands.snap @@ -0,0 +1,4814 @@ +--- +source: kcl-lib/src/simulation_tests.rs +description: Artifact commands helical-gear.kcl +--- +[ + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "edge_lines_visible", + "hidden": false + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 3.3541019662496847, + "y": 1.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -2.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 0.0, + "y": 0.0 + }, + "radius": 3.5, + "start": { + "unit": "degrees", + "value": 343.3984504009797 + }, + "end": { + "unit": "degrees", + "value": 180.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 0.0, + "y": 0.0 + }, + "radius": 3.5, + "start": { + "unit": "degrees", + "value": 180.0 + }, + "end": { + "unit": "degrees", + "value": 16.601549599020235 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 100.0, + "clobber": false, + "hide": false + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 3.5 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 100.0, + "clobber": false, + "hide": false + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 7.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 100.0, + "clobber": false, + "hide": false + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "plane_set_color", + "plane_id": "[uuid]", + "color": { + "r": 0.6, + "g": 0.6, + "b": 0.6, + "a": 0.3 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "plane_set_color", + "plane_id": "[uuid]", + "color": { + "r": 0.6, + "g": 0.6, + "b": 0.6, + "a": 0.3 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "plane_set_color", + "plane_id": "[uuid]", + "color": { + "r": 0.6, + "g": 0.6, + "b": 0.6, + "a": 0.3 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 0.0000000000000012083311382392428, + "y": 19.733545036504076, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 2.1026747593723187, + "y": 19.62120176146286, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 4.20534951874464, + "y": 19.280244685504613, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "circular_involute", + "start_radius": 19.733545036504076, + "end_radius": 23.0, + "angle": { + "unit": "degrees", + "value": 90.0 + }, + "reverse": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "circular_involute", + "start_radius": 19.733545036504076, + "end_radius": 23.0, + "angle": { + "unit": "degrees", + "value": 83.88333258352058 + }, + "reverse": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "circular_involute", + "start_radius": 19.733545036504076, + "end_radius": 23.0, + "angle": { + "unit": "degrees", + "value": 77.6955281798938 + }, + "reverse": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -3.0495, + "y": 22.7969, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -0.603, + "y": 22.9921, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 1.8788, + "y": 22.9231, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "circular_involute", + "start_radius": 19.733545036504076, + "end_radius": 23.0, + "angle": { + "unit": "degrees", + "value": 616.4231928988978 + }, + "reverse": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "circular_involute", + "start_radius": 19.733545036504076, + "end_radius": 23.0, + "angle": { + "unit": "degrees", + "value": -97.46013968462269 + }, + "reverse": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "circular_involute", + "start_radius": 19.733545036504076, + "end_radius": 23.0, + "angle": { + "unit": "degrees", + "value": -91.27233528099597 + }, + "reverse": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -5.8166, + "y": 18.8568, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -3.7742, + "y": 19.3693, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -1.6644, + "y": 19.6632, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "entity_circular_pattern", + "entity_id": "[uuid]", + "axis": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "center": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "num_repetitions": 20, + "arc_degrees": 360.0, + "rotate_duplicates": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "entity_circular_pattern", + "entity_id": "[uuid]", + "axis": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "center": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "num_repetitions": 20, + "arc_degrees": 360.0, + "rotate_duplicates": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "entity_circular_pattern", + "entity_id": "[uuid]", + "axis": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "center": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "num_repetitions": 20, + "arc_degrees": 360.0, + "rotate_duplicates": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "loft", + "section_ids": [ + "[uuid]", + "[uuid]", + "[uuid]" + ], + "v_degree": 2, + "bez_approximate_rational": false, + "base_curve_index": null, + "tolerance": 0.0000001 + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + } +] diff --git a/rust/kcl-lib/tests/kcl_samples/helical-gear/artifact_graph_flowchart.snap b/rust/kcl-lib/tests/kcl_samples/helical-gear/artifact_graph_flowchart.snap new file mode 100644 index 000000000..96dff0c49 --- /dev/null +++ b/rust/kcl-lib/tests/kcl_samples/helical-gear/artifact_graph_flowchart.snap @@ -0,0 +1,6 @@ +--- +source: kcl-lib/src/simulation_tests.rs +description: Artifact graph flowchart helical-gear.kcl +extension: md +snapshot_kind: binary +--- diff --git a/rust/kcl-lib/tests/kcl_samples/helical-gear/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/helical-gear/artifact_graph_flowchart.snap.md new file mode 100644 index 000000000..4f268abec --- /dev/null +++ b/rust/kcl-lib/tests/kcl_samples/helical-gear/artifact_graph_flowchart.snap.md @@ -0,0 +1,138 @@ +```mermaid +flowchart LR + subgraph path8 [Path] + 8["Path
[889, 995, 0]"] + 12["Segment
[1003, 1030, 0]"] + 13["Segment
[1038, 1066, 0]"] + 14["Segment
[1074, 1102, 0]"] + 15["Segment
[1110, 1186, 0]"] + 16["Segment
[1194, 1259, 0]"] + 17["Segment
[1267, 1274, 0]"] + 30[Solid2d] + end + subgraph path9 [Path] + 9["Path
[1779, 1849, 0]"] + 26["Segment
[2813, 2820, 0]"] + 29[Solid2d] + end + subgraph path10 [Path] + 10["Path
[1779, 1849, 0]"] + 19["Segment
[1859, 2025, 0]"] + 20["Segment
[2035, 2120, 0]"] + 23["Segment
[2130, 2351, 0]"] + 24["Segment
[2438, 2524, 0]"] + 28["Segment
[2813, 2820, 0]"] + 31[Solid2d] + end + subgraph path11 [Path] + 11["Path
[1779, 1849, 0]"] + 18["Segment
[1859, 2025, 0]"] + 21["Segment
[2035, 2120, 0]"] + 22["Segment
[2130, 2351, 0]"] + 25["Segment
[2438, 2524, 0]"] + 27["Segment
[2813, 2820, 0]"] + 32[Solid2d] + end + 1["Plane
[864, 881, 0]"] + 2["Plane
[1730, 1768, 0]"] + 3["Plane
[1730, 1768, 0]"] + 4["Plane
[1730, 1768, 0]"] + 5["StartSketchOnPlane
[1716, 1769, 0]"] + 6["StartSketchOnPlane
[1716, 1769, 0]"] + 7["StartSketchOnPlane
[1716, 1769, 0]"] + 33["Sweep Loft
[3337, 3404, 0]"] + 34[Wall] + 35[Wall] + 36[Wall] + 37[Wall] + 38["Cap Start"] + 39["Cap End"] + 40["SweepEdge Opposite"] + 41["SweepEdge Opposite"] + 42["SweepEdge Opposite"] + 43["SweepEdge Opposite"] + 44["SweepEdge Adjacent"] + 45["SweepEdge Adjacent"] + 46["SweepEdge Adjacent"] + 47["SweepEdge Adjacent"] + 1 --- 8 + 2 <--x 7 + 2 --- 9 + 3 <--x 5 + 3 --- 10 + 4 <--x 6 + 4 --- 11 + 8 --- 12 + 8 --- 13 + 8 --- 14 + 8 --- 15 + 8 --- 16 + 8 --- 17 + 8 --- 30 + 9 --- 26 + 9 --- 29 + 9 x---> 33 + 9 x--> 40 + 9 x--> 41 + 9 x--> 42 + 9 x--> 43 + 10 --- 19 + 10 --- 20 + 10 --- 23 + 10 --- 24 + 10 --- 28 + 10 --- 31 + 10 x---> 33 + 11 --- 18 + 11 --- 21 + 11 --- 22 + 11 --- 25 + 11 --- 27 + 11 --- 32 + 11 ---- 33 + 18 --- 34 + 18 x--> 38 + 18 --- 41 + 18 --- 47 + 21 --- 36 + 21 x--> 38 + 21 --- 42 + 21 --- 44 + 22 --- 35 + 22 x--> 38 + 22 --- 40 + 22 --- 46 + 25 --- 37 + 25 x--> 38 + 25 --- 43 + 25 --- 45 + 33 --- 34 + 33 --- 35 + 33 --- 36 + 33 --- 37 + 33 --- 38 + 33 --- 39 + 33 --- 40 + 33 --- 41 + 33 --- 42 + 33 --- 43 + 33 --- 44 + 33 --- 45 + 33 --- 46 + 33 --- 47 + 41 <--x 34 + 44 <--x 34 + 47 <--x 34 + 40 <--x 35 + 45 <--x 35 + 46 <--x 35 + 42 <--x 36 + 44 <--x 36 + 46 <--x 36 + 43 <--x 37 + 45 <--x 37 + 40 <--x 39 + 41 <--x 39 + 42 <--x 39 + 43 <--x 39 +``` diff --git a/rust/kcl-lib/tests/kcl_samples/helical-gear/ast.snap b/rust/kcl-lib/tests/kcl_samples/helical-gear/ast.snap new file mode 100644 index 000000000..04f8395d9 --- /dev/null +++ b/rust/kcl-lib/tests/kcl_samples/helical-gear/ast.snap @@ -0,0 +1,3582 @@ +--- +source: kcl-lib/src/simulation_tests.rs +description: Result of parsing helical-gear.kcl +--- +{ + "Ok": { + "body": [ + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "helicalGear", + "start": 0, + "type": "Identifier" + }, + "init": { + "body": { + "body": [ + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "pitchDiameter", + "start": 0, + "type": "Identifier" + }, + "init": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "*", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "// Calculate gear parameters" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "addendum", + "start": 0, + "type": "Identifier" + }, + "init": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "deddendum", + "start": 0, + "type": "Identifier" + }, + "init": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "1.25", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 1.25, + "suffix": "None" + } + }, + "operator": "*", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "baseDiameter", + "start": 0, + "type": "Identifier" + }, + "init": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "pitchDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "*", + "right": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "cos", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "pressureAngle", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "tipDiameter", + "start": 0, + "type": "Identifier" + }, + "init": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "pitchDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "+", + "right": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "operator": "*", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "keywayWidth", + "start": 0, + "type": "Identifier" + }, + "init": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "", + "", + "// Define the constants of the keyway and the bore hole" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "keywayDepth", + "start": 0, + "type": "Identifier" + }, + "init": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "keywayWidth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "holeDiam", + "start": 0, + "type": "Identifier" + }, + "init": { + "commentStart": 0, + "end": 0, + "raw": "7", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 7.0, + "suffix": "None" + } + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "holeRadius", + "start": 0, + "type": "Identifier" + }, + "init": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "holeDiam", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "startAngle", + "start": 0, + "type": "Identifier" + }, + "init": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "asin", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "keywayWidth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "/", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "holeRadius", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "holeWithKeyway", + "start": 0, + "type": "Identifier" + }, + "init": { + "body": [ + { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "startSketchOn", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "XY", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "at", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "elements": [ + { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "holeRadius", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "*", + "right": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "cos", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "startAngle", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "holeRadius", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "*", + "right": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "sin", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "startAngle", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + ], + "end": 0, + "start": 0, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "startProfile", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "length", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "keywayDepth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "xLine", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "length", + "start": 0, + "type": "Identifier" + }, + "arg": { + "argument": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "keywayWidth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "operator": "-", + "start": 0, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "yLine", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "length", + "start": 0, + "type": "Identifier" + }, + "arg": { + "argument": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "keywayDepth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "operator": "-", + "start": 0, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "xLine", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angleStart", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "left": { + "argument": { + "commentStart": 0, + "end": 0, + "raw": "1", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 1.0, + "suffix": "None" + } + }, + "commentStart": 0, + "end": 0, + "operator": "-", + "start": 0, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + "operator": "*", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "startAngle", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "+", + "right": { + "commentStart": 0, + "end": 0, + "raw": "360", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 360.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angleEnd", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "180", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 180.0, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "radius", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "holeRadius", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "arc", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angleStart", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "180", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 180.0, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angleEnd", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "startAngle", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "radius", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "holeRadius", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "arc", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "close", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + ], + "commentStart": 0, + "end": 0, + "nonCodeMeta": { + "nonCodeNodes": { + "7": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "newLineBlockComment", + "value": "Define a function to create a rotated gear sketch on an offset plane", + "style": "line" + } + } + ] + }, + "startNodes": [] + }, + "start": 0, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "", + "", + "// Sketch the keyway and center hole" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "helicalGearSketch", + "start": 0, + "type": "Identifier" + }, + "init": { + "body": { + "body": [ + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "helixCalc", + "start": 0, + "type": "Identifier" + }, + "init": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "acos", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "offsetHeight", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "*", + "right": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "tan", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helixAngle", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "tipDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "// Calculate the amount to rotate each planar sketch of the gear given the gear helix angle and total gear height" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "helicalGearSketch", + "start": 0, + "type": "Identifier" + }, + "init": { + "body": [ + { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "startSketchOn", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "offset", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "offsetHeight", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "offsetPlane", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "XY", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + } + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "at", + "start": 0, + "type": "Identifier" + }, + "arg": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helixCalc", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "length", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "baseDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "polar", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "startProfile", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "startRadius", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "baseDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "endRadius", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "tipDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helixCalc", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "tag", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "seg01" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "involuteCircular", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "endAbsolute", + "start": 0, + "type": "Identifier" + }, + "arg": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "160", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 160.0, + "suffix": "None" + } + }, + "operator": "/", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "+", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helixCalc", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "length", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "tipDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "polar", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "line", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "startRadius", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "baseDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "endRadius", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "tipDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "argument": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "4", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 4.0, + "suffix": "None" + } + }, + "operator": "*", + "right": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "atan", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "commentStart": 0, + "end": 0, + "left": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "segEndY", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "seg01", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + "operator": "/", + "right": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "segEndX", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "seg01", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "-", + "right": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "3", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 3.0, + "suffix": "None" + } + }, + "operator": "*", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helixCalc", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "commentStart": 0, + "end": 0, + "operator": "-", + "start": 0, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "reverse", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "true", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": true + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "involuteCircular", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "endAbsolute", + "start": 0, + "type": "Identifier" + }, + "arg": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "360", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 360.0, + "suffix": "None" + } + }, + "operator": "/", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "+", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helixCalc", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "length", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "baseDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "polar", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "line", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "instances", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "center", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "elements": [ + { + "commentStart": 0, + "end": 0, + "raw": "0", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + }, + { + "commentStart": 0, + "end": 0, + "raw": "0", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + } + ], + "end": 0, + "start": 0, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "arcDegrees", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "360", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 360.0, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "rotateDuplicates", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "true", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": true + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "patternCircular2d", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + }, + { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "close", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "tool", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "holeWithKeyway", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "subtract2d", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + ], + "commentStart": 0, + "end": 0, + "nonCodeMeta": { + "nonCodeNodes": { + "4": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "newLineBlockComment", + "value": "Position the end line of the sketch at the start of the next tooth", + "style": "line" + } + } + ], + "5": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "newLineBlockComment", + "value": "Pattern the sketch about the center by the specified number of teeth, then close the sketch", + "style": "line" + } + } + ] + }, + "startNodes": [] + }, + "start": 0, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "", + "", + "// Using the gear parameters, sketch an involute tooth spanning from the base diameter to the tip diameter" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "argument": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helicalGearSketch", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "commentStart": 0, + "end": 0, + "start": 0 + }, + "commentStart": 0, + "end": 0, + "params": [ + { + "type": "Parameter", + "identifier": { + "commentStart": 0, + "end": 0, + "name": "offsetHeight", + "start": 0, + "type": "Identifier" + } + } + ], + "start": 0, + "type": "FunctionExpression", + "type": "FunctionExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "fn", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "gearSketch001", + "start": 0, + "type": "Identifier" + }, + "init": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "offsetHeight", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "0", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helicalGearSketch", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "", + "", + "// Draw a gear sketch on the base plane" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "gearSketch002", + "start": 0, + "type": "Identifier" + }, + "init": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "offsetHeight", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "gearHeight", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helicalGearSketch", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "", + "", + "// Draw a rotated gear sketch on a middle interstitial plane" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "gearSketch003", + "start": 0, + "type": "Identifier" + }, + "init": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "offsetHeight", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "gearHeight", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helicalGearSketch", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "", + "", + "// Draw a rotated gear sketch at the gear height offset plane" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "helicalGear", + "start": 0, + "type": "Identifier" + }, + "init": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "loft", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "commentStart": 0, + "elements": [ + { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "gearSketch001", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "gearSketch002", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "gearSketch003", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + ], + "end": 0, + "start": 0, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "", + "", + "// Loft each rotated gear sketch together to form a helical gear" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "argument": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helicalGear", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "commentStart": 0, + "end": 0, + "nonCodeMeta": { + "nonCodeNodes": { + "15": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "startNodes": [] + }, + "start": 0 + }, + "commentStart": 0, + "end": 0, + "params": [ + { + "type": "Parameter", + "identifier": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + } + }, + { + "type": "Parameter", + "identifier": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + } + }, + { + "type": "Parameter", + "identifier": { + "commentStart": 0, + "end": 0, + "name": "pressureAngle", + "start": 0, + "type": "Identifier" + } + }, + { + "type": "Parameter", + "identifier": { + "commentStart": 0, + "end": 0, + "name": "helixAngle", + "start": 0, + "type": "Identifier" + } + }, + { + "type": "Parameter", + "identifier": { + "commentStart": 0, + "end": 0, + "name": "gearHeight", + "start": 0, + "type": "Identifier" + } + } + ], + "start": 0, + "type": "FunctionExpression", + "type": "FunctionExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "fn", + "preComments": [ + "// Define a function to create a helical gear" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "end": 0, + "expression": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "21", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 21.0, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "pressureAngle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "20", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 20.0, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "helixAngle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "35", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 35.0, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "gearHeight", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "7", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 7.0, + "suffix": "None" + } + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helicalGear", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + "start": 0, + "type": "ExpressionStatement", + "type": "ExpressionStatement" + } + ], + "commentStart": 0, + "end": 0, + "innerAttrs": [ + { + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "settings", + "start": 0, + "type": "Identifier" + }, + "preComments": [ + "// Helical Gear", + "// A helical gear is a type of cylindrical gear where the teeth are slanted at an angle relative to the axis of rotation. This greatly reduces noise and wear when transmitting torque across meshed spinning gears", + "", + "", + "// Set units" + ], + "properties": [ + { + "commentStart": 0, + "end": 0, + "key": { + "commentStart": 0, + "end": 0, + "name": "defaultLengthUnit", + "start": 0, + "type": "Identifier" + }, + "start": 0, + "type": "ObjectProperty", + "value": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "mm", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + } + ], + "start": 0, + "type": "Annotation" + } + ], + "nonCodeMeta": { + "nonCodeNodes": { + "0": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "startNodes": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "start": 0 + } +} diff --git a/rust/kcl-lib/tests/kcl_samples/helical-gear/ops.snap b/rust/kcl-lib/tests/kcl_samples/helical-gear/ops.snap new file mode 100644 index 000000000..09d76ae40 --- /dev/null +++ b/rust/kcl-lib/tests/kcl_samples/helical-gear/ops.snap @@ -0,0 +1,830 @@ +--- +source: kcl-lib/src/simulation_tests.rs +description: Operations executed helical-gear.kcl +--- +[ + { + "labeledArgs": {}, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + { + "labeledArgs": {}, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + { + "labeledArgs": {}, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + { + "labeledArgs": {}, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + { + "type": "KclStdLibCall", + "name": "offsetPlane", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + }, + "labeledArgs": { + "offset": { + "value": { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "sourceRange": [] + }, + { + "type": "KclStdLibCall", + "name": "offsetPlane", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + }, + "labeledArgs": { + "offset": { + "value": { + "type": "Number", + "value": 3.5, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "sourceRange": [] + }, + { + "type": "KclStdLibCall", + "name": "offsetPlane", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + }, + "labeledArgs": { + "offset": { + "value": { + "type": "Number", + "value": 7.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.5707963267948966, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 19.733545036504076, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.4640403411278755, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 19.733545036504076, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.3560427808151838, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 19.733545036504076, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.7037737936135122, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 23.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.5970178079464912, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 23.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.4890202476337995, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 23.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.8699956271367815, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 19.733545036504076, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.7632396414697604, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 19.733545036504076, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.655242081157069, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 19.733545036504076, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "labeledArgs": { + "tool": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + "name": "subtract2d", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "tool": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + "name": "subtract2d", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "tool": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + "name": "subtract2d", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "helicalGearSketch", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "offsetHeight": { + "value": { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "helicalGearSketch", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "offsetHeight": { + "value": { + "type": "Number", + "value": 3.5, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "helicalGearSketch", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "offsetHeight": { + "value": { + "type": "Number", + "value": 7.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "labeledArgs": {}, + "name": "loft", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Array", + "value": [ + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + } + ] + }, + "sourceRange": [] + } + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "helicalGear", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "gearHeight": { + "value": { + "type": "Number", + "value": 7.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "helixAngle": { + "value": { + "type": "Number", + "value": 35.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "module": { + "value": { + "type": "Number", + "value": 2.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "nTeeth": { + "value": { + "type": "Number", + "value": 21.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "pressureAngle": { + "value": { + "type": "Number", + "value": 20.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + } +] diff --git a/rust/kcl-lib/tests/kcl_samples/helical-gear/program_memory.snap b/rust/kcl-lib/tests/kcl_samples/helical-gear/program_memory.snap new file mode 100644 index 000000000..cbc7666bf --- /dev/null +++ b/rust/kcl-lib/tests/kcl_samples/helical-gear/program_memory.snap @@ -0,0 +1,10 @@ +--- +source: kcl-lib/src/simulation_tests.rs +description: Variables in memory after executing helical-gear.kcl +--- +{ + "helicalGear": { + "type": "Function", + "value": null + } +} diff --git a/rust/kcl-lib/tests/kcl_samples/helical-gear/rendered_model.png b/rust/kcl-lib/tests/kcl_samples/helical-gear/rendered_model.png new file mode 100644 index 0000000000000000000000000000000000000000..f198488057022efdb0249bf8ff6d043c71cd0e81 GIT binary patch literal 103562 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 MUGO*1wNXI3Acnf(Uh* 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 S_{+Wp5B%oii!-^{+RhJjQkBpE literal 0 HcmV?d00001 diff --git a/rust/kcl-lib/tests/kcl_samples/helical-planetary-gearset/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/helical-planetary-gearset/artifact_commands.snap new file mode 100644 index 000000000..b9ced20b1 --- /dev/null +++ b/rust/kcl-lib/tests/kcl_samples/helical-planetary-gearset/artifact_commands.snap @@ -0,0 +1,7333 @@ +--- +source: kcl-lib/src/simulation_tests.rs +description: Artifact commands helical-planetary-gearset.kcl +--- +[ + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "edge_lines_visible", + "hidden": false + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 3.4641016151377544, + "y": 0.5, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 3.4641016151377544, + "y": 0.5, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.5, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.5, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -1.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -0.5, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -0.5, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": -0.0, + "y": 0.0 + }, + "radius": 3.5, + "start": { + "unit": "degrees", + "value": 351.7867892982618 + }, + "end": { + "unit": "degrees", + "value": 180.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": -0.0, + "y": 0.0 + }, + "radius": 3.5, + "start": { + "unit": "degrees", + "value": 351.7867892982618 + }, + "end": { + "unit": "degrees", + "value": 180.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": -0.0, + "y": 0.0 + }, + "radius": 3.5, + "start": { + "unit": "degrees", + "value": 180.0 + }, + "end": { + "unit": "degrees", + "value": 8.213210701738188 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": -0.0, + "y": 0.0 + }, + "radius": 3.5, + "start": { + "unit": "degrees", + "value": 180.0 + }, + "end": { + "unit": "degrees", + "value": 8.213210701738188 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 100.0, + "clobber": false, + "hide": false + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 2.5 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 100.0, + "clobber": false, + "hide": false + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 100.0, + "clobber": false, + "hide": false + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 100.0, + "clobber": false, + "hide": false + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 2.5 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 100.0, + "clobber": false, + "hide": false + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 100.0, + "clobber": false, + "hide": false + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "plane_set_color", + "plane_id": "[uuid]", + "color": { + "r": 0.6, + "g": 0.6, + "b": 0.6, + "a": 0.3 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "plane_set_color", + "plane_id": "[uuid]", + "color": { + "r": 0.6, + "g": 0.6, + "b": 0.6, + "a": 0.3 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "plane_set_color", + "plane_id": "[uuid]", + "color": { + "r": 0.6, + "g": 0.6, + "b": 0.6, + "a": 0.3 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "plane_set_color", + "plane_id": "[uuid]", + "color": { + "r": 0.6, + "g": 0.6, + "b": 0.6, + "a": 0.3 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "plane_set_color", + "plane_id": "[uuid]", + "color": { + "r": 0.6, + "g": 0.6, + "b": 0.6, + "a": 0.3 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "plane_set_color", + "plane_id": "[uuid]", + "color": { + "r": 0.6, + "g": 0.6, + "b": 0.6, + "a": 0.3 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 0.000000000000000534721299934615, + "y": 8.732661536483969, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 0.969549273937636, + "y": 8.678672232328719, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 1.9390985478752734, + "y": 8.514650570188689, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 0.000000000000000534721299934615, + "y": 8.732661536483969, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -0.9695492739376349, + "y": 8.678672232328719, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -1.9390985478752725, + "y": 8.514650570188689, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "circular_involute", + "start_radius": 8.732661536483969, + "end_radius": 10.5, + "angle": { + "unit": "degrees", + "value": 90.0 + }, + "reverse": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "circular_involute", + "start_radius": 8.732661536483969, + "end_radius": 10.5, + "angle": { + "unit": "degrees", + "value": 83.62555782351659 + }, + "reverse": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "circular_involute", + "start_radius": 8.732661536483969, + "end_radius": 10.5, + "angle": { + "unit": "degrees", + "value": 77.17045767129221 + }, + "reverse": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "circular_involute", + "start_radius": 8.732661536483969, + "end_radius": 10.5, + "angle": { + "unit": "degrees", + "value": 90.0 + }, + "reverse": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "circular_involute", + "start_radius": 8.732661536483969, + "end_radius": 10.5, + "angle": { + "unit": "degrees", + "value": 96.3744421764834 + }, + "reverse": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "circular_involute", + "start_radius": 8.732661536483969, + "end_radius": 10.5, + "angle": { + "unit": "degrees", + "value": 102.82954232870779 + }, + "reverse": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -2.4215, + "y": 10.217, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -1.2722, + "y": 10.4227, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -0.0923, + "y": 10.4996, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -2.4215, + "y": 10.217, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -3.5408, + "y": 9.885, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -4.6297, + "y": 9.4242, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "circular_involute", + "start_radius": 8.732661536483969, + "end_radius": 10.5, + "angle": { + "unit": "degrees", + "value": 611.9038409048754 + }, + "reverse": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "circular_involute", + "start_radius": 8.732661536483969, + "end_radius": 10.5, + "angle": { + "unit": "degrees", + "value": -101.72171691864123 + }, + "reverse": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "circular_involute", + "start_radius": 8.732661536483969, + "end_radius": 10.5, + "angle": { + "unit": "degrees", + "value": -95.26661676641692 + }, + "reverse": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "circular_involute", + "start_radius": 8.732661536483969, + "end_radius": 10.5, + "angle": { + "unit": "degrees", + "value": 611.9038409048754 + }, + "reverse": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "circular_involute", + "start_radius": 8.732661536483969, + "end_radius": 10.5, + "angle": { + "unit": "degrees", + "value": 605.529398728392 + }, + "reverse": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "circular_involute", + "start_radius": 8.732661536483969, + "end_radius": 10.5, + "angle": { + "unit": "degrees", + "value": 599.0742985761676 + }, + "reverse": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -4.3663, + "y": 7.5627, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -3.4997, + "y": 8.0007, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -2.578, + "y": 8.3435, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -4.3663, + "y": 7.5627, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -5.179, + "y": 7.0312, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -5.9366, + "y": 6.4044, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "entity_circular_pattern", + "entity_id": "[uuid]", + "axis": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "center": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "num_repetitions": 11, + "arc_degrees": 360.0, + "rotate_duplicates": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "entity_circular_pattern", + "entity_id": "[uuid]", + "axis": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "center": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "num_repetitions": 11, + "arc_degrees": 360.0, + "rotate_duplicates": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "entity_circular_pattern", + "entity_id": "[uuid]", + "axis": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "center": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "num_repetitions": 11, + "arc_degrees": 360.0, + "rotate_duplicates": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "entity_circular_pattern", + "entity_id": "[uuid]", + "axis": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "center": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "num_repetitions": 11, + "arc_degrees": 360.0, + "rotate_duplicates": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "entity_circular_pattern", + "entity_id": "[uuid]", + "axis": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "center": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "num_repetitions": 11, + "arc_degrees": 360.0, + "rotate_duplicates": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "entity_circular_pattern", + "entity_id": "[uuid]", + "axis": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "center": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "num_repetitions": 11, + "arc_degrees": 360.0, + "rotate_duplicates": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "loft", + "section_ids": [ + "[uuid]", + "[uuid]", + "[uuid]" + ], + "v_degree": 2, + "bez_approximate_rational": false, + "base_curve_index": null, + "tolerance": 0.0000001 + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "loft", + "section_ids": [ + "[uuid]", + "[uuid]", + "[uuid]" + ], + "v_degree": 2, + "bez_approximate_rational": false, + "base_curve_index": null, + "tolerance": 0.0000001 + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 100.0, + "clobber": false, + "hide": false + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 2.5 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 100.0, + "clobber": false, + "hide": false + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 100.0, + "clobber": false, + "hide": false + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "plane_set_color", + "plane_id": "[uuid]", + "color": { + "r": 0.6, + "g": 0.6, + "b": 0.6, + "a": 0.3 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "plane_set_color", + "plane_id": "[uuid]", + "color": { + "r": 0.6, + "g": 0.6, + "b": 0.6, + "a": 0.3 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "plane_set_color", + "plane_id": "[uuid]", + "color": { + "r": 0.6, + "g": 0.6, + "b": 0.6, + "a": 0.3 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 0.0000000000000018715245497711523, + "y": 30.564315377693887, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -1.0797253277941856, + "y": 30.54523805315085, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": -2.159450655588366, + "y": 30.487934455669738, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "circular_involute", + "start_radius": 30.564315377693887, + "end_radius": 33.0, + "angle": { + "unit": "degrees", + "value": 90.0 + }, + "reverse": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "circular_involute", + "start_radius": 30.564315377693887, + "end_radius": 33.0, + "angle": { + "unit": "degrees", + "value": 92.02447128028268 + }, + "reverse": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "circular_involute", + "start_radius": 30.564315377693887, + "end_radius": 33.0, + "angle": { + "unit": "degrees", + "value": 94.05147558880067 + }, + "reverse": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -2.7395, + "y": 32.8861, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -3.8995, + "y": 32.7688, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -5.0561, + "y": 32.6104, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "circular_involute", + "start_radius": 30.564315377693887, + "end_radius": 33.0, + "angle": { + "unit": "degrees", + "value": 625.3044620244902 + }, + "reverse": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "circular_involute", + "start_radius": 30.564315377693887, + "end_radius": 33.0, + "angle": { + "unit": "degrees", + "value": 623.2799907442076 + }, + "reverse": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "circular_involute", + "start_radius": 30.564315377693887, + "end_radius": 33.0, + "angle": { + "unit": "degrees", + "value": 621.2529864356896 + }, + "reverse": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -4.5554, + "y": 30.2229, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -5.6202, + "y": 30.0431, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -6.6793, + "y": 29.8256, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "entity_circular_pattern", + "entity_id": "[uuid]", + "axis": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "center": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "num_repetitions": 41, + "arc_degrees": 360.0, + "rotate_duplicates": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "entity_circular_pattern", + "entity_id": "[uuid]", + "axis": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "center": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "num_repetitions": 41, + "arc_degrees": 360.0, + "rotate_duplicates": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "entity_circular_pattern", + "entity_id": "[uuid]", + "axis": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "center": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "num_repetitions": 41, + "arc_degrees": 360.0, + "rotate_duplicates": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 100.0, + "clobber": false, + "hide": false + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 2.5 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 100.0, + "clobber": false, + "hide": false + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 5.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 100.0, + "clobber": false, + "hide": false + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "plane_set_color", + "plane_id": "[uuid]", + "color": { + "r": 0.6, + "g": 0.6, + "b": 0.6, + "a": 0.3 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "plane_set_color", + "plane_id": "[uuid]", + "color": { + "r": 0.6, + "g": 0.6, + "b": 0.6, + "a": 0.3 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "plane_set_color", + "plane_id": "[uuid]", + "color": { + "r": 0.6, + "g": 0.6, + "b": 0.6, + "a": 0.3 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 0.0, + "y": 0.0 + }, + "radius": 35.67567567567568, + "start": { + "unit": "degrees", + "value": 0.0 + }, + "end": { + "unit": "degrees", + "value": 360.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 0.0, + "y": 0.0 + }, + "radius": 35.67567567567568, + "start": { + "unit": "degrees", + "value": 0.0 + }, + "end": { + "unit": "degrees", + "value": 360.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 0.0, + "y": 0.0 + }, + "radius": 35.67567567567568, + "start": { + "unit": "degrees", + "value": 0.0 + }, + "end": { + "unit": "degrees", + "value": 360.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 35.67567567567568, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 35.67567567567568, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 35.67567567567568, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "loft", + "section_ids": [ + "[uuid]", + "[uuid]", + "[uuid]" + ], + "v_degree": 2, + "bez_approximate_rational": false, + "base_curve_index": null, + "tolerance": 0.0000001 + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "set_object_transform", + "object_id": "[uuid]", + "transforms": [ + { + "translate": { + "property": { + "x": 0.0, + "y": 20.7, + "z": 0.0 + }, + "set": false, + "is_local": true + }, + "rotate_rpy": null, + "rotate_angle_axis": null, + "scale": null + } + ] + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "entity_circular_pattern", + "entity_id": "[uuid]", + "axis": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + }, + "center": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "num_repetitions": 2, + "arc_degrees": 360.0, + "rotate_duplicates": false + } + } +] diff --git a/rust/kcl-lib/tests/kcl_samples/helical-planetary-gearset/artifact_graph_flowchart.snap b/rust/kcl-lib/tests/kcl_samples/helical-planetary-gearset/artifact_graph_flowchart.snap new file mode 100644 index 000000000..ea52be007 --- /dev/null +++ b/rust/kcl-lib/tests/kcl_samples/helical-planetary-gearset/artifact_graph_flowchart.snap @@ -0,0 +1,6 @@ +--- +source: kcl-lib/src/simulation_tests.rs +description: Artifact graph flowchart helical-planetary-gearset.kcl +extension: md +snapshot_kind: binary +--- diff --git a/rust/kcl-lib/tests/kcl_samples/helical-planetary-gearset/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/helical-planetary-gearset/artifact_graph_flowchart.snap.md new file mode 100644 index 000000000..70624fbb6 --- /dev/null +++ b/rust/kcl-lib/tests/kcl_samples/helical-planetary-gearset/artifact_graph_flowchart.snap.md @@ -0,0 +1,383 @@ +```mermaid +flowchart LR + subgraph path27 [Path] + 27["Path
[973, 1079, 0]"] + 41["Segment
[1087, 1114, 0]"] + 44["Segment
[1122, 1150, 0]"] + 45["Segment
[1158, 1186, 0]"] + 47["Segment
[1194, 1270, 0]"] + 49["Segment
[1278, 1343, 0]"] + 52["Segment
[1351, 1358, 0]"] + 93[Solid2d] + end + subgraph path28 [Path] + 28["Path
[973, 1079, 0]"] + 42["Segment
[1087, 1114, 0]"] + 43["Segment
[1122, 1150, 0]"] + 46["Segment
[1158, 1186, 0]"] + 48["Segment
[1194, 1270, 0]"] + 50["Segment
[1278, 1343, 0]"] + 51["Segment
[1351, 1358, 0]"] + 95[Solid2d] + end + subgraph path29 [Path] + 29["Path
[1863, 1933, 0]"] + 55["Segment
[1943, 2109, 0]"] + 58["Segment
[2119, 2204, 0]"] + 64["Segment
[2214, 2435, 0]"] + 67["Segment
[2522, 2608, 0]"] + 69["Segment
[2897, 2904, 0]"] + 92[Solid2d] + end + subgraph path30 [Path] + 30["Path
[1863, 1933, 0]"] + 70["Segment
[2897, 2904, 0]"] + 98[Solid2d] + end + subgraph path31 [Path] + 31["Path
[1863, 1933, 0]"] + 53["Segment
[1943, 2109, 0]"] + 57["Segment
[2119, 2204, 0]"] + 62["Segment
[2214, 2435, 0]"] + 66["Segment
[2522, 2608, 0]"] + 71["Segment
[2897, 2904, 0]"] + 99[Solid2d] + end + subgraph path32 [Path] + 32["Path
[1863, 1933, 0]"] + 56["Segment
[1943, 2109, 0]"] + 60["Segment
[2119, 2204, 0]"] + 61["Segment
[2214, 2435, 0]"] + 65["Segment
[2522, 2608, 0]"] + 74["Segment
[2897, 2904, 0]"] + 100[Solid2d] + end + subgraph path33 [Path] + 33["Path
[1863, 1933, 0]"] + 73["Segment
[2897, 2904, 0]"] + 102[Solid2d] + end + subgraph path34 [Path] + 34["Path
[1863, 1933, 0]"] + 54["Segment
[1943, 2109, 0]"] + 59["Segment
[2119, 2204, 0]"] + 63["Segment
[2214, 2435, 0]"] + 68["Segment
[2522, 2608, 0]"] + 72["Segment
[2897, 2904, 0]"] + 103[Solid2d] + end + subgraph path35 [Path] + 35["Path
[4327, 4397, 0]"] + 77["Segment
[4407, 4573, 0]"] + 79["Segment
[4583, 4668, 0]"] + 83["Segment
[4678, 4899, 0]"] + 84["Segment
[4986, 5072, 0]"] + 88["Segment
[5361, 5368, 0]"] + 96[Solid2d] + end + subgraph path36 [Path] + 36["Path
[4327, 4397, 0]"] + 75["Segment
[4407, 4573, 0]"] + 80["Segment
[4583, 4668, 0]"] + 82["Segment
[4678, 4899, 0]"] + 85["Segment
[4986, 5072, 0]"] + 87["Segment
[5361, 5368, 0]"] + 101[Solid2d] + end + subgraph path37 [Path] + 37["Path
[4327, 4397, 0]"] + 76["Segment
[4407, 4573, 0]"] + 78["Segment
[4583, 4668, 0]"] + 81["Segment
[4678, 4899, 0]"] + 86["Segment
[4986, 5072, 0]"] + 89["Segment
[5361, 5368, 0]"] + 105[Solid2d] + end + subgraph path38 [Path] + 38["Path
[5579, 5631, 0]"] + 91["Segment
[5579, 5631, 0]"] + 94[Solid2d] + end + subgraph path39 [Path] + 39["Path
[5579, 5631, 0]"] + 97[Solid2d] + end + subgraph path40 [Path] + 40["Path
[5579, 5631, 0]"] + 90["Segment
[5579, 5631, 0]"] + 104[Solid2d] + end + 1["Plane
[948, 965, 0]"] + 2["Plane
[948, 965, 0]"] + 3["Plane
[1814, 1852, 0]"] + 4["Plane
[1814, 1852, 0]"] + 5["Plane
[1814, 1852, 0]"] + 6["Plane
[1814, 1852, 0]"] + 7["Plane
[1814, 1852, 0]"] + 8["Plane
[1814, 1852, 0]"] + 9["Plane
[4278, 4316, 0]"] + 10["Plane
[4278, 4316, 0]"] + 11["Plane
[4278, 4316, 0]"] + 12["Plane
[5530, 5568, 0]"] + 13["Plane
[5530, 5568, 0]"] + 14["Plane
[5530, 5568, 0]"] + 15["StartSketchOnPlane
[4264, 4317, 0]"] + 16["StartSketchOnPlane
[1800, 1853, 0]"] + 17["StartSketchOnPlane
[1800, 1853, 0]"] + 18["StartSketchOnPlane
[1800, 1853, 0]"] + 19["StartSketchOnPlane
[1800, 1853, 0]"] + 20["StartSketchOnPlane
[4264, 4317, 0]"] + 21["StartSketchOnPlane
[5516, 5569, 0]"] + 22["StartSketchOnPlane
[4264, 4317, 0]"] + 23["StartSketchOnPlane
[1800, 1853, 0]"] + 24["StartSketchOnPlane
[1800, 1853, 0]"] + 25["StartSketchOnPlane
[5516, 5569, 0]"] + 26["StartSketchOnPlane
[5516, 5569, 0]"] + 106["Sweep Loft
[3421, 3488, 0]"] + 107["Sweep Loft
[3421, 3488, 0]"] + 108["Sweep Loft
[6125, 6192, 0]"] + 109[Wall] + 110[Wall] + 111[Wall] + 112[Wall] + 113[Wall] + 114[Wall] + 115[Wall] + 116[Wall] + 117[Wall] + 118["Cap Start"] + 119["Cap Start"] + 120["Cap Start"] + 121["Cap End"] + 122["Cap End"] + 123["Cap End"] + 124["SweepEdge Opposite"] + 125["SweepEdge Opposite"] + 126["SweepEdge Opposite"] + 127["SweepEdge Opposite"] + 128["SweepEdge Opposite"] + 129["SweepEdge Opposite"] + 130["SweepEdge Opposite"] + 131["SweepEdge Opposite"] + 132["SweepEdge Opposite"] + 133["SweepEdge Adjacent"] + 134["SweepEdge Adjacent"] + 135["SweepEdge Adjacent"] + 136["SweepEdge Adjacent"] + 137["SweepEdge Adjacent"] + 138["SweepEdge Adjacent"] + 139["SweepEdge Adjacent"] + 140["SweepEdge Adjacent"] + 141["SweepEdge Adjacent"] + 1 --- 28 + 2 --- 27 + 3 <--x 24 + 3 --- 34 + 4 <--x 17 + 4 --- 33 + 5 <--x 19 + 5 --- 32 + 6 <--x 18 + 6 --- 30 + 7 <--x 16 + 7 --- 31 + 8 <--x 23 + 8 --- 29 + 9 <--x 22 + 9 --- 36 + 10 <--x 15 + 10 --- 35 + 11 <--x 20 + 11 --- 37 + 12 <--x 26 + 12 --- 38 + 13 <--x 25 + 13 --- 39 + 14 <--x 21 + 14 --- 40 + 27 --- 41 + 27 --- 44 + 27 --- 45 + 27 --- 47 + 27 --- 49 + 27 --- 52 + 27 --- 93 + 28 --- 42 + 28 --- 43 + 28 --- 46 + 28 --- 48 + 28 --- 50 + 28 --- 51 + 28 --- 95 + 29 --- 55 + 29 --- 58 + 29 --- 64 + 29 --- 67 + 29 --- 69 + 29 --- 92 + 29 ---- 107 + 30 --- 70 + 30 --- 98 + 30 x---> 107 + 30 x--> 128 + 30 x--> 129 + 30 x--> 130 + 30 x--> 131 + 31 --- 53 + 31 --- 57 + 31 --- 62 + 31 --- 66 + 31 --- 71 + 31 --- 99 + 31 ---- 106 + 32 --- 56 + 32 --- 60 + 32 --- 61 + 32 --- 65 + 32 --- 74 + 32 --- 100 + 32 x---> 107 + 33 --- 73 + 33 --- 102 + 33 x---> 106 + 33 x--> 124 + 33 x--> 125 + 33 x--> 126 + 33 x--> 127 + 34 --- 54 + 34 --- 59 + 34 --- 63 + 34 --- 68 + 34 --- 72 + 34 --- 103 + 34 x---> 106 + 35 --- 77 + 35 --- 79 + 35 --- 83 + 35 --- 84 + 35 --- 88 + 35 --- 96 + 36 --- 75 + 36 --- 80 + 36 --- 82 + 36 --- 85 + 36 --- 87 + 36 --- 101 + 37 --- 76 + 37 --- 78 + 37 --- 81 + 37 --- 86 + 37 --- 89 + 37 --- 105 + 38 --- 91 + 38 --- 94 + 38 ---- 108 + 39 --- 97 + 39 x---> 108 + 39 x--> 132 + 40 --- 90 + 40 --- 104 + 40 x---> 108 + 53 --- 111 + 53 x--> 119 + 53 --- 126 + 53 --- 135 + 55 --- 115 + 55 x--> 118 + 55 --- 130 + 55 --- 139 + 57 --- 109 + 57 x--> 119 + 57 --- 124 + 57 --- 134 + 58 --- 113 + 58 x--> 118 + 58 --- 131 + 58 --- 138 + 62 --- 110 + 62 x--> 119 + 62 --- 127 + 62 --- 136 + 64 --- 116 + 64 x--> 118 + 64 --- 129 + 64 --- 140 + 66 --- 112 + 66 x--> 119 + 66 --- 125 + 66 --- 133 + 67 --- 114 + 67 x--> 118 + 67 --- 128 + 67 --- 137 + 91 --- 117 + 91 x--> 120 + 91 --- 132 + 91 --- 141 + 106 --- 109 + 106 --- 110 + 106 --- 111 + 106 --- 112 + 106 --- 119 + 106 --- 122 + 106 --- 124 + 106 --- 125 + 106 --- 126 + 106 --- 127 + 106 --- 133 + 106 --- 134 + 106 --- 135 + 106 --- 136 + 107 --- 113 + 107 --- 114 + 107 --- 115 + 107 --- 116 + 107 --- 118 + 107 --- 121 + 107 --- 128 + 107 --- 129 + 107 --- 130 + 107 --- 131 + 107 --- 137 + 107 --- 138 + 107 --- 139 + 107 --- 140 + 108 --- 117 + 108 --- 120 + 108 --- 123 + 108 --- 132 + 108 --- 141 + 124 <--x 109 + 134 <--x 109 + 136 <--x 109 + 127 <--x 110 + 133 <--x 110 + 136 <--x 110 + 126 <--x 111 + 134 <--x 111 + 135 <--x 111 + 125 <--x 112 + 133 <--x 112 + 131 <--x 113 + 138 <--x 113 + 140 <--x 113 + 128 <--x 114 + 137 <--x 114 + 130 <--x 115 + 138 <--x 115 + 139 <--x 115 + 129 <--x 116 + 137 <--x 116 + 140 <--x 116 + 132 <--x 117 + 141 <--x 117 + 128 <--x 121 + 129 <--x 121 + 130 <--x 121 + 131 <--x 121 + 124 <--x 122 + 125 <--x 122 + 126 <--x 122 + 127 <--x 122 + 132 <--x 123 +``` diff --git a/rust/kcl-lib/tests/kcl_samples/helical-planetary-gearset/ast.snap b/rust/kcl-lib/tests/kcl_samples/helical-planetary-gearset/ast.snap new file mode 100644 index 000000000..d869f4c1d --- /dev/null +++ b/rust/kcl-lib/tests/kcl_samples/helical-planetary-gearset/ast.snap @@ -0,0 +1,6871 @@ +--- +source: kcl-lib/src/simulation_tests.rs +description: Result of parsing helical-planetary-gearset.kcl +--- +{ + "Ok": { + "body": [ + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "helicalGear", + "start": 0, + "type": "Identifier" + }, + "init": { + "body": { + "body": [ + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "pitchDiameter", + "start": 0, + "type": "Identifier" + }, + "init": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "*", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "// Calculate gear parameters" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "addendum", + "start": 0, + "type": "Identifier" + }, + "init": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "deddendum", + "start": 0, + "type": "Identifier" + }, + "init": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "1.25", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 1.25, + "suffix": "None" + } + }, + "operator": "*", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "baseDiameter", + "start": 0, + "type": "Identifier" + }, + "init": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "pitchDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "*", + "right": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "cos", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "pressureAngle", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "tipDiameter", + "start": 0, + "type": "Identifier" + }, + "init": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "pitchDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "+", + "right": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "operator": "*", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "keywayWidth", + "start": 0, + "type": "Identifier" + }, + "init": { + "commentStart": 0, + "end": 0, + "raw": "1", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 1.0, + "suffix": "None" + } + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "", + "", + "// Define the constants of the keyway and the bore hole" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "keywayDepth", + "start": 0, + "type": "Identifier" + }, + "init": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "keywayWidth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "holeDiam", + "start": 0, + "type": "Identifier" + }, + "init": { + "commentStart": 0, + "end": 0, + "raw": "7", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 7.0, + "suffix": "None" + } + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "holeRadius", + "start": 0, + "type": "Identifier" + }, + "init": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "holeDiam", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "startAngle", + "start": 0, + "type": "Identifier" + }, + "init": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "asin", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "keywayWidth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "/", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "holeRadius", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "holeWithKeyway", + "start": 0, + "type": "Identifier" + }, + "init": { + "body": [ + { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "startSketchOn", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "XY", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "at", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "elements": [ + { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "holeRadius", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "*", + "right": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "cos", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "startAngle", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "holeRadius", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "*", + "right": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "sin", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "startAngle", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + ], + "end": 0, + "start": 0, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "startProfile", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "length", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "keywayDepth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "xLine", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "length", + "start": 0, + "type": "Identifier" + }, + "arg": { + "argument": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "keywayWidth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "operator": "-", + "start": 0, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "yLine", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "length", + "start": 0, + "type": "Identifier" + }, + "arg": { + "argument": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "keywayDepth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "operator": "-", + "start": 0, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "xLine", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angleStart", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "left": { + "argument": { + "commentStart": 0, + "end": 0, + "raw": "1", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 1.0, + "suffix": "None" + } + }, + "commentStart": 0, + "end": 0, + "operator": "-", + "start": 0, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + "operator": "*", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "startAngle", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "+", + "right": { + "commentStart": 0, + "end": 0, + "raw": "360", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 360.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angleEnd", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "180", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 180.0, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "radius", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "holeRadius", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "arc", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angleStart", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "180", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 180.0, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angleEnd", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "startAngle", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "radius", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "holeRadius", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "arc", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "close", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + ], + "commentStart": 0, + "end": 0, + "nonCodeMeta": { + "nonCodeNodes": { + "7": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "newLineBlockComment", + "value": "Define a function to create a rotated gear sketch on an offset plane", + "style": "line" + } + } + ] + }, + "startNodes": [] + }, + "start": 0, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "", + "", + "// Sketch the keyway and center hole" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "helicalGearSketch", + "start": 0, + "type": "Identifier" + }, + "init": { + "body": { + "body": [ + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "helixCalc", + "start": 0, + "type": "Identifier" + }, + "init": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "acos", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "offsetHeight", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "*", + "right": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "tan", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helixAngle", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "tipDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "// Calculate the amount to rotate each planar sketch of the gear given the gear helix angle and total gear height" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "helicalGearSketch", + "start": 0, + "type": "Identifier" + }, + "init": { + "body": [ + { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "startSketchOn", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "offset", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "offsetHeight", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "offsetPlane", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "XY", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + } + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "at", + "start": 0, + "type": "Identifier" + }, + "arg": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helixCalc", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "length", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "baseDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "polar", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "startProfile", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "startRadius", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "baseDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "endRadius", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "tipDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helixCalc", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "tag", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "seg01" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "involuteCircular", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "endAbsolute", + "start": 0, + "type": "Identifier" + }, + "arg": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "160", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 160.0, + "suffix": "None" + } + }, + "operator": "/", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "+", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helixCalc", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "length", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "tipDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "polar", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "line", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "startRadius", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "baseDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "endRadius", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "tipDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "argument": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "4", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 4.0, + "suffix": "None" + } + }, + "operator": "*", + "right": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "atan", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "commentStart": 0, + "end": 0, + "left": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "segEndY", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "seg01", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + "operator": "/", + "right": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "segEndX", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "seg01", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "-", + "right": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "3", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 3.0, + "suffix": "None" + } + }, + "operator": "*", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helixCalc", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "commentStart": 0, + "end": 0, + "operator": "-", + "start": 0, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "reverse", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "true", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": true + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "involuteCircular", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "endAbsolute", + "start": 0, + "type": "Identifier" + }, + "arg": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "360", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 360.0, + "suffix": "None" + } + }, + "operator": "/", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "+", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helixCalc", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "length", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "baseDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "polar", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "line", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "instances", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "center", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "elements": [ + { + "commentStart": 0, + "end": 0, + "raw": "0", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + }, + { + "commentStart": 0, + "end": 0, + "raw": "0", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + } + ], + "end": 0, + "start": 0, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "arcDegrees", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "360", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 360.0, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "rotateDuplicates", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "true", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": true + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "patternCircular2d", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + }, + { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "close", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "tool", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "holeWithKeyway", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "subtract2d", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + ], + "commentStart": 0, + "end": 0, + "nonCodeMeta": { + "nonCodeNodes": { + "4": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "newLineBlockComment", + "value": "Position the end line of the sketch at the start of the next tooth", + "style": "line" + } + } + ], + "5": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "newLineBlockComment", + "value": "Pattern the sketch about the center by the specified number of teeth, then close the sketch", + "style": "line" + } + } + ] + }, + "startNodes": [] + }, + "start": 0, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "", + "", + "// Using the gear parameters, sketch an involute tooth spanning from the base diameter to the tip diameter" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "argument": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helicalGearSketch", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "commentStart": 0, + "end": 0, + "start": 0 + }, + "commentStart": 0, + "end": 0, + "params": [ + { + "type": "Parameter", + "identifier": { + "commentStart": 0, + "end": 0, + "name": "offsetHeight", + "start": 0, + "type": "Identifier" + } + } + ], + "start": 0, + "type": "FunctionExpression", + "type": "FunctionExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "fn", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "gearSketch001", + "start": 0, + "type": "Identifier" + }, + "init": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "offsetHeight", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "0", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helicalGearSketch", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "", + "", + "// Draw a gear sketch on the base plane" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "gearSketch002", + "start": 0, + "type": "Identifier" + }, + "init": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "offsetHeight", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "gearHeight", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helicalGearSketch", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "", + "", + "// Draw a rotated gear sketch on a middle interstitial plane" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "gearSketch003", + "start": 0, + "type": "Identifier" + }, + "init": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "offsetHeight", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "gearHeight", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helicalGearSketch", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "", + "", + "// Draw a rotated gear sketch at the gear height offset plane" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "helicalGear", + "start": 0, + "type": "Identifier" + }, + "init": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "loft", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "commentStart": 0, + "elements": [ + { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "gearSketch001", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "gearSketch002", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "gearSketch003", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + ], + "end": 0, + "start": 0, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "", + "", + "// Loft each rotated gear sketch together to form a helical gear" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "argument": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helicalGear", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "commentStart": 0, + "end": 0, + "nonCodeMeta": { + "nonCodeNodes": { + "15": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "startNodes": [] + }, + "start": 0 + }, + "commentStart": 0, + "end": 0, + "params": [ + { + "type": "Parameter", + "identifier": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + } + }, + { + "type": "Parameter", + "identifier": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + } + }, + { + "type": "Parameter", + "identifier": { + "commentStart": 0, + "end": 0, + "name": "pressureAngle", + "start": 0, + "type": "Identifier" + } + }, + { + "type": "Parameter", + "identifier": { + "commentStart": 0, + "end": 0, + "name": "helixAngle", + "start": 0, + "type": "Identifier" + } + }, + { + "type": "Parameter", + "identifier": { + "commentStart": 0, + "end": 0, + "name": "gearHeight", + "start": 0, + "type": "Identifier" + } + } + ], + "start": 0, + "type": "FunctionExpression", + "type": "FunctionExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "fn", + "preComments": [ + "// Define a function to create a helical gear" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "ringGear", + "start": 0, + "type": "Identifier" + }, + "init": { + "body": { + "body": [ + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "pitchDiameter", + "start": 0, + "type": "Identifier" + }, + "init": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "*", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "// Calculate gear parameters" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "addendum", + "start": 0, + "type": "Identifier" + }, + "init": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "deddendum", + "start": 0, + "type": "Identifier" + }, + "init": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "1.25", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 1.25, + "suffix": "None" + } + }, + "operator": "*", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "baseDiameter", + "start": 0, + "type": "Identifier" + }, + "init": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "pitchDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "*", + "right": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "cos", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "pressureAngle", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "tipDiameter", + "start": 0, + "type": "Identifier" + }, + "init": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "pitchDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "+", + "right": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "operator": "*", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "ringGearSketch", + "start": 0, + "type": "Identifier" + }, + "init": { + "body": { + "body": [ + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "helixCalc", + "start": 0, + "type": "Identifier" + }, + "init": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "acos", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "offsetHeight", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "*", + "right": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "tan", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helixAngle", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "tipDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "// Calculate the amount to rotate each planar sketch of the gear given the gear helix angle and total gear height" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "ringTeeth", + "start": 0, + "type": "Identifier" + }, + "init": { + "body": [ + { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "startSketchOn", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "offset", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "offsetHeight", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "offsetPlane", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "XY", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + } + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "at", + "start": 0, + "type": "Identifier" + }, + "arg": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helixCalc", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "length", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "baseDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "polar", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "startProfile", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "startRadius", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "baseDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "endRadius", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "tipDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helixCalc", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "tag", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "seg01" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "involuteCircular", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "endAbsolute", + "start": 0, + "type": "Identifier" + }, + "arg": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "200", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 200.0, + "suffix": "None" + } + }, + "operator": "/", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "+", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helixCalc", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "length", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "tipDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "polar", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "line", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "startRadius", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "baseDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "endRadius", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "tipDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "argument": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "4", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 4.0, + "suffix": "None" + } + }, + "operator": "*", + "right": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "atan", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "commentStart": 0, + "end": 0, + "left": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "segEndY", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "seg01", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + "operator": "/", + "right": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "segEndX", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "seg01", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "-", + "right": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "3", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 3.0, + "suffix": "None" + } + }, + "operator": "*", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helixCalc", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "commentStart": 0, + "end": 0, + "operator": "-", + "start": 0, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "reverse", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "true", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": true + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "involuteCircular", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "endAbsolute", + "start": 0, + "type": "Identifier" + }, + "arg": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "360", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 360.0, + "suffix": "None" + } + }, + "operator": "/", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "+", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helixCalc", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "length", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "baseDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "polar", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "line", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "instances", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "center", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "elements": [ + { + "commentStart": 0, + "end": 0, + "raw": "0", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + }, + { + "commentStart": 0, + "end": 0, + "raw": "0", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + } + ], + "end": 0, + "start": 0, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "arcDegrees", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "360", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 360.0, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "rotateDuplicates", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "true", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": true + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "patternCircular2d", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + }, + { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "close", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + ], + "commentStart": 0, + "end": 0, + "nonCodeMeta": { + "nonCodeNodes": { + "4": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "newLineBlockComment", + "value": "Position the end line of the sketch at the start of the next tooth", + "style": "line" + } + } + ], + "5": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "newLineBlockComment", + "value": "Pattern the sketch about the center by the specified number of teeth, then close the sketch", + "style": "line" + } + } + ], + "7": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "newLineBlockComment", + "value": "Create a circular body that is larger than the tip diameter of the gear, then subtract the gear profile from the body", + "style": "line" + } + } + ] + }, + "startNodes": [] + }, + "start": 0, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "", + "", + "// Using the gear parameters, sketch an involute tooth spanning from the base diameter to the tip diameter" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "ringGearSketch", + "start": 0, + "type": "Identifier" + }, + "init": { + "body": [ + { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "startSketchOn", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "offset", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "offsetHeight", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "offsetPlane", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "XY", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + } + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "center", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "elements": [ + { + "commentStart": 0, + "end": 0, + "raw": "0", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + }, + { + "commentStart": 0, + "end": 0, + "raw": "0", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + } + ], + "end": 0, + "start": 0, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "radius", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "tipDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "1.85", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 1.85, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "circle", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "tool", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "ringTeeth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "subtract2d", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + ], + "commentStart": 0, + "end": 0, + "start": 0, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "argument": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "ringGearSketch", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "commentStart": 0, + "end": 0, + "start": 0 + }, + "commentStart": 0, + "end": 0, + "params": [ + { + "type": "Parameter", + "identifier": { + "commentStart": 0, + "end": 0, + "name": "offsetHeight", + "start": 0, + "type": "Identifier" + } + } + ], + "start": 0, + "type": "FunctionExpression", + "type": "FunctionExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "fn", + "preComments": [ + "", + "", + "// Define a function to create a rotated gear sketch on an offset plane" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "gearSketch001", + "start": 0, + "type": "Identifier" + }, + "init": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "offsetHeight", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "0", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "ringGearSketch", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "", + "", + "// Draw a gear sketch on the base plane" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "gearSketch002", + "start": 0, + "type": "Identifier" + }, + "init": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "offsetHeight", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "gearHeight", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "ringGearSketch", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "", + "", + "// Draw a rotated gear sketch on a middle interstitial plane" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "gearSketch003", + "start": 0, + "type": "Identifier" + }, + "init": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "offsetHeight", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "gearHeight", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "ringGearSketch", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "", + "", + "// Draw a rotated gear sketch at the gear height offset plane" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "ringGear", + "start": 0, + "type": "Identifier" + }, + "init": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "loft", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "commentStart": 0, + "elements": [ + { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "gearSketch001", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "gearSketch002", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "gearSketch003", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + ], + "end": 0, + "start": 0, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "", + "", + "// Loft each rotated gear sketch together to form a ring gear" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "argument": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "ringGear", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "commentStart": 0, + "end": 0, + "nonCodeMeta": { + "nonCodeNodes": { + "9": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "startNodes": [] + }, + "start": 0 + }, + "commentStart": 0, + "end": 0, + "params": [ + { + "type": "Parameter", + "identifier": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + } + }, + { + "type": "Parameter", + "identifier": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + } + }, + { + "type": "Parameter", + "identifier": { + "commentStart": 0, + "end": 0, + "name": "pressureAngle", + "start": 0, + "type": "Identifier" + } + }, + { + "type": "Parameter", + "identifier": { + "commentStart": 0, + "end": 0, + "name": "helixAngle", + "start": 0, + "type": "Identifier" + } + }, + { + "type": "Parameter", + "identifier": { + "commentStart": 0, + "end": 0, + "name": "gearHeight", + "start": 0, + "type": "Identifier" + } + } + ], + "start": 0, + "type": "FunctionExpression", + "type": "FunctionExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "fn", + "preComments": [ + "", + "", + "// Define a function to create a ring gear" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "end": 0, + "expression": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "42", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 42.0, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "1.5", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 1.5, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "pressureAngle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "14", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 14.0, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "helixAngle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "argument": { + "commentStart": 0, + "end": 0, + "raw": "25", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 25.0, + "suffix": "None" + } + }, + "commentStart": 0, + "end": 0, + "operator": "-", + "start": 0, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "gearHeight", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "5", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 5.0, + "suffix": "None" + } + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "ringGear", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + "preComments": [ + "", + "", + "// Create the outer ring gear for the planetary gearset" + ], + "start": 0, + "type": "ExpressionStatement", + "type": "ExpressionStatement" + }, + { + "commentStart": 0, + "end": 0, + "expression": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "12", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 12.0, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "1.5", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 1.5, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "pressureAngle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "14", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 14.0, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "helixAngle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "25", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 25.0, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "gearHeight", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "5", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 5.0, + "suffix": "None" + } + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helicalGear", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + "preComments": [ + "", + "", + "// Create a central sun gear using a small helical gear" + ], + "start": 0, + "type": "ExpressionStatement", + "type": "ExpressionStatement" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "numPlanetGears", + "start": 0, + "type": "Identifier" + }, + "init": { + "commentStart": 0, + "end": 0, + "raw": "3", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 3.0, + "suffix": "None" + } + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "", + "", + "// Create the helical planet gears" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "end": 0, + "expression": { + "body": [ + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "12", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 12.0, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "1.5", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 1.5, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "pressureAngle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "14", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 14.0, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "helixAngle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "argument": { + "commentStart": 0, + "end": 0, + "raw": "25", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 25.0, + "suffix": "None" + } + }, + "commentStart": 0, + "end": 0, + "operator": "-", + "start": 0, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "gearHeight", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "5", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 5.0, + "suffix": "None" + } + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helicalGear", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "y", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "12", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 12.0, + "suffix": "None" + } + }, + "operator": "+", + "right": { + "commentStart": 0, + "end": 0, + "raw": "12", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 12.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "*", + "right": { + "commentStart": 0, + "end": 0, + "raw": "1.5", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 1.5, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "+", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2.7", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.7, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "translate", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "instances", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "numPlanetGears", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "axis", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "elements": [ + { + "commentStart": 0, + "end": 0, + "raw": "0", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + }, + { + "commentStart": 0, + "end": 0, + "raw": "0", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + }, + { + "commentStart": 0, + "end": 0, + "raw": "1", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 1.0, + "suffix": "None" + } + } + ], + "end": 0, + "start": 0, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "center", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "elements": [ + { + "commentStart": 0, + "end": 0, + "raw": "0", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + }, + { + "commentStart": 0, + "end": 0, + "raw": "0", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + }, + { + "commentStart": 0, + "end": 0, + "raw": "0", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + } + ], + "end": 0, + "start": 0, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "arcDegrees", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "360", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 360.0, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "rotateDuplicates", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "false", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": false + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "patternCircular3d", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + ], + "commentStart": 0, + "end": 0, + "start": 0, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 0, + "type": "ExpressionStatement", + "type": "ExpressionStatement" + } + ], + "commentStart": 0, + "end": 0, + "innerAttrs": [ + { + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "settings", + "start": 0, + "type": "Identifier" + }, + "preComments": [ + "// Helical Planetary Gearset", + "// A helical planetary gearset is a type of planetary gear system where the teeth of the sun gear, planet gears, and/or ring gear are helical rather than straight. This design allows for smoother, quieter operation, greater load-carrying capacity, and more flexible shaft alignment.", + "", + "", + "// Set units" + ], + "properties": [ + { + "commentStart": 0, + "end": 0, + "key": { + "commentStart": 0, + "end": 0, + "name": "defaultLengthUnit", + "start": 0, + "type": "Identifier" + }, + "start": 0, + "type": "ObjectProperty", + "value": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "mm", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + } + ], + "start": 0, + "type": "Annotation" + } + ], + "nonCodeMeta": { + "nonCodeNodes": {}, + "startNodes": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "start": 0 + } +} diff --git a/rust/kcl-lib/tests/kcl_samples/helical-planetary-gearset/ops.snap b/rust/kcl-lib/tests/kcl_samples/helical-planetary-gearset/ops.snap new file mode 100644 index 000000000..b8c99482d --- /dev/null +++ b/rust/kcl-lib/tests/kcl_samples/helical-planetary-gearset/ops.snap @@ -0,0 +1,2743 @@ +--- +source: kcl-lib/src/simulation_tests.rs +description: Operations executed helical-planetary-gearset.kcl +--- +[ + { + "labeledArgs": {}, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + { + "labeledArgs": {}, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + { + "labeledArgs": {}, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + { + "labeledArgs": {}, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + { + "labeledArgs": {}, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + { + "labeledArgs": {}, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + { + "labeledArgs": {}, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + { + "labeledArgs": {}, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + { + "type": "KclStdLibCall", + "name": "offsetPlane", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + }, + "labeledArgs": { + "offset": { + "value": { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "sourceRange": [] + }, + { + "type": "KclStdLibCall", + "name": "offsetPlane", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + }, + "labeledArgs": { + "offset": { + "value": { + "type": "Number", + "value": 2.5, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "sourceRange": [] + }, + { + "type": "KclStdLibCall", + "name": "offsetPlane", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + }, + "labeledArgs": { + "offset": { + "value": { + "type": "Number", + "value": 5.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "sourceRange": [] + }, + { + "type": "KclStdLibCall", + "name": "offsetPlane", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + }, + "labeledArgs": { + "offset": { + "value": { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "sourceRange": [] + }, + { + "type": "KclStdLibCall", + "name": "offsetPlane", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + }, + "labeledArgs": { + "offset": { + "value": { + "type": "Number", + "value": 2.5, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "sourceRange": [] + }, + { + "type": "KclStdLibCall", + "name": "offsetPlane", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + }, + "labeledArgs": { + "offset": { + "value": { + "type": "Number", + "value": 5.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.5707963267948966, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 8.732661536483969, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.4595413228372676, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 8.732661536483969, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.3468785716349652, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 8.732661536483969, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.5707963267948966, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 8.732661536483969, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.6820513307525256, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 8.732661536483969, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.794714081954828, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 8.732661536483969, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.8035068937274739, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 10.5, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.6922518897698449, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 10.5, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.5795891385675425, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 10.5, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.8035068937274739, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 10.5, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.9147618976851029, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 10.5, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 2.027424648887405, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 10.5, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 2.0943951023931953, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 8.732661536483969, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.9831400984355665, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 8.732661536483969, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.870477347233264, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 8.732661536483969, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 2.0943951023931953, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 8.732661536483969, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 2.2056501063508245, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 8.732661536483969, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 2.318312857553127, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 8.732661536483969, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "labeledArgs": { + "tool": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + "name": "subtract2d", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "tool": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + "name": "subtract2d", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "tool": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + "name": "subtract2d", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "tool": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + "name": "subtract2d", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "tool": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + "name": "subtract2d", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "tool": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + "name": "subtract2d", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "helicalGearSketch", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "offsetHeight": { + "value": { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "helicalGearSketch", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "offsetHeight": { + "value": { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "helicalGearSketch", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "offsetHeight": { + "value": { + "type": "Number", + "value": 2.5, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "helicalGearSketch", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "offsetHeight": { + "value": { + "type": "Number", + "value": 2.5, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "helicalGearSketch", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "offsetHeight": { + "value": { + "type": "Number", + "value": 5.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "helicalGearSketch", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "offsetHeight": { + "value": { + "type": "Number", + "value": 5.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "labeledArgs": {}, + "name": "loft", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Array", + "value": [ + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + } + ] + }, + "sourceRange": [] + } + }, + { + "labeledArgs": {}, + "name": "loft", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Array", + "value": [ + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + } + ] + }, + "sourceRange": [] + } + }, + { + "labeledArgs": {}, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + { + "labeledArgs": {}, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + { + "labeledArgs": {}, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + { + "type": "KclStdLibCall", + "name": "offsetPlane", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + }, + "labeledArgs": { + "offset": { + "value": { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "sourceRange": [] + }, + { + "type": "KclStdLibCall", + "name": "offsetPlane", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + }, + "labeledArgs": { + "offset": { + "value": { + "type": "Number", + "value": 2.5, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "sourceRange": [] + }, + { + "type": "KclStdLibCall", + "name": "offsetPlane", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + }, + "labeledArgs": { + "offset": { + "value": { + "type": "Number", + "value": 5.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.5707963267948966, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 30.564315377693887, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.6061300162478944, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 30.564315377693887, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.641507915383644, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 30.564315377693887, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.6539072435565312, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 33.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.689240933009529, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 33.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.724618832145279, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 33.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.720395976965839, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 30.564315377693887, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.7557296664188369, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 30.564315377693887, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.7911075655545865, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 30.564315377693887, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "labeledArgs": {}, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + { + "labeledArgs": {}, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + { + "labeledArgs": {}, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + { + "type": "KclStdLibCall", + "name": "offsetPlane", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + }, + "labeledArgs": { + "offset": { + "value": { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "sourceRange": [] + }, + { + "type": "KclStdLibCall", + "name": "offsetPlane", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + }, + "labeledArgs": { + "offset": { + "value": { + "type": "Number", + "value": 2.5, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "sourceRange": [] + }, + { + "type": "KclStdLibCall", + "name": "offsetPlane", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + }, + "labeledArgs": { + "offset": { + "value": { + "type": "Number", + "value": 5.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "sourceRange": [] + }, + { + "labeledArgs": { + "tool": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + "name": "subtract2d", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "tool": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + "name": "subtract2d", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "tool": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + "name": "subtract2d", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "ringGearSketch", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "offsetHeight": { + "value": { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "ringGearSketch", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "offsetHeight": { + "value": { + "type": "Number", + "value": 2.5, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "ringGearSketch", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "offsetHeight": { + "value": { + "type": "Number", + "value": 5.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "labeledArgs": {}, + "name": "loft", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Array", + "value": [ + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + } + ] + }, + "sourceRange": [] + } + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "ringGear", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "gearHeight": { + "value": { + "type": "Number", + "value": 5.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "helixAngle": { + "value": { + "type": "Number", + "value": -25.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "module": { + "value": { + "type": "Number", + "value": 1.5, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "nTeeth": { + "value": { + "type": "Number", + "value": 42.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "pressureAngle": { + "value": { + "type": "Number", + "value": 14.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "helicalGear", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "gearHeight": { + "value": { + "type": "Number", + "value": 5.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "helixAngle": { + "value": { + "type": "Number", + "value": 25.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "module": { + "value": { + "type": "Number", + "value": 1.5, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "nTeeth": { + "value": { + "type": "Number", + "value": 12.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "pressureAngle": { + "value": { + "type": "Number", + "value": 14.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "helicalGear", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "gearHeight": { + "value": { + "type": "Number", + "value": 5.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "helixAngle": { + "value": { + "type": "Number", + "value": -25.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "module": { + "value": { + "type": "Number", + "value": 1.5, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "nTeeth": { + "value": { + "type": "Number", + "value": 12.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "pressureAngle": { + "value": { + "type": "Number", + "value": 14.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "labeledArgs": { + "arcDegrees": { + "value": { + "type": "Number", + "value": 360.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "axis": { + "value": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "sourceRange": [] + }, + "center": { + "value": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "sourceRange": [] + }, + "instances": { + "value": { + "type": "Number", + "value": 3.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "rotateDuplicates": { + "value": { + "type": "Bool", + "value": false + }, + "sourceRange": [] + } + }, + "name": "patternCircular3d", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + } +] diff --git a/rust/kcl-lib/tests/kcl_samples/helical-planetary-gearset/program_memory.snap b/rust/kcl-lib/tests/kcl_samples/helical-planetary-gearset/program_memory.snap new file mode 100644 index 000000000..4d3912123 --- /dev/null +++ b/rust/kcl-lib/tests/kcl_samples/helical-planetary-gearset/program_memory.snap @@ -0,0 +1,32 @@ +--- +source: kcl-lib/src/simulation_tests.rs +description: Variables in memory after executing helical-planetary-gearset.kcl +--- +{ + "helicalGear": { + "type": "Function", + "value": null + }, + "numPlanetGears": { + "type": "Number", + "value": 3.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "ringGear": { + "type": "Function", + "value": null + }, + "seg01": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "seg01" + } +} diff --git a/rust/kcl-lib/tests/kcl_samples/helical-planetary-gearset/rendered_model.png b/rust/kcl-lib/tests/kcl_samples/helical-planetary-gearset/rendered_model.png new file mode 100644 index 0000000000000000000000000000000000000000..dacd1be228f5015fa37548f5c71843c8f910ec48 GIT binary patch literal 142265 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[1136, 1206, 0]"] + 9["Segment
[1216, 1382, 0]"] + 11["Segment
[1392, 1477, 0]"] + 14["Segment
[1487, 1708, 0]"] + 15["Segment
[1795, 1881, 0]"] + 17["Segment
[2170, 2177, 0]"] + 22[Solid2d] + end + subgraph path6 [Path] + 6["Path
[1136, 1206, 0]"] + 10["Segment
[1216, 1382, 0]"] + 12["Segment
[1392, 1477, 0]"] + 13["Segment
[1487, 1708, 0]"] + 16["Segment
[1795, 1881, 0]"] + 18["Segment
[2170, 2177, 0]"] + 23[Solid2d] + end + subgraph path7 [Path] + 7["Path
[2256, 2291, 0]"] + 20["Segment
[2256, 2291, 0]"] + 21[Solid2d] + end + subgraph path8 [Path] + 8["Path
[2256, 2291, 0]"] + 19["Segment
[2256, 2291, 0]"] + 24[Solid2d] + end + 1["Plane
[1087, 1125, 0]"] + 2["Plane
[1087, 1125, 0]"] + 3["StartSketchOnPlane
[1073, 1126, 0]"] + 4["StartSketchOnPlane
[1073, 1126, 0]"] + 25["Sweep Loft
[2816, 2917, 0]"] + 26[Wall] + 27[Wall] + 28[Wall] + 29[Wall] + 30["Cap Start"] + 31["Cap End"] + 32["SweepEdge Opposite"] + 33["SweepEdge Opposite"] + 34["SweepEdge Opposite"] + 35["SweepEdge Opposite"] + 36["SweepEdge Adjacent"] + 37["SweepEdge Adjacent"] + 38["SweepEdge Adjacent"] + 39["SweepEdge Adjacent"] + 1 <--x 4 + 1 --- 5 + 1 --- 7 + 2 <--x 3 + 2 --- 6 + 2 --- 8 + 5 --- 9 + 5 --- 11 + 5 --- 14 + 5 --- 15 + 5 --- 17 + 5 --- 22 + 5 x---> 25 + 6 --- 10 + 6 --- 12 + 6 --- 13 + 6 --- 16 + 6 --- 18 + 6 --- 23 + 6 ---- 25 + 7 --- 20 + 7 --- 21 + 8 --- 19 + 8 --- 24 + 10 --- 28 + 10 x--> 30 + 10 --- 35 + 10 --- 36 + 12 --- 27 + 12 x--> 30 + 12 --- 33 + 12 --- 39 + 13 --- 26 + 13 x--> 30 + 13 --- 32 + 13 --- 37 + 16 --- 29 + 16 x--> 30 + 16 --- 34 + 16 --- 38 + 25 --- 26 + 25 --- 27 + 25 --- 28 + 25 --- 29 + 25 --- 30 + 25 --- 31 + 25 --- 32 + 25 --- 33 + 25 --- 34 + 25 --- 35 + 25 --- 36 + 25 --- 37 + 25 --- 38 + 25 --- 39 + 32 <--x 26 + 37 <--x 26 + 38 <--x 26 + 33 <--x 27 + 37 <--x 27 + 39 <--x 27 + 35 <--x 28 + 36 <--x 28 + 39 <--x 28 + 34 <--x 29 + 38 <--x 29 + 32 <--x 31 + 33 <--x 31 + 34 <--x 31 + 35 <--x 31 +``` diff --git a/rust/kcl-lib/tests/kcl_samples/herringbone-gear/ast.snap b/rust/kcl-lib/tests/kcl_samples/herringbone-gear/ast.snap new file mode 100644 index 000000000..d201a6625 --- /dev/null +++ b/rust/kcl-lib/tests/kcl_samples/herringbone-gear/ast.snap @@ -0,0 +1,2773 @@ +--- +source: kcl-lib/src/simulation_tests.rs +description: Result of parsing herringbone-gear.kcl +--- +{ + "Ok": { + "body": [ + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "herringboneGear", + "start": 0, + "type": "Identifier" + }, + "init": { + "body": { + "body": [ + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "pitchDiameter", + "start": 0, + "type": "Identifier" + }, + "init": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "*", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "// Calculate gear parameters" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "addendum", + "start": 0, + "type": "Identifier" + }, + "init": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "deddendum", + "start": 0, + "type": "Identifier" + }, + "init": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "1.25", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 1.25, + "suffix": "None" + } + }, + "operator": "*", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "baseDiameter", + "start": 0, + "type": "Identifier" + }, + "init": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "pitchDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "*", + "right": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "cos", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "pressureAngle", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "tipDiameter", + "start": 0, + "type": "Identifier" + }, + "init": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "pitchDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "+", + "right": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "operator": "*", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "herringboneGearSketch", + "start": 0, + "type": "Identifier" + }, + "init": { + "body": { + "body": [ + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "helixCalc", + "start": 0, + "type": "Identifier" + }, + "init": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "acos", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "offsetHeight", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "*", + "right": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "tan", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helixAngle", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "tipDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "// Calculate the amount to rotate each planar sketch of the gear given the gear helix angle and total gear height" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "herringboneGearSketch", + "start": 0, + "type": "Identifier" + }, + "init": { + "body": [ + { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "startSketchOn", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "offset", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "offsetHeight", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "offsetPlane", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "XY", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + } + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "at", + "start": 0, + "type": "Identifier" + }, + "arg": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helixCalc", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "length", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "baseDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "polar", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "startProfile", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "startRadius", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "baseDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "endRadius", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "tipDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helixCalc", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "tag", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "seg01" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "involuteCircular", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "endAbsolute", + "start": 0, + "type": "Identifier" + }, + "arg": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "160", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 160.0, + "suffix": "None" + } + }, + "operator": "/", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "+", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helixCalc", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "length", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "tipDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "polar", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "line", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "startRadius", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "baseDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "endRadius", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "tipDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "argument": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "4", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 4.0, + "suffix": "None" + } + }, + "operator": "*", + "right": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "atan", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "commentStart": 0, + "end": 0, + "left": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "segEndY", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "seg01", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + "operator": "/", + "right": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "segEndX", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "seg01", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "-", + "right": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "3", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 3.0, + "suffix": "None" + } + }, + "operator": "*", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helixCalc", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "commentStart": 0, + "end": 0, + "operator": "-", + "start": 0, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "reverse", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "true", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": true + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "involuteCircular", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "endAbsolute", + "start": 0, + "type": "Identifier" + }, + "arg": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "360", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 360.0, + "suffix": "None" + } + }, + "operator": "/", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "+", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helixCalc", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "length", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "baseDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "polar", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "line", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "instances", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "center", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "elements": [ + { + "commentStart": 0, + "end": 0, + "raw": "0", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + }, + { + "commentStart": 0, + "end": 0, + "raw": "0", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + } + ], + "end": 0, + "start": 0, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "arcDegrees", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "360", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 360.0, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "rotateDuplicates", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "true", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": true + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "patternCircular2d", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + }, + { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "close", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "tool", + "start": 0, + "type": "Identifier" + }, + "arg": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "center", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "elements": [ + { + "commentStart": 0, + "end": 0, + "raw": "0", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + }, + { + "commentStart": 0, + "end": 0, + "raw": "0", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + } + ], + "end": 0, + "start": 0, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "radius", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "4", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 4.0, + "suffix": "None" + } + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "circle", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "subtract2d", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + ], + "commentStart": 0, + "end": 0, + "nonCodeMeta": { + "nonCodeNodes": { + "4": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "newLineBlockComment", + "value": "Position the end line of the sketch at the start of the next tooth", + "style": "line" + } + } + ], + "5": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "newLineBlockComment", + "value": "Pattern the sketch about the center by the specified number of teeth, then close the sketch", + "style": "line" + } + } + ], + "7": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "blockComment", + "value": "Create a center hole with an 8mm diameter", + "style": "line" + } + } + ] + }, + "startNodes": [] + }, + "start": 0, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "", + "", + "// Using the gear parameters, sketch an involute tooth spanning from the base diameter to the tip diameter" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "argument": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "herringboneGearSketch", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "commentStart": 0, + "end": 0, + "start": 0 + }, + "commentStart": 0, + "end": 0, + "params": [ + { + "type": "Parameter", + "identifier": { + "commentStart": 0, + "end": 0, + "name": "offsetHeight", + "start": 0, + "type": "Identifier" + } + } + ], + "start": 0, + "type": "FunctionExpression", + "type": "FunctionExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "fn", + "preComments": [ + "", + "", + "// Define a function to create a rotated gear sketch on an offset plane" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "gearSketch001", + "start": 0, + "type": "Identifier" + }, + "init": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "offsetHeight", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "0", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "herringboneGearSketch", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "", + "", + "// Draw a gear sketch on the base plane" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "gearSketch002", + "start": 0, + "type": "Identifier" + }, + "init": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "offsetHeight", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "gearHeight", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "herringboneGearSketch", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "", + "", + "// Draw a gear sketch that has been rotated by the helix angle" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "gearSketch003", + "start": 0, + "type": "Identifier" + }, + "init": { + "body": [ + { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "clone", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "gearSketch001", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "z", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "gearHeight", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "translate", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + ], + "commentStart": 0, + "end": 0, + "nonCodeMeta": { + "nonCodeNodes": { + "1": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "newLineBlockComment", + "value": "Loft each rotated gear sketch together to form a herringbone gear", + "style": "line" + } + } + ] + }, + "startNodes": [] + }, + "start": 0, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "", + "", + "// Draw a gear sketch at the total gear height that reverses the angle direction" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "herringboneGear", + "start": 0, + "type": "Identifier" + }, + "init": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "vDegree", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "1", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 1.0, + "suffix": "None" + } + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "loft", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "commentStart": 0, + "elements": [ + { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "gearSketch001", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "gearSketch002", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "gearSketch003", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + ], + "end": 0, + "start": 0, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "argument": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "herringboneGear", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "commentStart": 0, + "end": 0, + "nonCodeMeta": { + "nonCodeNodes": { + "9": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "startNodes": [] + }, + "start": 0 + }, + "commentStart": 0, + "end": 0, + "params": [ + { + "type": "Parameter", + "identifier": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + } + }, + { + "type": "Parameter", + "identifier": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + } + }, + { + "type": "Parameter", + "identifier": { + "commentStart": 0, + "end": 0, + "name": "pressureAngle", + "start": 0, + "type": "Identifier" + } + }, + { + "type": "Parameter", + "identifier": { + "commentStart": 0, + "end": 0, + "name": "helixAngle", + "start": 0, + "type": "Identifier" + } + }, + { + "type": "Parameter", + "identifier": { + "commentStart": 0, + "end": 0, + "name": "gearHeight", + "start": 0, + "type": "Identifier" + } + } + ], + "start": 0, + "type": "FunctionExpression", + "type": "FunctionExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "fn", + "preComments": [ + "// Define a function to create a herringbone gear" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "end": 0, + "expression": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "25", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 25.0, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "1", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 1.0, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "pressureAngle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "14", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 14.0, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "helixAngle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "40", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 40.0, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "gearHeight", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "8", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 8.0, + "suffix": "None" + } + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "herringboneGear", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + "start": 0, + "type": "ExpressionStatement", + "type": "ExpressionStatement" + } + ], + "commentStart": 0, + "end": 0, + "innerAttrs": [ + { + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "settings", + "start": 0, + "type": "Identifier" + }, + "preComments": [ + "// Herringbone Gear", + "// A herringbone, or double-helical gear, is a cylindrical gear type with angled teeth in opposing directions. This allows the quietness and smoothness of a helical gear, without applying a directional load while turning", + "", + "", + "// Set units" + ], + "properties": [ + { + "commentStart": 0, + "end": 0, + "key": { + "commentStart": 0, + "end": 0, + "name": "defaultLengthUnit", + "start": 0, + "type": "Identifier" + }, + "start": 0, + "type": "ObjectProperty", + "value": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "mm", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + } + ], + "start": 0, + "type": "Annotation" + } + ], + "nonCodeMeta": { + "nonCodeNodes": { + "0": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "startNodes": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "start": 0 + } +} diff --git a/rust/kcl-lib/tests/kcl_samples/herringbone-gear/ops.snap b/rust/kcl-lib/tests/kcl_samples/herringbone-gear/ops.snap new file mode 100644 index 000000000..94bcf3b22 --- /dev/null +++ b/rust/kcl-lib/tests/kcl_samples/herringbone-gear/ops.snap @@ -0,0 +1,621 @@ +--- +source: kcl-lib/src/simulation_tests.rs +description: Operations executed herringbone-gear.kcl +--- +[ + { + "labeledArgs": {}, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + { + "labeledArgs": {}, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + { + "type": "KclStdLibCall", + "name": "offsetPlane", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + }, + "labeledArgs": { + "offset": { + "value": { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "sourceRange": [] + }, + { + "type": "KclStdLibCall", + "name": "offsetPlane", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + }, + "labeledArgs": { + "offset": { + "value": { + "type": "Number", + "value": 4.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.5707963267948966, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 12.128696578449956, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.3195388864186572, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 12.128696578449956, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.6824973989225336, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 13.5, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.4312399585462943, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 13.5, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.82212373908208, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 12.128696578449956, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.5708662987058406, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 12.128696578449956, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "labeledArgs": { + "tool": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + "name": "subtract2d", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "tool": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + "name": "subtract2d", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "herringboneGearSketch", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "offsetHeight": { + "value": { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "herringboneGearSketch", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "offsetHeight": { + "value": { + "type": "Number", + "value": 4.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "KclStdLibCall", + "name": "clone", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + }, + "labeledArgs": {}, + "sourceRange": [] + }, + { + "labeledArgs": { + "vDegree": { + "value": { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "loft", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Array", + "value": [ + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + } + ] + }, + "sourceRange": [] + } + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "herringboneGear", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "gearHeight": { + "value": { + "type": "Number", + "value": 8.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "helixAngle": { + "value": { + "type": "Number", + "value": 40.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "module": { + "value": { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "nTeeth": { + "value": { + "type": "Number", + "value": 25.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "pressureAngle": { + "value": { + "type": "Number", + "value": 14.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + } +] diff --git a/rust/kcl-lib/tests/kcl_samples/herringbone-gear/program_memory.snap b/rust/kcl-lib/tests/kcl_samples/herringbone-gear/program_memory.snap new file mode 100644 index 000000000..b9a06314d --- /dev/null +++ b/rust/kcl-lib/tests/kcl_samples/herringbone-gear/program_memory.snap @@ -0,0 +1,10 @@ +--- +source: kcl-lib/src/simulation_tests.rs +description: Variables in memory after executing herringbone-gear.kcl +--- +{ + "herringboneGear": { + "type": "Function", + "value": null + } +} diff --git a/rust/kcl-lib/tests/kcl_samples/herringbone-gear/rendered_model.png b/rust/kcl-lib/tests/kcl_samples/herringbone-gear/rendered_model.png new file mode 100644 index 0000000000000000000000000000000000000000..2b2201dfd492e92b6152c3810d12f04d992d2041 GIT binary patch literal 150895 zcmeFaeO#1f+6H_BD)~ujWt$47lv`G`Yk?^`wpm72Y}*#QX`orTrHD!fh%%^|ktvF6 zWF+j?Q|{`cXs#d$4k~JK8I7F!yy` z=f`m#=f{=w`)4Qj?R7^lP1E{@JUQtPn${gJJ-@xF2R;=oIs2mK`AlHQq(}c4>v1jL z>u>&l{_t?U9#gaW>*JdjOqsbovLws#{~I5qfA~~p`fo=MuW5Tb`^`mPtQ zkNQ+>*}DC!%Rl|2-IVmr3t=xWJoVE*n#{Lu`1v3D>au?Cy+8j$3s31U{PAbs3Gc3N z{l~PQdnf#z9`;<$&paL<*`E37f}eRj{-Vx^$1nVJO|s5*%lp49%xy=1Ik7I{|BEQP z$;K}_)_Oj@{95K#d!RJJlp}`FIdriH+})ZU3cRbbl)}V`6X=W z5^ersJi4mOFA;PXb@_!F=)!*dVmy8^9>2t6zrS;1{dtz8f$9e+{XcO#gnk zcv@rmp!l7G;;)UKbt3rU$FsM`Jy>)>J_Qs+b^Z{wq)7e@()(`DsruO4>yt;KtM&(< zJhN+7RQEl#`#R>jbNBka$Wko2*$oMG7B#G?ZC#Vm^la_*XEO>d|6b91kTxc+!Cz}R z8)MyOX_{(jI%{hG%+&sfZP1>ok7xVZe$4Fru~vQm66=zdvx^EJE)M=^Q2D-&n!Oul zjg4=27a)-K_rw;ov0+t!w$KQicnY31jSuGc;pGv70D{m9S- z7W_hOUc>p2^pa%T*U5{UlkFFi6Z*MtU;N*^$6tKZwYtuT=2rrmU&-v0KfBM9H<07X zUzK-yRbF7gr`V?2AN)GM^XvS?+P=-&KG!~QNlkS^O%(tA^z4W|^OpLxt@Atg&(J0J z>b@hN{iJ-8wQbWQ^DDZYeCTXD&SR>z6X)?+#zFJnisLpF$JJtkeDntrdk=b`uG(y` zwq4G&->cuopPbPp62+LOEaW zJ+bw}HEvPGp;goN%=1WGH7H;Kwq1K*+MfJ_zReGY+b=|t8`b)*`dq|AxX$kAr%?V08bbL&cTYoy(aOFVfple%ec3^I=n zU2^&Pw&dm>QFT3B4;-O4Md%Z9Z=O|@p0{C81vRND+SC$lz9OsbpeR^vh1Ncak@n9P zf4y??O+N9b54J*hw$<9(@rEtuO#8)FV6DXonX_RF_Cvrk8_R6HWt|?f=xp^V#{I9{ z)}HZ`wSOw2wOxssZ207a^OIYX=T#K+^ljd;vc4feZwS6R!>3Z7IXmG>_P&nE=IfJ9 zE2}G&*i)7Jh#uTtethF-pNfrQs3PQS9E$u-Xlpn7Xl&uKpv4D+&R>YIUua8i_;0s4CMz%GZR}<)+&c)$TeJ$II=67j2GNw7ICtgW{N>w`DZ)$8lDoz&tAc4(-|W z;G-g}Ym02hixzKE$K=YT+N=NO%7ZqUzgLDyR&M&{(5gXgjV3+XZY$D135s1FRNmKG z*VoS`wzE@Nl;*2vrWSqjNMpI2fo<^1xv}f06v0jZ4836b(fAeV?cZ-+fK3el2!^KN z(>?RfdFr>8)kDO0#eP9CdNFa=tfI0-G_c>S61!hFZeQiNgdeWtp16`5l+RzZ%hWOY zf$-d~x!h<|Nog%qQxj9>^A>)$#uM_W+p%)|2YiCXVr1Ylpq4NM=FX0JE)#6>TJ-I5 z-vXC^GyhcOAYU zvt`%zLSPc!**u}?pSD?JV8p1L2a*Pkq&;cbi*;)>05AsX@u%g+_NOJ&sAJm~JxeS0 z*o5rN$GY4s3C*F9FGNy$ME{(5usEc0P_tIT@8OUq5I%i~TT z^gaB4SVFxMdvJZ2n>5@nvT6~-oB_}JXn?&U!2TmFd_eP$!KpBTp7YKf=q{=-QEU%Y zxT#jR*P1(ES^N^J<!0CeYp6H9gONf%mf> z?buh_(J;c)Fe1a@{MdVIwZDG*)Fwk%3tucH$uJ2X-h-ne>~ZmO_Ac8 z#$J5P?;9HOXp0zdF)lUAL;t)I1Uj5~(GhH&N33HHxp#DsZ-mC*0rzSuu}zL!9u(^p ze(u)rr6VWQCoQgyNf?=F`zG^vnx!qx+76@NRNKhMv=o|m$XjU?*Us?Zld=M_PMhSR zZZuTeC;C8R_c(Jzi=Go(X#XOr{fo^JFggM4p9WNzeuSop>QG+9Ssf4!<9^`9Iy!L( zaC-BD-vnwlVXd<)A#9+E+oP zhazl;B09uXrJ47;48cz=gA;Y=VK++X`?7xP^=GWt-%1p-&wUKIH^erZjv+NZC$*Ar z#$hcS4=)~htNq%X=u_rTD5``k;*i?f#5U}so#>R8Ij)ygD_laWv^x)4b#hkYG>R!O z@C|3G36c_Fp$(z=qGkTiCeXD|?;97oC1&xF7~B7fDqh9@H*ouaAT1jr?Ey|r5TWGZ z0gKZH=D4Y!muOzCz^rs&;6fYf>en|nerJKiJdqcbq_pzuju&4;XE|!l^2WWUi z-;3h8cTKpmE4*4Dyi&?N#@ zKW7MY>X|Cjza8>FGBo}Ch47jS8eCXwZ*k!I(>_ZsKGs(5W1n8rqF}WscG}hgV2NcL^B`6c!zT&Ru5)W_-Jo5Q?;;p~BoRF1s*_0k>AK&Hq z8JHjp`*X1EoKN*<6E1(&1-TlvW$l)mxR=iNp03(5=tLlOk@!?B zyC%`6U+Yr8VWW2z5*jbKdV1$n(-oZ2LfK#^y0&K`@^&-W_F1hAY-<-GfZNmp*y?zz zI?5FV!@LU1(dy`eS5CP8cPbS>D-{VRdKRC0lWcz-0~0Dd?1=82)n<`MD=sHB{t=Dp zP!Fs6%)fs4%eEP5VT%uioj+^sJlp0TKDZ9yU1vpKlj(p+Kx)FJ)P$%+1}W8)RPmn4 zJaLU^Xc=LlR$h=aF!=i4eJ)VTd>7A~mwz(7`5}34J{xR<{^S6?|C~nCA%{w~#MAF? zPPn|e;jf#6SBx~Z9km_Ju=Na0XjmWDus-9sLYndjf{5*2FRNwWu(MmchOc_3fDiMD z>cuCbxBt`yqol+{_{`iOCY6|HIXXf;HHYh;Dhh6!uId60+MvuoyS!i&+ug* zm07@!hd5l<*8+a3a#ZlEU=shVwF%;mHn4VQSXa+&pQUiCU8oJuR_C)0THy~Qs`o0H z)|5Fj&Agi4Z9zcG0(scK`z-l&3j$cfx7o$Rxw*XVZe&OII(M_vd%i^NkT==`>tlZH zzZV?lvI5OQDHSO&@APEm+itKiYur6H9RWqxb~wt`gFjdQ3f~SUzsY(eP)~&&k*CcqJ(f3w{=q{IWKN@@V8C<+Tx{fN zl;R8!t*hse$oB>>YVCc4RjU?f1>vl=y*Mej_4=igrL|;c+E!az``QE67QCRx0nX^b zS#5fLV89lKRTFxJD9Eea@n$eL6K-6*b@>8Y>wISfqsR60@rjAbYx=TZA(Ov)jcgt_C*fMMVPv4}%Jh;o7dQRW{ z62)@6#lA?QRtI4as$UN^zw10&>vA{a^o<;=a>fFt<|xMi>wK3Pi#-Y%^1yC}bw=Hp zq(2R#`0N1vwyd^{rw333hnAfiN|4n{F+0K_i9c{@YP_plI{Y6ZIV$jDQ2Z@|(2V_F zqU{ZuM16vu%%8h?UPZx(m@5MhicApeW>e=Sl7;~v`P)A`U8N5I$~|3W`GyE>WlXHM za$(pI6+9Ekkz@h>J-s|aSgad}EBm&tp=-6UcCCssLoB|qEX}-Jtf-4uXqU*tYaWrT zdad}--4PwTtzDe`tVMLP@Olvq5Tev+P1eT-=y$-1Zs|BvrS~qe&8FT6L??vu5U!Bm zU_a@anS)D2od`n;#HcjSN~oH(&qbtK+=}4;tU_-1{O0&PP#q`Y#jvV?p2teR!ti)M zo&K^8@%)uXlA|jMlDxfgd4#e>AE*FDDZHDx`GS^;s}M`24-Bc;GU(|6dIa4&1mwl6 zHtVDT0r!?HF859tCKllI*|XitX=(&J{&u}LccVu>iLK*KtXTV~lW4CH1y`^ILB+Tw zfkoGyZ%EU#G~IrEb7SUwV&64>CVM%J934HDVQMWePo#L*D98M6>+c4@Iz@yG&|jF- zsIT_7-w!8xmKa{pwdL&DmlN7In?Hv29M&^LJN?7}{uCiL;}u_#RJdma!816>X|C@h>+ZW%xMgex1fX*AIjmS zaytkjV)KgQ$IAl|8I>35wxS&HTwvzSCnN+Hrm#uH{ffe@+IRw-;dJ}0il#MCqwd#5 ztM$)Bnll<7$!MIaoTo_hKvVrdK5w-?JOoz7>k*Q2{&Eq!m-=h^y`=b}*jW4U>69NpLo8#Fu!u zT>BNv1QlSqXXoVmp`m);E_}nSZmf`gKGg1ytb%EB@xtp%igp)=9~+hT?@{%1eWkS{ z6DmfwZndP}Y_MY0M z0t{i@^qN}x1DS0fXZDl;60uB(tgiO1B$^t_yOGS~|p(@JYu|{6Rm=tm!-pUNtVeT2n(fssV7u{f$O=$KJii zI%$MzY97$`?%hjehySu?t}n2xjI?L3D_HeSpnmeniX8fO{*JXEwk1S6f2YqmBGNu5RTw9)dq{QxR`TjL$%Z(y4@)F;??LA`(%djotcku5dt-i=`+$Yhy46=6c?4VK zwo`f^ev!aGmcsp?SoLO1%pe-hFR?o(Gwg54eo-Rzn3UFH*v#8fVxK!xWg(dryEi+2 zoNvS0m35^Ly!_QWkvJIpyFA#}@k>gcJP??&$11>>$5(F1QtI#A$p`(Y$}}MjTXtzz zOiTKLnpfIDBrXQx#9%q*= z8U-kybGZ!`yL(ofpg8gNM{53%p5wP1H6lMKYoc0#SVauVEdz(I@*5wYn z(sV~+XXla^x88d2!5!FxZ7=@si=*ZM3v=yw630vZj>(fJ^RFHW4)z~y{Qcd06&Mt> zvv6VY%PS)p7GW#2J?GvXJVptVclm4KRj+A+P3dO2CB%J%VG+ZV^k2htPa;Tf%Xo4? zK(7+pl!VHlgynoTSaZ)r@r+p|a}Ne;DLV=~{b!_goP`C}1VGO=Vjw-f3%3IAD4DN} zj+~5+sZ?MaeG1)VTjp?Bx%T3*4q3m`C+;Sngu3Na&I8d?GmEuP#>d~r9cgZ9iJP0X zvu~no!K-(>ZHCCi9IxrJNt*hHG{?!!ndy3kf0rG?o^VTc6s`^``?|R~FzD=C14WLZ zObf1T%Wk;7*|dqLuO9_;25t@dvXDBoF*WX2u!!NwQ&JzOZ!zmFHhZl;VPlBERuRoY zsBPOv$!)i5Wi{8zo^?rwyZLW29aTA5h4Nii(l(W5a%@Vgeh~_idwq)KA?ikK-EzO< z(Nnj*SQ=e4zRyACG1sZs7-ls=E#4s@N1t|zirOem$&GyBz7cNwCtG6t*qO4j!+}9% zu_L%AfL=m@9m(4?_HTZ;36m>8s3+uX1ay?0Y~sWD|0iG{Sy5lDufx2&;U-cT%W>X zg|Wfe7Zx0SIp*vkJQto}`0)2`^6%gO$>GDnQ)vG6rC6L+;##reRaberQNcDQ8LF1G z^BLoS4L!qIW236RNSj+xl@?WXdgsj21;_4}eF6qEAEGs$o7eQB-L$h%zbmV)md3EG zwzDjmPVUmb@3I4$e#ivneke5#N1M~=G%rY2ni|fiA}FT-u}|Dtfz@Q%kHVj7`wxoh z#Hu6OHbflNN79L8(f$29p!45itDtM}vO^L-`)tHqOXu4Tjx6b>;mh6|Hhk@*NjLYO z)Xl-+Xd$IVfe!5%Y;4#1jfTyogopul+XQ*}AH>RKuGD_N{r1~?+N#oWE_^sO_MfSX z?(zK#9EYWStED2_+>!0Eqws~I*VFWCa~d|vv9VuAW}iLGk2iNyrex0?pJeL<5*9SN8E3U!U3W+`bj$6p-SqV5gv%*$ltLnc zxj7eZW8_``hk&L(lty9axCYrhT5jvHK-~(!Kf1&=m7uC6-qKPDfJJXM^T?X|PgSJ@ z5x6R{8?6awVG#E#6%=SH?PLg?+2qdJwr7+pN=Qnu(yC|T0gMeK786_fYe=7dTZk>5 zParWh8KE5OxpQ}l@wk>%GG^>p*+|cjN!|KCD#B-cTIvs#)v%*JuR>WVbZU=WYHK(^ zhu*r|f9HPjFMm7m24Cs+m-0JdlZK3Y`vX=j1w*YWB=om#%P#wddYjOZZBEns!4IAQ z=ssQ5ohXNrc0}w<_PLi5t?^3>|k^ z%rXs-7#_lOfrz7367dD2jkM7 z*(I5)Kd*vR@bjNo@BKWub@slh*$lt?@BioXn_~+``0gL!TYnQvw}k5XD5L$K85Lv} zN$G}lO61`tr>vBdd;)Bxav%R`V{h&cIqkoczGb3vziP86T|e0?<%iux(oLkh_+G<4 zIRBF0$RCHqLnW#Rnp^k#2vtRVzH5=&49(x@5Gc1`^UK zhulUQKQ}2<9-8pq-Jo{)2DhCx+>i4-9N#F;mL`P0ETHkX0S9UE>kuz?OC%+Fd2_=1 zV$PE1G+H)B+Bfeiv_K%^ZmMlbsP)d56ql^e;^RnhHAQquo|sd}U#JqCp!i)u@wF_~ zqmR>`^qe^0*oBl+Zyp-oQhJadEX4vI4}TZdgpmP?K7;Br9{mq#m9Wkt0TN(1KVkx- zM>%M=Dssd*oy{c3(n_XTj_XRlvxg{YoZdb%tv*cK)gEgIU2|U2-rLdao{D|84-taks=!g(c0E zEb2y)m0)P=zROz?js~CqoJ^=~w;7UiCEiI1Ehee$3@1(^2msp{#8@PY{E{iv^$b5vD>qQ;+JEFc64+o zt{4nx;g~fFP0BA9TnVF!4R-FVL(rY;)rB6nKM~G;=GXZbf<}aXNbER{(S0@bmJMB2QEyu9{~FJyd@P*xI?k5QHk#{{Qc?dbThj@5&&*wnEmYYYV*2z*f-f6ncRedq2_+n4SG)VdKoSK`SD|Z!XcmB1jnlv&)i4 zDvmIZPfoc085jlzQZ^%qGTs~wD&jc( z-k&>nH*&LHKNOENK|S58W<%jn0R)|=@1vGvO~%l z>AlSvDktBvxTs}u9ZBzKlp<43&@|N*< z^%`6Vu`e)g#KFL*>rX@#Fn8xwC(bX*Kgrw|(J?;3E$z@-AQJ3i0g*xPnF!|m>puk`c_^hd z^>me~ghwFG4yN6U9`_yd(QDb(6Q55>-SgI^0oiBY9?TCdE3PXvUZ*2`Nw*tp8I1A!+2y zkyXWR=)bl!jIu0?EIa>9**n>bwq{oljKH?XM@yW8p#-a?%r#GLS{K*F)w4FTa%w6*(FIl$i1>YFo2#_<62>@;SI@| z_vYWVlz>4=NFn1laRBmZC>K0BHSg3^k2?f&u@OV{-w;Om(V?A>!*L`U!RHH z>8m!Nn+QVpGkhTAke14>9BRw%UTY?L^AynBgSq)rIuUhM$G%L9BSInc{#>$j~l)gqbM%ZSD90(-q z=c!tB3{J1{W~b<`WoiXYW9L*Xl`EZcxze^{S>-JcG4cHR%O-Q6ZC0Gw|`vBuKezP69D zp&sF32+f?RC@IepsNRAKq?(bEgu}|(qkiY)m^@UYiYlq`*jF9DZzYl&Zg1##x#w~O z592=~&Y%9o+5%ch<}82|+LHZ~yi@oP3bXS!$!kMDHGjwwH^UAS903yOdF(^nzt^XC z%O???>IQ9$m-Ut|pb=Z)_H}{z9Y+k*D{=Dp%g>d@R<4$<&|ebz!s(cUyBS`|(PT#i zY3W@akG*Iuy1NUA!aM6$5ek?Rx)L(cVo83da7CjH zHboE5YD2Ehd`pSche*5+^^}4Y(?+F$cP9-x3>!=6Lhh4jlVZe(5zC!*Bl9AoO*cs=Mf*{b9(&;v+8sS>CfSJF^hKf^l#GB{O!B_ z>zC0ia%or%k5azclM(6fF&+N#i2=w7dBG;=CqYII0BDjlqrMI1AL+kb=7SW@aFUxQ^I^aI|dB_DKH-Ug{ z$*-iL4v=vh5McM6g{v+i+D~1750i*DSrBjvh<5N}8^p^C$qKjL8G^^_@of!BNIFgvRQudA!DM(aIP$ z2NtpVbybGBqcD0sQpqEC6fz6Hdrl)WEhV`RW;WcL>6u?^uc>YLG^N1uArffF&_gVq zf3gBJgE+^w!#2H#s$+!1>&k%U%3jFRrbil4h8>}v*J)e6`3B6~P{=Hn~2#xSkM_e^o5MVXM+$m$N7G(b{S=vn#|Jj|(8 zPr!I}q88D5NhQf^#h6=Sgvm#bj#oMBWm>HcTImK?iAZ*c1?1Eb z!GUkT9ecKT$;!0}*vJMg=+7VKLVg>IMcp)mCgU;mI zH2$P$u|fKzJa)fReRp~qjC?7k`@rgc#m?O!9fxwIKq3_`K5+8 z2To}mq2L>%S6Zn#h!fsMQ{IH@kD30u(qub#{Pod{WRlIjT^pi)WNm>S=>Cwc8IxQO zU13@81l_UEbrNT3sxHKc7A*bt8_b!v(l!}V;DMI;ST6~Q-HZUG2@Gd%O_WMvR`<8w zb2;w6#GL0*B^uR+%9KYmX_kmdsE&Dk_Uu(~1t7_1Fw6kL7JZTvcNkA&^T0R*k?Qv% zB&;D>n$i45#$j{<#nIT)j5neN+x^LKxc?_n_OeqF3%n4~E?^Q+yrJrpbqLp@@17%! zF!pOQ>VQh~q+{@-Bf(XlhoXdxHS@zrY&fuJSzTZ2+P1|fSlzrcJQEy`-O@E_;CyE# z+BWmswRtU)yOjNHv00DtDz;N^~@a6rGwbIW%e(f;YhLTZL6whjVX^#}pfdX=X+6#Nu}vg=5}6g_X-lKX_N_}n~X@weJ}Q_oS$@( zs>0T07H+W(L;90#2$4wf&@W3g#usude&~MaM7@&!YJ7Y=CX_7p%B;U5bN}qz!?OiP zNplVhYZZwP6C>19uu05?;m(=oLfj~}7V&QQ?FdlxG?pJo*W zR1n>PjY0$p;Wyup=Atts=~3+~1*Wlp%|lshsj>bl0mN{s$e?AFgxX+5$aQ5*9KfRe z&rpn-j`q@TUz+*x-9k+seXtL(!k9HrpPcl1%0^&1OqR$}R#O8Q>3e_~3j6M@68&*gE7DIg2Lj|Dk0$_7@K zvDE>fI=Tg}Nm1?-6`N!qhjQ)%IJ>x`sf$CT4vxu$j+YH%%Md2^xhE^EJam9$Fc(J= zAs_@;r3h2*rbZ`hzaIs8ni_=jGgj~Mx0p~;nIsd%v%{iyv{|2W7__%xC#3ilR@Zz4 zZZMV)6kc&x__D!Kx$F3WDu*|Bb0*cyA(PjvS)(AW#3wu_(7J@K!jZvZFT-B5+BghZ z$O`UI!Ia!?tUZ_7*G}>~BBYMvOVWF(3irEF;SQ>4IMNp&s*${5Rv1h;fOJ-Nwi@u` zJTsSni?{@3Kynw-xR9o(%q;~al8F`VVWA@WmI`=2RF^+x77rORWZqkE6+H9|YO)1y zP#|Ly#5&_8YbuaK&f2x>AghY4i$@cn^26t?E;0aK%@(Ed1pI^yA;=?U%xy{-uM^``PUD(zq=IvHXjKNm{5aYmJAq@os$tS9XfHMA9zrqfJ@&x`HZRr zX0&8Txg@F@&6^bVcv|cR*8%gpZPTWqzV^D6>o;QN+fpQt+ZwBps<)i#8&s;P`A<%* z%6!Z?A$#wT3Vj4(9dila2UcSoI3)WT4yx+1D8~Xd+TRDC8JL0T_qI_P- zm||bW21>L9lZNl!wR`s=JVIjR+}!#n_~CmIo2Qk&T@ooq7?tgn{6PO8YbwK@tU$(B zPjd1!-~h>}u_O?t%A@?p*_js-P||~;TMGb*cOZ|asG*)E!QVm#RBfdzzHw5SJ_s4E zF!2+xg$~k518Bknd^mOPIhsR!QHj?xX3q3VJoL)`&X;DNemyUIW*V~c?3FnBG&0)g zRknNxlvulS_wL7E|1u}%=np^KhJ3m<&D`09Y}3xXyu!w4h@YWEo^|qWVW2C)T4qbn z4|`|G%msx6f9q5W`_AnNYxdeH+gNxrjU%$ z2Z5!-6q>29CeoR4?EdU|cxSP(bWz?vTCLTrjEO0W8_BFOYEKlVX!^(GdZ9WRWg1N3 zPf?QPfNEb>K9WP68inZ|bcmMoQ63Cl2n)g2z&c@_S6I3*fut>;SSTW&x9~txVu|k_ zgOEdH1-c;IGPcTtPi!AeSnL@8;#r7Kfu121fvRxT5 zGb$>%PZe&>gy>}IL102A6_^9WAga-nbne+5HM{{we0Uy%P=)! zhHaLd6iOCYY$LhhA!1nI_#}YRo_xh@_ETJd#zqO6NHhTuQy^JbMBx(SVna-5_5s!y zZuHpE&_4?%2DxN5PdOgFmyfa{3OmXWXy>3XiI7;joX{|Hr?RD0BaQtndZ~3Z#c~*{*|(eU#Nk9!$ab zSd95#c^7XoR5{`jk(?*>&)d|xU#f9&eCTDRSeKRg#+1(YMhTc7?ErmWEXs*T+cRD7 z)#WI-j0gu&aO1Zm>9dW^mVfF>m?7MA92eBMpZcXqsW_901jSezrgGI9Bhu|01+Q-m zc2u+QOvIaPDm02_G-QBTBEPO%KG_py1?pM0L$9yDLG*))W^^EPx20wso zKb-~Tmy`fp*ei-kU}l)y7h_0$9eqcNnlNef_6Ll0d7(NP{MZO;Hz%_bfzs_-3G3M8 z@j#7`wIjLLBY$h|H(RxNC!YzLZ(-vnQ3u|~KAP=#$kpi^Fkh``WD;40s1Z)Qj^OGk zKIOp)R}aQMNBN_JLTwLUnzzwuYF(!|>0_M~o3-3|_8n&&H9Cz42(sx#axZV)cdrBu z1la@yMk^Aq-uCtu_Q2&q2$y15(z6JKSoSZ)Rc23=GoiEfI+DCq!E4byWGX>+j%cA} z9RASzOM*GZXuSR0`>>ewc7!FNS8+$Eb=KOkVg3eGyuT0QC* zBZ4g0bGePf5jtnBD=WG@;`f;{Zg+x|MMk$ngSXjqCvmAwMsShs z_m`_de5;Hv3cU}j61<65gs`Rm! z`?S`QvY!dGZAP_CHrfyaK2eO|3Q(=6-~~kljQm^~+{%zdS_cWSIa?TYFL*ZTELFW~ zr>n@e1$>S6qdiuE{H`E(vNOmXsx(kDN_nIt){sKyp_~}nIl7nB<#s@wJBOO06a}{ZSF?A;jG^Edv7T2S_ZJ zcPVY(J+u)^k=peBh8ca;K_C9d6m86s_J^d5XQ zkX0DO5mJw5TH|j=lHR;jv9@ScCua%14Dj4Yr&p5t0I?X`6O_5CE@g%lNrgwj5_*s2 zXqOJ@+;dj%yFJWFHOx*zw!nNT-^{}Ni`*Z#=G~EPO&BMNhpJ*K9>`J_-wh5Cwje|- zoaGyb#qN>MvCdv~+#;HGerPbsUq3Cxva}hi+<3qi#`vlL$N)j+!A|?^sQM`!-O1+p zl-RWFxWQ#;A>J6(_F>dH%K_kn(`U|{BXxK1PS4t}qs z4Kns>__b5vtHa`VhgDi0+wQJWRee2(wT=#H9-NUqBD+KO-$OxcB<&eE=KhH?nnwC}9TTn1Bc1xnWwU;=^_m&%(5fM<$4o8OTCs29kdGaT?0-wY2l}P9mkS2m$-$%ntSqns@p8 zdkFNHAp7vxU8v~JdW09MKr6gByfS{Q0U6xSjeIvow@_^A8D=17tOyGUXOKunXhh6A zb?VelOlDuX?1SZ#?4hgTI9I-hNFM!q1H}nu7QGUo;Gm9ie%XDPF$kVzpztiT7dIor zybfLOY2rx58?w|-Sz2ZQ7=?lVZvIpo!AJV%XR*;jK#WKCKR!j_y0yFjuCgIDeh z%bU(Nmj_V%!_fjz88mBv@FMxrQ(5Tc{^=zMvc%0{C#>^H7QG(T{JM7EZM`LB5vk4H zbFK&D4T44)*XXnh*-nZ=|6NvG0#KCnP8aUd*MSX@*z|tZTf@^mJCBKcs-4$aC4j? z*kwkWd7QI+EA*8#Oc(QFo)kp~9cNhciYZi_BqMu|o<<92GqV_Laar{eUrw)QsKz1< z7(28;ba_G}vgV}t!OlRl%eUAfy0#K_twD>p#1Ya`EH-yv+v`|}L1)-^5p}R@78rN# zxrCO|XdfVQB*(Ssm`uY6)#;($c6uli;-Z;@IXhEQh>!^gn9%jrMW~5I+Xn&Wtr);B zR~iw{V0nZgevhkphTtH{6pvF%fy^n8V*FVIZ@I)jN@rnW@FNT)8N1cYUyq2=w=q-x200bE5%=qQ3yDB=Ww#NESGU@0Q5$m?hW-I-O2L352aY+G zFjXHBMBWWkC!nPk-7cv6;)BAs(POLHJt{eLh~|%Z6W5xd^)NlT!g80s}HVnVRC^%SKU@b@UK@b-6oY^d5-O{lz|R zMh6`1;{)n(;o#<5SOdkC1TFe3r~*RJ=itOiNV$R0oj>G^)w=nw2NqA5wewFm_y7K- zb(1DBf@6lFhxDd3a@Lr1C!8)R@hXRac#)VpM{V|Kg*#m$`5rM+ba9n!^z}v8h##Ft z-|}~t4sh)JsJiJW=>Vsc7>Uw6WJp)+Tn$4mo5y(%7!g?3ClP*K;SW511&p9*>qK(Gkm!GAmt%} zv!PFTb$;v9c{7U=H3_=G!c#kt$uER<`sB;32FcoYMV#)!j-WEQ{k!BIEEHj}Jv{Ie z0|Jf{Flu&ifopjx6=p}=FRD<;_zZ29s8VGtUCgHvoKhHM?URq?ur2%>X)^TfIDO#%{VQU%S*!(Xy?XdDz991a206N789C>EL6PZpr*iqcKA6|%i4%eg;Q7o#>1#2X%qtHMj_T$* z5ZH6f-eP~#-jE7(x`Gst9zl%OMcq^;?R!c_FV^8CWaUdDdV1hi4Ou^xRh<7&QRvBIa;VmQFosaHr7sNNlO~Bk* zWf#z_OUg3fYbkx^cpZ)O98vO*tCi(q~j(G{2#Z&gKt=n7RN$q3*MvVmk? zV_{Gu0lpadvn6>$@uRkSKm9k!@uiho?A4im$8cPj;e7$KmoaLGO(4UUq3L0%Kg;c3 zG!CX5lmp9Sczh4`0l%2#A?Z*V6~>(L$%R92C=~E>E;Doi(J<{O+S6yz6y#Nm+BY0a z%DgF`Q(fxWcVG*pLPOP$Gf=KvGp@B*MwpwCdmM$_ql2_YVJNQzfGWyuc1xKgnvRe= zC~kd_7(!l57Iz^m;k5+(u_7#PLzqW7j6U{~b(oIDiNmz~Pi_40W#q%~(HFdm9N`$u zHelqkv8Y;;QND1<9JYY;yM!keBRk&N;Uu1P&d@>4FRXZ)Y9tFbCC43~DQ)XDEle2D zU(qz!Vtxd}K~6zhx*+Z7cq3__foDFu+#yryKCd2LZmbf}GGhWIX?ApYH-=an*0oUdJ1AbqVAi*n-$q3A4M8L?7@I>^K^;7Ug zrYi2itw%XEUtKZCb$yr%a()d@A9Dr6b5}+BHhy$OG!9ZCxd@(X?l4Z>(|E-fLo$}w zt}eT{TBM9#oL0o#127dL=SVjrX_4EjC=$y@wvfdcOs9)+$M-Vut~+A39hue?0n+s( z=kkUt>IeRUj)FbkV6w4wGA$nVh0HVOh5aV2kn<6_oOQG`pWot`!hwnr|2ZdH#`oXv zAh+HHdu(ujQpp&E(km3jbT4NgF)ay0v_qPsYWp zIWnPnCubP3;ia2Qzm(xf+%Kkm>L_2O^N$SW>;y0Re^&i$F^>%4=%WsI*exJBrK z?sfzdn#|WhpM2&axjMwXuF_pMCILGzWkq<${L3=V%kYrf$S|B|(g0p^b6D;zlp9R< z56<;q_nnkuDwUzZ(r<&vu$qS{E||4we6F_*@%5ESm-Ku!rH}Y?s03qgnb!r8(qt5x zP%J!2sT*Z?GDWO`E(xL|8Ygbb@;>n-XNdjH$mu2b3q0u=G$GqzDZ<6EsXuRF82eBisNx;O4)pE7eCdhs)Z|HE!gbjB> z^{1teor}%WSl_`N1iMQOu*vMMqN{&1_ zQ(8J{0Jy8a{sD~^bxQ1n$N82CF3)+WORFnItOdpPVC>((F-M}02HRl;VU!T{wy;sF^Gah>oS?i0S_1C0A$0(bvL0 z^Eg^7P4<}#i>fhO1({>au9gByX?oEALi^5>(SjUcI4fpQ6+;A>8h$LV^jJOHo1}0E!X=YH;5;5+P2V0wKsoqW*G*y%)jJbAmwVwM z)7Hap*^8k}?4d%3k-1QMZP}Wc`~8%>Ti7bP0V6?W+bCEhhiQ8|JDxN$6)X+@i?RxI zE!bTB4yj41Re*xlPJ7@lh4Z;>L#*Tu^&g4qXt`MpT#4`40XBISd>kA_7YokVg-(ZvpS4tGNMVyRXPBa`sk*#vT}m zmW^tbh6D4VPuo#Ij3C=K1#aXZ1WWcO9am-Gcdo`SM>|)-N)A0gCsvFTK!}FLiqSz5 zT%d?`dwcTCw5|3fs#jg5M?Pgj<>%psGJFiftW$(9xy3*h#;(EZVFs0deeHJ(hxXr3 zE`kNEl8|HlcjcG`m@vw2c}eif=$0(Tzp_Z&w`16|#Uq! zYB%13WZ>5e7@>pIi!M2RTE>ru8dp15PEjt(E^jM)9{~tiGSM3vWQJ|q+cQzL zivig>nnX~m9?D&i3P#+l^8uD7i3E-z1{aZ!;$K1^bNgm9ZyY+v;h~sqdyBdf;X%`U|hJR*)C<+@6kCsUgCUB zCQMpR$v6QSoD^I$Ke>`!;!u2?hu&LmIMMGAGBo2g;4xw@acw^T0#s&cu%wJ~8=oas z@uc!{} z;{`JC@>l&5C8@Yns)FF{NWG#Q5>^;iL2G4mnk3yDG2VMs<#9;pq5($HEh~?K0OC|R2fTz2 zXpVBE#*Ucm^}*+QhBBn1N^=Gl7=I%)q@vQ+(<2yjw-_q6(8|eVHtuOnHok>XB%-S~ zP{e}Z;iZ&cfByTYJj&^1V09wd=iy1hq`?NKDSR~f5@o$eOr9<+?bbC~Pj=pOWM96C zenO%JN$PwBETy&5aE1SoVGr-Z(ONlBO2tJ)RPa4Qsz|k#TqqS)&q?fRU=Z&hVbF`J zakRdTV5oCO^)9c55dvzfLr?6xtZw1HdXEKW<9>!N`uBQxlOuse*Kldlg&c%DV}gUv zGhOc?vs*lF?vF+fxmK7RY>*gs&?CEmh6?^xVql88P{qoL8Zt`CF9JZk;a<^ZXmx2V zu6s$2Ev@uj8OgDgerU(Qbh+?bz@JUrcB{y4H;gotb`jLigEB?uj06m!1BgJy+cVME zH(#nCvw`Hnx`2icqfif~`;8N8S^ z%RAB7a5$P6Nl_v0r}fkf2SqWTX8}z1ZP{}~zzm2#UfZVKeq`MbcfeF|tgWhz@VU-{ zYw~v_cvbr#s&|yJnA6CbL5@!MCye=-q|APfJQbId#YqhrN7PlHLbS2I+A`P%#G0)Y7rj zuj4n^#GPsntDAWhlg7)bnHhf!eMoaL&_iZ#s0vSr7lt825Qh(kydrsn>oQKCK0STs zpXjxPEBFhDeQ{h6UV}ot9RaF99_T-No&cM-Tp6n+U{phY_E;#)j558PX`V933;^bI zSy>N8{D%VNz5?Ds5-qn(I*XoWy0ulKb*`_}_fy(HGK1{?*5$Kv|G`^E`X|zuAstV~ z6seo;n5cn)$Gk$LKC_;)@|EhdyHfZr1WV?Bq4WJWiiE7qg%fOdL{I^$^zgfcrZDpc z306^vehmV3j>LZ}0{O?C8%ydP^L;8nN0%dd;dl4IB)I#H$;F7VWc;(VpdOz8Kf5s; zz5;R4q;4-4@BGt!f4c9s?_YvXhI!B=l#?NQI9x!XIgL+XOr(ae8yg2AkHm^5Sqkq( z;?;5YRKDdr31xC;Y8W}(E$PP ztIHpIhQ@k2(}f`z_yEY9JB;B-zx+^JL1>+gto$|VIJWuI)yUl6?raToj*l_M3vdu4GcI4eQ2|~D>iE_6N+IbDyDtrmxI#g; zmmRtT`rD>1eA!z96^wdjsSlcpd*-9cgY4wG0?cRd*yFerrmIO+x1;`?+ztaqwQdXc zb5hJ8`DOb!zO~`gMYsiTvgWI|9*M5r6w{CiG6Q@?z;WSz>S*rJOvW+pWte?BIMLL$ z-gFLe3@%$a%kl`$NJ*qF#vo0=b}c3&C3k}@CmpKMAwXY&hE^J1o5v62=0&z;9Jkxh1eUl5Nc{;dJwF1z zrfC;F-4UMI)}oB)em|Rs&vksD~F;qOG`@5*WZ-o;D zIP>kpUSZDKWVS2#TMmcztQ&<)T<$+Olfzf6fo(R{Dph?NCJ49owLe@|6(LCZn^*PHL#4S#?OleFU=y(Xazp1XxJe&g?tca_lW#s|=y-izC1uOW*ODaW&Ji z*W+MD^uOTQd7G{uP7@Xx1>nK~(mrXb9H{yAsKX-I+1V?3l?NM*;Nv{x?qjshxGb}C zBnISJI(0a}jwd}QkY}5LVUFi{qYDm-*spuysW%^=z52a!HIp^+tLZ%zY15zcOK2}cf}BL$m4W7{&0SFbrw;C8nY0Ph&JgxyZwUV;I^lQOay5x4e(Vmvvb&WdUVJZdM32_GJEG%Z5*n;caU6;< zG8unEND}_hOQW!QuX4H=9!PqLAPdl^>o)=xA~c(dB%FtX4dG_7VHt$r-*&UMfdhnJ z4@~>6WjtqaoUUSN0&A9xuztNOte+^BMPdvuCVJmj8F6M;1Gc#KoaP(#mmG*uU& zbI$ab4!Ec?SLNl7Sv{@A7ZDv=P~XaXF#6_m0*5v)HuffrNtlsVowa*+cL$@)K`kCE z97IG#ud8mHb`qt1Ttul*ze~o-Pi<`YnD4o zl`{|vCczN9{v4qnks^yOXk$pra7r&*X@rmZE;->L7%j0`OG&E|rxQAKavX^ik1}&& zo61dQ){ODG7h*zhDe!lMmJY^f59ER8y+yaG?ty0 zm?&<3){ppMYKUAg$LOAyRU+A6Cbp7+D2CSCT0Hq&`W<2Kdh-_%GyXaRbhS+T7Nm}Vzs|qL(Z~E7hq4%U@^OsCpz*s zXXa@sf{Ttm=|>fR#<@Dq;&o1>yzqDvb4{A$c>~lqb~N<|n>gkMO#69e@`V zCC9*!w}lyWT zBE}fBL8f_Wat)Ox_uCCR#0E9#eE?(3>1IA5?BbG%9i%;srs%`WsWh-J%7G*}G}Ewb zc#Al0Y3~IXX3CES2NdzW2zI6<%Cc#ssqHAICKh;Y!ohM1-D9Tfk4e8+0E7%`or^5U zcny=e%?Ajv!P&>4OZ(kOs3oE-Zm4HD5@+Wn#e(TQ<>~P?Gmw&8zTAtCQJo&Y2T25J z6x1*fC}9o$K`stLsa?9*704aY(hO*v*++_nQYEB^*RGYOT&*UrC7d19Xr-;lfsf-& zO>*kas#F=ghqz1zKRc~&fn3Ny<&_&AfClFb?2q^n*AXZ;InU%Q6adk(VjX8^c?dCw zZV^s2!YtFiA=(_bGY@f{`7#_0DIt{d@Nii?4VEDGo9ELHtg2w;f`@cKs}wRrMqFb} zUQzBFL7t*5RbY_<00aZ+8LZE96lnUh*__PQGE!$OdUUwBcf%GR3VRh>EDs-5)CxtE^j+A3iO6w+T z+fcbkiWmKgU*InzOcOamOEgNtXypkBM1q*R0rWKV*$8S$wE@6~e}uDmFr$b+BDQ^o z5Rot}@6Nz*lINc~hq6JAeys_c-MyTA8AiGv3T%mIm5YYT>DUC|AHbjJ=z*f5iOhHQ zpj$1iMbT8S0DtGj27a!K4ZO$76=g_Z9dRZ&jKlWG7p(Yc?2541?z|$E;U{$jq#vgg zNghG&GFVj+X>E@5XhnUyOjAXM@F?>yQgO)s0?_+18Nlet!AZ;f;Zoc_!OKE%cP~c} zfmA^zUkLLwUL#V?5?8)xD;l1}Q8dJtp5+|!haq1N@#I=CS70V&1?{%=8AmZeM4SZl zy0jLtD|8WNYr>ppW;T$Q)exNW9wK$GoyO9|4-h&r3n*Euj-f+_Na!f#`stNVvjl6Hs1Kdi`VYNB^J;fOIPizB1j;#v>-od6kt>l52drO^hQXTbujr#CQ<*K{_-0M!b@)9`&BjL&)UwW$3-gVI^KN{Ym( zXZgy6iz_8&>w4ZWdUE?a$P8AM(9MEt@_7qMXQ>ip(p{$UesyJg<%aM}8)Df)MUf{6 z5Lh|tEI@@oM5K^8q>)t!!P!!S;^G3uMJ*A#-2+&?{fc#rN)A<%W_jEC`vs+K4zQI>vQ%b7Z_CtHDA_qp11lnL+7Si_O_^ zHlbZN676;caUxJ?i zY3&r5tBc0OQ{JMwlrgnpUN~})o5D!XY4Z5m$|0RRe-^e9HlzAc{|k|i+;RYi!E9`@ z*;c7UfNEY%5rD+Qh7V+%3ZMns?IGY=8j={I2Acr(KqkX>GpJ>?7+5k5Uupv6%~^oQ zoe&wM@YqIR`i3N$19b`VVTMVreRH=CbD}xIasg^DG#i|AAWA-F)%f&D_5gs)WR4jH(kinHs$ZHOc@q=UaB*`{J+De-c}q9%j|~2no!n@; zn6>*QS5N8@SH<^IsqB;)7@0X$AA4J9B@*K*AgOZr%w* z&EPd--5K(NuOLP(YmT(umI$a<%R86`p~7n|FkL1{y!t@g^VX%Z90U^FH?g>oD+_1vBFRti7ug(z>Yv>YGME!Jf%t> z-wJ=hqp;u~NCT#45FW@)h2|}A1tdYN%q8O&oXbIPQ8d5P7iBKs7ufe;v!RG&EaL{q zmn~k{z<{p_fqAsjphnsO_snwgGT{TRzoga!Y|CsAO>SX9+Ij`_3QQ|w>?A;PX`0}8 zz)DtL2-*UVAS!v9eLcJY-A#(2B!4N_EXF_!U)>{X5>Y)41zT z_epmRbD^lm!VTLT)1CX>;Jp4MOsK9XsKqQKpFg@l#)YM1h8O_;rjHlyI_p6BL<@ij z6Er>La=saILuQY1TU%rBw*Y?{o0IULvwXnhniSykHYcozU_}9Pq8vkRHJAimUhX}- zLs(jH=*L-v7>zDUKx}64j#yG5E$Xr=WQ?ldtW_y)$)~Vb-kSu*y^i-rmCF4grL`>flrU0d$GNlmJ=EvSmPG+IEgTw!#ys{X z(w@k1X$-YJaT~^uWo4*6ha_EP-tnlFOKY z3TIC1M#v}#3YF2h!)UM^bF)C4JLE@Qok*{N+QshqEO#JnBMlP9ct+OUS0Lh%88l=e zIVO#n1(J~xc+!tSH)ver4h&4s$7{$+H7DoEHFzxMq&Ae`jcG=qSRhqXWzCfVlwKcu}2n3iSL{(TR_Mg=9*)ZBm@M13_i z_Zt*Vd=<;c`oC6K5NevCB2qa6I*fbC1Vu}c1hcey`w++GdmPIY4U%zC#$FO; zK%GGb_pq|CmvaVce?rf1HkdY^I#zKZr${|X`dWsk-6ny zU<^qZ3xgq)5CFD5qcu}T+YsEaEBs7fsiGvFnAUszmk;|8}Lq1=AosK>ft&>k&aZRO(%++?e z407JlB>ZB{3aw#?0_@T3&r0};88E_$2j9~%RUYXjc*R9qIlWHwStzoi3NquDQoD=K z;4ZPxq`bf&?!mA|mwP}NdoiO^2Q19T5TQjLwViSYc-MxQ0jkVER`y>VGuD+G0;o@x zktpK41!I;Ejf0`)(>^N6NSX7-f5Y6lc{6>>=8?%`hddQ{ntrFeqD~EVRzOitA3m>> z7S);Qsap_w_zGSQtIamC2xR{5nMB@Kx<`?=?1q0V>(U@AapS~mRK3~=Wx<=|7{+!T z-+cd9Es++pNY@^3G=yBtdUj^%k}U>9IGxfDeKfWXG%kF}dyjJWIq$vAHLwyNQZL@* z9xOB>puxZwpT`Y5=5A1W!jO5~!TFENqUm9kcUL~_6N~?`=4t51-y8OG!3)Ex4^!|} zeB7%Y;8wfW&X9^Ky;1nr@@&M2?xA5S1y}R)=bSz%<}rDNo!{uDDQ=l4D9@M#b*eGS zOq5&jSKifsQ9wU1G#es+8^39;|9mwuYESm;33P+wZcJ^tz_qX7U7n*@=2;}8Pp2t< z9cY&o^1Uo6s%Q>^BP4i<5dmAvy?y!DZ~UZ?m^no}_pmOt-XfKCblG=l<-(RwE)*qN z+%i3)%LZFfZegwaG@KTFbYuB>$>?s}zGe9OUo_+Onfvp|n^UKGUJn7BlD;tRh0rZE zt5<9vfnZmI8OTTe3BG|j3r1inpxk2rju+q7p`rEs&KXkvZ+Tle4aISAl-YTHX~T(>^x>=s--Ka^Hs4xu&Tj)-_7(R<&`dt=1> zJv5*pTdsV`7B;TG)QV@O1T0yvj{kw-o;WBxF~i8va(lqXmkhYAuK{FjOzG19wiuqo z602!C@Zrm0a~^;+4=CIK?i3{OT271i> zs8=xkT!AUN06@B2A78j-jOj76_S%6vlmlF5cAY6}2>TSr^%`b(i9P&F07BqR$7 z087*+w!tS#YChfKcf=|}P!+jHz-h2{vIdXTMvmm+GKja0nYS^B+`Cq8%zHrvqBV+- z!Q>X|J3^lvWk2?JmnEZpN3&|3@ADdee|&}^goh7NRTKV4J8 z3tWtX*CMDIDzVhf>HiTfnk!4A&P#fg253(>m)VJi^M&rCnWR=WYpyZwg?)H_70oKy zf+sVB4K)4da7$0{kIyW&`0gLgaS(x2^IQYz`=a^F|2%&mr_`!2f(=AEo04}LjW0f*cjviH~NPW4z|v;SjLjW zjuhmvIW+9riIpN|to$|j@$VOW+B0G3?x7Yl14ZgECQMb7ZX*|Q5la=dubaTbTv22W zZXWU`RaNirUvkOKf!+n;rV8U$9TD<$hs_UO4^`|LMkeU8u%MXs|0*XdRGh(oN{ynd zxi}EW<4JQnN8*Qy-C=|WMt0k9nm`y2WXExL2@hDIhV&K$ETM>4UdK8%yi1SRBNI_? zsPSn#y7BVJC>fvH&Qq(;ouvU^w_uxXcJ7%QzquBdb#X_~4{SC8JLb9usgV*Yz{FL< zdyd^JgZ)3QhsBZs2OElY@RjK;+$0@Z6-~F;X{ecQ+Z@J6Lpfv*iB$pRN+K6un;nPJ^34A;)Cx z8>ekOIqEw@nE!3|F{6&SJTsO4lme@g=V{hhT;Kk3ee?V040up@rODSC9hFY4?x&A# z-w-7`u>Gz>pyFkwAms8!M#U*Rf4H12VE6ppO+fY!+ir z+82wo4)t2TETq0Z_I>{EYf+Uqr=IgS#N)4WXTtAX8HQNNpN{90p(27#`W|&B|bsu_n0ugMOt*0inwT1_MlzXB2 zXO&Md;o?$v1ojbH76%(L7+nSSh+JxgRRcC0JK(Itx^RQ@R$Oq?)uiuRbel(IJlRbj zFjS(Qp{X-nWPp~IBl8Y5=Qv}D#UBeDTe`h<_+A$9qR?%&k6?WyGv~&L*Oh~5P7ph$ z)dZ(4Kw*69BrVz#f63N|uH3*fzBe*|Qxrde^~S9#KVtf_F;JNJl2BQirP> zcbm3DU1&j-bD!HNDT)2Hgy`N%%sSkzb;>XN%F0mSaq)o=b&Q^b5?GnY15xqFxTFmi zse?n??0JMfA5(4V&wFbxeW`x~zC=h!ITMZzk7m`Ec;o-E)Yob?mAWYc2^h zf<$>RX>K_l@^Ktd4JYg2)9O*?N%vwsXuKpY4J%Pm@rLKU{8AQaYxtB+`|Y>is2~2Y zv+VEkR`3o<@Q}34p~9j*P^!^m*_pO;-M!P=FCF@TXjPKY3r1A$&sc51iyCI6&wI~z zEtNty1nv>_G=Ulu^{4;LC7YzI&LUZt>}g~y)@_Wvq1P)kz%#czX+!R2`sE<%ttm0sMN5@Gxot*u_B zKN{BhBdfBxEA5;4^OehvnQ+jo3yI62;{!J}ji&WVf`@&_TdT=|U4{JW&vQxSy!uGR zif_c>yh`KuibRdOzclJ`BtvCI(FqEiS`W&_DY&UzD-v(DVtS1-Jq4I?Vx@9! zV^8)nV>+xW-Yum|JM|CJZ*;=y6@C!zQc|;@^vDNv+}0IKE1~ZRX$2cwY+yoiv!vb= zi&PWB#F7vGPmfdGTJ;dS2hX}NgMYY%N?~=4RhM0IhM-G+ zejC`kzPXy7$Ir5CV?Lnl*E#qaVb}_8_^PWBlU&9@3X*mge1lVAD2quV{pY-}(&R_X zaeULq8bs(;QQ2^L&FaeqjGs&7F0T*fXXX3(0E8d-nH>#TEj%FJ=w-H?DwsTY8Dl_~oS0GV*hrZKXV(U~S@rc} z=C7s>ciQf5rIRMy_q8e-+;2r~XI_&CV=8G`VaFE>!Xk3b`iX48t1$ZGq&i~=Hi1Yx z&tuE)Ps1B#wf0n*h4$w;8AW@NN=!!>Zhr{R3&pUhLP_^01(ASl6yD3mOkdXMS~4N& ziZ(SkTMidC&iemz&|uxwQ|l`ROq3RZ@6Y(D z@Y#wESE~ji^J%~kdfba=W(}4Tu>X|eNm7ulaNc1-*GCjU`Ljas5kh$+S>2 zedPSOW|QiOp_||_XfLqowAfkhsjnXH%99Pvw-4C2R)d}rA3yTYjJ8W2g^P~?U9 zay2rM1h2^#$)=7;{%jVTP^6`pqwLT4o+8t{rAMaYp>(3gAyz>EsQ=D~shBZsI3sBoNG@l;{-ga!#1ibESgIVYzDb(|aikZ% zj7lOOy|i6b5;%59wm(+jsNKT><8k@hVE>Jo9}7X=O&LWss!TGe-8YdAqj+j**TLnE zbNY7*PJ7eFjkP`7GD$dkKE*CsY2fSkW~-G2pBJIl7m!x{ED2(EPJ}tMO}OYE$l%uR zhep4C^NM=M?@-0QxNDHm6p!-~f}{;`c2rC!wDH`3{2>5=(V}NKkm(HMg#EiyUcU6f ze$S42*F+92G!(4lInEtjdN})OLHD$;)yBr-f~Sd8Eg^E7wq~8k^xRslP$o*%&&Jhl zI}$GLd)RDuCcxPQyD5 zh3e5}S3Rs$!axn3+dj4Y-_rk^vghmWCM}I@gQpz@g#0a949<+7?>s!$r`caMU2bC! z8qvAI6rziO2H(!?0>~u!nSw{lVDo}>LgZ(VCE^-9JtQCj7)YFMoGbZKNLJQw=j9Zu zUI}|svD9;|j2Z&G7Jk_?0X+W%@^89YXuG_J3McqjgF73xB7p@4yr)<0) z;zojwsBY)=$Yxz=-F<1l*N&sSU91U4`^VeXxMjunAscD63Ul|<>2wGy4X@x4*v!A& z-6?He11Zk$qB&e29`vyFlH*bjTwkv=UIu-q=2I7LI2G$go0PaQ2-Zd&yc@0Mx2@R>}M@@6JU7u0Xx>(fQ8%1tRXG; z{igq|unzgR#w;J9Fg>vx1ptglV|J2v#A+qAD>t0B(u7h-q3C-}f+F*wtBQe(zq@7H z2PW3)DEKulYx(sdr-^Qo|Ko*p($}m>HIS^n=V=10aC|RlZkee@Td+jXB0qjO-V`W#wcKS(*@O1dPb3E8Q?k>qpn4(&?9)j*CtpX z_QGW&+n*iTqt2e8s2-G3Jo4YOIz_VLi1hr>43=^C-Fe=w(vf5CxbA?S)jMS0S%w`A zUo-vqZJkrM?%QDq9MQW=9d&i7ls|)=C3)>%5>K>qscd#cubGyE4BmSXV6@CIG97XG$;5PJz%%q#!4$OO z`TBWmLaCx9yU3chvUwH7b-+UBj9oLQW`yM{!=!+i;I-i*cg6HCOgP92-X0*}CU{Dy z4`}u)=P$WvUKbHhZD7b2CEb|VPK~u%L1c>1bOJv*CdP*C3WBCO&AHvfRGy-gnyUgB z4Hs2f_=PX04d1+7QyeF`|EnC%@QtxhvKdosKJ=-fpNY<%;Xl*lE&*Kz zE6iAp4nC2gaP!)HDa)@YH(#ma%3&~HPt+$5n^oV{@Q(-3&gA02e0_0&nJyLcJ$ymq z;hmbr9uRp-c=yL_8>8XDF(8HLmshsNgLq+D`;L)WrA+NYRhP;4{q~Xn{L?NVdfZS8 z&j!oc1~agBMLF@65qG_@cPX{*Q`;f83d{cz;VuxXD>Qc87B-kx=G-14rD1yJSQ^nw z0tc*wvfN{ia&G;!f2yF$+BOW>IvQZ&j=sI$4@Gs%av{u;x1N)tQW}R7Z~_KE>jSvz}pqCX2?7&QZ4MtHm6@^-$r{ zkyON+C`vZ(>y=*uOpDlz$&~edxM?PGtX+^#)=QI+agGqTNz{25PCZMN zdTn8OS&GMKw0gfU2qVrWh+%z@`fl#M`+|JG#jU{IK

qrG5hm!em4lJkM4`_2V~qSATUOdA&O5&`30%+Np+hpsw)=*_aq z8FYIUcU^8T65^}1tv_dZgs)D97483%_D0nYTc4^jQS~6?4=Ffi9I3GNt_?7s%e=nc zYA_7^l*yzujOFeqn+LFTdb-tNgxp2B%0;nFPV|#VC&!CB33!~tj#xtHcGp!bCFvY@am|#1Z&P3P zC)o{|_YHFv=;!4q307~iG09~B#6bky^(=VrK+$*=STiSLibIvXm`fJs#k2e$@K259%wyg-^% zNn`&VkS9``idr?5SwOWZRyiqD3|kHk&SChbIVBNuu-mX#&Iz$og7i`FcE|y#0#K%P zOW%asduI^wdxoL<4J$+7FN+|EwCtm+vyoyZ{tV4IdaPfjmWWR)PD=D?C8-SY*Zci2 zOJ(#Vk3OU_t8YBv#1q4k!2j-=^3U{gan$*jVXl(e_)m^HRuP_kSm7LarLQ{0JYiy6W7q4je@tXp-#%0QOFMH zJ}4{GsFsm#EC9(pUhmr4Lw-+`UKXc(GU3Zc^KnB(o9y#&VL|-xUWs%O(k?oFKE3-V zW6Ut(E^)G^AZQbf06!@pcdXSCCb}N`u>k1@4*aTxYsxiEKbFk=QeaAa$jyA{$3PVayvBuu%x3EVY)SzP| za&0Tsa-F*4E+9FE9+CzNkZs8F*v|Ni%j;k^Z4dC>{6A(7&i!ZM1;w@)7K`N{tF;@9d;>7xT2?-cta zAiSNLm1=!rGf$b_#<ZFr>l zY+`jATd_y&TdiK3Mo3uhMNHyEjs`f+4o-z3yB?`gB?>4sVLT79!f+q7f=qDkA*Z*D zcj4b2L{aqJW)gm@TN_3Cg&H9)hQ5n*BBYt9KKzpxR5JkEO%_~uHx48ApBhH%Z{?Po z&ClDvlp+aCXLP`>DJc1(smo)@BCBMwW@~X<3mng@|FP_b?}SQ81Pz*Q5b_9k-vmd) zGc*nAmf%$P=$7oe($cPSrc};dC-JJHS#Q2*Lji348Btr8Ba-A1i2RCmGQK+!)MPkr zdTTY-9e2fMb_mVCzVC~9EAHs#KbQR|!&dQ0)E?`z-vtwMw+z^lny{KAP6b5@X=c;ekW%gpc4*8t zZZs6vCp!z0B}1p)20%q@Yzq6K_WbVV%`8 zI~TgX$k&WaP=L)#>S35aulOpsUWEvAjQwF5YdYs_e_Iz5cElkdy9JS=X6u&8G>{y&f7{<}*)3kDPU$Oz89UeUc#igC%J8uat4cDq4COs)?*KW8 z?E;tf%fip2#Chvo-mLS(SiX1cRaaj5#J7*s>yUnPU}w_B6wJu8xVwV@C-9!`;TCojaM1}0A#1GGDq9?*lDHyxhsb;1yYb4`hFtPsKaa;>f3%ZE}14V0LH+FALF)GXXQSg&IXaApI z{v=pWW6~gpCe^KqvJ1{Tz^cS&m|PRK>9_#}|MRj*lP!&Fh(u1Q25gF+ze_F$%=4s!>oK1 zt(z0UGh?Th8j_@z;E{9CpFDrWT~|D)iKcbE{dSl5oI}ZSZlioS$(k!a`p(L;3%;T? z4C@~T>$WpR%vKsX zsxDk+$%xO2bel$9Rl`Hd?WhMdG8`uS2}OeJT<7ldL;;TUC@8rRqFT9|DgHHSpkwE4 z?=Sib;W_V5D;iW`m?rbCCZ{gBtkN4H8ESwOIjiTVrQ(HuN;nuVnL?&@EDW6N;aQ~p_ofUp_MkC-J)Sfnv2t@rB2NdH&N(_iGYo-Htk$@h4<2;jPETLZ8+7q%-hjOwkMt&hR-SCt$#X@p@ zdM)B;95Q(7y8@^fsIAw9n$?KieuBm555M!=#WNe^?7E@yTSwl1X}@QVewD4z)xl!9 za>En1pZ3#a?qAd8aM%U_{bcR>v2D5tfQM= zab1E%=LZC8$jTf+PTc(FM9SOosmKojVBm4lQvnmP?dj5f(~su{iFVT_=UViF%;uBK zX3N3umVJSDA;2+yhcdY6!yz^uUgBvvvU6x}WBNxtCixbv#q$3(otCflhhux6pOWnD zKrzK1au|~^pnPCDxIcRtM?Ra^o1sw+4XhI(e%&1LgE>`q&dH+rmMx04I$3hEdNQ_S19T|7O80txL7POl z+nj&_+A6{gRaYXKsJb>kby1`BGp++ZZD8P3u5#}j_2ub5yCVy4WjGg<5J`^uU_aj4 zo2xh8Gf?RlySrc$u_W#m!AqL67rq?U(XnN#OPPxN2PL;{`%V2Pgk@bJf+^!eik&GC zfw)DZw>C4RxlFG!54-hiJI%TftW*e5OUqXr%uuAW9qeVdv7f)&nveF@X36@+>4dcQ z#67bLWs>=kSuHD_XPGXV>-i0KC+2AtP?`$;Ts&#(5z3@x3s_$_iEe`Mx4$`Y^Im-K zmgzyga63ZQuD&|%ehlx=zwEC=ezk6_mXK4W5Cmo3^)|9RLZeOh+iZ=ZP~os!#XRzw zzW=KN)yY*Xpv>{u=g=V}?hzq$ci-4cT-@2)r`J@wRL*xY30||G{L95L7$|50@lI2I zDPpx}og-%l(0_)T#_J!!KxR*oTw6>pzfuW& zutlO5wS?ooEjfw=GotbA3or%uLKR8PLCx<^#}JYqf*7K7`Ge#78e<#zpzTZ24#69q zZO1-@YxyCk{c{i+w5j2KV$xUZKc7=@iZ}J0eZBvG_?>eOyLHIn_8K=)ND?Cw7D-ZR z#4!7xn|jw;0d$L9M1CS+{$KyWX>YGOEl4ADt_z#HFU;JMn+K~fissD%V>PtVQ@8dA zcDvKd3&11$G*|Qq0-^jQDWl2rqUmGRgBJhY8hp7L7&P8^%)M{yJ^2MqYr>^Qw;rxw zA_tg1t>@WLP#Ac$T8wd-2ZS)iCo*7VtZL~t$_e@1dM^Qj$ zDO@w!p5Bud5lQhF6v1$mg)C49nz%qQ8X z-*~fb^50OH?wuWh!CQ!;HQf=z)~5w*Fq@;X%bTWra1NhHyYOolBB+TPO4(b9?h?R5 z5UJuAw2lqT#Q8ut-~^%=(^gk`WfBz+i&mZlOL-Tikv^XKEYqG$V5QAf$#d?Fz0(@_ zO&CagXIbpUxfpPYCM?3#k$Gm$Y%Ysuk1V(GQKPR}JsIy*v$Dp%mQh~Osm=JeH+&$6q^6EI5S`V+rRiQyu)Jb&`*Jw3zmWd= zjs?9l{=lr_j%VHwaRc~crC;^#L49_tlcjf!^-lr1(>*y9y>m`g_rNl1Hk>#P9(By! z-9i5L`p>W2wYI>TXzFZltnm4~N!{b_ih(o4dUW)MZisPaL6xtJF&*UUqq)eiRO?uV4W!iCa+m^`O0Td7YKae)VN1fPT zeWNZW6|W9i#XOD=Nq#be8MyPat0jxeVNL}p)5zAcIZo4oC3v$_3ee0wgNoyYAx%Sf zgsP9v6~g}K{S0`TaULrO%_rZYH2>sx(;A%u(N}crjT9i1d!uxFr%y39aKU~FUxt8@ z{z8H`xcGohZ>T)IR^y5+7Ayu~+bq`zKzWgewB4*{d&1F%zk~$x$AdkVET3+jtXp^S( zrRzQ=@Cz#vr;~0uEJY0;S(qo_akyPva-BzqlE8bKNGiS!N5U{o_D(O?xA#ch&}QJG zq20ppFUgsxhYWWBpw!04|Iezh5E$idnB2UXyOJ?Wsb$(ZPz%ksH&1PU_mI&Zi!;&# z{dbYsaz@$`1*u588q3dgp|93Afj?d2hDxC+O*u{puVm{am#~!+Wq2Xtuy*fcG`~9` zkv)A{;-E3(W)ncyhLBLETb)qFHV((Rt4q%5qsyY-8|k+(>r5KarL^^!^UQnwqWPbl zbP`xi_UP{3CeLwsV+oqaD=&-N<6OlFX&I|P!qSDWi{RI{UOzag#|@}G@hyr}ua{KZ z)lMg)(%kxey6}SzlyTQ<(W&#EIaPzt&b478p%o(ek^;Q-&!s3ee@EN3g8cl)H$n{s znI^zaKuZ3{5URdjevN&R#a*!S&VA&*FT&7@-0oNDlHL+-^f3;KWz8v{<_hv~nc99_ zX);SdXX@xJGh=$L#Lpc{d1Yge1`yB1-KAQ|ocLX*;2Pv(Pr(5D`9wu}1DAwof|Lca z^`2IK)WTw-9v;zAaq`N`(H}Jkc6e&ZjL&2yY8a=KSpu9U$%U={^PI7##{MJGXcyF{ z;djJVsiF}_1L+mHikD-ikZ|Od`S~sTEc`;I_bppG48$nve5<_Np$|NcNKypUSY|=R zqk!1i^IwLBQSmC9q$s!Oe5)u#cwah3X9dwyVk}jJF}|SL$eiklogQMRVcP9#c@3R zW1S`njahZEW%_r6Z}<;tQ>XCL^!)46AO%;<6FZ-l8Q~==WEa9nw?8DQC-?Rndkc}i z({tQO16p<)01xT&!Nep6!=~=FsUIKbp2mIBU@|fSNGC%$VVIvL-l>>-l?uwJq5|x+ ze2dO|yLnI=Svr|a(a2=E(JdKSh)lWfqqMTug{;iYF7fo7)7RgVabvglNT9vdDZPvF?;Dr!_KvAG2HZIU=0*8n6NyD_0lZmmL#g z(WX;vd~sJD%D^_~$w~ueZ4wO1SlQwQ%+6ZdKeMz}YEP}a{`4ks&|s6{Pu+h`>-F`m zVOHbdBy5vNX~jW~XoL!;87(u=+^Z249W} znoWt9_A?ek(KCKp+m15IIGy}Y%)Z9k?)KMzutY%mKx_adzNY%GqS-ylpYCOfMg|Dy zf9Ykwy9@S)bL%Y8Rl>0mpt{WcE}lAXxW3-`LKmO4PwEMRxq}d{O-U$b?A$AUjI<*BayApCSN6>#?+=LN(cMGJX@^~IYAAxSKHDZB&EsD9 zbnCvg)p{W^8Q-{DI7;;y1hD7K7*7+z@%nB>(e2qu;7If{;Sx{-K>hQ4T_ee{xH#$o+9aqrxpA)u# zY|QKbsZwquN2_hcm~Q5haI(*$V(r_BCqc5D z^c1TfGKsTpy4UiZC3Q1r-Y7d1YEwz_aPGw?ObJWU7^&b>G(wMKuj4L7P6_;402JDTKCZM4FOs{aNsieQo+KTnr6?Ts87X{e|>BQ%Q8e)ZlLYkTXq{%@a z!r6IbM84yOKh&P?XEAqzu2A z4>||LLmtC1v-Lv?aK3lFiy}5G0XX0eU!p0ao{saB^yix#q)T__rErrvI z(T8HRFXh5QY?U7kl5b zD+_d%sFU-uj)O}Ey1r*TeTKRy4qY1f+HtIt!U3`J=pL1mlUy%;0_{u;YX&zJEzE}U z&Z@3Vy$9|Z?73J*8)iWt|La?t9{%&S-*EBAdeh#|%W6)eti>AW4n~f#QP+y-Vn>e^ z%n7dzE)136&>&^}dqcvzN#c7O*;tXJEf|?%rES}#{ah?iIiR_+BDN^&;Lk;GD{-`X z95+ivax^wIfub!Gx^R)t?`Ey%lD?NFPBp})e;|MfJPQB6l~}?-ZoetDFL625e_#U~ z3x~6~rQu85=`1f?VI%|Xf#_VU z2qk%Dp+^j=ds0)_yp(K~az!mkj3&P6$0GPCt47;G=^UYNCIBI#uW?i#aaQ%PZ9u9Y zg?ya0N29U9bvZVCZfZ0B_ylb{gf_T|f;Apyl&P4GxQ|51qk8J&zmGWi$N$JuYSMJ^LN_+p_vr{BP)nctlieksa6`A0~~BCMEg}~wb0qD zg&MmCH?a-htzB|4PUSGcv#=+yn_aJ$K|~1aGOl>=?!|ZFDPns0WWjIPk`UzZk(9w7 zeJyPz6?WDwBZp~u5M;ZcSddsF!H)YQuWrZ)>6w0a*9He80STd5na^OM$_266E7Jzl zJJbkNYPN6AE^(txqKvmzC&pF3pEKt0FmUsXIEKoTUV`wv*VDq^08^OGa9N~sEnVRq z^$th(XlLkkbT4rLZvG;Q*Uo|Xqqx$=l$Tvpf}{qrizucV;P-}1Tdn&vsPhPuPlH$yNngd&zX8|-&$stpDe&oP*YSuBKbexgr~aIhzGr8qD?lw7d$X=ZfT2M3 zfbqgGojD8fTrN19g|ijStp0h(S2ePQUBwT~8T0!&ox;~S{91;a0{B3E6q;5qB>}S_ zW59Fc{)pKN-j{TP^QnFcDT>7ZpG)aZ2&6A6O89p&~Btk!W$o9%}qWyZci@x zsnZ<7{m=Bbe-gY5%}Qae+-inPyfm@$mmP&yHb)H5JV$cM8=d_JX)y92`UX+)9?#TG zY=3^@6GNtV%%c3J%?<%=mxNZOst7gbwiO;W9(bgsOn5OLS+kHlT{zLb=1k5>Pl5jg zcAf@FCY5rZqx8VcA`B7We|fN-LX*6^=cPC}r&Ov~*Hirbmo52R`1!Daa@zMS9l%VO zdFxiBfHcU{4VRi0he9!+8XMD3sasM@au$+9=~!iR_1yRN(75QY_fAcdF%h=n2@?>8 zshKL=VJ!jv=h2}%xrU{f7o~6jCuf~DKClQQe2tAPO{6~$?AF24y^~A4%rBH?-r9|v z+o&gn*RE7Ft58WakM7QVns?)B${;Iw2>rsXdth|gL_;_~3CHbRNj#Al5~+3krqf(h z>Y_!{tahw$6I#~I8Ztc}+RT6L)E2}T_en{PxsB?@*SVxrMeSU-aYIwI+Xgz-?=kmo zy#5uF2-&Br@Jp%B0|XmV!{kURRZ?e!;ld9edJdVBL=_&?j?rTYBh6ob_`+jc4PAt5+W{(w86_I8}xqP{S9p`tFq`G%j(`YSHC&)l7Ov4 zrFCoH4j6hWIef#m#!D|dHVqbG$X>ajJ*jl*6hZJ!P)Ly3lcSYVO$CWJ6p~k z*hxRnb>%f49XfNZM$oHDQdjJM&tjGHomgPDaSm~LL8%Fo%g!*Gk%wN||C9g(B|w~>e18#d{-k>_1)Vhjw3EO56c zMjtBk3?FSITPkYev&2ACblxUT>y45!P~bel_X(SW*bUQxcx32WhIR{FMw0yYnUPC7 ziz(NL8S{UR4_Vw3K;vG(fxm|?I@I0Q==;czknFnM$T07UQq)&H%&FFcCi91NlAG?- z5U-4W;IQGPsS_LHk)VS4xBR(^SMS>E!y9_0?Y0AAbXgrsAB>8ld!Ua?twGcsk-mVa z*k*R(^4wTz@d=PNbToTs&fH>!_1>MoA@S0k=kH?l_vfE=)9(Q5Vp!@Zk}NU??&>7R z^w{gnWk2$8R$V8l((s2#3{S{0QVuV%FWtGW1dK7VJb zg8Xf1zU`3;KS4I>PBq&UxEizO#b27&*;E*|Ot;~YPp;HhueK!mmI&Ygqgr#lj9aMY z_B{)wDYb1XpL|Ullev<_Gv8KeAPMn7Hz+o=1f>(qAvKTi`Xiq%Uij?wr*|u_Ni>_S zZ4F#Vn|&(Kt|{$`<>r-v>`6Aq&R}0D=3TY)3V<<(J&HsS6;gy;Aqt;yW~pdgLhs$J z?&6s$35ZHX;Ubkf-^V4Qvo>OgA5l;$7rG-dvwJeNXEhcxSylIdO{XfQf!$^ZDNcJ z)qlqTlD5j!cu2@02o{5Y-yCC>|Gj9uS`T$6PDTq>kKJK&a%?{xlk)FFnyEE+i=@za ztfWT5mTO?`9A0?H=flLxEpn+r;XhN%S=zFiu}3&yDxuFIAury5(xcLFmYq@@mjhMI zBY&bXu8x(MsaS@hRj7bQEi7DSJE!1#=EUpI%G7<0Vm891E=8%7xvk&>k4=vX4vZdN z2Cc-~WbZ}=mo!OEebBmYS0I|#ZG#3oE_7yIKQTv$h%JPJ{2b3lx`R_~3Rx_3cJA5& z2ocTsWQ3CDw&jHsc|``rO8z(A6pqee|nr4@KU) znSa?Yz@TN!B}9NWXu?va5y0u@1^dQXrat92r+simrepWkbAeDV?MF)N^RzVetOlmV zWG_1k@2x{beirRBufobk7}B|sS5NlD&UFUT*GIf(_t!R2HMqhOrjl(l`)vAx`LKkm z@nO#wa=V|QF+Pt-#H-Z!gMV`KNKQeSg74ODIcI{nHQa8rnxC#=QCl5AT>J< zfZuk(h)36r&3A0T940%u-)h%hH1SZ^VzqZMx>?w@G`iVSE4E2leo0TiQ1e-sv^x!Q z+l_$5Kw2jbUHg}YjEH7>lbv zrbDq0Eat0`A)Wsafkt7s25mf;_7tC14)TxZc=r4wdp}C`U$dq(j_gut=*f+FLijk6 zZCJxTa)&yvg-QyeZ4x3^gA|u72ZwYayw0_)&7nt}EM|KhS8*nP6x&WKV}LCkr8s#k z0l(^#1>DMz5zKwdzr>O(AG_4u3=oqb&i7zZPl!pqkDS1E-#Pix%>s)D-h^!ey)U>@ zm{fJx4sd*VcC$#AF|AS=5?+TF*ENhChko>5!#+DG*gDw_E9uUw&J+ooaK(dsa0{Oe zk4|2TzeJsE59-nQ0PLETO>aV>Fn?dYvLEahmp)g*M&S~7#OdB0kbE+BPkn%_o>q1g zjy+Yo3dbnwJ^WeF-8vG?1Rm_cN4liWPC?f-$c`KLnA-Bw%Vkug>YC@#I@a0rr;0`% zXKIH>FGnh5w8+N&){JGL5H{sg2bW@#G;m|znb`1^;6*mGMA?;3Na7L*WQWp@EEp^! z{w|te;kXNPWwX&4>58l=S!958E(vd0p)04`3Fi-632Tr=K~xVFO#THZKeKuN^ZNz= z5hEDCCbvV4F?F)CvZafy+Nu^hSuS{E^9a-VE^D5Wd+wy*kOGtwA0OX;@r*Ek^+)bV@0b`y&KmWXRa(7W^cnHi5SXz@O8;`1CH;j17i*m>s-{ zQ(jN30bgDe(z0hK8G0t;P|+gSg$*| zzDcGZ8MhNl0iIcS&WO8c7{kavt$+?&GXRv0%iPi=Y~k43uESMd2`pwKWA*yJNxld? zVPn}m<6tl%NxE2IEHxzu-6%+q{T1xA*Br@{~I~aDj+es3#mleYue_RgW1D-t% zFEU`CU83TA35BDZ!_Aw`)a>~UI_H#Rs z{2?2Lq3<6d8a=dI;_pG`7IHisNi$jz%D~62c=`kj*OB|4BSP(Z zja0Su*?3Q%5WfU|=^GejkA&xfz`P|DpPK_;I=={J>#(qSbH&Q7A%4+5g}b%pF6E#H zCgpgk=?yOLr$D34AstP?AU|25##nO;Yac!@#Q}6uzCBl{lMLxckIBDn3vw$ zb$R~*$`N<2bFv*?bVqTt*vBbM%Sgw$DWy4G-Ju``5m-~|n^*w|Mta=&MCr4m7N2mG z`&h&4NO&m=#)O{?x3}n0$4UX2;+FzeA!~i;rcgP9fp6wtTocxS2cHYw;^(Xh3Bqo1tm-|!JJh*1Brc<5R>XO7>=}u_oa_RRVPK~@hcB~`1rie^P!^MnwyVs^d+(v)o%3)r{mx!mw0U7F2_5w`y}mul{r zKYWw!*&jKNa8fC)?ks2_Ui!3qdAUmI6aZMF#AyJVD$Rg`0wGPdCEg&x@kp0}m2Rjr zD!;?l`#?jIDLpz07{Y;nvTB>UWcj?M%d=?1f(1-4ge?b|uzeRkuT+KGf~NEaoBSuc z9rBgtFh^5xnlF_%R(Z|J%VOhM_!gs_Nt=f{FtB`#Y5%b#E$O#}Uf%U5;so2IqY@C- zLUIAOFXACd_kJ*)dcx+PM{9n)WQrvbjF#1lN(0NDWiaZ;gka@eg@*_H2x(nGv+yWRj;mI8l-S%Q z1>`*Vl)o%l*@d>XqM6%uzqIouRDT06`@@jwgfOx)_ge{^G_$q)m&wvb+NqxNY?7xu z4qsrx6u@eso9wNrVz$kDHiUou#*5m(Zg_;*`x3jwCx=XL>xk+{5Y@!ei*VE}AT0hp zF-ET9qVM^~jzumPr;Vy^iRFgIuL@ral;X{5cyAxj{!Tj+qtClZ?{>?gg2P0JL?Sh;*cEu{EwRt>3QzzT~ z9;@hzFc?f8z$x|ShnU;o&L7xl$@yA!tL&WCH&Y%$1|n?RJb|;jb<8<_vojw1o}6508b0w3+eIHwV!`<_a97;4%kCaW%mCue!o8L zlmA2Wv!$~!E)@`3XsR2mX5E<)HVnf+VI8=XyfAn?7~PPJmq_u{6haw07zoW?4F40k zSr$`8RGA(Sy@}%_CBmBe>uAu56^)*>0Tv9E^Gk?=y88*9K3-fFy|VQ}x!BOV%KYY7 z)}kvxpFxM>i3Av&r$Y`Ic;mAgMN<2~Nos0nWwA=gVfbU;r!TACh)!S`4pKKfwbFrfh(z4{BkS(G!y-)!w@2Zi z9eJ5h4;FxS*slNY9Z)fG600kdPh9JPv~L@@7QGR;eV{%QxPpLQs?L-dD97KW02Ue7 zfqtyk$}8S6wkFBzBc4!`>}jN7uSCAo?2#nbQ_4QslXAN zTALUhXj>OcMMtw#s8gB*xLYilM_PSx20D-g2)|U~1a_3xg6o4qpoOs)Y?CsnL@Qn$ z?ep<5wNsA#4t)UVHFIZE&jMP24xpcwR1;r#;Z}Sl2bEM3Cvnilr%yX}T0N_l-eI}{ z4UZ85+Uii@V#zggSz|$TUeh6tA^C+J(JhDcuc$>2&kxMx8@P7GjaY-s$Xy@i`lks* znv^9zG=erGo=7bWQ(`V1H;?b=(cM)FI1f9ZBTA zSx=ulzHX;-1P9 z;04+^nS1l=G4uDl_^HYvT#}-40Iw~)M9Mo6g6RP#w-0Tu?AT50p@vq}8R ztbyk8XZI|=wfmk42m8Tv%)TqYPnx?riop&|MeEe{_x*-t%E5z3gX9#gx!NkR4n2x! zur{5V#q<{bX?W|k?sMCX*WIw}y7#n)2wo|))t7@JDysV~C$Cd@R@#{YAP^Lanq#pr z+>vmR-!jYbxwZ^qUhMc;FkbVtZ6>sv-^SzfXIyh#N{kgVVqDnsj+Pl9(r=lGFuMPi zmWh`WjZr`qjJ+5=@Hkhj3&tKEw}zOHs_d(gn(NlFz77*?SaeJoyLRsFrO|AZD*hgu zwN5dxvQf*2_@wAG8xwb^h#)0cDLE{PQ*vFnWY)5wFG(5BYA9YG0tAo2Ob|((`=&`G zM8|hvns#m|F`v0Sj0MlRR$(c|Om=O{qC9xv-a|xvOXUF}b%3j}Cx?K}$?h*_{bw4A zraukO?=4XIom++j?Gy`7M^yQMpk;5ZnmU84ZcTL5yBel`}kPXuN> z#rnvi_kjWlo6&*n3=(#_7ICmSD;TDc9{{?1YC)um9a=rk;C0F^3!$)w&#vx_UE`2$ z4u2)idmOf8XlKBtT9Sv!7m`{XjyVm;s;11T-X};ytZ7e4L=|SXThhTxy0?L>J$mKFS!B7`16XuVgSeFvNmr zsPPjU=L0B=?N&~Ay@s-=t;iO$Wr$1rQZvixfC$2c|zl+`+$30S@j9oDaqTth7dmSy$SElxV!6883 z7WZuGYUhh3Qk5ikYIum@K%fN&jOQHzNASc`trP`&Dh-U|f|+80z>ns^K15&UFyU#|@k)4(EdjtOJ^J#hWxzqPZt3Uqr){`mC^HY*xpAw)z95Eeho8!i} zC<@HPsVH#Zo0pq+|C=zTRwenQneV2n;P3+;z2g3|h-9+Y|5GF@O{-@wnC6@*?~)vc z?r!PxQX+k7!W`PeM(e@{WmxT=e`;M)*{p{N|@G=y7&D64G$X_d7~pI2lKJEZGoLwH7QM_eU(xF(r z74`Z7<0*SHCpf#)X$Uq!-9oQDZqUF?&v-3375H{)K#{03#e3|Hs)>#v4_)!FZEM@7 zR=Nxo;HX>dwZBHT1!~ql9}n;ItTIz4W)3ze9UF(O2^s^l%I@h#1^Uh}xg`BjsbAQI zq9t4r8@%4THawZWI^t2Q@o1Q{qD;8eA=T=%iPFW$sT=!r$UeTN4XEI7ep!rY7l%r= zvBnp+G^S#VnJnA#nO($NWU2G;*OKjZ#ZR4SCSZndmnK-BWcPj<*K#&|o6 z3MG%(vtiq)t1ja{8Wmn=LgrZ(wN5>gH|f4%0E5bW{Q?O%F(^;K`*M&xSJ^fh2)CZQ>jW#b zG#S{shyL5WCRTOM^yK9#r$GSm_%TB!x=G_RXk=o*2aPKs}d~Ud!T3`wt`5)E&r#- zLz<|hAhgFoeKKBpmOPVCVE$$>06vF5{HX=1&DPFH+-gdg|4)r32E4jAvK z$t9WDeP4rO(@Cyv!nyrg3H+mAX>*<8FcALixiCVsAnKlW5Ai&Du(tYU_fIlRS@6+C3+dWW zq!v*|b8$7R?#0He5yGB;9O=?dy8Sah70;;D#kw_6;_T3n@>lw{jVcU+-xqUv+Z1cy z5~Rzg01aT%X>2fgN3B{agn`1@K#wNZ-=Xu{+{cnDmVuW6ONmYO!VQpm+i zxDuH-UPM&F^qX1uQL4K!n0`0ylf(G#Kp?PzbKz7Nmiql`Tf@>iJo<=#PbDBm`l+6h z^l_#-I08DRLe@t5IwTUB=6NP&p!pCnSs>U+2fLnkLxpJi72ju39UTWQB2Els2`Ak! zCG>5h_WkFdCOp2T>R~%sYO8%>yv%uEP668hdPISP?;Lk^b2NNR6oTh~XFw1rEMgny zzCMI9x@!aDzku+TimQf@`roAO6TK5MC%wpHx_$SADJcRk-m7aS?~5ea7=F@x5?pFi zr?El89UBv=4J)2tqk}1>(^t=1WK9J()$mJ3W6A0XY$rf>Gt%7v`sx=lns?2p zP`ky2;tA{2L~WqHkQ5ZXUB%-5OR0ky1%E$$QlS_HyYYzrX;c zJWKw38Cd&J8^?t=pq$ZGW76%XfB4HFkWH<3JH5|s)L8JJg9Z~O z=~R2SPLhGX4%_fMjOS(}-O~B&T@hA@DjQU}=WT(v#Xv6poi#llon+Cp-#(}|edaoLW4|iFG->^@R*tL%95P8GsEJGilOrjnQ3ikiS5HN& zT%m#4DE8dh)ih48Tpz%`%U$OsznAeLEXF+Qgvh*Xb zmEFjH1V<_Qi_%m%CguiNN|=gllTk#3udWvZUUVx{0+N&j=*QU!-OD+AVks%h%jayeWCYZmS=MyocRfik8;L#>dN zdP~*CES!!Ru`k#*jZZXfSbP7jw|A(G!%eM`N3UZJO^NChy=Q6b2%og&V@Na{C6j+F zNKzV#la>GDy#3R*rat&bUL(&lrTbTX9Q^4~7lkCE+10A~Y2EsS15K&OfXCqdKwiye z3qk22KCjl8Y;}xc;dj4byy7vE+8= zvWVhME7Y1-q?9j6f8C|d9a_RMlE-gO*LRO+vRG2-edJJ%jHwZ=A7q_8pSkysJvo}I zMmoTDyj%Zc())kfh1_4XD7i-aii8R;PxN#V}Cl5KnIooQJ{L>5j2 z9whGXor4SBEJm5WKXKSr7JN%-wZ5ig7*>kuSjYGBOY?eUYzJESbcZQ#a&3m?;L8n= zElLN>y*_6J;CL>1c{sREQxER!?tIQ)m{`q^`{<&DOL7O(c&U~YAhlHw-#_Me_g{=} zg}t_ZDDRpm_>o%m?3673uDK>Wh?ZyV{<>a^L`d_XBuxv^g@>;NIRV#nS*jZ#9+!FSri@Pk@V7U9A^O1IZc28)?=Ekh}A*StT$2Q%aKXmG1{LeUlrup($n$uN%v& z@3!}I_ZZuGLfyaI!GU!hbYK>tDGBsIy6|%w!y^!@L1r0UxH9rht6ZXKQ)NEfIMZP& zNodtc>M&xDFQwzcrj=*qyTtIEJSU6AqpoI5C0aHKE4r_&`|vATV25G<4J(hGvh<0a z&lqvn@V$_*LkXfk9ybx}b^-je2h!v%*QGdO`xGh>={3fcY5ex77=3(=9rMPy(>9$P zd6@BV2xg{Ei}A1$N%o{}dP>j#9FpLf3U-qK*IoxxzJ;~AZ=@ZAVmh#5Q|()V9!isu z%r5>V+quNxVg3e{Z%UdWhr<#?)S|q$l@s=WFLbvpjx$1OJh4bZ&TtgKbCl+F38QpN zpAg)sqhXgspE4Z5MMzSh8JB`hYDl)cLVpBZ)z7|B{aKgF!7toMfj^ee!%-Tb%ImjI zf>szLL0ll;f~8*Y5bJNKu-q!H>s(y;?k~Ynjc%fyO-d)U{(jam?8P;m2k93kFCQBV zr9NA0Pf~!tdXAM03x3*Aa2)pGGrD2UR2--*-Qo&qz>rsev|o%!JSowWxstL3Fj&dzf9RY^shOB-r4A}G2mkc=B|LN$wP&RY z)GSJwQNEQWPo~|^yt)qeC^Lbp%NbPS+j^Ui7%Pir5P1yKay3P_Ivq~~0L>?Aw2#Jc zbZs<>LBWMs&-X-U8zt_c9F%ZQ;w?PKW#IK6_h!+UxkaJmR0KP3$%YN`LGv{LX6m?- zyx@vk|L8F64brr&8I4CIMa@hiiHbV|ic)@>>!zxDQYa#GR*W_xG(5O+n37IjKDQOn zCHy^)(b?4xdyrJut{BN`^3>h1!3%gfx?b44O`|i*H0uTBKHE;%%7UJ|=nfWKRMB@7 zF)Gwu0ra}+r1j@vkiY}k^QfWks!HQpEmx(g`o;%)R^$CiXg8_5^SX_Sv;*r#*l00K zGpfHn(7bRSbi)!$#6`fQjcy6riP*Q~JvkKrb-W_P*ng<9rn&4Bss{No;XqA901q;OP?+>$yk&wmL3taT}{f< z{r+@?V+>lN`P({Fvjbs;9qQZ$5wvH1bUc@@AxLXi`g0i7OMvLPM-b8_VncAv~ z*+yk}faFS>JgyZEnLeF;JW0|=$2x^{)+b2ko&27>;(rpkY|b!>T>D}D68-uyzEOGi#2{oc~|n0u*Qr(X!0N4G>L zbw8NiL8u<>)b{ZTcpcc5#vAf)0;7e`!+KT+;bEgfwku>~LAE8<>aU_&h^p0B=HS6s z7Q_WU9h#J)v#YF=mrw&1u_vi7IcQKln|2f48%rIi3EDe}*XHFyc|>gQRoU#`Rr$6~ zcP%H18SqWfd&SP20Bhwb8mQinqZUdUi-l-mU!gr=&1=W8lz5+g_TgCjqbQX4TMX0k zYl#b*r(KoKfOwd#}CroCcz@gPr~QlwiSJ!WV2 zBHbDszxbIbZUyC}y1ntr(R{F@_#;vXr^^@QN{aZoTX)4o6P|;H>GxNSzaJl2Ld1^n zqkoh#ZW)>#DNgl|otjO&Wv4@V1tc!zDtU<@*t&7fA9k(_uBZIqtet7hDQusD1G#_t z5VjB1MirIszrTa@^_fFwOnz+q%kK_b6WdRtLNH%PK?Li^g(G*qv3Iy|aTFpeFg$C* z!>c~TrD+F>OI`>9gpVO*y$+|IWj{)>8tCS~jny=S1H}o=PPu%=it5VIibEV3So0NW zkp}CgbJeCBsh6?FVIBR|SzIWI%j3x`j`5~&@>boE8HaXHcLrcYg620y2^o1h@TahY z3ADD9T?yzGpp^f~+F=s+l0Tl`;!(}pDPVEZ?e74{GIFxe0W#WTKW`3VF$Q^M&AeU0 zbOBT1aWA5{l255D+cEk}0;RqL{n*zFQV^KM1(*9sRlWX=8~%&55?0X93}`>g@ezF7 z&|b8@J@zQWHSO26K*d|oH+s;4p|6jGOY@{rHx)Vi&F=Zl=^y>hd+bll!^y>tBf@rW zB@ms6%#LRq2K7cmH#eU>v2@`QUUVj&HvTFX`?d6>uUq&`p{QI|R#aY=@Yd1}0d7Ui zvN^Hd6tl7LKtXBeMOq2dTL2kK1t>jr;nVRRMj_D_YhWiT)`@g$wk5^n($JFs82#5G zW+RrGm?njN(x`pEg^KdR!@b(+6?^`Xu1vg-M%2iqWIFIB_cK2B#*4?D-;Rs_>GDz zsc0ZPSL?l57E~l8*CHUn%yJ9+zjxT+Gi`PG1yRFuzlc3mk zps|`3uR4BcWo-2m1bD}s?pcnHzy+1o3OcOFE3ov&AOjD;KfbZoZ56BoU2{t4;-AAL ztH(2E4751*vlS;GRZ*_@ejfka(d%25ugSg8a9omUUcC= zsm%4bzqy)v$ne22or#GDH}F`aJ*r%3w}Bfm;VDhTywz>e_=Kxww2nC{ljIXyLj5lh zfW9YJ99W?SnCfJ)QDh;<5F);*r)eD-)Ljg5D!g)w0ic1!@|ymyI(K!}?AwVItNh^9 zn00C}v1lir1W>mPFG+JVO|6-2kCuX>L3Zvr9H%d*?tlvg4jc_K1b|(NPOaN1I%7hm ziJ&Xh4{NVmH@`K^c)g9q)=c@UU#3h#{wCoD5cHN>(p)0b`UnOJ5%E)8s9@I$9yVQt|X1&NjKrt@E0j6*gv z4O^o&BiDMHVO96!CdQnxftk&w%u&8Iv z(eX&{nM@K+jn3}PDG5J&pLHDxf#-~{4$n6!ey^V{8n4QA0y!b;$74$xX(|7D-~y;612I(Ff6oQFVv z{el(iL>wl+;7yiu#R8|I79tAx1;dAa^60P!dAqyRuB21+S;svi?w^GnEzJRY)|JP{ z+%VQ1+`)4{}eytKLcP)(*y2IUM(x{X>~`jMa=hK0af%+n~E&8?Kf zZf8@IA)3#Bs|4+}L5rZ zuVK@Mw$l~T(A4AIJ=x@wPW_Fq+7+c zK6FDW3gr~;_LiQ782-2sgi(NfShR#p0ofcI={i*;91aC1Vv1Jc#8j!^CqJjDopj4doqZM@!2J-DNJSV?1UGh}&xQ;eAuzDBrQrjQjVHV&4mli6Lk?^P zZ8CoKq$>BN)BCl(H*CxI0_O}q@j1KF^eBaKHr}lv)&Qlxo4m*gitH#3R*0~qiiA%PbZt*l8hTfj%Uod)~RE<>gBs?8i{+Q-3*Tw_0nn>mLeK`Kt0& z@UucYH!_OtodTrOW*P0=T?{a#cz{$s;iWxz1{n&f7{6W2&})J|mV82#Vj4k4&!TlITOlOok+Agi+Z~y-_3A8^uk3$p1;N8%9DQ$)gPp?o z55#7?l1z7O4hpA}8ZD0e&7QEF6Onp~+$%7uDa5O@We`7ZJ~s75mL)poPF`EKhS8pBJc@afr4`YgjH)M38+ zRxzhhzHTO_4cB_f_7Or6IG>w^B(Rb~ZcLrX%fFt*#HNMf84S`=cGFv3xePEfjb-U4 zB5-POeZoeP-xVGPD=B`UH{rQfISx0!QFZG#8sun*^SJ*IV`WD4m+v!3uDs9y4q&kx zw;J-nbM>Fx-E-sJ>lP^1*leXKhkwo35^ZAhq54A=Bb7hTC)2cz7$!v?8q}6c99|e3 zBwTO>PrfvSo9_57JX(O>kSV()M))6vA4-ovrk%jrB8P<4+RUd7kL+3|>DR!N$XMS& z^GpU$D|Q9rxkPD-*;&RRt+vDhEx5g}>~dD$6x9z^@|PC8`=vk3oVkd@{1RhBE@O+m zc}LG?-&4gk97b;ehxRBjs<6?3)6>H2niNSzBnQdu1ErP{awHcF&z?u57up~f-ZyPm z^Uw#)p6ecwTf#q4)*W?70Fd6>Z1g?m{N2EJdsMDE>6jjs&m8^4&>5e*?Z)AIu}R%g z`8|{IlbJevFV0h422(PZ$i(|+sx0W93xQctN>8JkWw#N^|xR3 z?ouZldMz~o`tgiUG34t}ez=DdEMUSxo}XTem=gAKxlZKpPOgfK>e1nABtqT~`1Ftw zgoFleVZMlr4QOT&7eOpXQWNja0)sB#S)a&eLPfO@LW1F_JfI!zmoA;iB6&m#{~vhZ z^Izs`=@-q5+Lep6=lNpfUR~8Ulc~nFv+Sn2S$@fu9tA05T(?q{-!nGgilc-Ze1+Ic zTt=aZ4iA0aWks{YEW{mWAFTM7ohd^<{@$>k-`@Y-1H6ngE?oU%w8dd9f zp}B{AFCZ@*E=Q_c&i zuo5SlJU<`nUtqQdd1*dq!1{xtRVL1IV1!Ei#4*1*Q8@p5dEIph<9Z6nBky-;M1T?2 zfMK+WGZ_(@RjFB(4)E|XsQm*czx*!+SfU%|14%Pl^L!()R^iuHpQD|X;vi@6p++qj zZ(j~#7B-$}FSXg%9#F}|NUeNkOvxUouuwGR!EW_d zGwXQYM>$6VL`^d!L?ReRW>7Q3ClvD-Qc(G_y7Lg3AwB?uf)OgAc?&7Z@F1X~GQ)^7 zFc15@-|Kr_d+)LC-|zf&{?Zqq0yBH>>sr_PuJ!qR)@LP6Goo~h9Zzp^UL_*~9{4JT zJuxw%(;wjLk%>Vkk5UJa0WpwZ&IB0a+aj&@OBx5-Xb%gE)-ZqED-D^pclWkxxS^yv z>SYu0y&*`b6&&-1_|8z%Idb!=Z zX9BY{JCPY#M(@nG!`5-bI5tvB`BBm<_@fHqRcj>YBe~eO4saMP?^0;x7zcZOr+#xvu z(Mykg;rItRS(P)(_$Unmm0tOEzRrbttdf3>sz^UH(xWT!CIBK{jdr#N8jT!vNnu^E z4d~Hi6Dd;TV3NojACpV&bO;q;w!LY!MuP1xiKg$rl#6Ill4pUPX*#do5 zih#oF4rP(5Q>|>e%?9^^wj*sj&8S|0Wn5{yUF2&~e#*gu&5WKI%Lip_LWW+DoD3?p zU;(*JXDyM(rt+oOT@avUJRQt9?fgZrAwQ?*Biel`hHr)?w<|fJr7DrT_UHH!nzXH1L zL8leA!#y)8xmb3^gh#|Y$O?f@%G^R-un5BO6q25FEKze+JU!-McjS^sy%=u!cITzL zh~(4Lz(@ox>CyWZE`p{6bW8Ea@<3J58#n_THdb{%#{##tG-Nvd7q(D&^SI;K=|Yml z*Nt3D`dqdY)L_7P(GG!(3M;y2Z$bki6c;0>4sO$pT&^$Qb;Z4et0hNZO|(vpBsyy) zhU?hU5k{J!z~U0d40wK#|2$~fabb-sXYVoPc|@Zg&jHzpF4ip^ub(;WUa%e>Nj#5r zi=xE7vgKEgfds_HA}3>=b*7p8^%ehepeI&r5a;NPj7%{d#=k_(ga&P-Tq0i32sB1+ zfVB|M?sg4=;K#dm_S&Oue0J8rLYSHG<)tx;@63w^F&eo*Qi8UMjk)+TE$1%FCqF|i zS%y)v(%GIWXwopNGzrwrLz;fCiQ_?;7b_XJIIz>di3Q!`7&Yv&uw zmMt5Z10nS%KFtf4ma%=0vAf5~)H~jNDV&0C9T(d*gw0Z2PNiM|c^A`A42mZ6)B`hZ z2#%QtQa?j8ocH%%FZkDacN6p`Y#ei}+^Xm;6|TEU>)}ITZ?z_fs;MGx_>KWwReXna zyyY3<7xJ0KwBKo|z@c4**X*R*7yXtQMC%n2y4U9BL1qw`$)OGuWBlNXX39H`w;hHgMrA^AZj)t+JI02#pSvdUkCVHO&j{OSbS5!u`#z9#Shkl7nK68o-t@^h7bj4K-pghP^88Y=-rXSU3!$v?X z2nS|xPp}Sl6)LZj3Ap83%h6TL)E>#nx_~LhVz|+B9t0@#ngyCsQTNTe$wi zp5g%|;T;*gsrmvPerS>(1oF0ef;;n*SARIzA(3h zcu&5sG7Zn&fEUkdSLr^raEXo$Z198ro!?6X4IdMLPEqeGF)XYKk}is+82w!LlYeu* zok!V#oOc4gm^*4!9jM&;sBee()*|U@2Dbk5LYkcPB$I&O2Y4L5&Pywb$0;y@4H7$D zj;1(_LV+ZFHNSQB)@Kj3{B^EdjN&DTD;TT#d1DSqf@}37|2}8u$9^=XaM8WTDqoIe z-0;~MNsGwBFEk$~Qs)bVZb2r>_MRiNwPtSXM(YS*3*huVf1(E??`wK5I>D7vMF4#0 zJF^Nn71j5pL+2ipR_sOnN@>wlS`k7U=(lqlBUhs`C0B(@q%c-tgX+DPco(XBeI0#x z$OTx)r5|-nM0|7VoB!^ujy^BSm&8x&4&ZJZX5Y7xN;icDllzu~7}*NLuC3!gvQ!b) zPE8s^m@M-C@Vf8O zD_HKH=-{m_C%#I1(a4AWamLJe+KL~&Y zSXJhaxrHQf<#X|BAv$z_X&8LxNEd1g3kiklui6uTf{FN@F%CklRD%|4d4jR1lk8r zP^OyCI^CKZ=}5+8iT}962895LIu;lBbe2vJQS@=64p#^Re@U|Dqvkso~-k*Mhz7X0m<GTv224sy2%Ep#fgn9yMW(weze^ng_-Neqx+fYZl|KF|DX%j6#bO+=Tj9S${5maG9}VgsLq&L7S_uxc69SrlG-YbLAY8j2cBi z6qT^K!|s(*g%TSNuT*uw(9!RkzV#LnkGGWz_IBP0C}rq_NhguP!&R!_#H*H@*l3-; zmu*i%I!lHi#MzYyhbUt%2fct@!tJORz_pifQyq{g87H8V80)Lwh<YZeB-eZ@C76VbFbp7YnS%Q(s+ zRxr|ft~o3UQAHWME&o%G2I~-ul}D~kx>K>R)LzH(DBEsgluzV{$uIj%jd!@dcE=XV z+qhHv+MlU%ihW81F=&@OY;lyNfAgu7;0o;AXoI~?;VRbX={FXuaIojFQP<`vr9)B( zR8W*RXw#5fMa41sn%_*`r1F&AITSln#*mt&N0UdRR^u5ADua+^?sRT@?@cSQiaO28 zITm4m##s?Gi^UONRtWELdBSAj;wO4%as+kgr!CZ}9VztlAF}y?bGP9{6O^oTn+Azc$c=Q1Uy?YF8MR?s-?}S(2y(u0wJm2YveN zjpS;R^Fec(_Oi${Af263(R<~fOGvE-HRqY_IJ7;bOk!bh{y5?Y*6%^Y%am`Dxy>}D zg$G{z@HC-nK~cSHCLBTiHF(&=yYIoUf52a^SuCU&DILOAUfKF)&0(Io?x*kxp~Vly zSi-zK32GIXS@@cX9CzGlWe^=6rGwlhe9K7`0e%~8ZRwxumr>HBAJ#rxlzmGXG%yg0 zmqHATM=T_WBjM`-!Z`FAI}F-78;et8%^xgEkBdMD=(cqoh~1X7S3wPCzbdQb5p$v= zD(pzt1^0kFb4>N_vkI|?G&KukdF$#|cF3E$ETBfCgLF3ps3KplkKHm}N%G*ZzmbMp zcK=Ly?6&3^^@F+E(M?id35~@>C?Zp;O+VA9L)?>%EV@9Tkw0Rr)5l&!!5SY`JiP#y zFnA=YZJq#K;qxJGjfWC6mGU%fQbbv1y!ML)EKYVJ_oXZU>^05=2xJJjRl>(|ChWA9 zfQl8jQY9|DIZ{W;%xz=u=r0KBAA2`Q~f!RcN+(;N2M;KZVV zO+mStfs}7&Y69eCoEK8vO|N9*CW0+Ik?8EYek=l-?g`jPh)c6(F{`-8a7Jbm<0O90 z6N>uZF1R`jRqEW!`4{bG3aV7^BoulT%%wSB2-w24kWMbd((B!~HMZ?PXD&}aV-a-5 z&RO?zn7UgraxPwcj^y)73fuVXwp4lNtoeomBfQzX4q4uF!J5z9-y}+8OsyE!)f`!f z)<+MGt%C5FT&2*)x8*#ftL`q)6)upN?=Fb68mMTvUnoUo!u9z{M|u#YLK_fn)KAA8 z5*G0gl24H(PQPrY!z5;)3;SnsfaoxEvC?Hu;UP^N=Re#OU`L{>@}W#KxV62AN*T0IDEQr4FeCBc-DOj)zwFjTzGl#mk}t0#t+xNIFl!~xX_7clRnvxl?Xy<= zPDRCxp1yF&J_u_qyr=Bs04z73^lx7q!;?nk7TZ*~&Ybd8+BIrxzV=zphdXD*K~@>l zAdfU`Ug3BY(`o?SZ?fAI_`GZ@r;xK5RPDRx{|PPG8!!CkD-;>x&oZA5JaR+7%0Z7yhc#qHfo)g&(22DJ3sJ^1q;l`U$U7c{ z7Nh}Kp;ZSx!TV!+-u9E($_6A_aMal+t)N^jq}G})FOPLyd0T5GVj=G|K7d6;5_1qu z?j7I(d+zE-ZAW5d7H6DHC&QLAm<#-m1v{;UVqoE6r_lm=afYD~Qg{j?SOt2KDc>Wg zQ+G2_^v3Be3RYC6>B=RXkw8gy8Yg=Q{CXKb3dZ)~-NGy3vf9Hrc66iC|cf=zi7 zY=tuiubTtVNyT+3RhQ}zbWCP!^Q)be$R2M*v~%9tv7)8EMZ1%#tI}xtsE>LaBB^0U zfI`fnyZ~1b1s3cuq_vc8pbN>|QuyohPGETah%(0;MTc9P#d!Q8hl4;9Gec$BnbJ38{>)3dG-0WWcV^!2!zI7R>zt6Iz5 zL)K-|ex7A{mIe^{%+Yr&XS9?|0iW}~LM6=`(K&5{cn}ZGr9hs+&sW4X*an&0ukbjG zk?JyuMY`@8`=}V3+OuRE4Q5PlDae$`qZ}axThLh(efh4Kf)r59pdcE@Dn6FTixXQb zg_D!@2$v)1;}A*Yam^|EQ7F3~_7erOVb$s(XuAk-tC2(YF}y9i65jnR7?&*FMWerN&lAP%N`0xjD9Yf?6Hk{rj(( z!3H77K)hoI&ieJf>YFhqwYDn=SsyjsgFEKlrZ!?oaL9@SLdYd>l;A(O*!b^vCUX`* zHpMuAXPc^8YI#0Xa5)!KiRxWOp`;iUQ4c*?*Me9~(b0RE29c@=9YZj2ul?4<{Y~g% z?0h7V2_l9G0rpK{gu0oME2??xb2h)>VwS9#vS0*_QKRn)7u5HZVPVLf;9Kit{~hh+#S1fx+Uw#v^I`0SfZ>!r)bjJeit7uK%IxT>sziD3utHn#qK(0 z5{fUnI6r}T(4OnEtL2&%_L9Qq_yz(yQlxf~?KZdGi%prgIdRWY|2jizE zo9si%=322cWV&_il4I2(Pz94i8txwV&WYz9WdH8WmY$eW&wt2V9eZrBPuZZ76MX|p zKf(AGJl}4UJ4CQzAR69i<1E#6ZLH|v=~Ygt)1ITvUabB{rM!JZx4iu;^Y(lX(T)Z4F{10WdfPn71fZCTXx(eAqkBA{MqbSIiZa*eLzQHgK z_zF;b!O&I);6SPDU5y$;XYZ(#OOlA=&n-}0#d;`?(;yCfJhPg*>r)w>qjxTksfPso z8uH83H}cUqOiw-iDkpd)-MzD-1VpbENSJOm*`)kOAA`V2{MGI+1Y)b>eS;^F<|AlodMt*<5&pAh$ng0Jzg zkGXPSLqL!a8>UJ-1Y%)3K*fLuGI|&%ipft8$HYP)OEk_qIC@@lHz~Ke@6Nv^goInR zxFoc0ysle(|1SA_Kt{f52T(t58Wru1HU7UpBl=g*8B)95!Of2MLge>u`ft4zrpC+Y z*5(K+Ej5OZ0MF{y?j570VG>uUeHxVVRzlGXI(D#Q?a2c{Hqu@WK(kU}|6w?fR; zh-rvtXc&sxjtei}RZ!RFwH3-xC29TblG#xo^YU~5Y-QfYW`Ppaa3LBvon?q@k2=^3 z@o_^eQ?xNF#S!cPiwj>J-rzep%@{%r($OzSuRVftu@cGfz_1DdOTPI-fn`)HQ_=gqsI{~QYBrhmiJD5`y(3b*e%OuVx6 zBL+IJ*U;eEOR=yI`yJ`f{kL%qr;_q8;WOl)JG&zRRk%JEgyBXVx!(N9}2m|jZ1Uy5- zkH$GxS%|4;jvDTi#S;Dpc~2O*nAXz279=LwY(n&_l)|NqZp&99aA33_X48oss!}Y4 zsAf*j2dMV5Hkr~xpx5r0^pbKqe_yy8)DhvX1Kaac-3~f`=K938dn3Hqa)Iekm!jhtdC-m+pX~vI#2&I|z zIh8skBcpip(N8Oiii(gP#+IM4J%>JYQw`T7!ahl(8e}OngeZ^wlGqoN_?N8tT(HK+HAfvijjc^WMysZv!4&b<4%~9!pgidqb>Fz&t|V7J35h%nCk| zx~nbOAzEJQJ%_CuypV_F;AyIdVq}tL0P6U=^N7)0X~5*v0n=>L!b>@;{YmGb8p?m6 zz>WCe$iIBoh5hAOWDNC+NjzEtQ>54^rE8AZ5Vnjr<)zEq8QoI*AMd;GzH>VIhXJ$* zaM#O)kR&&XSZAv?c|m3Y0tLYt5`-cOKM+|_Zr4Mm4owLZQ2Is+-qZI&oT6_;K5Nho z<#t~8YDMUzSu?e0fI>Ksia*ie2@u58Gsl3%H<3Ug%<;;{Bb?o{CeTaMLH)nm*(W(p zo*k*|6ep$fnWoY}wz}s1hG#z72M8N}P0-@oZ;R5%aw_gilK+y z?~f#7}UZgI@R4K6=k)YSo?_4qZKE zpA5#Ji&W_*Y&!g!`-g8b4BA#-G#h;ohfX-!mV#IOg(|Tdbdq8hFNBV2|1%S3*JEHf}wPnYRL}f7`;90^VvJjdd^J> zG4v!;Bug~Y-(U~hK8uW8)B`O;#Y-JugD2Sp)J3sR_h_p~5pA;G>(s_px(RCwn;}!EJ>#sE$DjMBH4(b} zGT{g!IlNCvp47n<*W|zNE>IsgYCd{6gagY=BwXTW>;XjBB2gD-nkXT-!u`iWU9y+i z0;R9z9~bsF4>-DsOgCs$`#Pacf0lq1AN#6DY&JkSdoQIzzd6Ss3xu)eeeuOsNnULt zyaB_M*J-JtBw{oyV6L@eVD_n!e^RBFB1>2TbNaiai30|BXRsBXn4& zCY6mPdz{s0N`aQfVODP3xbYnktA_VLR(EbNCIRgZC1d z2=$N!YmgKXeU6{KD!eZk>ScdrF9o8O@fqJ5@(?V!&f4_;{OZmKt;qWPiM8;$(4^?( zEQQwX*dN>f zSjeqsw?)400jNdUJRNnZ&9L6hG7bC z<}7IMwUfx?t}5YBxq+v5-)RUmy~ck88V`F#h9yG}jhq7|SLl=iy4c^fRS$=>+1fRB z2ZXE$>Rjw2lj2FFK(NK3N8uV+!*j>=HnRj8V4s^;iXKuSJr4fL)J(!OAhpl7B;Q60 zcxr6diJ%A}o#kNEf*e66yBIA)v~a+*FzO5;2g&t^qf zmKzRoGY^lhO>Dx34cnTon++Fc>S}sRrK7dg+ni(ktBEgB3K~oaWNB0mp8dS-gK=qL z>i2aDi4IuvA#r*OXoxZ;X1n=Ga)e#;y>6SmG({wCJjJsfMh6*clBXY7^x;@v)~U!c z)){zx(n@te8TRG?3N`OIA*pMq<7AmbRA6=a29EKGpCq0+2&OUmFIdYly^K4^;ZbhP zGTWkLfEcyv(LJ!of@6Q?nq;@svS8+E`?RUq0 z2j8-HW{et3hSDy2ptUlVu=48^C=1-LqEm%yGI|HT7YE!X?*Qpq;Axmq44Rf=GL!7v zU}ac~M<`0eupUyz(DQ7LN5*3Z-++X5xDzP_^;!|J&FGtHsRn@gXC+L>>*P!r9V9$73!70m5y!JE-Pbp?jFc>4w;wm(- zj{Aun%hn`eKnxf1HcOhS2Ny3sx3N{pA>K2~2K70fjup#35hV(zjizT+0nfr`1VTsC z?-{P_LVF5D+sORE=8)-!?xH+h#28()Rat=w9@Vn@h-vDmxS@4nK`nX3fxcvf^m^B~ zOVK&xebEWQF_q4^dF>L0V)}MCS3wGVXCcjM-bmrV^U=tGAT0teVAPxy+`cN$c@G&XrUt?zLI!+8>fd^+y{k))-oFi9+6qWjYQ!jI3PL-iO;8nnc zkl$l@z34c5S~xbW$%A#Ilrq5+Sy{nrgf zH!Nuwj|L13PkY$ag>GW6rL6DUcd2DDYIyoXMJ4s~K_6-L;}io#L1sN=@7MqfT3^zo zfkNtayZOYrO9~`>W7p!`3%lTgew5sI=3v%m_g2M#qkK;L@^48d*Bha99Q@n^i(h`A zS(&@{ePP|2%cri{PFwv>NeEQiO$bzdzsc&_?W*fM|HQ;>_irD^BA#onU(ogdE_PD=%NO-h)VXt0%>EVn8Os`URG2 z^{XHz(0FBPq}I_$8$uDQmF-O83bts#=hiLy%$1N6rcYN@?x&u6A5(cY#X|E4;>vrc zmHB1rcM!{WkTAh`9ksE5RkZITDi**Hn<>u9u+xQMKT4Y-(h`q{hHigo)HYz;&e?*Y zXHt|5m6jeCwpq2Tv1c zteG90!GFOO4>%dqn5oo9Ei?8Bk)UP0lX#2%JT^Sl?_gfuL9JAN{_R3`SHiFf|9DV0 zPygoWB!7;cYZmXb!OM@Bn8MVt!O8+OwM1L5Qy)bOXc@kyBn^HSV%Njr}`6+3u&`b&JiFY8<;UPgP><2LLyPoWPgsHJc(V z&}_ukYd?{l^cRfI=vq?fb&@qn%zQ5w!B5zH+lg0Kuxe3zMtPWX$zqw(e?B{*58^G% zpAh=t53@3{H0Zaf@qsnrh2weAY>yhnwDkb>k=((59kdov7QnW0$uWm!Jy`gcW-mUJ zb7mV|O?`hyl;1h=_G3JT_B=o1vY~SocBCn(RD?31m0)8Yeu_{Yp`E8bynF3oKe|q? zFW7T*DEI&5Nzw?eD@jqLORdY+!w4&e#D})i^KEb3*3@)WtD(C+LGTH_*SfW9j={|O zM+vD7%6ljaETOsmkgc)))-siN&S|tS&0ZxN+U6L&0logcagCq&r#?mX)!ksJTR?s$ zj}BFRHHwlUQ&1H|9}&KFq*!+WoO*gwM>e8#E^U+^A`&6923`&VuTtb9taLy|LmjKu zjFT_~A_ux02huPFw8=TT!f{YCTFPkg zZm0YLsBx4UH*ikYcQ(*pM+YFjoV#vDAoqGK`Ua_C3Tzl>9dJnF1+z&?aXsIrs-^f< ziOq}FsJT+*ZFs9h&CT-ZOz7CT@^u|kW)M4?X{u#kh@&}0kk^PmF6e$8ot{~|iOPT>YQ zpAX}3n&l5l&f8?iHJH0xK$>W=s(6Je1pt~AZnNx1YnftG>TTZ>yBDhGfO+4 zvuOD_=8>bO8wmmA)tPo2++M|nq}pnnH=0F@I|nf|)zCR)aJ568iJ%Q9@FB?$oP55$ z(S32n?HBgvl-qp6d{RB;-Dl{9IW)`lq z9enpVLcv~&UNyJn(hMR}v1hA;`EHIydRzZgHW%OL`=unS#7fyAtFz3&Ku2WbP}3X! zIW(1>^_zKMP@^S}7>fwS7?#lhH*R!B8IX)Erne)L>)ZOsics~)|GLh5bM^#f(?&+% zFwf5-FPd4ds1l|y;q|D(&2jA?R>46`!%YHPl^RW1^na!HjLu0pK^mBfgA<&}AulSV zuEn$*3IStcS62io6{=D6ajmcqwO>gscu=2j>mpD;i|2R!)3-1<`ug7p{yl3e!#LZ< zxJz?;t;jC28k(85#Yni_8Y}ZZXjc=9)?P|NZDUO~r zWy+Lh1<=C|+n_V1upurQG2BA~TR7keV5{Jw0=6>WW~(EKTOVddKN&orE~4Svs``WO zALr_@zYNGKNGsMMgYzH9U5zG{X+i3M2q5 z$8X{swc8abFGb_QTAUSlJ^#m6eFz$>6jQycKw06L`!x5YhSq+(O;Xs7!P-gyS&C`c7 zRMI5cLhLU5Pfz(Y4-4LXMp$q!nwV30^@2&N`EJKx@ zno9{cI)|d^*}hBNsCn&sx&<}#DSm@exe_gb4Ldwpr3u-zca&d&^ zY8$Y=Ocbr>)fUcy2z#P{C)2QTD`V%DJ2`V3pp?C2!V)kBBrL2Y~54d+DLhX-?;*f#& zNk_5CEkcQ=hf_9OZ5Y$GktTiCoM+!L&;=-iZ&a3#K%(=SYl?g zG#pxB`)~nS3_!l*cjNn`6h_=|_NLLw|D7gQ>&gU#MGv7j>`8Kx-bsbL5`F(o_O zl1c%}U)&9BMm_x?0FK6Z)Qle`^32)sBosu~zdrBoFc1uOb;d=rxBUPGuF`nFXKZ@b z2trZ4O^kI)IXpoPBRmBfxf7-vs{u^DA75B|3PqDUp1#*PllQ-HH`VLgJ2nn`UW&+{ z5t+u`=%Oicb%%=rTeDx8b$NZ8tMcA!O;tivzkN$W^I_de)n`PvE_WBjUuy?^Vn0;? z4r=z;Z~~71g&%(i%qqoBs!?aH1o#$pvT>DgPS0%gTU!CHy_E=k5O@4RWlB2lll3er zEf+@H#D+b?doPczQUT(&1HjPlb5>c6Njr)vM~=xvg_3uGSVz$W6+*~w2$Qt^5(M)h($X=!;@}??v|011;O*>_60tOQ4e&nGV~fsC~{w80;>}GR z&sAuK`*5i|;!Js5r8z1u{5z)oRJrc86j9LLfojQ4YsC!WTs(|Rm|cgGW`()&9!XTv z4j#IBbPS;FY<$bMi^KlFyrQh{*{!1d_RJ~K(htoPPLIM&;(0Ugf>6u!JnCp_%HWjL zn2f!R3>PvBt5yR|3|a8KM*yF;o}6BgpJ)kjutEXIfgH7@J|!R@4*DX^b3#Q?6Hk(L zd*Jtp2?FAEwI49+hm|wVpnWMGKzY}FOh-Kl_f`@&6JS(n;RCUv#na%0z%zW?;GO`s ze1y#p%Z_Wp6fM=uJbdCUwI~25Ae}N8k1`N;4|kylht`i0%bK4BKAOhUA!*g zv2Gp9S>f&1pzbJW7g805c%5w&i}&PSA-~_V`qXZW_)BF*Jk%f}!c-MU(mOfL;z-?! zLHB=* z3wr*vCeN|^)Jr==m5;Z?-t()jDrDMmT@<+O*K@&2LohVJ{Q?%`tSra@aa?(l4ypYF zeIvyXnNLQ8&Qx$zQoHSmK3hRBzJ16()>>}CP5xh-thl3eiyc8Jl*%I~L6`)Z&Ldn1 z$pf8qj+#>W8O`}?SVSsR_A3Qp%GTdBryx^kF{0V$`U zw}ptGXBw^GfInwK@xb4qHOGYJS=>a;z){ofK}fW0BgIdjema_o5G)c}O>@T_ab|Gh z(bH==%Jt!W1^XW#rx3$bIbJ}tLsy|qxK0Q-wmk~Egzt1WcaHOm&v)l)RM*UDJ{jxz z9ip0a3SC|Uta5kS)Pa&ae!L=c9#A)=x{IkO2L7Gr@cv{(0&Sy%fH`AB9Yv*|hE7sS z%KQtAvmcOxkL-DCL)2nhGRNlM@0oFW zw>pp3}-~VMf`Y^9e|2QmQafc z>Xh6e88q5h&&szSqb0NfV_a#}9m-Is>mB~~%=ls&D}ZLEc%midxk!#se$;f>ZDw~D zO;h`;gxFb|?xd=d8a}xG=YdIg^L6`O@iW~_Db^lI8<}RC)8GWEo7ehu%Z5y{s;mXgeyfi%WA!7(L;fxoPGz zPeG2jSXt{kb?Quy>ga(0DYKQ${0a8}P@xkE`GRuML{;WTh*t^A;Se!A2!)kP( zyakWm3<1t6|K?v^m^TkFV5xKluw|D zYLld_Iv%rF3N24~n2|7HyN%dl6fAbKTuxQ;?V)p9avGPwlohcc7r2UrSmhHBOw?l- zSKtB9lKQ#Pmai*D$Fy(}7XPiwJ^gY{?SZaix-r1@R{>^pt)hv&NV>rbRoOVP?r=9xUXu?(+(Oo@a{b+m_VH00Kkn#5LFj?R!?S-&%u%ZL7GDaI zjnb&#nM2a>0QAg5fGg=4YCrFJ7z;~yi0pePX-QAiW?ehGWl>z|v{|BGt)!}agu%~D zPU|R8|IYp*uZ0A1n13bS*`&t%DRuFJAjG(*EPoXEFU@2-TCcvvwiPXkN2Ab|jNm0D zr!(qd%pu5chu1C`?iAQomq5`7!452nq@|&gLv7I``0H~#!6FRNnp&2IHqCIuOCm5i zP|m=()dfsIIB!MNHBey^(0kPGiWPCL^Y9Cl*D4*!WjG%x{qTVEb2om?i4hte6M8te zGmif8#yxI>uiHwKcTYA-@YtJ;w{*j>ZjfC|!!Jo~KqjiLS1CtmMMuFbSFC-{fY`(z z#5k$-6^206SNg;F)A~x)qH-(g+xx0Jze61pyLC`!$#?xxFe?GE1N5$3W+}C8jndpP}EhR1DQ}uL2F9gsF*E@Ld8d^)z>XW_DzJWN21uITOso7 zWm$5UC`lh{AT{*C2msHkmxp$shx-cuNO^$ZlaSR7foTB&#u%Kyx3_=8` zUXMr4RT^NR1ZCR#RfM}(A{SUHUNa_Ty-0jo$%T`a$frXK?7xfv({LiAb~9Pwclb0$ zhb({SWORc~HaIt%;E63~LZ&>h@S6TkP?CLg)6#%6_T0Du&ke}8vuP#qdpw3RTrtKH z6P&yWkKJFn91GwV@We3zlzE-aDO6&v>aZN3`d$5iZV1%?GaD1Q#dm+>W*O(uyB1VC zd2YF`_UqEDbSFpIo4XDvsRLwH1MDxm``Hw_lshh`NQzb+3gs4~}gb+}RgwdnXDTg8uPvs+n8ub|+L zlg)VoMCWph$4Th}VZu~WMJaFen=+gw@CtP&x{V2ygKr!*fxg zvWMmUALErg4p!Ts#C!?CN`(&!dL$b(n^Z&UbTq8kGEBEtos2|A;i%2YPS4T#hxmtJ z2uwWqq=gl!%u3t|b5A{>x6g4d^!@(~`SLnGH-XU%&6T;$4n@{B%JINEmOMt2|2vxnJDec7R z`wObCy9{(?P;`wwg)Vc9JtnXN!SaaM>Gs`BJ9?WU!`Q*due^#X+l94{FWel&4QsRx z@7FArUZN>!nWGxy0*TWI%gA}mV7@$Dw611;O10= za9jF*hc}R8@(5}QYEvw|!zU;?q?Ro?Cn((m200+*O1_$cN1;y$f_bczlBJ}THI|m# z7K12Dq79&AiY@KLj-81$gWyif38U|F?2eu>kx2FSnxY1p9=G&?dkHwr$^QG9VNc{U z;lR!A8o~i9AVn}*o9c0(d}E_yv~=C+^Iq6LT<64N$<aY#^5YSyQQKIQQT#AmiR?B=lH#}r6nVICc>r;u=vCy~D$PWHg)Lci@=prRL4YZ~L z4hxLbnL(V9VmchaAPVm!_ol;gn?Q6_bJ`js`9-ctZt4 z;|N9dp~UEeix;mF?M#q+-hG7QQ|P=Mvfxv2f&D%|FKpDFXtLZNV|(y&~ma6j--pb$1ANN8c#V2znT`h=?L9X5FI zrG%PLwK7!0)u~t@-w;OG8v9Xkkm*|=KJZhR*R@pR#Ai2AI`V&7?y*lBSA{ZF5zK@2&xBvUSj<6+v)b3au?!1~_L9S7M_9uZxO z!cVuREiOQRR0BAUCo7 zNl!^Hmh#{4`;nLK?bXPAR9G>uK27U(;!b_v+)fQocC?`Q*>7}9Oz}p3ZveG^>GGzd zVTK<2K4ARdHk3?%Ij5RJEqqgW+9YD&gu*|b&WOI8kt*%l*>D*hX3cq&{Y@Gnk($hE zVpj>^j-c`&Ro#eHl?-3{6X<6qsPGb_)DT+*Iu3QdRrA`Ju{FFF3!K zLc*$``w7X{8DgOx0?*GwK=725A_^RslcIste#VHfIW>D->tEA#KGV1?lpOf)a_22h zBiKTbMP>_vMi~4Fv2n{x@ThSGqoHS0NJ~}uoVBSjVSg$d?V1|f7gr;Js(1Z&jHQGh z46S}>(=2DvS;RbC{cT)q7B+ljsTs}b#0+{0#J68FFvp>1#{fqFf-{)RCs|wBX#cB? zf@H_C;~X=H4K5aL*c1Y0(~R40DkzWuwhd?{s3qm(&Q`5jwV5Ju)eQktT%J#fJuvEH zmEivHA?pmekly~)J%GjcCQn^EdFr!NT?4LNr4V>(?% z;pjL^e_9WLY&l!%pHY@G0Y+HlI1s*F*W8vJvA(^@Wtjxy z83ikK1h63HKkUcB@XgQO7$c!xsN#A3^aK^Oj5U+M#6lqQ4{)~e6$ys@mjhE$JL&dd zmF2OrA+L^F;oGdr^)!9${;C+0om>j8u1|FjuKD5S((9Dms6SbWI)BjYc2n6PGQ2l9 z-0^{i31c(!9pju8QkRWc4VFHc185j7Fi=otgSZORtyz_I5f(Rs`xFFGWhH28%2!n$ zSYjzNva4pW2|9y&XnRV%Z8D4b7KiU-!1=CTUOK5O<6#oe5+4nJLh@bia2t|YYYAgn zxFOI8?1#%0m!8zNjQJVp>vYE~ptWVhqIripP+(Nj)_ivX4O+ByuusT|BDEI4@dxPG zW=l8h=I9?@xNx(Iyx5KA0FeT_aEmCB*C`-dse)Hd=@>+FSq)PiqqEE~)2t2EQT^psTGFOM( zM1bdyD*LKjg`&2jV}ViM?#{9@aWv|XN?h!LuI;hRWD}M=BUongW}9LndcvezfO&V= zRQG2zYTiLe>Pq~S|6bMb8i$@xu}V`dGHeHuKbSNk4RGS09ksHYAl251b9U5%%#Mu1 zKBynh2Ia{yA>`9v3D4U!C8>)i--D}iU_C>uqhvQgf9vZ7P8$M#W2N`9LcYw&C=JNN z)JB2|osAVS5fd0id4ffJEr>_wJ(nNT_X!nsd^t5e(kZ-JE;{_|h`d3wo27!3T627t z3je(JXD<04LP^8miMFjlGjhTunvtiBA3aq;Sh$Ns8|P;n7;iZW`q(dJ_pdHXyplXV z>Zj4^h6A{3+XJDDRI(6Fa{apx2}gHL?Gj+Wye=Z**H^qe^*$>9wRQUGrPx2+OvibM ziR|si&=T^Va*0%q6EwWYHM2YPOVTKzhWHJ+)!Jikj{cVl;l!jD>wj)TXxd6xm|FU@ zo!6TweCcchadTLBK@2O`>e!Gz~Ftz{GLN11csWe85cA9{RB!ypXsPuIJ@~m+G>K(l(#>I8_oT zA7xjbc(SU=zv8`ox z+6D)q^7*kdY*dN~bjddggWZ zoI}Q&aT$Y?D5ThTORewx=1I5XqeZOc0~T(hj9o5=(aZ*99D9ceHIB^3cZI2+y1CA= zWsra0N+jd_;sUVuA5_!nE_xT@pksp*`W%Pm&-SyS^&Wz0bjLIjU!^jT|Arj<;L`~H zZ36ADu-4kFqDeouC(~W=o`r|3S>3J#2%!%(u48K8c00cRThvVzRXNv}`!DPl zV!D9olN*j5p{JEzl$n~s(#V3D9XKhYTk>>_J!=zXp-oW6c?%h3KvrkoH z3w*6rRmlxare2Pdf;wq^bZNqt@KXb8>h7PEqocOSx{jLb$yLH+yV>^X+Tsd0O5Xz?8ciA7 zh#fZ+#q{3t6mO_hNJ3#ym=*d{&I=}We9NHm>e72=(;_C-B@xR{I$sf>=;YDbg@ z3Un}d@m?D=>O^}aP@_$Gws8Q$S73l=8EJB9s1ns%wjzMY4Gb+#SCWS~ED1Fg_^JLL z@HyerQFjmzw3p)Ho{e`#zgY@2r#n0?m1gKY!rzEY_P#)~P9T{@*=2IeU_84|&KE5p z#y|QkcaMkGfkNeHzI!5+TCjMQs42FGi(WWo@j(rgNq#SyR+Z#R!k z(ryHsFXr%CC?a~*H}&H0=xpS|>ecR^afgLSOe{0g0I7!bIW8>5*m6=8OV;Oh8bmu< z0vAXqz_NxXD{>nkTs>~)Ry)CNH$^jwky{pR6m7^mshTPJUG!s_Z4atE;wT4rckKM) zjwekog>*^}d+oHLuYEE>S*1`b9@ee+?_3L1`PMvTxbM9jGelM9^N2HNE5A1X-LGY8 zLyiH~n=&(;YX0J3kggips~mIEfH4{-i98n~9^f9;?fe1TVg%)`7a4~rZb$SUzY`e>0!TT`!u z=wu;x#(_Deb#)XomlEjG6NhQoJzSUfdiw_Y)Y|I#s^FP2+>s1$@xYX9qx;!0{+*>3 z&2j8gZ7y;dXQtU%bW{e)nTU~Kc=#>AR;&%)^t67>!nD)!^tMkp_zioS)FrOvVrHcV z62>bw_ia6iIHQTB-41|u&W_!4)PSci_h5Y#V`4*B{3+vP!q=lBrR|{CdZb-qp&%hP9JrR}UWCct&Zd^9_d1!@CzhWY`3|)p z0m|o%VDz6~T>{SbEUet6{MeffD@BI;HmFC-e;P+zZh=K-HQ~5);}=j5PWgAIWtHhVBVAv zRPpdW7(axl(O!~mBug@bjA+Gdsg~`>Hc?JbCng<5^U4v$1eT|Nf*j!2>`1Nmu4a6x`@cvS%^`^4tv=!cjQTZL>Gfw zpEz4s>#GMEMAAlgF86PQ#4HtwPNg{_nL@b_#k(+HNX5Y-|kYF3w|qi1o+BAWuQ2H6#jd4@8`DHJ}Rj zOgtsJ8y+q}xo4(vz`5z$@T>C$n*{MxL?jJ`)-1s$;WtpGy^EjWMK#Y377f*KJe{6A zOS8#l{$-6}rP>xdn!40}EZiLl!^yScy~Q3zlS8ywOBrh=Q)3B5zNP^;vE|LC%_&XM zro*M|S<=gTS>1~;z`|>vS@@dgVm3jGt=Q;2gWi7vcH6o-yt8$8Y-X*AIkP!9XkY~c z6BWoXS4j|FBnL>CR1qM2X?@DUPciaiU`UxO9}#a32>?Bx_kmL_@L`C>f(ev^0cMA8 zV9{qN>D`pAUV%?wr9wTK;qTs8N1!qgGaL8dOd)kt4q0oGAYt&;_BVyjcovleskox}`S-C~2#jpqSKjd{%h)Ds z6IX~r+63ph9|h7TNoNaEC2IP}$n|4;li}USIkc?{PaWc;Dih(gu4`=k4XdjioKeN7 z_<$Qp8J$mqmB1yi37K2QX11N7)sqEDS}q_o>kPVDiu)CP#1Jl28dM}Gbw*wd zLl>KR3ckFvS+U!T%miu`CshbOH3OV=PtBpBG!E&yn0nw((nl23^qbLxPi<5^dg$5e zv=R|GYTG1DbHXP+h``7ydT;U+#^NnS9T}UgEJi5v-Kq5*L)LE|vVKo8=Py=?O2#l( zSL)#+!|aZnGZcjT?&S$YP(5Au*Yqnzcv;0z->-WwR{N^a)B=^VwR%XZcHG4c9z;f# z3cedu+$F}uDn4kez{_lNoxWLh%bTta(7>%K_M;%AcFU)VK&4AatZu5a%GbaC;`u0p_)EcKl~>kjW=FT`c7t61_A_F+5E96a%BCJVZqd&lzN1H~lB6xa8&bI9xPz46*n0-Q%ga3fI2 zeb4T=9Na=WDdGSIEta-AMd$3vqW?T+@yFz>qK!(EtCaught!~YRZbH}imb~RiwFz^ zYgZOD*>M~(jI^3^en%fVv+utV)ylT;uHBaYn`)u7{c?EciE}G8fu`#Ml7M z2%jb^FdoqitRR5UKu$ zshj)AQZsX2YJ_TO~SdL?i)GT`Yh4& zi(;Zz6l?*k8|S&#x~LvkOO@(TbPpA4V@TJ5v>kOe=(uH>`TdV+2E{*MO<}4>6Uy7M zxq5ZDPw-IoxJt>tBDN^(h(AbjCuAgR=_ZG2>42IKDET&P3#G(XJ5TM2YjK^yVGm}?UnZ4U`hHg-55xX%J45V?)*Y^hvwnKCeqM8bAIj_ zP~5*eT-)gxz-poPTho|;XRkt$5;l>Wv^#+TZUvWeT}*^*eN>kz08)fHbMntA<5rE`%d=t2 zo`3%Ncii}~WEZ9Klp{9KoShcOsyeLcLKZ@47xwpa#eJ1jM0|QGvxtM8Z`d_z$1aQa z=x$SAo7{GKxwD>*gEh&Ms7ltiXWOw${>cxMz!e?RX8R2&^Pn7>!cj@R0`*%ybxnQP z;vF4x2+BYV-D3LzUCF&AhouaY^$zpMioQl}&4+uOX9Pg~XxVwr^cW}@>M)+siaQ*J z0X=-;e*(wJsz+*GvO=k!psnRz-S61S4YkCHmtuA(^ciTAx<8ggE>!a_l z#`di9ud+b>OKQ^Mr@I4{s|B%YInJ+8gsSdjSR0;qpK|$AVzBO5ZbFYOqZjt4P{PJ2 zKb<+6U3sHg);szL;A5ff&g$KFu1e8pUgD)VyWg- z!GI6LHCHU>h@xCGOdfIzeBMG}J^`Vq0#HYhieYj{NhTcAf)F>Ayo|Jp$kONL@BG~R z6$_Nx!iv$PWsTy8!iObiqsijDdZ`!iF{WqUSBw1Kp>v^jrDXrZ{xP^gf2&&fL%B&@ z^%dxpL77EevZ<>(P2U7La(}brU}{f^n>)eX`F2n=1i>PvTa%P zTdKQsNQWvV)CyK(ipXLbjz^N0jB?Cb30wI*p~wB_4(9Zq50#LaPeYBqTcJ7#VY@W} z6GAbLGIq(>$`csflnChLG%Z42It^>6e=I1>`u>LnUa~&nkgRR@KB#p zky>H|H%9#XBb0O2`6^Ul@(|axE60d+o(UtgWiO}o(eF#^&y;n!L(;g5e?NJg(JLr= zj~0RdhJ_{01Eg{i1=~Ra6j-I^d(sp!eFo{ZGvtGziAlC<+F5jdDH*f*y%&8b<^*}G z8y5=3b==1`&cmn+rD%C56$U8quwR#ZQX)~%j4H$-GUpD2stCy&_KiI3ivLJ~b)|y( zQA&8>VY5P3?v$`Xf=M9VM_Mgy^nc1Uze*jp-%@#ZiHxQ=PGgoXVa)OM3Wwt`adwg# zFMaP2(00?i`FLn|L2Ai+v>RpJKC(2JYe45n_Ak>GXki&F+l#}ep1=OJbJzc{6eI=; zr(wpRina`IpwM4Awsq=iCpB0%8z@IybOq#LpHV!I>le`xl5xQc{e(N#@96C7t{xxp z!F32Os*BOIml=fO_1)9NtkS)j%qo()?T<&R55E#$KCDgfFC6VBm7jQ}P`Ph53EAEr~PJOAc0wOjWTPUvW+9R${3 z;`a?**QmB-_BWVCp8dA9lo^lfpku!A(hJWJAq5hM_Bjrt_#oxgWfT@aL~R-);MRa; zJ>=?qI&?lT|44I_MUOlJ70vu74`2NJ;mtZYCY-uk^eDyI9{Vxh`Nxr< zWX_!igTgAdr=ktPulHIPt*u?Wc0?pqJs_fz@i@w{o# zoi-Nan5)$WUET4|P@?)uld(xJ7W;a5q%I|mk@){1=Kki-PoC6aCIZLm^^5H%|9Qe| zIFWD3S6bos50(7t9xCsa(P=^;O$%hIfcjqqPLX7|O!L)z>p)q^>`5?9>q4sekgp-q zRiN~9z0{`0&7$U(C;|KUKaVOlrtiG6IL#8IEtj z@&-H$XVr75ag*d5r~0-$DZ5p>rN$%R#1n-z6#DS;@jY~x%TzK-H$sRT(@G)gM<+gI z)!J*%jajRg=Xbtb3KCF;bn^Vephe67$DqZCngb$8!UVV>f+VDi&6+-gI|hV8wLSR8 zSb4}1=NfEtQOB7|06_iq;^`+US!$U=sSF$yYm0lAyOv(vyOtdl0Axyk5|#FsX}__{ z9~}J0NI)xqB_p&%=z4(KyW!n&Nw@8UdGlPH)AC8puqwWWx0oKTn}lt+i()pG3LwQc zrE-;{Pdl)9Axd%XzG7QlO>(-B3WAw;VkzQ*=d(0p7PlSQ1%O}p8j^KmoG~Mlydr@o zbe)hDMIl)rN%2DNd5fjUiEPT+9MOo%0v7+ZQ*DKGMS&sXSc(z{!TE$teXL%NLT5G2 zNiM6}t1{0OMth2V5d{@ImplP)C`QVBcG+9X=R;G;tXVE*G9gll2wbaN8MlM+K0-nM` zG!xIys5{$e|S6g&rLrq~SQ2zw>BQ$@{|m2<@d zz&-?~=q&<1qLXz%Cvgd41No}+$KEWS+`X(A?h@H^LT=FR-OXcc$dut>q&l>LzY|4A9ds5-+Lt1l%P_Mo0%R9 z0Ho5OJqJvrNe+7-)ifnP4qOwpdNMQt%BRrKNHYX_8Itw(i=%FfsoyxnkL=nnq4ph& z6Th_j(yi|(Gg+>*_t&%sSYK)@oCqAIYvOtt92OcP%} zkNbjlQixDK-i%F16jOrq|JhC9+;-mJ58wJ?ZhMk2 znvD%8zw&9bxg9I#Uc377#p@nlyvs!tZ_ODxbx&K&t+XP4jE>g@k2V3>yiZ516u<7{ z+xB0-VSi=zS?-SNc>nS(>4l8(nva(L|NP>iU~{9kEsk6FI30M~i=#Ww50*_I=XKIu zx-%#v2m=`~$D>1&Sn@*&dHLgb!u8BVmm#-YcFP8d{Nt96Rr$I0l*KQcGIh{W&xU5{ z1SWRbzsJ_2>(tH9URZOuXDCu*zY*|KXYwTDuZ`X;{5i$GnC!TlnEjvR(+6V>$2vgK zIzWg5Z}XzVr|}3E{B~arr<21Qnh$4Q3Oq9Xh)Js9bz6q-vq5HJHz??kY-w=vx5Aw7 zH38}=6t62sBq?XdiB?a2JFJOz?E1!zcfT=rDx@ctS6x4}Fy8X&`nO*V;Rf;IMHIsM z!>Wl7`6Gt`b>IJaug5~Pmy|fcVQemeO*sCz3bycm=5ycU*=KC}MKdFyXBt;BQx_UevjS6_Q% z*Z%99k8Esy$S;25p;j&_lE(d&hGNG2O8hvLOSNfP+`N`^?pX?Lj#w`sigAKM?sGC3en%_*`^Oi~f=exC?)NT>Agt6+a)%M0yx>aC~clIC-_2QVF&oQ?YF!fPH_7}}(Gan!(!qBbn6ypIqF zL}o(><>5x+l22^lHm=_~ZvBt=w@=~kckKCMF2cmOF%Zi|eASm?$jlV?@o4<-zC6Ne z%Ph|Q_TKtq?|5Tcf&Z!PA33@IYPs%~4XbzmZ1wJW;pafTa_x@Rx&cfzZ@Vn}v0~_Z z53;{uQB^^2$7gnQuHP|+2~`Iw3K*eY+2VCF`(&^}T-4dc%i?m4ZeK9EeQ}DX8mE7n z{hJ+6RCiRho&t>-2fpYgiiIa*!`#9y>8#1X0Q8U{qs`ah!65%Axc;0`9=U7o8=(l& zS!l?S8!Rwtr0lax7e1Tee1MoIe2)2drp}LDp>yVTza3k@j2`@f(=vizkd;av$=IK`7&j}(*Y9^D4T+0G0(@n)a)&G}v zo3Abjnm(uM3-J}}5-Krw*Z-Wm>*PvX3*T!AfFC~O@NVQeYM94mKKGQBZ*}@yjpo=u z11NKVOi_Om?+F|=(*fb|p6!d{?-b-l`tE4%Yn2*EM{3Ta7G70=6SYPB>I13KWdAYABK6T)wV(RtdePxqoxdAzcRj zWe*GS7{$Ky_OVS4*xd=(772qD#oz+s*U4?wTkRtw3;#7?g{A7~z4%@81_+`U_M*yJ z{Ew6in*oQs?-~zxptoyn3T_>nJ`%)Cbj3+0r<5R!@=H6=4?MfzCcLd4+Es@8O^sdQ zgCFE&N6c?mY7!#8lN9FEKbJ34P#`e6Dy|2AM1z;vL|D+43!I45$L3i{XzGCA!D zX__0IRf2SrvnP_)6=9~>4S>wY75(;B&M{;e%gJMu96kz01wLqnGw!K!j`N{-THMA8 zBfZoXgp_ktuJoAn;w?Yw)@VP_)!%Wg$I4uNEx1ThF0RfHQBVq0b|J#S7)*K&jvY1P zw0@Lsu~t=@@xW;batsjp@GPnlVpNVQ@{JA<8K}jhn!4nupG(&fxjp_?3@X2i-Ob(2z(X&J*5*!){ zuAEc%G~D#QOZ5P9^!F~9CTL&#wzQFQTX@{$%+=0wO&7c*C)O9EKNc_A=x`pP*xY zkS*vCw2cT;ahbzFK5@MJZt-fsFKQaaRgQ~{L+pWY);w)Ales=*$ zas0dgI)1OEVKh?4H_tDg*lqFxRo(sNd>*)U;4uqzTs`r`6KBjd8}r z)lXppP?8(F*<;fr10WH8RrcO$>L9O8uIMXIWlGjkFm6y2$N0!IHK!Fmm34(NNHw5YTdv;iwcm>xqILrRR+}!~(rXkeq zcOvU6V}4b}(k*a4FVOdy=+y78Ult+OS0T7l%jc`!+Vb6uf)E z^0@0|ziFC}a&#qOxjmEfYbF^4Y9SJ@6MBYCZgQ5}CoctJvgPeMJe1SgTK?Z$Mg=mI z6Si*ZFhkiHJe#LQyt(%&!iIM?{_uU(`LGwGyyZz8+-CjqTw2ADe)W$o>e@Sr0J7}W zr{#7gkLRXddNJpMF!BT#G*-zXBTz}uDD9gTiqn1Cd^sg*(?~_XH0Fwb$C~SC9P0jZ z)3tv&t*v@fMU$YVeJmK@1L6{lsxD(m)qUE%PNyXw2G z**t%E=QpuadjvH3|2kfVupD`DfCo{9h1Y217(`q3>(P()ilQTVK)Oo?>L@w>sQt}Y zBDukAxQWM>2r$IVMTcZ-n&YG^e$+ZMNjS-tRnv3pe&fu&U7=>FfYAMRk2z?mu z8|(1pR)`{7L`p15~$NS6y%k zU)C0bv4p0@G$#;p$*}h>;onsk&7M5vrpeK4B{Xy3u$F(2i`y85 z8M_15DP7z|z%N1POiM=z#OJQkuIW-TF2B?DsZv+JD`10!R-`7o0-ad*j~`=le2j@h zw@s|u9!~)1!my^E!wLx{ikl#sLqT=4+=LL@in_N}_-~(rSU(u8VG7Oo&)wDUkQVyb zZvDKq?l-i@t3h@y=groy4CY<7XR!$_e%U)!#!(Z;2Pt4WklcyJHVdO>ZX?*lxk-oF*`F_UQyH!T{Bh4T}%XA@fbILe5l)6=dODy8{+8A zI&~eIKh@*^!%(#l1l|7I?ART27&+<1iKp4pmPV6^m4?-Dr+wcQs9v~p{-4NHu1W?T zMpSNV`is=$M*jU?*TIkZs9zgkSh;pSzj)#M09S_JYSVR%UpG}TP117FoWMAaEAErp z$im#+v*zwTxqKZ*?keuj+v~f$@>{nD=JxQovwL6|{p<~oJ~=JIuV<9;conIV&UO8!W`=STB=Krel<;$-`G97(J z$w0FE7yW)u!_7}u{?&^2xU2r-Wj3hd?fFKFpZi?7_v`*&#q&S-U=>&NgF99c^dE#` zx2M^<=Ywag@{)XzJSwlo2kE}s)%f5X>y}DCNFEi(tTo67$)nrj@[1219, 1289, 0]"] + 29["Segment
[1299, 1465, 0]"] + 35["Segment
[1475, 1560, 0]"] + 38["Segment
[1570, 1791, 0]"] + 42["Segment
[1878, 1964, 0]"] + 45["Segment
[2253, 2260, 0]"] + 67[Solid2d] + end + subgraph path18 [Path] + 18["Path
[1219, 1289, 0]"] + 31["Segment
[1299, 1465, 0]"] + 36["Segment
[1475, 1560, 0]"] + 39["Segment
[1570, 1791, 0]"] + 41["Segment
[1878, 1964, 0]"] + 48["Segment
[2253, 2260, 0]"] + 68[Solid2d] + end + subgraph path19 [Path] + 19["Path
[1219, 1289, 0]"] + 30["Segment
[1299, 1465, 0]"] + 34["Segment
[1475, 1560, 0]"] + 40["Segment
[1570, 1791, 0]"] + 44["Segment
[1878, 1964, 0]"] + 46["Segment
[2253, 2260, 0]"] + 70[Solid2d] + end + subgraph path20 [Path] + 20["Path
[1219, 1289, 0]"] + 32["Segment
[1299, 1465, 0]"] + 33["Segment
[1475, 1560, 0]"] + 37["Segment
[1570, 1791, 0]"] + 43["Segment
[1878, 1964, 0]"] + 47["Segment
[2253, 2260, 0]"] + 71[Solid2d] + end + subgraph path21 [Path] + 21["Path
[2339, 2374, 0]"] + 51["Segment
[2339, 2374, 0]"] + 65[Solid2d] + end + subgraph path22 [Path] + 22["Path
[2339, 2374, 0]"] + 49["Segment
[2339, 2374, 0]"] + 72[Solid2d] + end + subgraph path23 [Path] + 23["Path
[2339, 2374, 0]"] + 50["Segment
[2339, 2374, 0]"] + 75[Solid2d] + end + subgraph path24 [Path] + 24["Path
[2339, 2374, 0]"] + 52["Segment
[2339, 2374, 0]"] + 76[Solid2d] + end + subgraph path25 [Path] + 25["Path
[3843, 3913, 0]"] + 53["Segment
[3923, 4089, 0]"] + 56["Segment
[4099, 4184, 0]"] + 58["Segment
[4194, 4415, 0]"] + 59["Segment
[4502, 4588, 0]"] + 61["Segment
[4877, 4884, 0]"] + 69[Solid2d] + end + subgraph path26 [Path] + 26["Path
[3843, 3913, 0]"] + 54["Segment
[3923, 4089, 0]"] + 55["Segment
[4099, 4184, 0]"] + 57["Segment
[4194, 4415, 0]"] + 60["Segment
[4502, 4588, 0]"] + 62["Segment
[4877, 4884, 0]"] + 74[Solid2d] + end + subgraph path27 [Path] + 27["Path
[5095, 5146, 0]"] + 64["Segment
[5095, 5146, 0]"] + 66[Solid2d] + end + subgraph path28 [Path] + 28["Path
[5095, 5146, 0]"] + 63["Segment
[5095, 5146, 0]"] + 73[Solid2d] + end + 1["Plane
[1170, 1208, 0]"] + 2["Plane
[1170, 1208, 0]"] + 3["Plane
[1170, 1208, 0]"] + 4["Plane
[1170, 1208, 0]"] + 5["Plane
[3794, 3832, 0]"] + 6["Plane
[3794, 3832, 0]"] + 7["Plane
[5046, 5084, 0]"] + 8["Plane
[5046, 5084, 0]"] + 9["StartSketchOnPlane
[1156, 1209, 0]"] + 10["StartSketchOnPlane
[1156, 1209, 0]"] + 11["StartSketchOnPlane
[3780, 3833, 0]"] + 12["StartSketchOnPlane
[5032, 5085, 0]"] + 13["StartSketchOnPlane
[3780, 3833, 0]"] + 14["StartSketchOnPlane
[1156, 1209, 0]"] + 15["StartSketchOnPlane
[1156, 1209, 0]"] + 16["StartSketchOnPlane
[5032, 5085, 0]"] + 77["Sweep Loft
[2899, 3000, 0]"] + 78["Sweep Loft
[2899, 3000, 0]"] + 79["Sweep Loft
[5671, 5772, 0]"] + 80[Wall] + 81[Wall] + 82[Wall] + 83[Wall] + 84[Wall] + 85[Wall] + 86[Wall] + 87[Wall] + 88[Wall] + 89["Cap Start"] + 90["Cap Start"] + 91["Cap Start"] + 92["Cap End"] + 93["Cap End"] + 94["Cap End"] + 95["SweepEdge Opposite"] + 96["SweepEdge Opposite"] + 97["SweepEdge Opposite"] + 98["SweepEdge Opposite"] + 99["SweepEdge Opposite"] + 100["SweepEdge Opposite"] + 101["SweepEdge Opposite"] + 102["SweepEdge Opposite"] + 103["SweepEdge Opposite"] + 104["SweepEdge Adjacent"] + 105["SweepEdge Adjacent"] + 106["SweepEdge Adjacent"] + 107["SweepEdge Adjacent"] + 108["SweepEdge Adjacent"] + 109["SweepEdge Adjacent"] + 110["SweepEdge Adjacent"] + 111["SweepEdge Adjacent"] + 112["SweepEdge Adjacent"] + 1 <--x 15 + 1 --- 18 + 1 --- 24 + 2 <--x 9 + 2 --- 17 + 2 --- 22 + 3 <--x 14 + 3 --- 20 + 3 --- 21 + 4 <--x 10 + 4 --- 19 + 4 --- 23 + 5 <--x 13 + 5 --- 25 + 6 <--x 11 + 6 --- 26 + 7 <--x 16 + 7 --- 27 + 8 <--x 12 + 8 --- 28 + 17 --- 29 + 17 --- 35 + 17 --- 38 + 17 --- 42 + 17 --- 45 + 17 --- 67 + 17 x---> 77 + 18 --- 31 + 18 --- 36 + 18 --- 39 + 18 --- 41 + 18 --- 48 + 18 --- 68 + 18 x---> 78 + 19 --- 30 + 19 --- 34 + 19 --- 40 + 19 --- 44 + 19 --- 46 + 19 --- 70 + 19 ---- 78 + 20 --- 32 + 20 --- 33 + 20 --- 37 + 20 --- 43 + 20 --- 47 + 20 --- 71 + 20 ---- 77 + 21 --- 51 + 21 --- 65 + 22 --- 49 + 22 --- 72 + 23 --- 50 + 23 --- 75 + 24 --- 52 + 24 --- 76 + 25 --- 53 + 25 --- 56 + 25 --- 58 + 25 --- 59 + 25 --- 61 + 25 --- 69 + 26 --- 54 + 26 --- 55 + 26 --- 57 + 26 --- 60 + 26 --- 62 + 26 --- 74 + 27 --- 64 + 27 --- 66 + 27 ---- 79 + 28 --- 63 + 28 --- 73 + 28 x---> 79 + 30 --- 85 + 30 x--> 89 + 30 --- 101 + 30 --- 109 + 32 --- 83 + 32 x--> 91 + 32 --- 98 + 32 --- 104 + 33 --- 81 + 33 x--> 91 + 33 --- 97 + 33 --- 106 + 34 --- 84 + 34 x--> 89 + 34 --- 102 + 34 --- 108 + 37 --- 80 + 37 x--> 91 + 37 --- 96 + 37 --- 107 + 40 --- 86 + 40 x--> 89 + 40 --- 100 + 40 --- 110 + 43 --- 82 + 43 x--> 91 + 43 --- 95 + 43 --- 105 + 44 --- 87 + 44 x--> 89 + 44 --- 99 + 44 --- 111 + 64 --- 88 + 64 x--> 90 + 64 --- 103 + 64 --- 112 + 77 --- 80 + 77 --- 81 + 77 --- 82 + 77 --- 83 + 77 --- 91 + 77 --- 94 + 77 --- 95 + 77 --- 96 + 77 --- 97 + 77 --- 98 + 77 --- 104 + 77 --- 105 + 77 --- 106 + 77 --- 107 + 78 --- 84 + 78 --- 85 + 78 --- 86 + 78 --- 87 + 78 --- 89 + 78 --- 92 + 78 --- 99 + 78 --- 100 + 78 --- 101 + 78 --- 102 + 78 --- 108 + 78 --- 109 + 78 --- 110 + 78 --- 111 + 79 --- 88 + 79 --- 90 + 79 --- 93 + 79 --- 103 + 79 --- 112 + 96 <--x 80 + 105 <--x 80 + 107 <--x 80 + 97 <--x 81 + 106 <--x 81 + 107 <--x 81 + 95 <--x 82 + 105 <--x 82 + 98 <--x 83 + 104 <--x 83 + 106 <--x 83 + 102 <--x 84 + 108 <--x 84 + 110 <--x 84 + 101 <--x 85 + 108 <--x 85 + 109 <--x 85 + 100 <--x 86 + 110 <--x 86 + 111 <--x 86 + 99 <--x 87 + 111 <--x 87 + 103 <--x 88 + 112 <--x 88 + 99 <--x 92 + 100 <--x 92 + 101 <--x 92 + 102 <--x 92 + 103 <--x 93 + 95 <--x 94 + 96 <--x 94 + 97 <--x 94 + 98 <--x 94 +``` diff --git a/rust/kcl-lib/tests/kcl_samples/herringbone-planetary-gearset/ast.snap b/rust/kcl-lib/tests/kcl_samples/herringbone-planetary-gearset/ast.snap new file mode 100644 index 000000000..63325ef01 --- /dev/null +++ b/rust/kcl-lib/tests/kcl_samples/herringbone-planetary-gearset/ast.snap @@ -0,0 +1,6106 @@ +--- +source: kcl-lib/src/simulation_tests.rs +description: Result of parsing herringbone-planetary-gearset.kcl +--- +{ + "Ok": { + "body": [ + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "herringboneGear", + "start": 0, + "type": "Identifier" + }, + "init": { + "body": { + "body": [ + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "pitchDiameter", + "start": 0, + "type": "Identifier" + }, + "init": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "*", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "// Calculate gear parameters" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "addendum", + "start": 0, + "type": "Identifier" + }, + "init": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "deddendum", + "start": 0, + "type": "Identifier" + }, + "init": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "1.25", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 1.25, + "suffix": "None" + } + }, + "operator": "*", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "baseDiameter", + "start": 0, + "type": "Identifier" + }, + "init": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "pitchDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "*", + "right": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "cos", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "pressureAngle", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "tipDiameter", + "start": 0, + "type": "Identifier" + }, + "init": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "pitchDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "+", + "right": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "operator": "*", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "herringboneGearSketch", + "start": 0, + "type": "Identifier" + }, + "init": { + "body": { + "body": [ + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "helixCalc", + "start": 0, + "type": "Identifier" + }, + "init": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "acos", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "offsetHeight", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "*", + "right": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "tan", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helixAngle", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "tipDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "// Calculate the amount to rotate each planar sketch of the gear given the gear helix angle and total gear height" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "herringboneGearSketch", + "start": 0, + "type": "Identifier" + }, + "init": { + "body": [ + { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "startSketchOn", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "offset", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "offsetHeight", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "offsetPlane", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "XY", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + } + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "at", + "start": 0, + "type": "Identifier" + }, + "arg": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helixCalc", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "length", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "baseDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "polar", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "startProfile", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "startRadius", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "baseDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "endRadius", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "tipDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helixCalc", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "tag", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "seg01" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "involuteCircular", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "endAbsolute", + "start": 0, + "type": "Identifier" + }, + "arg": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "160", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 160.0, + "suffix": "None" + } + }, + "operator": "/", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "+", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helixCalc", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "length", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "tipDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "polar", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "line", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "startRadius", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "baseDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "endRadius", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "tipDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "argument": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "4", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 4.0, + "suffix": "None" + } + }, + "operator": "*", + "right": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "atan", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "commentStart": 0, + "end": 0, + "left": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "segEndY", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "seg01", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + "operator": "/", + "right": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "segEndX", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "seg01", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "-", + "right": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "3", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 3.0, + "suffix": "None" + } + }, + "operator": "*", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helixCalc", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "commentStart": 0, + "end": 0, + "operator": "-", + "start": 0, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "reverse", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "true", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": true + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "involuteCircular", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "endAbsolute", + "start": 0, + "type": "Identifier" + }, + "arg": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "360", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 360.0, + "suffix": "None" + } + }, + "operator": "/", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "+", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helixCalc", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "length", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "baseDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "polar", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "line", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "instances", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "center", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "elements": [ + { + "commentStart": 0, + "end": 0, + "raw": "0", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + }, + { + "commentStart": 0, + "end": 0, + "raw": "0", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + } + ], + "end": 0, + "start": 0, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "arcDegrees", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "360", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 360.0, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "rotateDuplicates", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "true", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": true + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "patternCircular2d", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + }, + { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "close", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "tool", + "start": 0, + "type": "Identifier" + }, + "arg": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "center", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "elements": [ + { + "commentStart": 0, + "end": 0, + "raw": "0", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + }, + { + "commentStart": 0, + "end": 0, + "raw": "0", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + } + ], + "end": 0, + "start": 0, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "radius", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "4", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 4.0, + "suffix": "None" + } + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "circle", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "subtract2d", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + ], + "commentStart": 0, + "end": 0, + "nonCodeMeta": { + "nonCodeNodes": { + "4": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "newLineBlockComment", + "value": "Position the end line of the sketch at the start of the next tooth", + "style": "line" + } + } + ], + "5": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "newLineBlockComment", + "value": "Pattern the sketch about the center by the specified number of teeth, then close the sketch", + "style": "line" + } + } + ], + "7": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "blockComment", + "value": "Create a center hole with an 8mm diameter", + "style": "line" + } + } + ] + }, + "startNodes": [] + }, + "start": 0, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "", + "", + "// Using the gear parameters, sketch an involute tooth spanning from the base diameter to the tip diameter" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "argument": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "herringboneGearSketch", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "commentStart": 0, + "end": 0, + "start": 0 + }, + "commentStart": 0, + "end": 0, + "params": [ + { + "type": "Parameter", + "identifier": { + "commentStart": 0, + "end": 0, + "name": "offsetHeight", + "start": 0, + "type": "Identifier" + } + } + ], + "start": 0, + "type": "FunctionExpression", + "type": "FunctionExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "fn", + "preComments": [ + "", + "", + "// Define a function to create a rotated gear sketch on an offset plane" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "gearSketch001", + "start": 0, + "type": "Identifier" + }, + "init": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "offsetHeight", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "0", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "herringboneGearSketch", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "", + "", + "// Draw a gear sketch on the base plane" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "gearSketch002", + "start": 0, + "type": "Identifier" + }, + "init": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "offsetHeight", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "gearHeight", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "herringboneGearSketch", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "", + "", + "// Draw a gear sketch that has been rotated by the helix angle" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "gearSketch003", + "start": 0, + "type": "Identifier" + }, + "init": { + "body": [ + { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "clone", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "gearSketch001", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "z", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "gearHeight", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "translate", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + ], + "commentStart": 0, + "end": 0, + "nonCodeMeta": { + "nonCodeNodes": { + "1": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "newLineBlockComment", + "value": "Loft each rotated gear sketch together to form a herringbone gear", + "style": "line" + } + } + ] + }, + "startNodes": [] + }, + "start": 0, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "", + "", + "// Draw a gear sketch at the total gear height that reverses the angle direction" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "herringboneGear", + "start": 0, + "type": "Identifier" + }, + "init": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "vDegree", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "1", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 1.0, + "suffix": "None" + } + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "loft", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "commentStart": 0, + "elements": [ + { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "gearSketch001", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "gearSketch002", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "gearSketch003", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + ], + "end": 0, + "start": 0, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "argument": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "herringboneGear", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "commentStart": 0, + "end": 0, + "nonCodeMeta": { + "nonCodeNodes": { + "9": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "startNodes": [] + }, + "start": 0 + }, + "commentStart": 0, + "end": 0, + "params": [ + { + "type": "Parameter", + "identifier": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + } + }, + { + "type": "Parameter", + "identifier": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + } + }, + { + "type": "Parameter", + "identifier": { + "commentStart": 0, + "end": 0, + "name": "pressureAngle", + "start": 0, + "type": "Identifier" + } + }, + { + "type": "Parameter", + "identifier": { + "commentStart": 0, + "end": 0, + "name": "helixAngle", + "start": 0, + "type": "Identifier" + } + }, + { + "type": "Parameter", + "identifier": { + "commentStart": 0, + "end": 0, + "name": "gearHeight", + "start": 0, + "type": "Identifier" + } + } + ], + "start": 0, + "type": "FunctionExpression", + "type": "FunctionExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "fn", + "preComments": [ + "// Define a function to create a herringbone gear" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "ringGear", + "start": 0, + "type": "Identifier" + }, + "init": { + "body": { + "body": [ + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "pitchDiameter", + "start": 0, + "type": "Identifier" + }, + "init": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "*", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "// Calculate gear parameters" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "addendum", + "start": 0, + "type": "Identifier" + }, + "init": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "deddendum", + "start": 0, + "type": "Identifier" + }, + "init": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "1.25", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 1.25, + "suffix": "None" + } + }, + "operator": "*", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "baseDiameter", + "start": 0, + "type": "Identifier" + }, + "init": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "pitchDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "*", + "right": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "cos", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "pressureAngle", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "tipDiameter", + "start": 0, + "type": "Identifier" + }, + "init": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "pitchDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "+", + "right": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "operator": "*", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "ringGearSketch", + "start": 0, + "type": "Identifier" + }, + "init": { + "body": { + "body": [ + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "helixCalc", + "start": 0, + "type": "Identifier" + }, + "init": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "acos", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "offsetHeight", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "*", + "right": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "tan", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helixAngle", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "tipDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "// Calculate the amount to rotate each planar sketch of the gear given the gear helix angle and total gear height" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "ringTeeth", + "start": 0, + "type": "Identifier" + }, + "init": { + "body": [ + { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "startSketchOn", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "offset", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "offsetHeight", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "offsetPlane", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "XY", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + } + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "at", + "start": 0, + "type": "Identifier" + }, + "arg": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helixCalc", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "length", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "baseDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "polar", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "startProfile", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "startRadius", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "baseDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "endRadius", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "tipDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helixCalc", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "tag", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "seg01" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "involuteCircular", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "endAbsolute", + "start": 0, + "type": "Identifier" + }, + "arg": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "220", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 220.0, + "suffix": "None" + } + }, + "operator": "/", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "+", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helixCalc", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "length", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "tipDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "polar", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "line", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "startRadius", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "baseDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "endRadius", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "tipDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "argument": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "4", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 4.0, + "suffix": "None" + } + }, + "operator": "*", + "right": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "atan", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "commentStart": 0, + "end": 0, + "left": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "segEndY", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "seg01", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + "operator": "/", + "right": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "segEndX", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "seg01", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "-", + "right": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "3", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 3.0, + "suffix": "None" + } + }, + "operator": "*", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helixCalc", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "commentStart": 0, + "end": 0, + "operator": "-", + "start": 0, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "reverse", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "true", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": true + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "involuteCircular", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "endAbsolute", + "start": 0, + "type": "Identifier" + }, + "arg": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "360", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 360.0, + "suffix": "None" + } + }, + "operator": "/", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "+", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "helixCalc", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "length", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "baseDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "polar", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "line", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "instances", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "center", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "elements": [ + { + "commentStart": 0, + "end": 0, + "raw": "0", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + }, + { + "commentStart": 0, + "end": 0, + "raw": "0", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + } + ], + "end": 0, + "start": 0, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "arcDegrees", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "360", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 360.0, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "rotateDuplicates", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "true", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": true + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "patternCircular2d", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + }, + { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "close", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + ], + "commentStart": 0, + "end": 0, + "nonCodeMeta": { + "nonCodeNodes": { + "4": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "newLineBlockComment", + "value": "Position the end line of the sketch at the start of the next tooth", + "style": "line" + } + } + ], + "5": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "newLineBlockComment", + "value": "Pattern the sketch about the center by the specified number of teeth, then close the sketch", + "style": "line" + } + } + ], + "7": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "newLineBlockComment", + "value": "Create a circular body that is larger than the tip diameter of the gear, then subtract the gear profile from the body", + "style": "line" + } + } + ] + }, + "startNodes": [] + }, + "start": 0, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "", + "", + "// Using the gear parameters, sketch an involute tooth spanning from the base diameter to the tip diameter" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "ringGearSketch", + "start": 0, + "type": "Identifier" + }, + "init": { + "body": [ + { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "startSketchOn", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "offset", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "offsetHeight", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "offsetPlane", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "XY", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + } + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "center", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "elements": [ + { + "commentStart": 0, + "end": 0, + "raw": "0", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + }, + { + "commentStart": 0, + "end": 0, + "raw": "0", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + } + ], + "end": 0, + "start": 0, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "radius", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "tipDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "1.8", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 1.8, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "circle", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "tool", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "ringTeeth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "subtract2d", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + ], + "commentStart": 0, + "end": 0, + "start": 0, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "argument": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "ringGearSketch", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "commentStart": 0, + "end": 0, + "start": 0 + }, + "commentStart": 0, + "end": 0, + "params": [ + { + "type": "Parameter", + "identifier": { + "commentStart": 0, + "end": 0, + "name": "offsetHeight", + "start": 0, + "type": "Identifier" + } + } + ], + "start": 0, + "type": "FunctionExpression", + "type": "FunctionExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "fn", + "preComments": [ + "", + "", + "// Define a function to create a rotated gear sketch on an offset plane" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "gearSketch001", + "start": 0, + "type": "Identifier" + }, + "init": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "offsetHeight", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "0", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "ringGearSketch", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "", + "", + "// Draw a gear sketch on the base plane" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "gearSketch002", + "start": 0, + "type": "Identifier" + }, + "init": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "offsetHeight", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "gearHeight", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "ringGearSketch", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "", + "", + "// Draw a rotated gear sketch on a middle interstitial plane" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "gearSketch003", + "start": 0, + "type": "Identifier" + }, + "init": { + "body": [ + { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "clone", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "gearSketch001", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "z", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "gearHeight", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "translate", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + ], + "commentStart": 0, + "end": 0, + "nonCodeMeta": { + "nonCodeNodes": { + "1": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "newLineBlockComment", + "value": "Loft each rotated gear sketch together to form a ring gear", + "style": "line" + } + } + ] + }, + "startNodes": [] + }, + "start": 0, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "", + "", + "// Draw a gear sketch at the total gear height that reverses the angle direction" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "ringGear", + "start": 0, + "type": "Identifier" + }, + "init": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "vDegree", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "1", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 1.0, + "suffix": "None" + } + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "loft", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "commentStart": 0, + "elements": [ + { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "gearSketch001", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "gearSketch002", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "gearSketch003", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + ], + "end": 0, + "start": 0, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "argument": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "ringGear", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "commentStart": 0, + "end": 0, + "nonCodeMeta": { + "nonCodeNodes": { + "9": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "startNodes": [] + }, + "start": 0 + }, + "commentStart": 0, + "end": 0, + "params": [ + { + "type": "Parameter", + "identifier": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + } + }, + { + "type": "Parameter", + "identifier": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + } + }, + { + "type": "Parameter", + "identifier": { + "commentStart": 0, + "end": 0, + "name": "pressureAngle", + "start": 0, + "type": "Identifier" + } + }, + { + "type": "Parameter", + "identifier": { + "commentStart": 0, + "end": 0, + "name": "helixAngle", + "start": 0, + "type": "Identifier" + } + }, + { + "type": "Parameter", + "identifier": { + "commentStart": 0, + "end": 0, + "name": "gearHeight", + "start": 0, + "type": "Identifier" + } + } + ], + "start": 0, + "type": "FunctionExpression", + "type": "FunctionExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "fn", + "preComments": [ + "", + "", + "// Define a function to create a ring gear" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "end": 0, + "expression": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "58", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 58.0, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "1.5", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 1.5, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "pressureAngle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "14", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 14.0, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "helixAngle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "argument": { + "commentStart": 0, + "end": 0, + "raw": "35", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 35.0, + "suffix": "None" + } + }, + "commentStart": 0, + "end": 0, + "operator": "-", + "start": 0, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "gearHeight", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "8", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 8.0, + "suffix": "None" + } + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "ringGear", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + "preComments": [ + "", + "", + "// Create the outer ring gear for the planetary gearset" + ], + "start": 0, + "type": "ExpressionStatement", + "type": "ExpressionStatement" + }, + { + "commentStart": 0, + "end": 0, + "expression": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "18", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 18.0, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "1.5", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 1.5, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "pressureAngle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "14", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 14.0, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "helixAngle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "35", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 35.0, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "gearHeight", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "8", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 8.0, + "suffix": "None" + } + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "herringboneGear", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + "preComments": [ + "", + "", + "// Create a central sun gear using a small herringbone gear" + ], + "start": 0, + "type": "ExpressionStatement", + "type": "ExpressionStatement" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "numPlanetGears", + "start": 0, + "type": "Identifier" + }, + "init": { + "commentStart": 0, + "end": 0, + "raw": "4", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 4.0, + "suffix": "None" + } + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "", + "", + "// Create the herringbone planet gears" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "end": 0, + "expression": { + "body": [ + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "18", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 18.0, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "1.5", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 1.5, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "pressureAngle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "14", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 14.0, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "helixAngle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "argument": { + "commentStart": 0, + "end": 0, + "raw": "35", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 35.0, + "suffix": "None" + } + }, + "commentStart": 0, + "end": 0, + "operator": "-", + "start": 0, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "gearHeight", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "8", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 8.0, + "suffix": "None" + } + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "herringboneGear", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "y", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "18", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 18.0, + "suffix": "None" + } + }, + "operator": "*", + "right": { + "commentStart": 0, + "end": 0, + "raw": "1.5", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 1.5, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "+", + "right": { + "commentStart": 0, + "end": 0, + "raw": "1.95", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 1.95, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "translate", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "instances", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "numPlanetGears", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "axis", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "elements": [ + { + "commentStart": 0, + "end": 0, + "raw": "0", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + }, + { + "commentStart": 0, + "end": 0, + "raw": "0", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + }, + { + "commentStart": 0, + "end": 0, + "raw": "1", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 1.0, + "suffix": "None" + } + } + ], + "end": 0, + "start": 0, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "center", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "elements": [ + { + "commentStart": 0, + "end": 0, + "raw": "0", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + }, + { + "commentStart": 0, + "end": 0, + "raw": "0", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + }, + { + "commentStart": 0, + "end": 0, + "raw": "0", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + } + ], + "end": 0, + "start": 0, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "arcDegrees", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "360", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 360.0, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "rotateDuplicates", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "false", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": false + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "patternCircular3d", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + ], + "commentStart": 0, + "end": 0, + "start": 0, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 0, + "type": "ExpressionStatement", + "type": "ExpressionStatement" + } + ], + "commentStart": 0, + "end": 0, + "innerAttrs": [ + { + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "settings", + "start": 0, + "type": "Identifier" + }, + "preComments": [ + "// Herringbone Planetary Gearset", + "// A herringbone planetary gearset is a type of planetary gear system where the teeth of the sun gear, planet gears, and/or ring gear are herringbone rather than straight. This design allows for smoother, quieter operation, greater load-carrying capacity, and more flexible shaft alignment.", + "", + "", + "// Set units" + ], + "properties": [ + { + "commentStart": 0, + "end": 0, + "key": { + "commentStart": 0, + "end": 0, + "name": "defaultLengthUnit", + "start": 0, + "type": "Identifier" + }, + "start": 0, + "type": "ObjectProperty", + "value": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "mm", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + } + ], + "start": 0, + "type": "Annotation" + } + ], + "nonCodeMeta": { + "nonCodeNodes": {}, + "startNodes": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "start": 0 + } +} diff --git a/rust/kcl-lib/tests/kcl_samples/herringbone-planetary-gearset/ops.snap b/rust/kcl-lib/tests/kcl_samples/herringbone-planetary-gearset/ops.snap new file mode 100644 index 000000000..ca28c2bbc --- /dev/null +++ b/rust/kcl-lib/tests/kcl_samples/herringbone-planetary-gearset/ops.snap @@ -0,0 +1,2086 @@ +--- +source: kcl-lib/src/simulation_tests.rs +description: Operations executed herringbone-planetary-gearset.kcl +--- +[ + { + "labeledArgs": {}, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + { + "labeledArgs": {}, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + { + "labeledArgs": {}, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + { + "labeledArgs": {}, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + { + "type": "KclStdLibCall", + "name": "offsetPlane", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + }, + "labeledArgs": { + "offset": { + "value": { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "sourceRange": [] + }, + { + "type": "KclStdLibCall", + "name": "offsetPlane", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + }, + "labeledArgs": { + "offset": { + "value": { + "type": "Number", + "value": 4.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "sourceRange": [] + }, + { + "type": "KclStdLibCall", + "name": "offsetPlane", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + }, + "labeledArgs": { + "offset": { + "value": { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "sourceRange": [] + }, + { + "type": "KclStdLibCall", + "name": "offsetPlane", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + }, + "labeledArgs": { + "offset": { + "value": { + "type": "Number", + "value": 4.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.5707963267948966, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 13.098992304725952, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.3829719177376907, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 13.098992304725952, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.5707963267948966, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 13.098992304725952, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.7586207358521024, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 13.098992304725952, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.725936704749948, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 15.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.5381122956927422, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 15.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.725936704749948, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 15.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.913761113807154, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 15.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.9198621771937625, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 13.098992304725952, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.7320377681365566, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 13.098992304725952, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.9198621771937625, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 13.098992304725952, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 2.1076865862509684, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 13.098992304725952, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "labeledArgs": { + "tool": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + "name": "subtract2d", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "tool": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + "name": "subtract2d", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "tool": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + "name": "subtract2d", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "tool": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + "name": "subtract2d", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "herringboneGearSketch", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "offsetHeight": { + "value": { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "herringboneGearSketch", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "offsetHeight": { + "value": { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "herringboneGearSketch", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "offsetHeight": { + "value": { + "type": "Number", + "value": 4.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "herringboneGearSketch", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "offsetHeight": { + "value": { + "type": "Number", + "value": 4.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "KclStdLibCall", + "name": "clone", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + }, + "labeledArgs": {}, + "sourceRange": [] + }, + { + "type": "KclStdLibCall", + "name": "clone", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + }, + "labeledArgs": {}, + "sourceRange": [] + }, + { + "labeledArgs": { + "vDegree": { + "value": { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "loft", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Array", + "value": [ + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + } + ] + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "vDegree": { + "value": { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "loft", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Array", + "value": [ + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + } + ] + }, + "sourceRange": [] + } + }, + { + "labeledArgs": {}, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + { + "labeledArgs": {}, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + { + "type": "KclStdLibCall", + "name": "offsetPlane", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + }, + "labeledArgs": { + "offset": { + "value": { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "sourceRange": [] + }, + { + "type": "KclStdLibCall", + "name": "offsetPlane", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + }, + "labeledArgs": { + "offset": { + "value": { + "type": "Number", + "value": 4.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.5707963267948966, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 42.207864093005846, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.6330772527729873, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 42.207864093005846, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.6369984708360608, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 45.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.6992793968141515, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 45.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.6791271079531653, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 42.207864093005846, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 1.741408033931256, + "ty": { + "type": "Known", + "type": "Angle", + "type": "Radians" + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 42.207864093005846, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "labeledArgs": {}, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + { + "labeledArgs": {}, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + { + "type": "KclStdLibCall", + "name": "offsetPlane", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + }, + "labeledArgs": { + "offset": { + "value": { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "sourceRange": [] + }, + { + "type": "KclStdLibCall", + "name": "offsetPlane", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + }, + "labeledArgs": { + "offset": { + "value": { + "type": "Number", + "value": 4.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "sourceRange": [] + }, + { + "labeledArgs": { + "tool": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + "name": "subtract2d", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "tool": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + "name": "subtract2d", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "ringGearSketch", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "offsetHeight": { + "value": { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "ringGearSketch", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "offsetHeight": { + "value": { + "type": "Number", + "value": 4.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "KclStdLibCall", + "name": "clone", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + }, + "labeledArgs": {}, + "sourceRange": [] + }, + { + "labeledArgs": { + "vDegree": { + "value": { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "loft", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Array", + "value": [ + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + } + ] + }, + "sourceRange": [] + } + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "ringGear", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "gearHeight": { + "value": { + "type": "Number", + "value": 8.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "helixAngle": { + "value": { + "type": "Number", + "value": -35.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "module": { + "value": { + "type": "Number", + "value": 1.5, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "nTeeth": { + "value": { + "type": "Number", + "value": 58.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "pressureAngle": { + "value": { + "type": "Number", + "value": 14.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "herringboneGear", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "gearHeight": { + "value": { + "type": "Number", + "value": 8.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "helixAngle": { + "value": { + "type": "Number", + "value": 35.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "module": { + "value": { + "type": "Number", + "value": 1.5, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "nTeeth": { + "value": { + "type": "Number", + "value": 18.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "pressureAngle": { + "value": { + "type": "Number", + "value": 14.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "herringboneGear", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "gearHeight": { + "value": { + "type": "Number", + "value": 8.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "helixAngle": { + "value": { + "type": "Number", + "value": -35.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "module": { + "value": { + "type": "Number", + "value": 1.5, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "nTeeth": { + "value": { + "type": "Number", + "value": 18.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "pressureAngle": { + "value": { + "type": "Number", + "value": 14.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "labeledArgs": { + "arcDegrees": { + "value": { + "type": "Number", + "value": 360.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "axis": { + "value": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 1.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "sourceRange": [] + }, + "center": { + "value": { + "type": "Array", + "value": [ + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + } + ] + }, + "sourceRange": [] + }, + "instances": { + "value": { + "type": "Number", + "value": 4.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "rotateDuplicates": { + "value": { + "type": "Bool", + "value": false + }, + "sourceRange": [] + } + }, + "name": "patternCircular3d", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Solid", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + } +] diff --git a/rust/kcl-lib/tests/kcl_samples/herringbone-planetary-gearset/program_memory.snap b/rust/kcl-lib/tests/kcl_samples/herringbone-planetary-gearset/program_memory.snap new file mode 100644 index 000000000..3f578f0b0 --- /dev/null +++ b/rust/kcl-lib/tests/kcl_samples/herringbone-planetary-gearset/program_memory.snap @@ -0,0 +1,32 @@ +--- +source: kcl-lib/src/simulation_tests.rs +description: Variables in memory after executing herringbone-planetary-gearset.kcl +--- +{ + "herringboneGear": { + "type": "Function", + "value": null + }, + "numPlanetGears": { + "type": "Number", + "value": 4.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "ringGear": { + "type": "Function", + "value": null + }, + "seg01": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "seg01" + } +} diff --git a/rust/kcl-lib/tests/kcl_samples/herringbone-planetary-gearset/rendered_model.png b/rust/kcl-lib/tests/kcl_samples/herringbone-planetary-gearset/rendered_model.png new file mode 100644 index 0000000000000000000000000000000000000000..2fe2440021f3338d1171c204e771b86a74fd81c7 GIT binary patch literal 160390 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 W)5pK{XoUaOOq+hurf*(x^M3%H+bFyM literal 0 HcmV?d00001 diff --git a/rust/kcl-lib/tests/kcl_samples/spur-gear/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/spur-gear/artifact_commands.snap new file mode 100644 index 000000000..bf61e9e75 --- /dev/null +++ b/rust/kcl-lib/tests/kcl_samples/spur-gear/artifact_commands.snap @@ -0,0 +1,4581 @@ +--- +source: kcl-lib/src/simulation_tests.rs +description: Artifact commands spur-gear.kcl +--- +[ + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "edge_lines_visible", + "hidden": false + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 2.29128784747792, + "y": 1.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 0.0, + "y": -2.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": -1.0, + "y": 0.0, + "z": 0.0 + }, + "relative": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": -0.0, + "y": 0.0 + }, + "radius": 2.5, + "start": { + "unit": "degrees", + "value": 336.42182152179817 + }, + "end": { + "unit": "degrees", + "value": 180.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": -0.0, + "y": 0.0 + }, + "radius": 2.5, + "start": { + "unit": "degrees", + "value": 180.0 + }, + "end": { + "unit": "degrees", + "value": 23.578178478201835 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 15.282157688846944, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "circular_involute", + "start_radius": 15.282157688846944, + "end_radius": 17.25, + "angle": { + "unit": "degrees", + "value": 0.0 + }, + "reverse": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 17.0977, + "y": 2.2871, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "circular_involute", + "start_radius": 15.282157688846944, + "end_radius": 17.25, + "angle": { + "unit": "degrees", + "value": -10.934457859443263 + }, + "reverse": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 14.6032, + "y": 4.5045, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "entity_circular_pattern", + "entity_id": "[uuid]", + "axis": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "center": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "num_repetitions": 20, + "arc_degrees": 360.0, + "rotate_duplicates": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 6.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + } +] diff --git a/rust/kcl-lib/tests/kcl_samples/gear/artifact_graph_flowchart.snap b/rust/kcl-lib/tests/kcl_samples/spur-gear/artifact_graph_flowchart.snap similarity index 61% rename from rust/kcl-lib/tests/kcl_samples/gear/artifact_graph_flowchart.snap rename to rust/kcl-lib/tests/kcl_samples/spur-gear/artifact_graph_flowchart.snap index ae5182eab..7798e4dd7 100644 --- a/rust/kcl-lib/tests/kcl_samples/gear/artifact_graph_flowchart.snap +++ b/rust/kcl-lib/tests/kcl_samples/spur-gear/artifact_graph_flowchart.snap @@ -1,6 +1,6 @@ --- source: kcl-lib/src/simulation_tests.rs -description: Artifact graph flowchart gear.kcl +description: Artifact graph flowchart spur-gear.kcl extension: md snapshot_kind: binary --- diff --git a/rust/kcl-lib/tests/kcl_samples/spur-gear/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/spur-gear/artifact_graph_flowchart.snap.md new file mode 100644 index 000000000..6493d4bba --- /dev/null +++ b/rust/kcl-lib/tests/kcl_samples/spur-gear/artifact_graph_flowchart.snap.md @@ -0,0 +1,100 @@ +```mermaid +flowchart LR + subgraph path3 [Path] + 3["Path
[1065, 1171, 0]"] + 5["Segment
[1179, 1206, 0]"] + 6["Segment
[1214, 1242, 0]"] + 7["Segment
[1250, 1278, 0]"] + 8["Segment
[1286, 1362, 0]"] + 9["Segment
[1370, 1435, 0]"] + 10["Segment
[1443, 1450, 0]"] + 16[Solid2d] + end + subgraph path4 [Path] + 4["Path
[1601, 1663, 0]"] + 11["Segment
[1671, 1819, 0]"] + 12["Segment
[1827, 1900, 0]"] + 13["Segment
[1908, 2112, 0]"] + 14["Segment
[2194, 2268, 0]"] + 15["Segment
[2538, 2545, 0]"] + 17[Solid2d] + end + 1["Plane
[1040, 1057, 0]"] + 2["Plane
[1576, 1593, 0]"] + 18["Sweep Extrusion
[2697, 2725, 0]"] + 19[Wall] + 20[Wall] + 21[Wall] + 22[Wall] + 23["Cap Start"] + 24["Cap End"] + 25["SweepEdge Opposite"] + 26["SweepEdge Opposite"] + 27["SweepEdge Opposite"] + 28["SweepEdge Opposite"] + 29["SweepEdge Adjacent"] + 30["SweepEdge Adjacent"] + 31["SweepEdge Adjacent"] + 32["SweepEdge Adjacent"] + 1 --- 3 + 2 --- 4 + 3 --- 5 + 3 --- 6 + 3 --- 7 + 3 --- 8 + 3 --- 9 + 3 --- 10 + 3 --- 16 + 4 --- 11 + 4 --- 12 + 4 --- 13 + 4 --- 14 + 4 --- 15 + 4 --- 17 + 4 ---- 18 + 11 --- 22 + 11 x--> 23 + 11 --- 25 + 11 --- 29 + 12 --- 21 + 12 x--> 23 + 12 --- 26 + 12 --- 30 + 13 --- 20 + 13 x--> 23 + 13 --- 27 + 13 --- 31 + 14 --- 19 + 14 x--> 23 + 14 --- 28 + 14 --- 32 + 18 --- 19 + 18 --- 20 + 18 --- 21 + 18 --- 22 + 18 --- 23 + 18 --- 24 + 18 --- 25 + 18 --- 26 + 18 --- 27 + 18 --- 28 + 18 --- 29 + 18 --- 30 + 18 --- 31 + 18 --- 32 + 28 <--x 19 + 31 <--x 19 + 32 <--x 19 + 27 <--x 20 + 30 <--x 20 + 31 <--x 20 + 26 <--x 21 + 29 <--x 21 + 30 <--x 21 + 25 <--x 22 + 29 <--x 22 + 25 <--x 24 + 26 <--x 24 + 27 <--x 24 + 28 <--x 24 +``` diff --git a/rust/kcl-lib/tests/kcl_samples/spur-gear/ast.snap b/rust/kcl-lib/tests/kcl_samples/spur-gear/ast.snap new file mode 100644 index 000000000..d7e0a46a9 --- /dev/null +++ b/rust/kcl-lib/tests/kcl_samples/spur-gear/ast.snap @@ -0,0 +1,2922 @@ +--- +source: kcl-lib/src/simulation_tests.rs +description: Result of parsing spur-gear.kcl +--- +{ + "Ok": { + "body": [ + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "spurGear", + "start": 0, + "type": "Identifier" + }, + "init": { + "body": { + "body": [ + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "pitchDiameter", + "start": 0, + "type": "Identifier" + }, + "init": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "*", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "// Define gear parameters" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "addendum", + "start": 0, + "type": "Identifier" + }, + "init": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "deddendum", + "start": 0, + "type": "Identifier" + }, + "init": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "1.25", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 1.25, + "suffix": "None" + } + }, + "operator": "*", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "baseDiameter", + "start": 0, + "type": "Identifier" + }, + "init": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "pitchDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "*", + "right": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "cos", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "pressureAngle", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "tipDiameter", + "start": 0, + "type": "Identifier" + }, + "init": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "pitchDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "+", + "right": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "operator": "*", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "keywayWidth", + "start": 0, + "type": "Identifier" + }, + "init": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "", + "", + "// Define the constants of the keyway and the bore hole" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "keywayDepth", + "start": 0, + "type": "Identifier" + }, + "init": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "keywayWidth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "holeDiam", + "start": 0, + "type": "Identifier" + }, + "init": { + "commentStart": 0, + "end": 0, + "raw": "5", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 5.0, + "suffix": "None" + } + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "holeRadius", + "start": 0, + "type": "Identifier" + }, + "init": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "holeDiam", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "startAngle", + "start": 0, + "type": "Identifier" + }, + "init": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "asin", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "keywayWidth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "/", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "holeRadius", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "holeWithKeyway", + "start": 0, + "type": "Identifier" + }, + "init": { + "body": [ + { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "startSketchOn", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "XY", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "at", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "elements": [ + { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "holeRadius", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "*", + "right": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "cos", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "startAngle", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "holeRadius", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "*", + "right": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "sin", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "startAngle", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + ], + "end": 0, + "start": 0, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "startProfile", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "length", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "keywayDepth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "xLine", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "length", + "start": 0, + "type": "Identifier" + }, + "arg": { + "argument": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "keywayWidth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "operator": "-", + "start": 0, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "yLine", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "length", + "start": 0, + "type": "Identifier" + }, + "arg": { + "argument": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "keywayDepth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "operator": "-", + "start": 0, + "type": "UnaryExpression", + "type": "UnaryExpression" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "xLine", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angleStart", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "left": { + "argument": { + "commentStart": 0, + "end": 0, + "raw": "1", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 1.0, + "suffix": "None" + } + }, + "commentStart": 0, + "end": 0, + "operator": "-", + "start": 0, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + "operator": "*", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "startAngle", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "+", + "right": { + "commentStart": 0, + "end": 0, + "raw": "360", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 360.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angleEnd", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "180", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 180.0, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "radius", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "holeRadius", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "arc", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angleStart", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "180", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 180.0, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angleEnd", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "startAngle", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "radius", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "holeRadius", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "arc", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "close", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + ], + "commentStart": 0, + "end": 0, + "nonCodeMeta": { + "nonCodeNodes": { + "7": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "newLineBlockComment", + "value": "Using the gear parameters, sketch an involute tooth spanning from the base diameter to the tip diameter", + "style": "line" + } + } + ] + }, + "startNodes": [] + }, + "start": 0, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "", + "", + "// Sketch the keyway and center hole" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "gearSketch", + "start": 0, + "type": "Identifier" + }, + "init": { + "body": [ + { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "startSketchOn", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "XY", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "at", + "start": 0, + "type": "Identifier" + }, + "arg": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "0", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "length", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "baseDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "polar", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "startProfile", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "startRadius", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "baseDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "endRadius", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "tipDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "0", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "tag", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "seg01" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "involuteCircular", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "endAbsolute", + "start": 0, + "type": "Identifier" + }, + "arg": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "160", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 160.0, + "suffix": "None" + } + }, + "operator": "/", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "length", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "tipDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "polar", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "line", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "startRadius", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "baseDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "endRadius", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "tipDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "argument": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "atan", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "commentStart": 0, + "end": 0, + "left": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "segEndY", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "seg01", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + "operator": "/", + "right": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "segEndX", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "seg01", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + "commentStart": 0, + "end": 0, + "operator": "-", + "start": 0, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + "operator": "-", + "right": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "180", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 180.0, + "suffix": "None" + } + }, + "operator": "/", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "reverse", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "true", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": true + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "involuteCircular", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "endAbsolute", + "start": 0, + "type": "Identifier" + }, + "arg": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "360", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 360.0, + "suffix": "None" + } + }, + "operator": "/", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "length", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "baseDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "polar", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "line", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "instances", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "center", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "elements": [ + { + "commentStart": 0, + "end": 0, + "raw": "0", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + }, + { + "commentStart": 0, + "end": 0, + "raw": "0", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + } + ], + "end": 0, + "start": 0, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "arcDegrees", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "360", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 360.0, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "rotateDuplicates", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "true", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": true + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "patternCircular2d", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + }, + { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "close", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "tool", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "holeWithKeyway", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "subtract2d", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "length", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "gearHeight", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "extrude", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + ], + "commentStart": 0, + "end": 0, + "nonCodeMeta": { + "nonCodeNodes": { + "4": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "blockComment", + "value": "Position the end line of the sketch at the start of the next tooth", + "style": "line" + } + } + ], + "5": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "blockComment", + "value": "Pattern the sketch about the center by the specified number of teeth, then close the sketch", + "style": "line" + } + } + ], + "7": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "blockComment", + "value": "Subtract the keyway sketch from the gear sketch", + "style": "line" + } + } + ], + "8": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "blockComment", + "value": "Extrude the gear to the specified height", + "style": "line" + } + } + ] + }, + "startNodes": [] + }, + "start": 0, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "argument": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "gearSketch", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "commentStart": 0, + "end": 0, + "nonCodeMeta": { + "nonCodeNodes": { + "11": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "startNodes": [] + }, + "start": 0 + }, + "commentStart": 0, + "end": 0, + "params": [ + { + "type": "Parameter", + "identifier": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + } + }, + { + "type": "Parameter", + "identifier": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + } + }, + { + "type": "Parameter", + "identifier": { + "commentStart": 0, + "end": 0, + "name": "pressureAngle", + "start": 0, + "type": "Identifier" + } + }, + { + "type": "Parameter", + "identifier": { + "commentStart": 0, + "end": 0, + "name": "gearHeight", + "start": 0, + "type": "Identifier" + } + } + ], + "start": 0, + "type": "FunctionExpression", + "type": "FunctionExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "fn", + "preComments": [ + "// Define a function to create a spur gear" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "end": 0, + "expression": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "21", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 21.0, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "1.5", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 1.5, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "pressureAngle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "14", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 14.0, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "gearHeight", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "6", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 6.0, + "suffix": "None" + } + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "spurGear", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + "start": 0, + "type": "ExpressionStatement", + "type": "ExpressionStatement" + } + ], + "commentStart": 0, + "end": 0, + "innerAttrs": [ + { + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "settings", + "start": 0, + "type": "Identifier" + }, + "preComments": [ + "// Spur Gear", + "// A rotating machine part having cut teeth or, in the case of a cogwheel, inserted teeth (called cogs), which mesh with another toothed part to transmit torque. Geared devices can change the speed, torque, and direction of a power source. The two elements that define a gear are its circular shape and the teeth that are integrated into its outer edge, which are designed to fit into the teeth of another gear.", + "", + "", + "// Set units" + ], + "properties": [ + { + "commentStart": 0, + "end": 0, + "key": { + "commentStart": 0, + "end": 0, + "name": "defaultLengthUnit", + "start": 0, + "type": "Identifier" + }, + "start": 0, + "type": "ObjectProperty", + "value": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "mm", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + } + ], + "start": 0, + "type": "Annotation" + } + ], + "nonCodeMeta": { + "nonCodeNodes": { + "0": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "startNodes": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "start": 0 + } +} diff --git a/rust/kcl-lib/tests/kcl_samples/spur-gear/ops.snap b/rust/kcl-lib/tests/kcl_samples/spur-gear/ops.snap new file mode 100644 index 000000000..e4d6c748d --- /dev/null +++ b/rust/kcl-lib/tests/kcl_samples/spur-gear/ops.snap @@ -0,0 +1,309 @@ +--- +source: kcl-lib/src/simulation_tests.rs +description: Operations executed spur-gear.kcl +--- +[ + { + "labeledArgs": {}, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + { + "labeledArgs": {}, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 15.282157688846944, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 7.619047619047619, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 17.25, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 17.142857142857142, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 15.282157688846944, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "labeledArgs": { + "tool": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + "name": "subtract2d", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 6.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "spurGear", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "gearHeight": { + "value": { + "type": "Number", + "value": 6.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "module": { + "value": { + "type": "Number", + "value": 1.5, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "nTeeth": { + "value": { + "type": "Number", + "value": 21.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "pressureAngle": { + "value": { + "type": "Number", + "value": 14.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + } +] diff --git a/rust/kcl-lib/tests/kcl_samples/spur-gear/program_memory.snap b/rust/kcl-lib/tests/kcl_samples/spur-gear/program_memory.snap new file mode 100644 index 000000000..b1d73e5e7 --- /dev/null +++ b/rust/kcl-lib/tests/kcl_samples/spur-gear/program_memory.snap @@ -0,0 +1,10 @@ +--- +source: kcl-lib/src/simulation_tests.rs +description: Variables in memory after executing spur-gear.kcl +--- +{ + "spurGear": { + "type": "Function", + "value": null + } +} diff --git a/rust/kcl-lib/tests/kcl_samples/spur-gear/rendered_model.png b/rust/kcl-lib/tests/kcl_samples/spur-gear/rendered_model.png new file mode 100644 index 0000000000000000000000000000000000000000..0746e497e96f273e129160c4dd014a4737cc3c72 GIT binary patch literal 63416 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 literal 0 HcmV?d00001 diff --git a/rust/kcl-lib/tests/kcl_samples/spur-reduction-gearset/artifact_commands.snap b/rust/kcl-lib/tests/kcl_samples/spur-reduction-gearset/artifact_commands.snap new file mode 100644 index 000000000..2cf210e8e --- /dev/null +++ b/rust/kcl-lib/tests/kcl_samples/spur-reduction-gearset/artifact_commands.snap @@ -0,0 +1,13582 @@ +--- +source: kcl-lib/src/simulation_tests.rs +description: Artifact commands spur-reduction-gearset.kcl +--- +[ + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "edge_lines_visible", + "hidden": false + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "make_plane", + "origin": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "x_axis": { + "x": 1.0, + "y": 0.0, + "z": 0.0 + }, + "y_axis": { + "x": 0.0, + "y": 1.0, + "z": 0.0 + }, + "size": 60.0, + "clobber": false, + "hide": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 12.371270510018954, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 37.113811530056864, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "circular_involute", + "start_radius": 12.371270510018954, + "end_radius": 14.25, + "angle": { + "unit": "degrees", + "value": 0.0 + }, + "reverse": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "circular_involute", + "start_radius": 37.113811530056864, + "end_radius": 39.75, + "angle": { + "unit": "degrees", + "value": 0.0 + }, + "reverse": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 14.0582, + "y": 2.3303, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 39.6904, + "y": 2.1754, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "circular_involute", + "start_radius": 12.371270510018954, + "end_radius": 14.25, + "angle": { + "unit": "degrees", + "value": -13.586960511554224 + }, + "reverse": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "circular_involute", + "start_radius": 37.113811530056864, + "end_radius": 39.75, + "angle": { + "unit": "degrees", + "value": -4.520837503047772 + }, + "reverse": true + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 11.5359, + "y": 4.469, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "line", + "end": { + "x": 36.8325, + "y": 4.5609, + "z": 0.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "entity_circular_pattern", + "entity_id": "[uuid]", + "axis": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "center": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "num_repetitions": 16, + "arc_degrees": 360.0, + "rotate_duplicates": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "entity_circular_pattern", + "entity_id": "[uuid]", + "axis": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "center": { + "x": 0.0, + "y": 0.0, + "z": 0.0 + }, + "num_repetitions": 50, + "arc_degrees": 360.0, + "rotate_duplicates": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_visible", + "object_id": "[uuid]", + "hidden": true + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid2d_add_hole", + "object_id": "[uuid]", + "hole_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "close_path", + "path_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 0.0, + "y": 0.0 + }, + "radius": 5.0, + "start": { + "unit": "degrees", + "value": 0.0 + }, + "end": { + "unit": "degrees", + "value": 360.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extend_path", + "path": "[uuid]", + "segment": { + "type": "arc", + "center": { + "x": 0.0, + "y": 0.0 + }, + "radius": 5.0, + "start": { + "unit": "degrees", + "value": 0.0 + }, + "end": { + "unit": "degrees", + "value": 360.0 + }, + "relative": false + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 5.0, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "move_path_pen", + "path": "[uuid]", + "to": { + "x": 5.0, + "y": 0.0, + "z": 0.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "start_path" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "enable_sketch_mode", + "entity_id": "[uuid]", + "ortho": false, + "animated": false, + "adjust_camera": false, + "planar_normal": { + "x": 0.0, + "y": 0.0, + "z": 1.0 + } + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 9.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "extrude", + "target": "[uuid]", + "distance": 7.0, + "faces": null, + "opposite": "None" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "object_bring_to_front", + "object_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "sketch_mode_disable" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_all_edge_faces", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_extrusion_face_info", + "object_id": "[uuid]", + "edge_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_next_adjacent_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "solid3d_get_opposite_edge", + "object_id": "[uuid]", + "edge_id": "[uuid]", + "face_id": "[uuid]" + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "set_object_transform", + "object_id": "[uuid]", + "transforms": [ + { + "translate": { + "property": { + "x": 52.3, + "y": 0.0, + "z": 0.0 + }, + "set": false, + "is_local": true + }, + "rotate_rpy": null, + "rotate_angle_axis": null, + "scale": null + } + ] + } + }, + { + "cmdId": "[uuid]", + "range": [], + "command": { + "type": "set_object_transform", + "object_id": "[uuid]", + "transforms": [ + { + "translate": null, + "rotate_rpy": { + "property": { + "x": 0.0, + "y": 0.0, + "z": 3.0 + }, + "set": false, + "is_local": true + }, + "rotate_angle_axis": null, + "scale": null + } + ] + } + } +] diff --git a/rust/kcl-lib/tests/kcl_samples/spur-reduction-gearset/artifact_graph_flowchart.snap b/rust/kcl-lib/tests/kcl_samples/spur-reduction-gearset/artifact_graph_flowchart.snap new file mode 100644 index 000000000..84c1407f1 --- /dev/null +++ b/rust/kcl-lib/tests/kcl_samples/spur-reduction-gearset/artifact_graph_flowchart.snap @@ -0,0 +1,6 @@ +--- +source: kcl-lib/src/simulation_tests.rs +description: Artifact graph flowchart spur-reduction-gearset.kcl +extension: md +snapshot_kind: binary +--- diff --git a/rust/kcl-lib/tests/kcl_samples/spur-reduction-gearset/artifact_graph_flowchart.snap.md b/rust/kcl-lib/tests/kcl_samples/spur-reduction-gearset/artifact_graph_flowchart.snap.md new file mode 100644 index 000000000..c4649ef10 --- /dev/null +++ b/rust/kcl-lib/tests/kcl_samples/spur-reduction-gearset/artifact_graph_flowchart.snap.md @@ -0,0 +1,175 @@ +```mermaid +flowchart LR + subgraph path3 [Path] + 3["Path
[625, 687, 0]"] + 7["Segment
[695, 843, 0]"] + 9["Segment
[851, 924, 0]"] + 12["Segment
[932, 1136, 0]"] + 14["Segment
[1218, 1292, 0]"] + 15["Segment
[1562, 1569, 0]"] + 19[Solid2d] + end + subgraph path4 [Path] + 4["Path
[625, 687, 0]"] + 8["Segment
[695, 843, 0]"] + 10["Segment
[851, 924, 0]"] + 11["Segment
[932, 1136, 0]"] + 13["Segment
[1218, 1292, 0]"] + 16["Segment
[1562, 1569, 0]"] + 21[Solid2d] + end + subgraph path5 [Path] + 5["Path
[1653, 1688, 0]"] + 18["Segment
[1653, 1688, 0]"] + 20[Solid2d] + end + subgraph path6 [Path] + 6["Path
[1653, 1688, 0]"] + 17["Segment
[1653, 1688, 0]"] + 22[Solid2d] + end + 1["Plane
[600, 617, 0]"] + 2["Plane
[600, 617, 0]"] + 23["Sweep Extrusion
[1745, 1773, 0]"] + 24["Sweep Extrusion
[1745, 1773, 0]"] + 25[Wall] + 26[Wall] + 27[Wall] + 28[Wall] + 29[Wall] + 30[Wall] + 31[Wall] + 32[Wall] + 33["Cap Start"] + 34["Cap Start"] + 35["Cap End"] + 36["Cap End"] + 37["SweepEdge Opposite"] + 38["SweepEdge Opposite"] + 39["SweepEdge Opposite"] + 40["SweepEdge Opposite"] + 41["SweepEdge Opposite"] + 42["SweepEdge Opposite"] + 43["SweepEdge Opposite"] + 44["SweepEdge Opposite"] + 45["SweepEdge Adjacent"] + 46["SweepEdge Adjacent"] + 47["SweepEdge Adjacent"] + 48["SweepEdge Adjacent"] + 49["SweepEdge Adjacent"] + 50["SweepEdge Adjacent"] + 51["SweepEdge Adjacent"] + 52["SweepEdge Adjacent"] + 1 --- 3 + 1 --- 5 + 2 --- 4 + 2 --- 6 + 3 --- 7 + 3 --- 9 + 3 --- 12 + 3 --- 14 + 3 --- 15 + 3 --- 19 + 3 ---- 24 + 4 --- 8 + 4 --- 10 + 4 --- 11 + 4 --- 13 + 4 --- 16 + 4 --- 21 + 4 ---- 23 + 5 --- 18 + 5 --- 20 + 6 --- 17 + 6 --- 22 + 7 --- 29 + 7 x--> 33 + 7 --- 42 + 7 --- 49 + 8 --- 28 + 8 x--> 34 + 8 --- 38 + 8 --- 46 + 9 --- 30 + 9 x--> 33 + 9 --- 43 + 9 --- 50 + 10 --- 26 + 10 x--> 34 + 10 --- 40 + 10 --- 45 + 11 --- 25 + 11 x--> 34 + 11 --- 37 + 11 --- 47 + 12 --- 31 + 12 x--> 33 + 12 --- 41 + 12 --- 51 + 13 --- 27 + 13 x--> 34 + 13 --- 39 + 13 --- 48 + 14 --- 32 + 14 x--> 33 + 14 --- 44 + 14 --- 52 + 23 --- 25 + 23 --- 26 + 23 --- 27 + 23 --- 28 + 23 --- 34 + 23 --- 36 + 23 --- 37 + 23 --- 38 + 23 --- 39 + 23 --- 40 + 23 --- 45 + 23 --- 46 + 23 --- 47 + 23 --- 48 + 24 --- 29 + 24 --- 30 + 24 --- 31 + 24 --- 32 + 24 --- 33 + 24 --- 35 + 24 --- 41 + 24 --- 42 + 24 --- 43 + 24 --- 44 + 24 --- 49 + 24 --- 50 + 24 --- 51 + 24 --- 52 + 37 <--x 25 + 45 <--x 25 + 47 <--x 25 + 40 <--x 26 + 45 <--x 26 + 46 <--x 26 + 39 <--x 27 + 47 <--x 27 + 48 <--x 27 + 38 <--x 28 + 46 <--x 28 + 42 <--x 29 + 49 <--x 29 + 43 <--x 30 + 49 <--x 30 + 50 <--x 30 + 41 <--x 31 + 50 <--x 31 + 51 <--x 31 + 44 <--x 32 + 51 <--x 32 + 52 <--x 32 + 41 <--x 35 + 42 <--x 35 + 43 <--x 35 + 44 <--x 35 + 37 <--x 36 + 38 <--x 36 + 39 <--x 36 + 40 <--x 36 +``` diff --git a/rust/kcl-lib/tests/kcl_samples/spur-reduction-gearset/ast.snap b/rust/kcl-lib/tests/kcl_samples/spur-reduction-gearset/ast.snap new file mode 100644 index 000000000..ffd8365a1 --- /dev/null +++ b/rust/kcl-lib/tests/kcl_samples/spur-reduction-gearset/ast.snap @@ -0,0 +1,2348 @@ +--- +source: kcl-lib/src/simulation_tests.rs +description: Result of parsing spur-reduction-gearset.kcl +--- +{ + "Ok": { + "body": [ + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "spurGear", + "start": 0, + "type": "Identifier" + }, + "init": { + "body": { + "body": [ + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "pitchDiameter", + "start": 0, + "type": "Identifier" + }, + "init": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "*", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "// Calculate gear parameters" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "addendum", + "start": 0, + "type": "Identifier" + }, + "init": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "deddendum", + "start": 0, + "type": "Identifier" + }, + "init": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "1.25", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 1.25, + "suffix": "None" + } + }, + "operator": "*", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "baseDiameter", + "start": 0, + "type": "Identifier" + }, + "init": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "pitchDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "*", + "right": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "cos", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "pressureAngle", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "tipDiameter", + "start": 0, + "type": "Identifier" + }, + "init": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "pitchDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "+", + "right": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "operator": "*", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "declaration": { + "commentStart": 0, + "end": 0, + "id": { + "commentStart": 0, + "end": 0, + "name": "gearSketch", + "start": 0, + "type": "Identifier" + }, + "init": { + "body": [ + { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "startSketchOn", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "XY", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "at", + "start": 0, + "type": "Identifier" + }, + "arg": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "0", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "length", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "baseDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "polar", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "startProfile", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "startRadius", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "baseDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "endRadius", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "tipDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "0", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "tag", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "TagDeclarator", + "type": "TagDeclarator", + "value": "seg01" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "involuteCircular", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "endAbsolute", + "start": 0, + "type": "Identifier" + }, + "arg": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "160", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 160.0, + "suffix": "None" + } + }, + "operator": "/", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "length", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "tipDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "polar", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "line", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "startRadius", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "baseDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "endRadius", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "tipDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "argument": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "atan", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "commentStart": 0, + "end": 0, + "left": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "segEndY", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "seg01", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + "operator": "/", + "right": { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "segEndX", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "seg01", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + "commentStart": 0, + "end": 0, + "operator": "-", + "start": 0, + "type": "UnaryExpression", + "type": "UnaryExpression" + }, + "operator": "-", + "right": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "180", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 180.0, + "suffix": "None" + } + }, + "operator": "/", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "reverse", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "true", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": true + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "involuteCircular", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "endAbsolute", + "start": 0, + "type": "Identifier" + }, + "arg": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "angle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "360", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 360.0, + "suffix": "None" + } + }, + "operator": "/", + "right": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "length", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "baseDiameter", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "polar", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "line", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "instances", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "center", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "elements": [ + { + "commentStart": 0, + "end": 0, + "raw": "0", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + }, + { + "commentStart": 0, + "end": 0, + "raw": "0", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + } + ], + "end": 0, + "start": 0, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "arcDegrees", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "360", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 360.0, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "rotateDuplicates", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "true", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": true + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "patternCircular2d", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "PipeSubstitution", + "type": "PipeSubstitution" + } + }, + { + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "close", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "tool", + "start": 0, + "type": "Identifier" + }, + "arg": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "center", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "elements": [ + { + "commentStart": 0, + "end": 0, + "raw": "0", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + }, + { + "commentStart": 0, + "end": 0, + "raw": "0", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 0.0, + "suffix": "None" + } + } + ], + "end": 0, + "start": 0, + "type": "ArrayExpression", + "type": "ArrayExpression" + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "radius", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "5", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 5.0, + "suffix": "None" + } + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "circle", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "subtract2d", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "length", + "start": 0, + "type": "Identifier" + }, + "arg": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "gearHeight", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "extrude", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + ], + "commentStart": 0, + "end": 0, + "nonCodeMeta": { + "nonCodeNodes": { + "4": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "blockComment", + "value": "Position the end line of the sketch at the start of the next tooth", + "style": "line" + } + } + ], + "5": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "blockComment", + "value": "Pattern the sketch about the center by the specified number of teeth, then close the sketch", + "style": "line" + } + } + ], + "7": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "blockComment", + "value": "Subtract a 10mm diameter center hole from the gear", + "style": "line" + } + } + ], + "8": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "blockComment", + "value": "Extrude the gear to the specified height", + "style": "line" + } + } + ] + }, + "startNodes": [] + }, + "start": 0, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "const", + "preComments": [ + "", + "", + "// Using the gear parameters, sketch an involute tooth spanning from the base diameter to the tip diameter" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "argument": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "gearSketch", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "ReturnStatement", + "type": "ReturnStatement" + } + ], + "commentStart": 0, + "end": 0, + "nonCodeMeta": { + "nonCodeNodes": { + "5": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "startNodes": [] + }, + "start": 0 + }, + "commentStart": 0, + "end": 0, + "params": [ + { + "type": "Parameter", + "identifier": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + } + }, + { + "type": "Parameter", + "identifier": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + } + }, + { + "type": "Parameter", + "identifier": { + "commentStart": 0, + "end": 0, + "name": "pressureAngle", + "start": 0, + "type": "Identifier" + } + }, + { + "type": "Parameter", + "identifier": { + "commentStart": 0, + "end": 0, + "name": "gearHeight", + "start": 0, + "type": "Identifier" + } + } + ], + "start": 0, + "type": "FunctionExpression", + "type": "FunctionExpression" + }, + "start": 0, + "type": "VariableDeclarator" + }, + "end": 0, + "kind": "fn", + "preComments": [ + "// Define a function to create a spur gear" + ], + "start": 0, + "type": "VariableDeclaration", + "type": "VariableDeclaration" + }, + { + "commentStart": 0, + "end": 0, + "expression": { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "17", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 17.0, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "1.5", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 1.5, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "pressureAngle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "14", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 14.0, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "gearHeight", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "9", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 9.0, + "suffix": "None" + } + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "spurGear", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + "preComments": [ + "", + "", + "// Model a small gear" + ], + "start": 0, + "type": "ExpressionStatement", + "type": "ExpressionStatement" + }, + { + "commentStart": 0, + "end": 0, + "expression": { + "body": [ + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "nTeeth", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "51", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 51.0, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "module", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "1.5", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 1.5, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "pressureAngle", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "14", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 14.0, + "suffix": "None" + } + } + }, + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "gearHeight", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "7", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 7.0, + "suffix": "None" + } + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "spurGear", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "x", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "left": { + "commentStart": 0, + "end": 0, + "raw": "51", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 51.0, + "suffix": "None" + } + }, + "operator": "+", + "right": { + "commentStart": 0, + "end": 0, + "raw": "17", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 17.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "/", + "right": { + "commentStart": 0, + "end": 0, + "raw": "2", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 2.0, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "*", + "right": { + "commentStart": 0, + "end": 0, + "raw": "1.5", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 1.5, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + }, + "operator": "+", + "right": { + "commentStart": 0, + "end": 0, + "raw": "1.3", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 1.3, + "suffix": "None" + } + }, + "start": 0, + "type": "BinaryExpression", + "type": "BinaryExpression" + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "translate", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + }, + { + "arguments": [ + { + "type": "LabeledArg", + "label": { + "commentStart": 0, + "end": 0, + "name": "yaw", + "start": 0, + "type": "Identifier" + }, + "arg": { + "commentStart": 0, + "end": 0, + "raw": "3", + "start": 0, + "type": "Literal", + "type": "Literal", + "value": { + "value": 3.0, + "suffix": "None" + } + } + } + ], + "callee": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "rotate", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name" + }, + "commentStart": 0, + "end": 0, + "start": 0, + "type": "CallExpressionKw", + "type": "CallExpressionKw", + "unlabeled": null + } + ], + "commentStart": 0, + "end": 0, + "nonCodeMeta": { + "nonCodeNodes": { + "0": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "blockComment", + "value": "Translate the larger gear by the combined pitch radius of both gears, plus a small gap", + "style": "line" + } + } + ], + "1": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "newLineBlockComment", + "value": "Rotate the gear so that the teeth mesh but do not intersect", + "style": "line" + } + } + ] + }, + "startNodes": [] + }, + "start": 0, + "type": "PipeExpression", + "type": "PipeExpression" + }, + "preComments": [ + "", + "", + "// Model a larger gear with the same module" + ], + "start": 0, + "type": "ExpressionStatement", + "type": "ExpressionStatement" + } + ], + "commentStart": 0, + "end": 0, + "innerAttrs": [ + { + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "settings", + "start": 0, + "type": "Identifier" + }, + "preComments": [ + "// Spur Reduction Gearset", + "// A pair of spur gears meshed together, with an equal module and different number of teeth", + "", + "", + "// Set units" + ], + "properties": [ + { + "commentStart": 0, + "end": 0, + "key": { + "commentStart": 0, + "end": 0, + "name": "defaultLengthUnit", + "start": 0, + "type": "Identifier" + }, + "start": 0, + "type": "ObjectProperty", + "value": { + "abs_path": false, + "commentStart": 0, + "end": 0, + "name": { + "commentStart": 0, + "end": 0, + "name": "mm", + "start": 0, + "type": "Identifier" + }, + "path": [], + "start": 0, + "type": "Name", + "type": "Name" + } + } + ], + "start": 0, + "type": "Annotation" + } + ], + "nonCodeMeta": { + "nonCodeNodes": {}, + "startNodes": [ + { + "commentStart": 0, + "end": 0, + "start": 0, + "type": "NonCodeNode", + "value": { + "type": "newLine" + } + } + ] + }, + "start": 0 + } +} diff --git a/rust/kcl-lib/tests/kcl_samples/spur-reduction-gearset/ops.snap b/rust/kcl-lib/tests/kcl_samples/spur-reduction-gearset/ops.snap new file mode 100644 index 000000000..4f647a71f --- /dev/null +++ b/rust/kcl-lib/tests/kcl_samples/spur-reduction-gearset/ops.snap @@ -0,0 +1,586 @@ +--- +source: kcl-lib/src/simulation_tests.rs +description: Operations executed spur-reduction-gearset.kcl +--- +[ + { + "labeledArgs": {}, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + { + "labeledArgs": {}, + "name": "startSketchOn", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Plane", + "artifact_id": "[uuid]" + }, + "sourceRange": [] + } + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 12.371270510018954, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 0.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 37.113811530056864, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 9.411764705882353, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 14.25, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 3.1372549019607843, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 39.75, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 21.176470588235293, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 12.371270510018954, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "polar", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "angle": { + "value": { + "type": "Number", + "value": 7.0588235294117645, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "length": { + "value": { + "type": "Number", + "value": 37.113811530056864, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "labeledArgs": { + "tool": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + "name": "subtract2d", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "tool": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + "name": "subtract2d", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 9.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "labeledArgs": { + "length": { + "value": { + "type": "Number", + "value": 7.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + }, + "name": "extrude", + "sourceRange": [], + "type": "StdLibCall", + "unlabeledArg": { + "value": { + "type": "Sketch", + "value": { + "artifactId": "[uuid]" + } + }, + "sourceRange": [] + } + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "spurGear", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "gearHeight": { + "value": { + "type": "Number", + "value": 9.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "module": { + "value": { + "type": "Number", + "value": 1.5, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "nTeeth": { + "value": { + "type": "Number", + "value": 17.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "pressureAngle": { + "value": { + "type": "Number", + "value": 14.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupBegin", + "group": { + "type": "FunctionCall", + "name": "spurGear", + "functionSourceRange": [], + "unlabeledArg": null, + "labeledArgs": { + "gearHeight": { + "value": { + "type": "Number", + "value": 7.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "module": { + "value": { + "type": "Number", + "value": 1.5, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "nTeeth": { + "value": { + "type": "Number", + "value": 51.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + }, + "pressureAngle": { + "value": { + "type": "Number", + "value": 14.0, + "ty": { + "type": "Default", + "len": { + "type": "Mm" + }, + "angle": { + "type": "Degrees" + } + } + }, + "sourceRange": [] + } + } + }, + "sourceRange": [] + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + }, + { + "type": "GroupEnd" + } +] diff --git a/rust/kcl-lib/tests/kcl_samples/spur-reduction-gearset/program_memory.snap b/rust/kcl-lib/tests/kcl_samples/spur-reduction-gearset/program_memory.snap new file mode 100644 index 000000000..592ccc8fc --- /dev/null +++ b/rust/kcl-lib/tests/kcl_samples/spur-reduction-gearset/program_memory.snap @@ -0,0 +1,15 @@ +--- +source: kcl-lib/src/simulation_tests.rs +description: Variables in memory after executing spur-reduction-gearset.kcl +--- +{ + "seg01": { + "type": "TagIdentifier", + "type": "TagIdentifier", + "value": "seg01" + }, + "spurGear": { + "type": "Function", + "value": null + } +} diff --git a/rust/kcl-lib/tests/kcl_samples/spur-reduction-gearset/rendered_model.png b/rust/kcl-lib/tests/kcl_samples/spur-reduction-gearset/rendered_model.png new file mode 100644 index 0000000000000000000000000000000000000000..1814a4c116a3f3dc23ee338f8efffd4a1bf1c0c2 GIT binary patch literal 63558 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%0A0z^hw+} zD7fLL?PKnDe(_1$o^$VJ%z!5fCR2chVm!Xnp4TCh3BdhQTwIXL>Jg#6tEc@Sze*6>eSBF9WsVOI@;JG!8vB^!vNv2zL1tI0i|!JoDiQ!&uz z1o|!+@HUJeKOY|AS~~z@Ni9!6^JGvZFUrsi92_K-@S+X5eFw~ijlpOZ)t~8L70MhbZU}V&2@qL_4d~yyJS%;TGi|mF78aI= zlLWn)tFamic^)~pTjG(o3@}^vv}HUa6l?ClB$YLY2PbQ*?s_j{d?)1i*e22jERCML zzvlbZoK^E>Z5&EQlh8xxwlh2Xgl+D?yAu)WG#)8oUoA`knkC47<8I{5cKeuVMfGqa zgd9T*C!i497dmQxYkg68M7um9TK!nAn1gF+litb=MX1|VKpjrFF8pIcQ%|4zo^%$!Z14c# zKj^O+DdQNVO+EZ=*j7iQ`*+a zLiyoP6yCIW^RTr8{XU9NOAb_D8{xYkP&CH9hT|_XcK49-Fi=bzYqsR{-y54?zZtCG zCnczD_r35qD~52Lq1~j>8u@(6l7FR?vFLypreAZMLUAZADe^-OQ8etUN{i!GYABOK zrp@}cTD$Fxs(!&0`%OPefa{UpR1{W7&vz5{iMYX9#lO$(T;ogP5EKyDbKK)AUcKkg zP;EY)@hVa!BD52h+WPhFt3j?vX6qvifKh9i!(hDabt|PkACFTm@7u4R;m>p4 z={r&LU0|BMS%w86^ruZ7ul2uM14--29w(5O^OY+e{BRjr5XIIRBtqUSJCxVet%nmetM>_h`4wK-bI^%3T_3G~=OvW#f)YU{Y&Li|_^YI1o_uq(MhClS=aihLkG0O|c z-4l|(-qWk+N9A|rpFZ8ga}iuPEgeaa)|xkwAmgwav<-Jb->8Akg>Ru%Uj8&@oU#)V zqPHLQ{5K(r=u{XnXHHkGI3NoMoR)s%EtwBR63Q77yLa#ATrdbqxAlrr)t*%Ljn|8K zTh|YCZ>XY@aiWeM#9kx(%=@Z3zW93{M8W>`wAtWVUWfgW&W6lEF;21I4dWkQ5i+=Z zgqzDMGzuliYZ}KYNdSuRp`m~12~5=dhYydPw|B!~@E|sQ7wXnR1KP)P9{c{=nb~g+ zNb=bH)!o7k#sVZYz6aFUAk;U=+Rs|Z`>1?U(PA1l?8p~d zWLI=g){jlz`O^3^A@0C0IVBu@DRz*BmJPZYzZp zKJP4g*}JQLLUjT%lR^N*8wvsh2KSv51=fH$pL+Cxlr_dS4B$Q2j&Lr4uL>m<3x8o-)h zx_s5=(cVqGsnXOP z4Ttr&d2-T2D)z>U3>E`9}vJ8o>zLpcU=SHsdq}76e&4as^12LsJV- zK0ycXSa=+T4523+M2L)z`gq^Osq?Z|fTX$CkrY##0KZAa;Z5XM`Vy(c8^6TQsoFF~ z0SifOB+@cd6d{4Jyrh;QnoAmKbn!Xk2UIrn8;S?_nYV8l2?_%bIGP*Ghn;8&h#``Y zEs}E}5go8RWboOi4YwiFOolSz-EHd?%C*<y7~JgS!zl+2+WFf+WtAfaftGIj%w2L*#~}fvYckNrAZb_M^mR4-}?AbA0Pd zAZ&S6!bOB4hv$Y4Oj^+QZ$nb}zgSk*fL3S4bd{!eQIyhx zR5$Q$Ek)nU^jc@!u4)(Ax=35cD2?P;O&gNj5OfqW(2pU9{F60`OdZz8`>_FE?|Jow zalL@0zOYsi{xqPIw5F}P>-3gU$F7~-j%rUu3tCk=F&?lf4EFd`dLiyY_#k^NU{1?? zK@TP!6!Oc~XD3s#OwBA}s6-74u@UJwi6nE_u}u3``2y8?9vIpURSdHQK?^uFtq7gC zs3*HgNs9!}NshxFRpq3ELG0r&t`qW;5WKYPUS@hML4mPiBk?Xhm-#X{6kobjxl9U` zuC9$Su2M*(YIi|p$r<*n*V65e3vtHoW2MeNiq7Hxgt+$~@NNcW8WG&NI@E+vaHTpS zyoVr;{3?H1^u;5>`2o=2w`CKc&a8?^^C_N$Ln{W>-GDpDAC|v(wi8ds?CdThZz+qh z@lL}riUm>WFA3dp$F-#`<6hXcOsfBAKNxR5c*KxiQZSiqi9wD z1>P&G&y+Mi7fGYBk=Uc;hpN+CKtquAq1L>$dgOZgHE?MA) zh`DD&zGR6*!F4p+K{U3Lef;WU+fX%U9B_xpv$n7dhalMUUTSS=lp~&EBs?l!dT>Qo z4e5MZu_Mz&W!de_;(pAQw6A8nQKtwvLnr{bQ(YQtqp!)jjTxe61DGFh2D-*FHs+#% z4Kr8{ed*ow7*;BFtE2~53f3>sM%I3w$iWc@JHI9M1@~N$Cs|QP8yu4IsEvogSPF0a zh9$0ZrJ;R9iIpSIQVFTt#5@szp%F27g37S-C6WIBwa1NvLTEDxZpf)a2Jd;DN&>D9 zWX~DoJbp2o5x|L0u-HRGr9BSE;WSoNI>V?-6GRS{v9kzVSRf$GF@IS$cGGFa4pt6Y z4erR&8r91+z8}sgT}CcCW3D^T=W!SoAOwkn))%aRWo;^9yd2sMu(aN^%-23h#tI@2 zWm&{5T2v{ECsGMOMSw@}ze=44dtOkRYgt%R^6Xc$d8(mfvD@{~bz7hIE*QSZX&YAS zZrmBBLZZ_kT1vrG%~{lMr;^~lZ5N*JrFb^l;$gS_2SBoLa3pWI*ibuwf`iD9i86EA)ey%@ z7MUjo)I4jn2f%i7`b#;)RbX4{DzKTavicKNB`340rNJaM{Ck`o1(T5se!NOY917yc zuYSD;2OEWjEpy_x-;3j6LDtELR2NXdrq2OZmCtd85hOxDZehlrF8MeS0EL1Twgj;w z6dsTICo@P;-6^T1u9a6CJ5MfGRR!fsIf)d=f=TPKe_U=`c(v;{SZunpmh_(Rm7QWP@BI)@@Gq)Z_)aKN-;z_Ygd zLbt?K&MAp-Ahu~{L*QQsDh_sFpkuZm{Nc4AYjM~tOp~Mo1qIM&WGP~45Pa!Z;K9-u zUsy=bR2`VkAuwvDL5{|H2Xi8xd$VG>x(UBy-w@&oe3msX^6PzO@<=i!R_j6jXSo>25)abckYI0 zN#xO{HNN%?w2Ye8vc#l@S+tkMI2)`dL}>0QdTqV~0irnrVx(Lep}Au3ZKhrNq}HcS8Y?+UZ-n#`Z$Cg78OyQ!&uCG!J>igHzel z`?WJVIStl)$mcXWCkTb-zrv&kr5EA=TR*hKSvErRdi5S^UKkco$Hoy+b;wufvU1D< zB@=evrKNWe%nhFvRt02TS$H?wRuS*e00ea_69ETX&!lLq@LY#N?(R@jH{K=OKe!gEpCX8I8 zRPE_|cMzJtIB5W-gaUpzj*rH^a(j7wlw8hT<z5R1kkFvCwn?}HGtXxg!^Xx_B!?oQ{|$bP_k=iZC+ zE2>=2qdQSJGPeK+{aM8VOk3hm+zP@`CuMRnl3KoO&^Q3MOX0sEv*P!VWii;{3>ZMT zKu(ic_9OOE>T%~zuvKlsBS|~#@to@!4*}ysrT&d{j-dX?nJNHq_xbFQV?kQvJ_tjQ z1i*pEpceZ`Uo`x z^t!pN-voH4(oNO;_sp((By)@Dj#5omrb28gb2cGy)&fU48%D&pJ`GIq(MX;D)C>7K z%3|!#teV)%^S+({H8pdrN&31tC$bu|4$gZ7a-cwVQ@jkSyzNO#>d8feWqFl6i$x7x z5069o@!aE`slV07nJjSvjL-uhpW*z>aHL>?E2Rs|TtWWRf)<0RtSvi2y6V_u1(!#@ zc8m>Xd-u!4L?vKP|jlHSx2$eY$jn%#FH=QE^AY+BmaYCN)}R!hAfHRgNUbb8bur z9X1SPuKNPzeI(2K>W}s@h#p{xGaX~;84qH>GD^=m={ea9zrFBheKgvXrX!L&PF>xN z70)&!J~VUr?Kt)KDMhS@GV31_S!!Lv%`c_XWlQv>6GR5oaTBn5&N4xut9{qzAqtF5 zj_?{{FuNVkdXi@gNbN~vPc@#@@wf-|+=CbQ(%)K=?s_kSsXrN70`t{*Dytbt*%tsO z3VFw(K|mJ!{{dkro1owV!U0a%x7cOBY_b=B0+WBJ$#iSz*^GH#WQo ze+w866#|~ak`6%-^nX)f6_}a(H1yh()Ixl0BRelFSsJ7e7D#5O<4S3mKa$gh zt)h&y2rEV$7a7QzFg{2)<~I6VAyta3e<1PzcSB;DE6WrDS_qg!lT6?-68r`kYC&cu zy(^fSg#s<1%KIvEvFdO4uk}!)++Aa1EL&Z==>b`2L!KQA5FewS03rvMY{UXdx7j2x zz)j_mSr^~O7y}%Q%5v7HdLDp*xr&-Nx-Q#mX! zVkH-q`jK2%eu&cc8{P$_z#-J96=Sh^-~&`Er$0#pPw`Bda|O}{z+_B13tQ>vYC>lZ zbTB!3(Gq+UC+6`GJDJastD>5vn0g3XT`p9HHPHBTU;$%boS6q2&xXvzDgKx4h4zO$ z9~za6OyorPE6;?MKO-hBN^9}F{cEVUV(=0N_rwNaQYUkC*@BXUTj9n}`$Xn!paxI< z9ShIQM%ssxnZuAGBT%6$zymGld9|)G$C36j$8J8z?h4NY!tsyzqnQf=38U*zA%+;t zUs&wi{pOTK(^m3uIbt5@9fKnUt}NC!-UTtYD%mtyLmq^H4sD{a5U$(u_u%GE(q8W9 z!2w^LGyumo*f}T*D1(t(g4OI_(d!)#{)?hg3P!aYrAL;}@@iYaLnmwUJSW6;l)^SY z`qV~DP%4-O_{CxFvAsNR@|24V4&#IsXht-{GKMN7I;b&nsB7RTEDrtOAhV;F{J2q$ z_;X?;r=itkS9!}7Bl!IJg&E=DxJ^v3WNrXyos9zgGw`C%$HZ?2e@w(-=b_zrj?huH zbxwb6HGkmJ#yo z+HB~?QfyLL16qbmJbXiDTa4dxhbSxSj@d)I-k^$`Yq@k1CsF0lOx{$PK22QI{Z%8~ z=?>34yd{UuIURy(6SJzL?(rCQW@}T}kzPTBRwGXF&?nc><`&Gga&whnr;kZzO(`uM zYlm*duFTlM_a1?Q|Ks9*dNPYHSKwVGwU2}~JkpYDZW|3&rjL@+u%2ABw4kU0o5pHu zofL?XJ0tpoVZZvq3`lv9@z?}YMg*5<1Y}25?K8i(2i{0CA30)#2F_n&kw9$|$8T{E0q~@M;>IpdxYA4yS z8W!%aC#jI4h9@bmueemeSsYi%eiIdkqzKGzs*SThL%pn6dXI=DJaF$$Q3E{)`WVVu zJ|Yd8Bn}egC+Ag6UTAWH3eUO8q2GOGCMU3XZc7R23-o7qo2;Q&hb!L2wWlP{D=Ci0 z*KMO^#JbD}E0WI^;j&`e!ue!6_vecFiC~ttPX6Jsu1iZOk;TCF5fnvcM-hI~TVvAY zyeS!?tf$bjAG*rC$6DJ9nKxf>*6%Svbs5A&9@zbK>O4cKc$b5Wc$Fz%>)>%bvu5%t zRIu*YE8|ATRWV;Atg#nQh2erIJ~#snMvZ>d)3}UmrQjfi1wZS3lbbUsd{wJs^@>*5 zsKBPQ3$TDAnU2K?BqV(g;AAlJNmioRkgb6$9A^dwc2rU;lD~TRs+0DaSG41d7_W>N zS5G2Q!`lqPxvqp=mQy0kcJ|p@tFysg_L-6Up?j1@%BP}g>bXiC4YjLUV8LedV$ia* zV&q8Ks#Q`A-Dw=4=%!+G#;Pw2p;5s{944@aa?wu1yL$ENId%TYz7B&% z5j3TNVg{KZ+f3F+%yoxGUc%|JmY4*G7$_5I$a?wzHhk)mKRM^{)E$=r;MnMz1p!&`6Cv^a?`ETs zd%u4Dc#eO*gSWc`i}rE4#>0-R)rO}l4|hDYkfSV{MIunTDZzEH{(`8L${K}f$)tHl zM&Q||o>L@`A*jqIse9uI%0-y!fT0&S=YTh`Js_~;vM-n<%Dv|vDj)GwHnl;EW z&REbUoP9;hI3LT{*8R}fS-pCG{3;s#kl|S3cu+|lig2QGXGI|Nkx-2EjiMN(S1_+* z%M40a%t56i9__OAY|)XyAlt_@{cF-&2;p+3netk2Lc_-F^0lM*u=0Ky)W!`M*0+Gi zXju1KhupSz7j%9)Dp9h5u2SR}S1IzF9cfbXY3d;3RSQPPp^Av-bg{34o9o6Wd-7SU z-+%k%o}*EaGU>^$aM0bpFx;}pD;isy3VCiGoD*juVa=>MBPOxjS8f~@WDTB)V9rMt zpjGHXg1yR^)|Sh;%i{h-k9kyer9j7%GlMYYLxXe4jiGm6OQ!1lXR{^X*H_k+shb<^ zy04cz+?ThaDQyz&+k~F13|Hg3@nAqcPjnMh0R2Hg4Jt)X-HX16Y&2&`({^C<2Z6_l zJ*El}p34Q7t`|r?7{`Qe-u@f@$o1`OxubGIJe}=NRdP?Bix`n9SW86azEYiTcF9pp z+m|ct5G6awRgtrXet^j+G^$UC;e2EOvW~8NiXA&jHPH875Z&5Iqy}y*BcWqec{J_X z?lIN7Lx00+lANpt-J?+whK1K$*~F7e*Z0I2kcT^-Jq5Q#wk<78JU#*@<}1R#W~%FI z%I8vab#V=ugCL;}l2JY5CgNuf8_*?Bq!7Y6@;s%go|B}%pRBpUuDH9}bA|Z~C=INM zI6dTwocDmlYVwd-xOLxTwtk~Y&kiaIhXunp3x#JhxFoo6^vt?5njUU!RGEuX7o9z@ zwG*9m1Q8)jo? zM`Cm%4vmsX5)FJ0#AEibE-g!YAukM4%@RoD;U?9EIqb1cN6pl|6}$HgxE+hspaY-GqsUp&7%!#}P(D@8ih6 z(=>5$3HB>+&#?b8gX(;xnE{0J0_EHA7OzS^@X(;#fxtN@Gxt;D37m3W7gtgqQ&R4I zjE}A55v$N^pM)l*&ig(IDP1b*q9)J9oQ~stxcUS{eiCt3&lo;q6NH%qZP^;6I^dlA zQGd+YOvrAtl~cS`UAO~O{|%vVo+kP7n@oo{A6)5|0oVb?jyoCL0E)3 zt}zT><8rw+La@5cX0O%9D99zQEFI%P7s(kK7Z*pC!GvGqNJ_Nl=X}kzAjUG;n{Og{ zk{p_kNg0@~vIi%)n#Xnk*9mokyp5v6#8Y?ZUHW~sL;6MNMwJU%p2z!{te?;&R-Nps=%V)%0Ylzm9`IEQB+ z%s%Z9u`4Ghjv}yXg1r0|%}vTj9M!no+P*9{?viPIFC1MEBY^K~Se=}qEV8mx$>x6N zs%Z1=)>tN-2+#-|zG!C6Rz$Lg3otx70EX8Ak!mUY^Ny*be zSRLl6GwG{^sOGf-3OBmI8D|fYYH{>WO*Cw~CK~PBQJn72nJs-9uM7?)cQ3f*OL+r*QfCe>rtM>zvEL>5})+#CuSg%P{n zQ1aA0@+^|xN-S3lSt^V!<=x~`#Q1c;gJQb!Nu^5q0RlhUXvx)Kzq{73r2zxJAh=BW z0@C+IhF)Yajsd412??S>>*3a z!ZSEE!O1bd(MLj1z#z_TP73PWEdHrq3o1OLXyOv~Ak4YV2Z2EO`+dBFOxGiX3wL9M zIve99VufE(N+aIF_BmY%O{iGJ(EE69D`zOO?tU8Q5-mfxNV>}#&x&;Ca2R$JH+N9G zyI{=bsSj@JM%N$h7(m8}0!@YHBdD)@+9CreC?^$GOwk?7_p{ES!^13bR)xEZg&e@g zw;!iv?3ohxjHn>9Hv^B<5N3wvT#-`b*FX!JQ^>)F$DbVzsGN5>VYqqeFvYa+Ll9Mt z?kSEmZ4oy6jUMY;j|Za|Pv8xh?IuNx1Blu#C&>fKJ+Zg771C-Fo zjtQsfXnMyKD>gd{uO^|y_=EB4q#+;~13dV|V3`j=Hw*(Q$*LQI!GZy2$huhl;$vDk zjFqNGEOFWu5t4rXnhr*IdyJ1t{VEBxj7QqJ;I*ya*8U)|Ot|q-V1n@&gO*q_e54T* z2R_NGmHr67&yw!1USgfJ2=7STh`Lv#;E^ew_m2KGcFeNcC`XcD*krfsyn; zWa!1i&uQrl?GOx{Axr;5hmfUD=ktAA5P!Rd{uRl*yR^&k#1YakN~cHLyNa1U<1Oo! z)1^Iqld5K=%2+uQz!THw#A-JVkGcBYC?ZGFw={*ry@aP6K{>!s6Fuh;`=Phdzz41nJXrCOuTO!tH6DN&Sq7zXRXLcmA zO<$%Ev+ueGhTzF4__d>IO64)532+&BZh3ceU3UXApk{ZpCJP)$beCcWPxuH?g2{DZ zda%!StGLC2et*Vvhi!7|8QzKjAt{xlQ?zSk+rUX0E!G{+*nzXdH>5Fw)d3a`Tw*W7 znk=S(h$p~R8d3%KiOEcJ5Y<8YCM;Hr0;2}v&F)lrL+>NgLVBn?ol_ieCdrM2(Vejx zOw=Km^V!6zMbD-6_;kok>>sFlB$edmIf@7vOFa_$lTD4~j71Rs{%DI)-EQ~xq$}`% zNY2-COoUOW00*b!l)1DO;QU|^=*oo)201t3NV%rO?U}+hU9K9WKI${spsCna>tyf7 z&yMZHv1J-rqX#%?&SL_1{2TXD4AFvcjkWK>GJ+=gs+79Oa2WUO8JPBe#9!~T6w_3O zQaM`@>q7bVwVff+i%wO=M496_(L^(Q^S&^&@UlNk&U-MKkaR%mJj{<>+eEx47lfrS zSwYv=gU5PG4@o2#tb&z);1@KAZ5ZIzI1u|@QqqZ}jZ%qZN;7C{__?Y#{QizOYTq3y zzBoaXKBfSI4Jva1@}#5{Ov2>>DxCL$ngiZUJxK!%pvcCVHlp;>g4p^B&6Wu*PM{O` zrN+#`064DRKS_U=-f}uM?^^0Y6QyB!IG$v-9R5#Tm_sC7(QswL)s@Xf&09TN`;#c` zEC7y5@L}pCOaiN9^rU*#J)h{yJ(D?spta%Q;U0-DcbU+HWcC1GdG_Ysu4hu=t8)*L z9PW9Y7f$fju&*$Rp`Krl-j=ini-fCx|M1+52M#fF)PM_g>qHRML` zn5pQhOkIo0_GN>lW@NLYg19?Fo1V+yD z25{tAvR^R%u8dTKeUi!klA=e)tc)hcqFjxG^T`nTIE)9_rBXoQajI(rmt3P?Sm!J~;}QP{Jz3US0PB^YvY(Mb z35;U!BEm3!*;q)MS{PWI)1M4S@}d!IOQH%#=M3e!%M*NZ&U$#i#)S8A`W{tO$s5ys#vS$K!1Sr&@@( zfkB9s3K(0Jpac@oB`T6Dkc3QT_Vc{o-%Ng^yZ^wR@f_yFT<7<_yqD*F-sf#u#E}}X z@QxqNc~IXq1&;AR$tcm>M8K_RLF_67QAEBL=}$DSF2i^oWwFc3Qz=Sa!jI|YeQQ;0 z2l=~lxD~%ZEr+?Py<|lv_82PooQ)Ze+C;tf^>C|WQ%Omcteg78CN;vSn&Z}4vv4#C zsdfEq1uM2?N~5?>IqxVOVrbNjIu1O`Ytt6|M27B@*KU+LLSm3*vE4m%cul}YT=AQt zqSM4W$403=&LVYISb0E5@LB8RyknEGvYI$5U#cfLJjMR50)zm9^gmq4sIDGbzY(n@ ztb7xuw$KE-Ylv(IBq46_fo>?-y)|0ZRKSs+7XNaZ8i5X=AG%oOP(^yCn`YnN|3+AY z8@norr3Bs)LgLdTFBZKEzLTOn$}tiQ@l2_83%kmXXodI!8CWTrc!SAJK-zU&_0}5g zlMa&$xZ#Z{V;lCnzo#6dFQJNE$cuLkRPb;)v^s4tha7|)uNWwZ{IH8`9?`X%qafuH zmWzHs;x{aCXh#x2F<^wtsK`T!u%h={-1InFskNO!8uxM^M!+iiXK~>KzsXgorAiHV zD^J;KNuFx6Iu~no7B0H2YE3=g0#Jcbl4na&;K=zyXG|U#%=l~31&#n z1r3OY!X}k=$ugpZf>Y_bg`geP`~g;gz&HA5MbvV zw-dvY-5Kx^^Qy-N24yYecav0lJrasV%r&S6Wne@(kLMXqO&8m$W?DQCeX&r91?zta zcf5}^nGy+`J<(-S#ff29k!|;Fa8XU}!=yjK7Tv_y)C0$^sef8m2T|jofaIZ{>OKU8 zWswCqAHh@~`i9Y+b1Ve~jdnAKzGwEBGiB|sE(sOzG*oJ)G6-`ft15uF;0(swZdsNT zcC><#h2lw%7O++SAZmPpQp%LSvvLB^d;lerxi5IDP2*D*F;!4u@b7Tc6n`Gt|46M0 z8C^C)r&nMhIw*NH2*t;FOl``;&iEQ|HWCcY8LNLaNj?Kki1;rg#3uxxtGY2}@l1)4T@6zJ5Ev2Ua3t2LDE(Lb$g-2wC`Q~xI$Ty+8V z%k=Hc9Yv)ucv$Ip;TMFs%3>_sPpnj4oYR0mAnct`DcV7!BxSQ~o%6r?eg0$m18N&w z$_MaYX+f#GufpcH7_hO0sIXjXF4rhqB&10UZKbB7i=t*!F+}>L1*d;}F(*!SR4si7cBGP_Aj-^d$$WdB`FN%ar4TKDuq} zpx>EVlsS!B!U82p6*}PWtV4kWZE~gIBbJD?tv9RDIDE%Iefq$E&p7Z0_4{ofYyIa9 zvdovzVvBM@K(i_v{<^&MVnG{%92LN^Et|hyz2!pHxvE}`e_In@I&R)e-fI*|3{O;1P+=#%MBRu{cN zFFnYQ&7cT=H2sTBpH8QRk`jTy+D6jl;ftG>wl4?;)0u5Y6kaG>X zxOM(}w%#An$yDbynQ$AAqt4oeZb95BJ& zrGwdTm9R(TbzOlesGq8u+yg+iGGmOQLDxj7vbKy-Dw>>;^E?6q%7qAKri>x4nDgzO zc{@qL25fz*Ja(5z-ujnBl&a9AouF_gPcwjjnyj3?-niIDLWsQONNeh(FI^7_qxj^v z#8$!Uu6mI%bjCf3tJAGmk<9jH7u8s`tyoUAc>%7dsh9vJKxn1DO__7d;3OR*E}0=y zcKX#fFm-U^w9n80phKQC83QluwiGKHd6z7-V;}1Fa9p4c6glrFBEeAf^AT)YSl{_X zeS?-a>unfxEGzC;!WGt)1C6gs@(M~uK*NX_5Y17-l{&r{=q!M#+)o}kCr~j)B^)Gb zu!j7gDtx?Ws=`)i!&LUgy-CigtCkcqivv76s=BTVEL;ok)}33v-T6?IU`vVyR8+9g z21Pk`B*gUY0sq&MivhUD@q<5o3XQqLnKsE&Dd&J9YNgW zP$?I#>RhGfo#orc(t9Q1Mv&1diWJe1=~~{_`F?nqH%w*j9h@$$nB_49$Set_g5==( zs}6#5ul+}@1)Zl7x8QJU5MdkO_k-TG7LaL}Ovn%kNy^W8!7)A;I{74ft?)exIlo$E zr&myG^p1~&HIF1G1~Om6A2=^IyP)pnziKF?huX)_;b!Z2DaWY=k${F|K(X=$*%m4S zT>towOG-+tza6S1vp0b%blsSoO|zA(9cFig7ywxxO}}*T#tUDzq0Tn0gVxH}<#vR) zV2yX5MN*|=qm`}fwb;>ugQm6JS6XL(tnC}Ka+q?n)QlDg8h$?!-eo}e<5t)iVp!tn zq@^N4wvZ1~IXkKsF4OQn_LMkac6CK{;$b8-+;B;dF;xSGz9)>U9%$bxOZa0NB+xtp zo2kElY_LI{m>N|dlspVfFanA{?ZHRV^pmYGit%bkoIz-n+yQBSUyt!t-!&1h?m=K5 ztug>6_)Wv#h$8JLE?I`mkcSj1+OptqdPRVpbxpBt^NpuyY{mLym%@zW>nEo+d&cny zEgdRVp&TGCzoOI)x9|u;CoE4T5RQ_J_93=j92vzfhnbbce9}SKZI41;a1$MZi68L3 zY`|eQ{xv>EZ7h>!;$vm#t0Nm|#iv5c?me8vl9(S;xBqIh2}r~p8`{FG%p zp0}hS>6;MW-6SatqcCq2cwSx5#c%<9ivlT;vOTiqI#_)y|W zHFQ?e5|13HO%nU2d)Pvp4G8_A!Z*lp3DBVBrb5DJm8n`2Emn-(OcZGCRpU4>ukAeZ z=%IerrkW0dzY!nd54}Uj?U1_Gkp+-_4zy3Ke@b*De2HDEZ8V}wvTKklh-)@iv}WJt z{rkQ)C}QWZ(9oGly@F6W%8GoOf5c;;F#2GWT+ zwlpj4lXPvb-hH>}-ByX61LBZZEe1*vX=)H15UnHD`LYqYuB7c}u=Pi*)PvFWh7q@%BdY!>QsQJgRBgXaGYLD(g(N{b zp+oC^uI$|F#p^;Fj}f+K%3hP&B)!v3D+5eHS^*>wUPLgf><6w=&Pn|ClQsFsfM3Lv zo%R=;duA03%cqt*Ta*KEyWcjhDSjxb_pji-k1HY@n3OCZzw=Fau)mJlIDfF0hem-rdOxRhu zQj$*5FV!x|oYIlQUTrQRzm8o#%2{1`v5l{7Xq$u+cA+>rxH-BKT*Uk@EV@3cLDh|D zqr@)jj|dUl;W}>QgImRDnLzg-<8++o)i{y2tobfk58^7MWd6wW3lWB7u84!#zWb|N z%(0*F$mppSYFOtRkx?+Kf|;QxK=deac#NgI4VWTENNCxoxEmzfP7!Jv8A!SKv%4id z>};@Dov>;`J1)M4x*S2Y5)T)85RULWmB!HKNsQaJ&5%YDf}m-_YPM#*2xTojqEg78{KVH&}$SYv`(D!8ONRnD7k%z)#rgvBP-Kvpb z19C??vIoAHc;NR8y)C~J1v0*La!Za~+f@-W!pS-Sw7VfbqQb2+9@U#QNf4Le06Z(< z>*zLH5w{vZDFJnB?OY2{<{3@?FfGm2@6mtwlEeV4_ydTXhLLz9;~lGzPEuD#bybzk zm6h+2g;Ek-P<2JcDk{gE=d`1#IT9cjW<-zLw)EQ2+)@b~87ofbL{yoa&lN`_tY6zP z(JO4zR`4r-;8*?&**QDXvmlV>L}lC!qF1&Xypm>Aq6Dv#(KG-Ypx(FBp4mNl+-^pf zct6bwWrZbK;V`^%WWkR(oAp>7fe;rM(?_DnOJS1`O|S*SF1YB7eDg?`q}*XfLu!voToSX86(jESU5vnmKH@PNIBy4Ng6 z&h%|{qDJj1dy316f+xFbPcIXUsJCe-VkQ4eV`q3Tv6JFVEV9^$^3za(2yds2CTB!) z6Ag78Wvmgib|GG6U3XR13mf_Zf1Xa(7Gx?e>3ugQ$`Ory0lDiPEwv+6YIUZ37THiV zjg)N{ValG7RGLep=9`Z0|0Kh#J(zOC`Jzr4Kk z%eU0))Lmj{qbt|NjATMKVezGL^G1kL2RQaNy%*r&K{~Q%7_~l*nn$^ynuYpDl{u|K zL-~RmYcmA0s1=BWwR>#nYT<5}Xg8(S5NE4(cWqLWpSThPC=AmcKAhI(o|bCWQv$hDw56ra z-1&^2s{&F-Tp()uuw#y1A2}DG(x5T1%`tp#XjG|y0uhhnqfjSbgelAWXDH|)>Ee-3 ziERPG3CmQ8hFJ0E)T@Z88bwGUz;F&njqel{?Ac>8Eic}4 zX3ezAypB-|`v$u9TVu|4Za#2iv$YXW&?sG=W7#s~Vc>}y`X$b^-7vrTVcKv~Ox@r4 zOx?PZxf&+0zn=;($g^JY8%h^=Q(O;4G5Uq5$`7>B%12x%Zn(qPtzKl(+a}kbF1fEv zvv74p(hKJ;N!;fo7o*#}1aU&8kP8f*7(hu=@9D<2)_DO(2#|Qy4Gxm)S&`edVsT5r zbvgTs&DMTua?1LXs@ztM=CIg~_a;t}v^|V(w{vcSow69`8(~_cY5p~hE3X-kUeJbH z>}p#xzk6bB{3s{C1F%HCX4ZlZ2XR@yc&$k(oZt~%#|O}l zrj?^9@7b;$%VRt4LA=j7^q#_$AiK;~;r3q7s(O^2WNSjO%13Ccpd=)d1SYV+SlNu5tJGaQF2#K(y|?$PQ( zn#)s&@JW!874Y<7&|5U+Gyx%qz<|OqKoX!Yl9!?*?<{lATBeD@QK~tK2V8n$d4w}J z&f{xMm;AuS^>k~fXJoxESoNcPmc-p(_AeR}Zr@@lXp{REr9R1#uZT$egD)PqwdWPn zIdX}cLm54xBPO%#ooT)6%`QnRH^#if{M|OVRdnlZ!LmLba3&>ptD>felQ9@qvsfUs zg+~w>OsxJ6b$e=M5zp@^sb*4V|2LuHiEIol#H--9hfL>I!CDmH)ivYBnFhM6_F$LG zSo*3na!rSz=A#-dmwVXeXKoCO+&Q(^ zB)K0edw!ag4cY8u`J(+FM9^qC)U^p6t4+*h4!HN@y}R(cvMm7@Y6!SpYIarW=IHOW zBTFfvQhHcj&)7gSo8*{GZz6v&!{wwCebLkA!_Utg7IRKe)tLFPRmNLiqhYN|9CFOy zj|x>g|KV<<`jg@(5C?3?iE47QO$$)Xd&kvfw_(Vv1{fP&op65e&~y2Mc>hb2!&}x07TkN-Zpx)-dkovw-#G5Bt=lEr0-0KG3?IKyJ~(Wb zylbdE)%UqhMsVywPzIIJEJ!&BJS1(;jN`K|^AU_+PYkiAEw)E060l)Z;gX{~r|PK> zx=TUlOt@{l`?%^c_amyDHg29f$PA@)Yu)*43E4C@qk}ZiciXmB1W465oq=}utLju! zFDY>9vI^R(m-p;l-nuraiWk~tp2ayi*K(pdLjJD?vj$;_N~pAzW;+ZGIfsF%VGC?V z!)8iNpo()!Kzz_W)RJ_)A((A2RdO(YH0%dd4EoNVgO` zhBuKEi1>0I&BcsHtiM^GWMJDmr0~h1cZ+k6zRIA5X2>3lXFFa@xb?K~LA6cWN>Zp1 ztrYw#_n3RjQHN5wE?Mye%i@yiv6(B>%P228y*Cs-T!?2_q>w5P3i3icuPS5fYWBcW zl}V+UHz&rXnT0~@$sOVW^4^0lW|a1SQuvI`x6fTysp{$ zQ5u;Y+cVRXw~%)zI0^^w#;NOQ9>6dHFeb3ht zp9;BFwA-ooaVbd_T?y@~3tcYgOb%^MO>MK#-+Y@1T}l`A68R|tL=zwLlwu_JyRMJ* zcZe3Z*p+8e|DRLH!sW(A-8T<=wAqQD6n<^|I_LPz7LBcWSfhU=rDDl?w8zA((L*#% zA2;IJZ8nIdI(ihoX8G<{Et-G!Tb*sQ*FElIg2-9c>1{9B=Ew!2#VgaAQV{fNoMhUm z-Yfun$i)55p4jVj2L)6G%y@m~1x;t!W0#sHqU)%)yS}Tv)h?UMv(n2{xXWC?VmHYs zxw^*-kDA-7xoe+{@ukjbbQQbb*>}KKQp{?*IvsAiwI>0hg(y_Y9D6(E{nnoHG~?{w zxRcS8V106XQ*R|Q#Ba%Z4?Q0xe&P>|(ta{=v;VT&=}5jL-tfVKX+OkZQy)y6{C@XF z;-@qYbn7Ly<1D7!#>DMJ=?$caS z#&~3mM<(*{2V=)Gv0_?0n+bx`GLTGkpO%^RWQ<3~cw{nYe-M!gsr;*v$;Z-GV_ha6 z%j9F3kSY^WWl$==9mrTk|7v6)?)268{|s?=UY?tGXZYUZ{aOP2cjc68FI)G^+ZX*0 DwdhpC literal 0 HcmV?d00001