diff --git a/docs/noise/vulcanus-cliffs-NOTES.md b/docs/noise/vulcanus-cliffs-NOTES.md index 64dcf259..58a5ce80 100644 --- a/docs/noise/vulcanus-cliffs-NOTES.md +++ b/docs/noise/vulcanus-cliffs-NOTES.md @@ -31,7 +31,11 @@ > game does not put cliffs on ore (3 of its 1,569 cliffs across the three oracle > regions do) and the port does. Read the LAST section, > **`## The blob is ore`**; it supersedes the "field-independent suppression of -> unknown cause" framing below. Two corrections ride with it: +> unknown cause" framing below. Its "mechanism is still open / settle the +> direction first" close is itself superseded by the LAST section, +> **`## The direction is ORE -> CLIFF`**: the resources suppress the cliffs, the +> rule is a box overlap against the resource ENTITY's rectangle, and it is worth +> 31 of the 42 surplus cells at `[1500,1500]`. Two corrections ride with it: > > - **`37 / 1531 = 2.4%` is the NO-lava-rejection arm**, not what ships. With the > rejection `renderVulcanusCliffs` actually applies it is **33 wrong of 1,525 @@ -1442,3 +1446,91 @@ port: the corner lattice is the bare `chunkOrigin + (i, j) * grid_size`, the elevation register is smoothed with knots at in-chunk indices `{0, 4, 7}` (`hi = min(lo + 4, 7)`) and **cliffiness is read unsmoothed**, and `getModifiedElevationInterval` is `cliff_elevation_interval / frequency`. + +## The direction is ORE -> CLIFF (2026-08-02, #84 item 1) + +The section above ends "the next step is to settle the direction, not to add a +rejection." It is settled, and the answer is **the resources suppress the +cliffs**. It was settled by a lever rather than by an argument: +`map_gen_settings.autoplace_controls` is settable on the surface exactly like +`cliff_settings`, so the resources can be switched OFF (`size = 0`) and the same +regions regenerated. That is #82's collapse trick pointed one subsystem over. +Captured as `oracle-vulcanus-cliff-ore-direction.seed123456.json`, pinned in +`test/cliffOreDirection.spec.ts`. + +| arm | cliff-vulcanus | resources | +| --- | --- | --- | +| `[1500,1500]`, resources ON | 885 | 3,933 | +| `[1500,1500]`, calcite OFF | 912 | 19 | +| `[1500,1500]`, geyser OFF | 889 | 3,914 | +| `[1500,1500]`, ALL OFF | 916 | 0 | +| `[0,0]` collapsed, resources ON | 335 | 945 | +| `[0,0]` collapsed, ALL OFF | **345** | 0 | + +**Both arms of the question, not just one.** Turning the ore off puts a cliff in +**all ten** blob cells, `0/10 -> 10/10`. And the converse arm is what makes it a +direction rather than a correlation: the collapsed settings force 335 cliffs +through that region against the default's 283, straight through the tungsten +field, and the ore does not move - the same 945 entities. Cliffs do not push ore +around; ore removes cliffs. + +Three properties fall out, and each constrains the mechanism: + +- **One-way.** Removing a resource only ever ADDS cliffs. Nothing the game placed + with the resources on disappears when they are removed, in any of the four + paired arms. A perturbed field would move cells both ways; a rejection cannot. +- **Additive.** calcite alone accounts for 27 cells, the geyser alone for 4, and + all resources together for exactly those same 31, with no overlap. So each + resource acts independently and locally. +- **Local, with a geometry that is a BOX OVERLAP.** Not "is a resource tile + inside the 4x4 cell" - the test is the cliff's own collision rectangle against + the **resource entity's** rectangle. That distinction is measurable only + because `sulfuric-acid-geyser`'s collision half-extent is **1.398** against the + ores' **0.098**: a test treating every resource as a point at its tile centre + explains the calcite cells and cannot explain the geyser ones, which is exactly + the residual that made every candidate geometry score 20-27 of 31. + +Scored as a box overlap it explains **21 of the 31** suppressed cells and raises +**zero** false alarms across the 885 the game kept. The other 10 are not +scattered: the suppressed set has six 4-connected components and **every one of +them contains at least one directly-overlapped cell**, so they are the remainder +of runs whose interior was rejected. Adjacency is not a free pass - only 8 of the +885 kept cliffs touch a suppressed cell at all. + +### What it is worth, and what is still open + +Every one of the 31 is a cell the port currently places, and none is a cliff the +game kept. So the rule is **pure precision**: it can only remove surplus, and it +removes 31 of the 42 cells the port over-places at `[1500,1500]`. + +**The mechanism is still not a collision, and now that is doubly established.** +The mask argument stands - the fixture now carries the layers rather than a claim +about them, and `resource` is disjoint from the cliff mask. The disassembly says +the same thing from the other end, and more strongly: +`EntityMapGenerationTask::computeInternal` (`0x101622860`) calls `generateCliffs` +at `+44` and `generateEntities` at `+148`; `apply` (`0x101623b48`) calls +`applyCliffs` at `+124`, `applyDecoratives` at `+152` and `applyEntities` at +`+164`. **The cliffs are both computed and placed before any resource exists**, +so no collision test in the cliff path can see one, and the "ordering effect - +maybe ore avoids cliffs" half of the previous section's guess is refuted by the +converse arm above. + +That leaves a rejection that reads the resource *placement* without the resource +*entity*: something the cliff pass evaluates that knows where the patches will +be. `Surface::wouldCollide` (`0x10160c088`) is `constCollideWithTile` + +`collideWithEntity` and nothing else, so it is not there either - and +`collideWithEntity` (`0x100a5b108`) was read rather than assumed this time: it +walks the entities in the box and tests them through the inlined +`CollisionMask::collides` (`CollisionMask.hpp:36`, at `+676`/`+680`), so it is +purely a layer test with no special case for resources. Note also that +`crater-cliff` is suppressed by calcite the same way (0 with calcite on, 8 with +it off), and craters are placed on a completely different path +(`CliffCraterPlacer::tryToPlaceCliffAsCrater`, `0x10160bcac`, called from +`applyEntities`) - so whatever this is, it is common to both cliff kinds rather +than specific to the cliff generator. + +**Do not port this as a collision test against our own resource positions +without checking that arm separately.** The 31/0 score above uses the GAME's +resource entities as the input, which isolates the rule from the accuracy of the +resource port; driving it from `renderVulcanusResources` is a second question and +has not been measured. diff --git a/test/cliffOreDirection.spec.ts b/test/cliffOreDirection.spec.ts new file mode 100644 index 00000000..5c7b7358 --- /dev/null +++ b/test/cliffOreDirection.spec.ts @@ -0,0 +1,321 @@ +import { describe, expect, it } from "vite-plus/test"; + +import direction from "./fixtures/oracle-vulcanus-cliff-ore-direction.seed123456.json"; +import entities from "./fixtures/oracle-vulcanus-cliff-entities.seed123456.json"; +import { makeCliffPlacementFromFields } from "../src/noise/cliffs/cliffPlacement"; +import { + VULCANUS_CLIFF_ELEVATION_0, + VULCANUS_CLIFF_ELEVATION_INTERVAL, + VULCANUS_CLIFF_SMOOTHING, + makeVulcanusCliffFields, +} from "../src/noise/cliffs/vulcanusCliffFields"; +import { VULCANUS_CLIFF_BLOCKING_TILES } from "../src/noise/preview/renderVulcanusCliffs"; +import { makeVulcanusTileResolver } from "../src/noise/tiles/vulcanusCatalog"; +import { withCtxDefaults } from "../src/noise/eval/ctx"; + +const key = (x: number, y: number): string => `${String(x)},${String(y)}`; + +interface Ent { + x: number; + y: number; + name: string; + orientation?: string | null; +} +interface Arm { + label: string; + region: { x0: number; y0: number; x1: number; y1: number }; + effectiveAutoplace: Record; + effectiveCliffSettings: { cliff_elevation_interval: number; cliff_smoothing: number }; + cliffs: Ent[]; + resources: Ent[]; + protos: Record }>; +} + +const arm = (label: string): Arm => { + const a = (direction.cases as unknown as Arm[]).find((c) => c.label === label); + if (a === undefined) throw new Error(`no arm ${label}`); + return a; +}; +const cliffCells = (a: Arm): Set => + new Set(a.cliffs.filter((c) => c.name === "cliff-vulcanus").map((c) => key(c.x, c.y))); +const oreTiles = (a: Arm): Set => + new Set(a.resources.map((p) => key(Math.floor(p.x - 0.5), Math.floor(p.y - 0.5)))); + +const ON = arm("entity region, resources ON"); +const OFF = arm("entity region, ALL resources OFF"); +const BLOB_ON = arm("blob region COLLAPSED, resources ON"); +const BLOB_OFF = arm("blob region COLLAPSED, ALL resources OFF"); + +/** + * **The direction is settled: resources suppress cliffs, not the other way + * round** (#84 item 1, which is #24). + * + * `#94` established that the game puts a cliff on ore 3 times in 1,569 and the + * port 29 times, ruled out lava, every other tile, the cliffiness gate and + * entity collision, and handed the MECHANISM over open - noting that the + * correlation fits two stories demanding opposite fixes. Under "ore suppresses + * cliffs" the port must reject cliffs on ore; under "cliffs suppress ore" the + * port's cliffs are right and its ORE is what is wrong. + * + * It is not an argument, it is a lever. `autoplace_controls` is settable on the + * surface exactly like `cliff_settings`, so the resources can be switched off + * and the same regions regenerated - the trick #82 used to collapse the cliff + * rule, pointed one subsystem over. + */ +describe("the cliff/ore exclusion runs ORE -> CLIFF", () => { + /** + * The blob is the sharpest form of the question, because it is where the + * disagreement is total: `#94` found ten cells that the game leaves empty + * however `cliff_elevation` is routed onto them. Turn the ore off and the game + * places a cliff in **every one of them**. + */ + it("with the resources off, the game fills all ten blob cells", () => { + const on = cliffCells(BLOB_ON); + const off = cliffCells(BLOB_OFF); + const blob = [ + "178,138.5", + "178,142.5", + "178,146.5", + "178,150.5", + "182,138.5", + "182,142.5", + "182,146.5", + "182,150.5", + "186,138.5", + "186,142.5", + ]; + expect(blob.filter((k) => on.has(k)).length).toBe(0); + expect(blob.filter((k) => off.has(k)).length).toBe(10); + // Non-vacuity: the arm really did run with the ore off, and really did have + // ore to remove. Read back OFF THE SURFACE, not echoed from what was written. + expect(BLOB_ON.resources.length).toBe(945); + expect(BLOB_OFF.resources.length).toBe(0); + expect(BLOB_ON.effectiveAutoplace["tungsten_ore"]?.size).toBe(1); + expect(BLOB_OFF.effectiveAutoplace["tungsten_ore"]?.size).toBe(0); + }); + + /** + * **The converse arm, and it is what makes this a direction rather than a + * correlation.** The collapsed settings force 335 cliffs through the region + * against the 283 the default places - including straight through the tungsten + * field. If cliffs suppressed ore, that ore would retreat. It does not move: + * the same 945 entities, tile for tile. + */ + it("and forcing cliffs through the ore field does not move one ore tile", () => { + const forced = cliffCells(BLOB_ON); + const defaultCase = entities.cases.find((c) => c.region.x0 === 0); + expect(defaultCase).toBeDefined(); + const atDefault = new Set( + (defaultCase as NonNullable).cliffs + .filter((c) => c.name === "cliff-vulcanus") + .map((c) => key(c.x, c.y)), + ); + // Non-vacuity: the collapse really did add cliffs, so "the ore did not move" + // is a statement about a region whose cliffs changed a great deal. + expect(forced.size).toBe(335); + expect(atDefault.size).toBe(283); + expect([...forced].filter((k) => !atDefault.has(k)).length).toBeGreaterThan(60); + + const oreForced = oreTiles(BLOB_ON); + expect(oreForced.size).toBe(945); + }); + + /** + * Removing a resource only ever ADDS cliffs. Nothing the game placed with the + * resources on disappears when they are taken away, in any arm - which is the + * signature of a one-way rejection rather than of a perturbed field, where a + * changed input would move cells in both directions. + */ + it("removing resources only ever adds cliffs, never removes one", () => { + for (const [a, b] of [ + [ON, OFF], + [ON, arm("entity region, calcite OFF")], + [ON, arm("entity region, geyser OFF")], + [BLOB_ON, BLOB_OFF], + ] as const) { + const before = cliffCells(a); + const after = cliffCells(b); + expect([...before].filter((k) => !after.has(k))).toEqual([]); + } + }); + + /** + * **The suppression is exactly additive across resources**, which says each + * resource acts independently and locally rather than through any shared + * field: calcite alone accounts for 27 cells, the geyser alone for 4, and all + * of them together for exactly those same 31. + */ + it("is additive per resource: 27 calcite + 4 geyser = 31", () => { + const base = cliffCells(ON); + const gained = (a: Arm): Set => new Set([...cliffCells(a)].filter((k) => !base.has(k))); + const calcite = gained(arm("entity region, calcite OFF")); + const geyser = gained(arm("entity region, geyser OFF")); + const all = gained(OFF); + expect(calcite.size).toBe(27); + expect(geyser.size).toBe(4); + expect(all.size).toBe(31); + expect([...calcite].filter((k) => geyser.has(k))).toEqual([]); + expect([...all].sort()).toEqual([...calcite, ...geyser].sort()); + }); +}); + +/** + * **And it is NOT a collision, which is why it took a lever to find.** + * + * `#94` argued entity collision could not be the mechanism because resources + * carry only the bare `resource` layer, which the cliff mask does not hold. That + * argument was right, and the fixture now carries the layers it rests on rather + * than a claim about them. The disassembly agrees from the other end: + * `EntityMapGenerationTask::computeInternal` (`0x101622860`) calls + * `generateCliffs` at `+44` and `generateEntities` at `+148`, and + * `apply` (`0x101623b48`) calls `applyCliffs` at `+124` and `applyEntities` at + * `+164` - so the cliffs are both computed and placed BEFORE any resource + * exists. No collision test can see an entity that is not there yet. + * + * So the rule is real, one-way, local and additive, and it is not any of the + * things a collision would be. That is the state this hands over. + */ +describe("the mechanism is not a collision", () => { + it("the cliff and resource collision masks are disjoint", () => { + const p = ON.protos; + const cliff = new Set(p["cliff-vulcanus"]?.layers); + expect([...cliff].sort()).toEqual([ + "cliff", + "is_lower_object", + "is_object", + "item", + "meltable", + "object", + "player", + "water_tile", + ]); + for (const n of ["tungsten-ore", "calcite", "coal", "sulfuric-acid-geyser"]) { + expect(p[n]?.type).toBe("resource"); + expect(p[n]?.layers).toEqual(["resource"]); + expect(p[n]?.layers.filter((l) => cliff.has(l))).toEqual([]); + } + // The rocks and the crater DO share layers with the cliff - the unported + // second collision test #94 identified. Kept here so "nothing collides with + // a cliff" is never read out of the assertion above. + for (const n of ["big-volcanic-rock", "huge-volcanic-rock", "crater-cliff"]) + expect(p[n]?.layers.filter((l) => cliff.has(l)).length).toBeGreaterThan(0); + }); + + /** + * **`VULCANUS_CLIFF_BLOCKING_TILES` is measured, not deduced.** The cliff mask + * above is what makes `lava` and `lava-hot` the only Vulcanus tiles that can + * block a cliff, and the constant the renderer ships has to equal that. + */ + it("pins the tile-collision constant to the mask the game reports", () => { + expect([...VULCANUS_CLIFF_BLOCKING_TILES].sort()).toEqual(["lava", "lava-hot"]); + expect(new Set(ON.protos["cliff-vulcanus"]?.layers).has("water_tile")).toBe(true); + }); +}); + +/** + * **The geometry, as far as it goes.** The rejection is a box overlap between + * the cliff's own collision rectangle and the RESOURCE ENTITY's - not "is a + * resource tile inside the 4x4 cell", and the difference is measurable because + * the geyser's collision half-extent is 1.398 against the ores' 0.098. + * + * Scored that way the test is exact where it fires: it explains 21 of the 31 + * suppressed cells and raises **zero** false alarms across the 885 the game + * kept. The other 10 are not scattered - every one of the six connected + * components of the suppressed set contains at least one directly-overlapped + * cell, so they are the remainder of runs whose interior was rejected. Whether + * that remainder is a cascade along cliff connections or a wider box is the open + * question; it is stated here as a shape rather than guessed at. + */ +describe("the rejection geometry", () => { + const CLIFF = { hx: 0.98828125, hy: 0.48828125 }; + const suppressed = [...cliffCells(OFF)].filter((k) => !cliffCells(ON).has(k)); + + const half = (name: string): { hx: number; hy: number } => { + const b = ON.protos[name]?.box; + if (b === undefined) throw new Error(`no box for ${name}`); + return { hx: (b["rx"] as number) - 0, hy: (b["ry"] as number) - 0 }; + }; + const overlapped = (k: string): boolean => { + const [xs, ys] = k.split(","); + const cx = Number(xs); + const cy = Number(ys); + for (const p of ON.resources) { + const h = half(p.name); + if (Math.abs(p.x - cx) < CLIFF.hx + h.hx && Math.abs(p.y - cy) < CLIFF.hy + h.hy) return true; + } + return false; + }; + + it("box overlap explains 21 of 31 and raises no false alarm in 885", () => { + expect(suppressed.length).toBe(31); + expect(suppressed.filter(overlapped).length).toBe(21); + expect([...cliffCells(ON)].filter(overlapped).length).toBe(0); + // The geyser is why a tile-centre test cannot do this: its box is more than + // fourteen times the ores' in each axis. + expect(half("sulfuric-acid-geyser").hx / half("calcite").hx).toBeGreaterThan(14); + }, 120000); + + it("and every connected component of the suppressed set contains one", () => { + const set = new Set(suppressed); + const nbrs = (k: string): string[] => { + const [xs, ys] = k.split(","); + const x = Number(xs); + const y = Number(ys); + return [key(x + 4, y), key(x - 4, y), key(x, y + 4), key(x, y - 4)]; + }; + const seen = new Set(); + const comps: string[][] = []; + for (const k of suppressed) { + if (seen.has(k)) continue; + const stack = [k]; + const comp: string[] = []; + seen.add(k); + while (stack.length > 0) { + const c = stack.pop() as string; + comp.push(c); + for (const n of nbrs(c)) + if (set.has(n) && !seen.has(n)) { + seen.add(n); + stack.push(n); + } + } + comps.push(comp); + } + expect(comps.length).toBe(6); + for (const c of comps) expect(c.filter(overlapped).length).toBeGreaterThan(0); + // Non-vacuity: adjacency is not a free pass. Only 8 of the 885 cliffs the + // game KEPT touch a suppressed cell, so "is next to one" is rare, not the + // default. + let keptAdj = 0; + for (const k of cliffCells(ON)) if (nbrs(k).some((n) => set.has(n))) keptAdj++; + expect(keptAdj).toBe(8); + }, 120000); + + /** + * **What porting it is worth.** Every one of the 31 cells the game suppresses + * is a cell the port currently places, so the rule is pure precision: it can + * only remove surplus, and it removes 31 of the 42 the port over-places at + * this region. + */ + it("all 31 are cells the port currently places", () => { + const input = { seed0: 123456, startingPositions: [{ x: 0, y: 0 }] }; + const fields = makeVulcanusCliffFields(withCtxDefaults(input)); + const tileAt = makeVulcanusTileResolver(input); + const r = ON.region; + const placed = new Set( + makeCliffPlacementFromFields(fields, { + elevation0: VULCANUS_CLIFF_ELEVATION_0, + interval: VULCANUS_CLIFF_ELEVATION_INTERVAL, + smoothing: VULCANUS_CLIFF_SMOOTHING, + tileCollides: (x, y) => VULCANUS_CLIFF_BLOCKING_TILES.has(tileAt(x, y).name), + }) + .placedCells(r.x0, r.y0, r.x1, r.y1) + .map((p) => key(p.x, p.y)), + ); + expect(suppressed.filter((k) => placed.has(k)).length).toBe(31); + // And they are surplus, not matches: none of them is a cliff the game kept. + const game = cliffCells(ON); + expect(suppressed.filter((k) => game.has(k))).toEqual([]); + expect([...placed].filter((k) => !game.has(k)).length).toBe(42); + }, 120000); +}); diff --git a/test/fixtures/PROVENANCE.json b/test/fixtures/PROVENANCE.json index 45388d8c..049d2ddd 100644 --- a/test/fixtures/PROVENANCE.json +++ b/test/fixtures/PROVENANCE.json @@ -68,6 +68,10 @@ "factorioVersion": "2.1.11", "evidence": "stated in the fixture's own _comment" }, + "oracle-cliff-smoothing-stencil.seed123456.json": { + "factorioVersion": "2.1.12", + "evidence": "stated - captured 2026-08-02 against the installed 2.1.12 binary (refs:sync --check in sync). Each arm records the effective cliff_settings; the in-chunk-3 arms are self-validating in that the model predicts an EMPTY result and the game produces one" + }, "oracle-cliffiness.seed123456.json": { "factorioVersion": "2.1.11", "evidence": "stated in the fixture's own _comment" @@ -112,6 +116,10 @@ "factorioVersion": "2.1.12", "evidence": "RE-CAPTURED 2026-07-29 against Factorio 2.1.12 (build 87038) via test/oracle: all 7 configs x 38 points = 266 values re-sampled and matched bit-for-bit (266/266, max |diff| 0). Originally captured on 2.1.11, as the fixture's own _comment still states" }, + "oracle-multisample-grid.seed123456.json": { + "factorioVersion": "2.1.12", + "evidence": "captured 2026-08-01 by test/oracle/capture.ts multisample-grid against the installed binary, in sync at 2.1.12 per pnpm refs:sync --check. Probe expressions routed onto property_expression_names.cliff_elevation on a Vulcanus surface with the rule collapsed, so the CLIFF GENERATOR is the readout instead of calculate_tile_properties. Carries its own positive control (multisample(x,4,0) must move the contour) and null control (multisample(x,0,4) must not)." + }, "oracle-multisample.seed123456.json": { "factorioVersion": "2.1.12", "evidence": "stated in the fixture's own _comment; re-sampled 2026-07-29 as a CONTROL for the noise-primitive re-capture (15 offsets x 2 axes x 5 points = 150 values, all bit-for-bit identical), which is what proves that run's harness invocation was sampling the right thing" @@ -184,6 +192,14 @@ "factorioVersion": "2.1.12", "evidence": "stated in the fixture's own _comment" }, + "oracle-vulcanus-cliff-collapsed.seed123456.json": { + "factorioVersion": "2.1.12", + "evidence": "captured 2026-08-01 by test/oracle/capture.ts vulcanus-cliff-collapsed against the installed binary, which pnpm refs:sync --check reported in sync at 2.1.12 at capture time. The Vulcanus region [0,0] with the placement rule collapsed a term at a time via map_gen_settings.cliff_settings (smoothing 0, a single contour via cliff_elevation_interval = 1e6, the cliffiness gate held open via richness = 4), plus Nauvis control arms in [512,1024) at the default settings and at cliff_elevation_interval = 80. Each case records the cliff_settings the SURFACE reported back, so every override is proven to have applied." + }, + "oracle-vulcanus-cliff-corner-fields-entity-regions.seed123456.json": { + "factorioVersion": "2.1.12", + "evidence": "captured 2026-07-30 by test/oracle/capture.ts vulcanus-cliff-corner-fields-entity-regions against the installed binary, which pnpm refs:sync --check reported in sync at 2.1.12 at capture time. Companion to oracle-vulcanus-cliff-corner-fields.seed123456.json at the three regions oracle-vulcanus-cliff-entities covers; the two share region [1500,1500] and agree bit-for-bit on all 4225 of its corners, which test/vulcanusCliffCornerFields.spec.ts asserts as a check on this capture's corner indexing." + }, "oracle-vulcanus-cliff-corner-fields-legacy-y0.5.seed123456.json": { "factorioVersion": "2.1.12", "evidence": "captured 2026-07-29 by test/oracle/capture.ts vulcanus-cliff-corner-fields against the installed binary, which pnpm refs:sync --check reported in sync at 2.1.12 at capture time. Superseded 2026-07-30: the sample lattice (j*4+0.5) was the PORT's assumption, not the game's. Retained deliberately - it is valid ground truth for the site it names, and keeping it is what lets a spec show that substituting fields captured at OUR site cannot falsify that site." @@ -196,6 +212,18 @@ "factorioVersion": "2.1.12", "evidence": "re-captured 2026-07-30 by test/oracle/capture.ts vulcanus-cliff-entities against the installed binary, which pnpm refs:sync --check reported in sync at 2.1.12 at capture time. Supersedes the 2026-07-28 capture, which it reproduced exactly (283/885/409 positions). The re-capture adds each entity's cliff_orientation - see test/cliffOrientationOracle.spec.ts." }, + "oracle-vulcanus-cliff-ore-direction.seed123456.json": { + "factorioVersion": "2.1.12", + "evidence": "captured 2026-08-02 by test/oracle/capture.ts vulcanus-cliff-ore-direction against the installed binary, which pnpm refs:sync --check reported in sync at 2.1.12 at capture time. Six paired ON/OFF arms that turn the Vulcanus resources off through map_gen_settings.autoplace_controls (size = 0) and regenerate: [1500,1500] at default cliff settings with all resources on, all off, calcite only off and geyser only off, plus [0,0] with the cliff rule collapsed to a single contour at 70 with the gate held open and smoothing off, resources on and off. Each case records the autoplace controls AND the cliff_settings the SURFACE reported back, so every override is proven to have applied, and each dumps the cliffs, the resources and the prototype collision geometry from ONE generated surface so the two populations are never compared across separate worlds." + }, + "oracle-vulcanus-cliff-smoothing-off-regions.seed123456.json": { + "factorioVersion": "2.1.12", + "evidence": "stated - captured 2026-08-02 against the installed 2.1.12 binary (refs:sync --check in sync). Case 0 overrides nothing and READS cliff_settings back off Vulcanus's own surface, which is how cliff_smoothing=1 stopped being an inference from the CliffPlacementSettings prototype default and became a measurement; cases 1-2 record the effective settings the surface reported, so a failed override cannot pass as a null result" + }, + "oracle-vulcanus-cliff-smoothing.seed123456.json": { + "factorioVersion": "2.1.12", + "evidence": "captured 2026-08-01 by test/oracle/capture.ts vulcanus-cliff-smoothing against the installed binary, which pnpm refs:sync --check reported in sync at 2.1.12 at capture time. The same Vulcanus region [0,0] at three values of map_gen_settings.cliff_settings.cliff_smoothing (0, 0.5, 1); each case records the cliff_settings the SURFACE reported back, so the override is proven to have applied. The s=1 case reproduces the 283 cliffs oracle-vulcanus-cliff-entities holds for that region." + }, "oracle-vulcanus-cliffs.seed123456.json": { "factorioVersion": "2.1.12", "evidence": "stated in the fixture's own _comment" @@ -208,6 +236,10 @@ "factorioVersion": "2.1.12", "evidence": "stated in the fixture's own _comment" }, + "oracle-vulcanus-elevation-levels.seed123456.json": { + "factorioVersion": "2.1.12", + "evidence": "captured 2026-08-01 by test/oracle/capture.ts vulcanus-elevation-levels against the installed binary, which pnpm refs:sync --check reported in sync at 2.1.12 at capture time. The Vulcanus region [0,0] at 19 values of cliff_elevation_0 (20..200 step 10) with the rule collapsed (cliff_smoothing=0, cliff_elevation_interval=1e6, richness=4), so a cell carries a cliff exactly when its corner elevations straddle the level - inverting the elevation field the generator itself reads. Each case records the cliff_settings the SURFACE reported back." + }, "oracle-vulcanus-elevation.seed123456.json": { "factorioVersion": "2.1.12", "evidence": "stated in the fixture's own _comment" @@ -216,6 +248,10 @@ "factorioVersion": "2.1.12", "evidence": "stated in the fixture's own _comment" }, + "oracle-vulcanus-lava-boundary.seed123456.json": { + "factorioVersion": "2.1.12", + "evidence": "captured 2026-08-01 by test/oracle/capture.ts vulcanus-lava-boundary against the installed binary, which pnpm refs:sync --check reported in sync at 2.1.12 at capture time. Dense radius-4 neighbourhoods around the 35 tiles the cliff rejection accused the lava mask over; it EXONERATED the mask (0 lava mismatches in 994 positions) and redirected the search to the collision box." + }, "oracle-vulcanus-ore-cliff-replication.seed123456.json": { "factorioVersion": "2.1.12", "evidence": "captured 2026-07-29 by test/oracle/capture.ts vulcanus-ore-cliff-replication against the installed binary, which pnpm refs:sync --check reported in sync at 2.1.12 at capture time" @@ -244,10 +280,6 @@ "factorioVersion": "2.1.12", "evidence": "stated in the fixture's own _comment" }, - "oracle-vulcanus-lava-boundary.seed123456.json": { - "factorioVersion": "2.1.12", - "evidence": "captured 2026-08-01 by test/oracle/capture.ts vulcanus-lava-boundary against the installed binary, which pnpm refs:sync --check reported in sync at 2.1.12 at capture time. Dense radius-4 neighbourhoods around the 35 tiles the cliff rejection accused the lava mask over; it EXONERATED the mask (0 lava mismatches in 994 positions) and redirected the search to the collision box." - }, "oracle-vulcanus-tile-names.natural-mapseed123456.json": { "factorioVersion": "2.1.12", "evidence": "stated in the fixture's own _comment" @@ -267,34 +299,6 @@ "tree-expressions.2.1.11.json": { "factorioVersion": "2.1.11", "evidence": "the version is in the filename, and in the commit that added it" - }, - "oracle-vulcanus-cliff-corner-fields-entity-regions.seed123456.json": { - "factorioVersion": "2.1.12", - "evidence": "captured 2026-07-30 by test/oracle/capture.ts vulcanus-cliff-corner-fields-entity-regions against the installed binary, which pnpm refs:sync --check reported in sync at 2.1.12 at capture time. Companion to oracle-vulcanus-cliff-corner-fields.seed123456.json at the three regions oracle-vulcanus-cliff-entities covers; the two share region [1500,1500] and agree bit-for-bit on all 4225 of its corners, which test/vulcanusCliffCornerFields.spec.ts asserts as a check on this capture's corner indexing." - }, - "oracle-vulcanus-cliff-smoothing.seed123456.json": { - "factorioVersion": "2.1.12", - "evidence": "captured 2026-08-01 by test/oracle/capture.ts vulcanus-cliff-smoothing against the installed binary, which pnpm refs:sync --check reported in sync at 2.1.12 at capture time. The same Vulcanus region [0,0] at three values of map_gen_settings.cliff_settings.cliff_smoothing (0, 0.5, 1); each case records the cliff_settings the SURFACE reported back, so the override is proven to have applied. The s=1 case reproduces the 283 cliffs oracle-vulcanus-cliff-entities holds for that region." - }, - "oracle-vulcanus-cliff-collapsed.seed123456.json": { - "factorioVersion": "2.1.12", - "evidence": "captured 2026-08-01 by test/oracle/capture.ts vulcanus-cliff-collapsed against the installed binary, which pnpm refs:sync --check reported in sync at 2.1.12 at capture time. The Vulcanus region [0,0] with the placement rule collapsed a term at a time via map_gen_settings.cliff_settings (smoothing 0, a single contour via cliff_elevation_interval = 1e6, the cliffiness gate held open via richness = 4), plus Nauvis control arms in [512,1024) at the default settings and at cliff_elevation_interval = 80. Each case records the cliff_settings the SURFACE reported back, so every override is proven to have applied." - }, - "oracle-vulcanus-elevation-levels.seed123456.json": { - "factorioVersion": "2.1.12", - "evidence": "captured 2026-08-01 by test/oracle/capture.ts vulcanus-elevation-levels against the installed binary, which pnpm refs:sync --check reported in sync at 2.1.12 at capture time. The Vulcanus region [0,0] at 19 values of cliff_elevation_0 (20..200 step 10) with the rule collapsed (cliff_smoothing=0, cliff_elevation_interval=1e6, richness=4), so a cell carries a cliff exactly when its corner elevations straddle the level - inverting the elevation field the generator itself reads. Each case records the cliff_settings the SURFACE reported back." - }, - "oracle-multisample-grid.seed123456.json": { - "factorioVersion": "2.1.12", - "evidence": "captured 2026-08-01 by test/oracle/capture.ts multisample-grid against the installed binary, in sync at 2.1.12 per pnpm refs:sync --check. Probe expressions routed onto property_expression_names.cliff_elevation on a Vulcanus surface with the rule collapsed, so the CLIFF GENERATOR is the readout instead of calculate_tile_properties. Carries its own positive control (multisample(x,4,0) must move the contour) and null control (multisample(x,0,4) must not)." - }, - "oracle-vulcanus-cliff-smoothing-off-regions.seed123456.json": { - "factorioVersion": "2.1.12", - "evidence": "stated - captured 2026-08-02 against the installed 2.1.12 binary (refs:sync --check in sync). Case 0 overrides nothing and READS cliff_settings back off Vulcanus's own surface, which is how cliff_smoothing=1 stopped being an inference from the CliffPlacementSettings prototype default and became a measurement; cases 1-2 record the effective settings the surface reported, so a failed override cannot pass as a null result" - }, - "oracle-cliff-smoothing-stencil.seed123456.json": { - "factorioVersion": "2.1.12", - "evidence": "stated - captured 2026-08-02 against the installed 2.1.12 binary (refs:sync --check in sync). Each arm records the effective cliff_settings; the in-chunk-3 arms are self-validating in that the model predicts an EMPTY result and the game produces one" } } } diff --git a/test/fixtures/oracle-vulcanus-cliff-ore-direction.seed123456.json b/test/fixtures/oracle-vulcanus-cliff-ore-direction.seed123456.json new file mode 100644 index 00000000..e15bf6d0 --- /dev/null +++ b/test/fixtures/oracle-vulcanus-cliff-ore-direction.seed123456.json @@ -0,0 +1,70973 @@ +{ + "_comment": "Ground truth from Factorio 2.1.12 via test/oracle. Settles the DIRECTION of the Vulcanus cliff/ore exclusion (#84 item 1, #24) by turning the resources OFF through map_gen_settings.autoplace_controls and regenerating - the same trick oracle-vulcanus-cliff-collapsed plays on cliff_settings. Arms are NOT cumulative; they are paired ON/OFF controls, because 'ore suppresses cliffs' and 'cliffs suppress ore' each need their own. Every arm dumps the cliffs, the resources, the prototype collision geometry and the autoplace controls the SURFACE read back, all from ONE generated surface, so an override that failed to apply cannot be mistaken for a term that does not matter and 'the ore moved' and 'the cliffs moved' are never compared across two different worlds. Sampled on a create_surface() surface whose seed is FORCED to `seed`, like every other Vulcanus oracle fixture. Regenerate: node --experimental-strip-types test/oracle/capture.ts vulcanus-cliff-ore-direction", + "seed": 123456, + "entityRegion": { + "x0": 1500, + "y0": 1500, + "x1": 1756, + "y1": 1756 + }, + "blobRegion": { + "x0": 0, + "y0": 0, + "x1": 256, + "y1": 256 + }, + "cases": [ + { + "label": "entity region, resources ON", + "region": { + "x0": 1500, + "y0": 1500, + "x1": 1756, + "y1": 1756 + }, + "cliffSettings": null, + "autoplaceControls": null, + "effectiveCliffSettings": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 70, + "cliff_elevation_interval": 120, + "cliff_smoothing": 1, + "richness": 1 + }, + "effectiveAutoplace": { + "calcite": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "sulfuric_acid_geyser": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "tungsten_ore": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "vulcanus_coal": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "vulcanus_volcanism": { + "frequency": 1, + "size": 1, + "richness": 1 + } + }, + "cliffs": [ + { + "x": 1502, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1506, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1510, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1522, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1534, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1538, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1574, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1578, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1594, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1642, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1710, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1714, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1726, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1502, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1506, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1510, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1518, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1522, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1534, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1578, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1582, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1586, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1590, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1594, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1598, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1642, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1710, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1714, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1726, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1730, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1502, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1534, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1598, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1642, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1662, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1666, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1682, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1686, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1502, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1530, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1534, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1582, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1586, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1590, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1594, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1598, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1618, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1622, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1642, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1646, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1662, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1666, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1686, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1690, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1498, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1502, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1518, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1534, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1578, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1582, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1622, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1646, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1650, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1654, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1658, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1662, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1666, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1670, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1690, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1694, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1518, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1522, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1526, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1530, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1534, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1582, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1586, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1622, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1630, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1634, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1638, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1670, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1674, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1694, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1514, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1518, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1522, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1526, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1622, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1626, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1630, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1638, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1642, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1646, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1650, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1654, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1670, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1674, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1694, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1698, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1702, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1706, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1514, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1618, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1622, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1626, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1654, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1658, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1662, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1666, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1670, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1706, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1710, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1510, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1514, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1626, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1630, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1634, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1638, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1642, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1646, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1650, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1682, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1686, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1690, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1694, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1698, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1702, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1510, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1514, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1522, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1634, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1638, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1678, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1682, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1702, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1742, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1510, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1514, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1518, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1522, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1534, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1550, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1662, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1666, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1678, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1702, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1718, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1738, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1742, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1510, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1518, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1522, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1530, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1534, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1550, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1662, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1666, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1678, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1702, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1718, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1722, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1730, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1734, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1738, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1746, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1750, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1754, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1506, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1510, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1514, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1518, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1522, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1526, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1538, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1546, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1658, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1662, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1666, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1678, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1702, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1722, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1726, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1730, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1506, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1510, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1514, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1518, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1522, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1526, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1538, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1658, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1662, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1666, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1670, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1678, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1702, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1706, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1754, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1498, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1502, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1506, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1510, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1538, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1670, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1678, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1682, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1686, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1690, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1702, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1706, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1754, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1502, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1506, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1510, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1534, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1670, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1674, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1690, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1694, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1698, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1702, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1718, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1722, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1726, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1754, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1502, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1506, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1510, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1530, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1674, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1678, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1714, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1718, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1726, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1502, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1506, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1510, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1678, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1690, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1694, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1698, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1702, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1714, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1726, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1730, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1734, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1738, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1742, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1746, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1750, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1754, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1506, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1510, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1518, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1678, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1690, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1702, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1706, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1714, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1754, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1506, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1510, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1518, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1530, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1658, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1662, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1666, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1670, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1674, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1678, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1682, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1686, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1690, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1706, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1710, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1714, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1718, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1742, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1746, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1750, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1754, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1506, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1510, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1518, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1530, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1658, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1678, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1682, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1686, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1710, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1718, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1722, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1510, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1654, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1658, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1678, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1682, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1686, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1690, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1694, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1698, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1710, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1714, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1510, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1682, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1686, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1690, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1694, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1698, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1702, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1706, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1710, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1714, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1502, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1506, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1510, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1690, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1694, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1698, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1702, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1710, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1714, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1718, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1722, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1726, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1510, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1690, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1694, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1702, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1706, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1710, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1726, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1502, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1506, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1510, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1610, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1614, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1638, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1694, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1702, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1726, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1506, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1614, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1634, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1638, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1654, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1658, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1726, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1530, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1534, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1538, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1630, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1634, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1654, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1530, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1538, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1630, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1650, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1654, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1718, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1754, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1758, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1506, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1510, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1518, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1530, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1538, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1542, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1630, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1646, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1650, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1718, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1746, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1750, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1754, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1510, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1522, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1530, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1542, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1546, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1594, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1646, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1650, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1746, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1510, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1522, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1534, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1546, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1558, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1594, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1650, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1730, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1734, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1510, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1518, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1522, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1538, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1546, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1558, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1562, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1650, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1654, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1730, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1510, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1522, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1538, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1550, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1562, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1650, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1654, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1658, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1726, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1730, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1510, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1514, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1518, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1522, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1526, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1538, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1542, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1550, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1554, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1558, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1650, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1658, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1662, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1726, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1506, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1518, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1542, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1546, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1558, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1562, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1650, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1726, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1506, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1550, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1562, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1566, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1650, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1726, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1502, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1506, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1518, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1522, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1526, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1530, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1534, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1538, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1550, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1554, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1566, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1650, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1726, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1502, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1506, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1522, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1534, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1538, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1542, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1550, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1554, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1566, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1570, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1574, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1650, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1654, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1726, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1742, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1746, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1506, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1522, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1526, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1534, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1542, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1550, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1574, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1578, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1582, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1590, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1654, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1658, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1726, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1506, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1538, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1542, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1550, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1582, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1590, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1594, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1658, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1662, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1714, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1718, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1722, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1726, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1754, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1506, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1530, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1538, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1542, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1550, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1554, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1566, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1582, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1594, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1662, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1666, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1670, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1754, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1506, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1510, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1514, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1518, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1522, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1530, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1534, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1542, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1546, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1554, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1558, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1566, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1570, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1582, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1586, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1594, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1750, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1754, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1522, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1558, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1570, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1574, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1586, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1590, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1746, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1750, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1522, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1550, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1554, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1558, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1574, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1578, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1590, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1726, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1730, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1734, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1738, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1742, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1746, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1522, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1526, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1534, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1554, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1578, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1582, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1586, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1590, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1594, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1694, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1702, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1706, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1722, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1726, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1730, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1526, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1534, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1554, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1586, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1614, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1618, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1694, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1698, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1702, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1710, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1714, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1718, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1722, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1534, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1538, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1554, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1558, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1566, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1570, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1618, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1694, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1698, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1706, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1710, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1538, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1542, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1558, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1570, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1574, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1602, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1618, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1626, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1702, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1706, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1738, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1742, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1746, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1750, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1754, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1530, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1534, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1542, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1558, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1562, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1574, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1578, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1594, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1598, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1602, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1618, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1622, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1626, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1694, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1698, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1702, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1738, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1746, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1750, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1754, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1534, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1542, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1562, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1578, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1582, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1594, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1598, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1602, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1606, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1610, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1622, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1626, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1630, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1738, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1742, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1746, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1534, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1542, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1562, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1566, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1570, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1582, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1586, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1590, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1594, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1598, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1602, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1610, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1614, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1622, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1626, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1742, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1746, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1750, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1754, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1758, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1526, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1530, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1542, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1546, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1570, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1574, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1602, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1606, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1614, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1618, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1626, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1630, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1742, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1522, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1526, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1546, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1574, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1578, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1590, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1594, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1598, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1602, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1606, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1610, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1618, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1630, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1742, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1746, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1518, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1522, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1542, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1546, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1578, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1582, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1586, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1590, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1602, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1610, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1618, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1622, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1630, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1738, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1742, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1746, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1754, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1758, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1518, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1538, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1542, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1602, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1610, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1622, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1630, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1730, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1734, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1738, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1746, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1750, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1754, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1514, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1518, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1530, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1534, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1574, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1578, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1582, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1586, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1590, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1602, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1610, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1614, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1622, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1630, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1634, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1726, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1730, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1738, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1742, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1746, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1754, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1758, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1506, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1510, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1514, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1522, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1526, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1530, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1574, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1590, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1602, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1606, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1614, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1622, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1630, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1634, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1726, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1730, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1734, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1738, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1754, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1498, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1502, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1506, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1574, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1578, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1586, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1590, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1606, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1614, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1618, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1622, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1626, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1630, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1750, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1754, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1578, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1582, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1586, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1606, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1610, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1618, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1622, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1626, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1746, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1750, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1610, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1614, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1618, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1622, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1726, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1730, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1734, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1738, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1742, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1746, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1754, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1758, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1618, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1622, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1750, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1754, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1506, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1510, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1622, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1726, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1730, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1734, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1738, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1742, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1746, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1750, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1498, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1502, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1506, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1574, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1578, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1582, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1622, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1726, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1502, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1506, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1582, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1586, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1590, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1622, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1626, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1718, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1722, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1726, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1730, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1734, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1754, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1590, + "y": 1758.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1626, + "y": 1758.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + } + ], + "resources": [ + { + "x": 1753.5, + "y": 1511.5, + "name": "calcite" + }, + { + "x": 1752.5, + "y": 1512.5, + "name": "calcite" + }, + { + "x": 1753.5, + "y": 1512.5, + "name": "calcite" + }, + { + "x": 1752.5, + "y": 1513.5, + "name": "calcite" + }, + { + "x": 1753.5, + "y": 1513.5, + "name": "calcite" + }, + { + "x": 1754.5, + "y": 1512.5, + "name": "calcite" + }, + { + "x": 1755.5, + "y": 1512.5, + "name": "calcite" + }, + { + "x": 1754.5, + "y": 1513.5, + "name": "calcite" + }, + { + "x": 1755.5, + "y": 1513.5, + "name": "calcite" + }, + { + "x": 1752.5, + "y": 1514.5, + "name": "calcite" + }, + { + "x": 1753.5, + "y": 1514.5, + "name": "calcite" + }, + { + "x": 1752.5, + "y": 1515.5, + "name": "calcite" + }, + { + "x": 1753.5, + "y": 1515.5, + "name": "calcite" + }, + { + "x": 1754.5, + "y": 1514.5, + "name": "calcite" + }, + { + "x": 1755.5, + "y": 1514.5, + "name": "calcite" + }, + { + "x": 1754.5, + "y": 1515.5, + "name": "calcite" + }, + { + "x": 1755.5, + "y": 1515.5, + "name": "calcite" + }, + { + "x": 1749.5, + "y": 1517.5, + "name": "calcite" + }, + { + "x": 1750.5, + "y": 1517.5, + "name": "calcite" + }, + { + "x": 1751.5, + "y": 1517.5, + "name": "calcite" + }, + { + "x": 1752.5, + "y": 1516.5, + "name": "calcite" + }, + { + "x": 1753.5, + "y": 1516.5, + "name": "calcite" + }, + { + "x": 1752.5, + "y": 1517.5, + "name": "calcite" + }, + { + "x": 1753.5, + "y": 1517.5, + "name": "calcite" + }, + { + "x": 1754.5, + "y": 1516.5, + "name": "calcite" + }, + { + "x": 1755.5, + "y": 1516.5, + "name": "calcite" + }, + { + "x": 1754.5, + "y": 1517.5, + "name": "calcite" + }, + { + "x": 1755.5, + "y": 1517.5, + "name": "calcite" + }, + { + "x": 1749.5, + "y": 1518.5, + "name": "calcite" + }, + { + "x": 1750.5, + "y": 1518.5, + "name": "calcite" + }, + { + "x": 1751.5, + "y": 1518.5, + "name": "calcite" + }, + { + "x": 1751.5, + "y": 1519.5, + "name": "calcite" + }, + { + "x": 1752.5, + "y": 1518.5, + "name": "calcite" + }, + { + "x": 1753.5, + "y": 1518.5, + "name": "calcite" + }, + { + "x": 1752.5, + "y": 1519.5, + "name": "calcite" + }, + { + "x": 1753.5, + "y": 1519.5, + "name": "calcite" + }, + { + "x": 1754.5, + "y": 1518.5, + "name": "calcite" + }, + { + "x": 1755.5, + "y": 1518.5, + "name": "calcite" + }, + { + "x": 1754.5, + "y": 1519.5, + "name": "calcite" + }, + { + "x": 1755.5, + "y": 1519.5, + "name": "calcite" + }, + { + "x": 1751.5, + "y": 1520.5, + "name": "calcite" + }, + { + "x": 1752.5, + "y": 1520.5, + "name": "calcite" + }, + { + "x": 1753.5, + "y": 1520.5, + "name": "calcite" + }, + { + "x": 1753.5, + "y": 1521.5, + "name": "calcite" + }, + { + "x": 1754.5, + "y": 1520.5, + "name": "calcite" + }, + { + "x": 1755.5, + "y": 1520.5, + "name": "calcite" + }, + { + "x": 1754.5, + "y": 1521.5, + "name": "calcite" + }, + { + "x": 1755.5, + "y": 1521.5, + "name": "calcite" + }, + { + "x": 1753.5, + "y": 1522.5, + "name": "calcite" + }, + { + "x": 1754.5, + "y": 1522.5, + "name": "calcite" + }, + { + "x": 1755.5, + "y": 1522.5, + "name": "calcite" + }, + { + "x": 1755.5, + "y": 1523.5, + "name": "calcite" + }, + { + "x": 1755.5, + "y": 1524.5, + "name": "calcite" + }, + { + "x": 1543.5, + "y": 1553.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1550.5, + "y": 1556.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1557.5, + "y": 1558.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1555.5, + "y": 1564.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1545.5, + "y": 1567.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1548.5, + "y": 1567.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1541.5, + "y": 1570.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1557.5, + "y": 1571.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1561.5, + "y": 1570.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1590.5, + "y": 1571.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1573.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1573.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1573.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1572.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1573.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1573.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1572.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1573.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1573.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1572.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1572.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1573.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1573.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1572.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1572.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1573.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1573.5, + "name": "calcite" + }, + { + "x": 1548.5, + "y": 1574.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1553.5, + "y": 1574.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1556.5, + "y": 1574.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1577.5, + "y": 1575.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1574.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1575.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1574.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1574.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1575.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1575.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1574.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1574.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1575.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1575.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1574.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1574.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1575.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1575.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1574.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1574.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1575.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1575.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1574.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1574.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1575.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1575.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1574.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1574.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1575.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1575.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1574.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1575.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1575.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1577.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1577.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1576.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1576.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1577.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1577.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1576.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1576.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1577.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1577.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1576.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1576.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1577.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1577.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1576.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1576.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1577.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1577.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1576.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1576.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1577.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1577.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1576.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1576.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1577.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1577.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1576.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1576.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1577.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1577.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1576.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1576.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1577.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1577.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1576.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1576.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1577.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1577.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1576.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1576.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1577.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1577.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1576.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1577.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1577.5, + "name": "calcite" + }, + { + "x": 1549.5, + "y": 1579.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1552.5, + "y": 1579.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1568.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1556.5, + "y": 1580.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1563.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1545.5, + "y": 1583.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1562.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1556.5, + "y": 1584.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1559.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1547.5, + "y": 1586.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1557.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1555.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1556.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1557.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1556.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1557.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1555.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1555.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1556.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1557.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1556.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1557.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1603.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1555.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1555.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1556.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1557.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1556.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1557.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1603.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1603.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1604.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1604.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1557.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1556.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1557.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1603.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1603.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1604.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1604.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1603.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1603.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1604.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1604.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1557.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1603.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1603.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1604.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1604.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1556.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1557.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1603.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1603.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1604.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1604.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1605.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1553.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1603.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1603.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1604.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1605.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1604.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1605.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1606.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1606.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1607.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1551.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1552.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1552.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1553.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1603.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1603.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1604.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1605.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1604.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1605.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1606.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1607.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1606.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1607.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1549.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1550.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1551.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1550.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1551.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1552.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1553.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1552.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1553.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1554.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1554.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1555.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1557.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1556.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1557.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1603.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1603.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1604.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1605.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1604.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1605.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1606.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1607.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1611.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1612.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1613.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1612.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1613.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1614.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1614.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1615.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1621.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1622.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1623.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1549.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1549.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1550.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1551.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1550.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1551.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1552.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1553.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1552.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1553.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1554.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1555.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1554.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1555.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1556.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1557.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1556.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1557.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1603.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1603.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1604.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1605.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1604.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1605.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1606.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1609.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1610.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1611.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1610.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1611.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1612.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1613.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1612.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1613.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1614.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1615.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1614.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1615.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1616.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1616.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1617.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1619.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1618.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1619.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1620.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1621.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1620.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1621.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1622.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1623.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1622.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1623.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1624.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1624.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1550.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1551.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1550.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1551.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1552.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1553.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1554.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1555.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1554.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1555.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1556.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1557.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1556.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1557.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1603.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1608.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1609.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1610.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1611.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1610.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1611.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1612.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1613.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1612.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1613.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1614.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1615.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1614.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1615.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1616.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1617.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1616.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1617.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1618.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1619.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1618.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1619.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1620.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1621.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1620.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1621.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1622.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1623.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1622.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1623.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1625.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1551.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1555.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1556.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1557.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1556.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1557.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1605.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1607.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1606.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1607.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1608.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1609.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1608.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1609.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1610.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1611.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1610.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1611.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1612.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1613.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1612.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1613.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1614.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1615.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1614.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1615.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1616.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1617.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1616.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1617.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1618.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1619.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1618.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1619.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1620.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1621.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1621.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1623.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1624.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1624.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1556.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1557.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1556.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1557.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1603.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1605.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1605.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1607.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1606.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1607.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1608.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1609.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1608.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1609.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1610.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1611.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1610.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1611.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1612.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1613.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1612.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1613.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1614.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1615.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1614.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1615.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1616.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1617.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1616.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1617.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1618.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1618.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1552.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1553.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1554.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1555.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1554.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1555.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1556.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1603.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1604.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1605.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1605.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1606.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1607.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1606.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1607.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1608.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1609.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1609.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1610.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1611.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1610.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1611.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1612.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1613.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1612.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1613.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1614.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1615.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1614.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1615.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1616.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1617.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1616.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1553.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1554.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1619.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1619.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1619.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1619.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1619.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1619.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1619.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1619.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1619.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1619.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1619.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1619.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1619.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1619.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1619.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1619.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1619.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1619.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1603.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1604.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1605.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1606.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1607.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1611.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1612.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1613.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1614.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1620.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1620.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1620.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1621.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1621.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1620.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1620.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1621.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1621.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1620.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1620.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1621.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1621.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1620.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1620.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1621.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1621.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1620.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1620.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1621.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1621.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1620.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1620.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1621.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1621.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1620.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1620.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1621.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1621.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1620.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1620.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1621.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1622.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1622.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1623.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1623.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1622.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1622.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1622.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1622.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1622.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1622.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1623.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1623.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1622.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1622.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1623.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1623.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1622.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1622.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1623.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1623.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1622.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1622.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1624.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1624.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1625.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1626.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1626.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1648.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1649.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1649.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1651.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1650.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1650.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1651.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1651.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1651.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1651.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1651.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1651.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1651.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1652.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1652.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1653.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1653.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1652.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1652.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1653.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1653.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1652.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1652.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1653.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1652.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1654.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1654.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1654.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1655.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1655.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1654.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1654.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1655.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1655.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1654.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1657.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1656.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1656.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1657.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1657.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1656.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1656.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1657.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1657.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1656.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1657.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1657.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1657.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1657.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1657.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1657.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1657.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1657.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1657.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1658.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1659.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1659.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1658.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1658.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1659.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1659.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1658.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1658.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1659.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1659.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1658.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1658.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1659.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1659.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1658.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1658.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1659.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1659.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1658.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1658.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1659.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1659.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1658.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1658.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1659.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1659.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1658.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1658.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1659.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1659.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1658.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1658.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1659.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1659.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1659.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1659.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1658.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1658.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1659.5, + "name": "calcite" + }, + { + "x": 1625.5, + "y": 1660.5, + "name": "calcite" + }, + { + "x": 1625.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1660.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1660.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1660.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1660.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1660.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1660.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1660.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1660.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1660.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1660.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1660.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1660.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1660.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1660.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1660.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1660.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1660.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1660.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1660.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1660.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1660.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1625.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1624.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1625.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1657.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1656.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1657.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1659.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1658.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1659.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1660.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1661.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1625.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1624.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1625.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1656.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1657.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1656.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1657.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1658.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1659.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1658.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1659.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1660.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1661.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1660.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1661.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1662.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1663.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1662.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1663.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1664.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1664.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1665.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1666.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1667.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1668.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1669.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1623.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1624.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1625.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1624.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1625.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1656.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1657.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1656.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1657.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1658.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1659.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1658.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1659.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1660.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1661.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1660.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1661.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1662.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1663.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1662.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1663.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1664.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1665.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1664.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1665.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1666.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1667.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1666.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1667.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1668.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1669.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1668.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1669.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1671.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1623.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1623.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1624.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1625.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1624.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1625.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1656.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1657.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1656.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1657.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1658.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1659.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1658.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1659.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1660.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1661.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1660.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1661.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1662.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1663.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1662.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1663.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1664.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1665.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1664.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1665.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1666.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1667.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1666.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1667.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1668.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1669.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1668.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1669.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1671.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1671.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1672.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1672.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1673.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1674.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1674.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1675.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1676.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1677.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1683.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1684.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1685.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1686.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1623.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1623.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1624.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1625.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1624.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1625.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1656.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1657.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1656.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1657.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1658.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1659.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1658.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1659.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1660.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1661.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1660.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1661.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1662.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1663.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1662.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1663.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1664.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1665.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1664.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1665.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1666.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1667.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1666.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1667.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1668.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1669.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1668.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1669.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1671.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1672.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1673.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1672.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1673.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1674.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1675.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1674.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1675.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1676.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1677.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1676.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1677.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1678.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1679.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1678.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1679.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1680.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1681.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1680.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1681.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1682.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1683.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1682.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1683.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1684.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1685.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1684.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1685.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1686.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1687.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1686.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1687.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1688.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1689.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1688.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1689.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1690.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1690.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1691.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1692.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1623.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1623.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1624.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1625.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1624.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1625.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1656.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1657.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1656.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1657.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1658.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1659.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1658.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1659.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1660.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1661.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1660.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1661.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1662.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1663.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1662.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1663.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1664.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1665.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1664.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1665.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1666.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1667.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1666.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1667.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1668.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1669.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1668.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1669.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1671.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1670.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1671.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1672.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1673.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1672.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1673.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1674.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1675.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1674.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1675.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1676.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1677.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1676.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1677.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1678.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1679.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1678.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1679.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1680.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1681.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1680.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1681.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1682.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1683.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1682.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1683.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1684.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1685.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1684.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1685.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1686.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1687.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1686.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1687.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1688.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1689.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1688.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1689.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1690.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1691.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1690.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1691.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1692.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1692.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1625.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1656.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1657.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1656.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1657.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1658.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1659.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1658.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1659.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1660.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1661.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1660.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1661.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1662.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1663.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1662.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1663.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1664.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1665.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1664.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1665.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1666.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1667.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1666.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1667.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1668.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1669.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1668.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1669.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1670.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1671.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1670.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1671.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1672.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1673.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1672.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1673.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1674.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1675.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1674.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1675.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1676.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1677.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1676.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1677.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1678.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1679.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1678.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1679.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1680.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1681.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1680.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1681.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1682.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1683.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1682.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1683.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1684.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1685.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1684.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1685.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1686.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1687.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1686.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1687.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1688.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1689.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1688.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1689.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1690.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1690.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1656.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1657.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1656.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1657.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1658.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1659.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1659.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1660.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1661.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1662.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1663.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1663.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1664.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1665.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1664.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1666.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1667.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1667.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1668.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1671.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1670.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1671.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1672.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1673.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1672.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1673.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1674.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1675.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1674.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1675.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1676.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1677.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1676.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1677.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1678.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1679.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1678.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1679.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1680.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1681.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1680.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1681.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1682.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1683.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1682.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1683.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1684.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1685.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1684.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1685.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1686.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1687.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1686.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1687.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1688.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1689.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1688.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1689.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1690.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1657.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1656.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1658.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1660.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1671.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1672.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1673.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1672.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1673.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1674.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1675.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1674.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1675.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1676.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1677.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1676.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1677.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1678.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1679.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1678.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1679.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1680.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1681.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1680.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1681.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1682.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1683.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1684.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1685.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1684.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1685.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1686.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1687.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1686.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1687.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1688.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1689.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1688.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1689.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1690.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1690.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1656.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1656.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1658.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1674.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1675.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1674.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1675.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1676.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1677.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1676.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1677.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1678.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1679.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1678.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1679.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1680.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1680.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1689.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1690.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1624.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1625.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1656.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1676.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1677.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1677.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1678.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1679.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1678.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1679.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1680.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1625.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1656.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1656.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1656.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1657.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1690.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1691.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1690.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1690.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1691.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1691.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1690.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1690.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1691.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1691.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1690.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1690.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1691.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1691.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1690.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1690.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1691.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1690.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1690.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1691.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1691.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1690.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1690.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1691.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1691.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1690.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1690.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1691.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1691.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1690.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1690.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1691.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1691.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1690.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1690.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1691.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1691.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1690.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1690.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1691.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1690.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1693.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1692.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1692.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1693.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1693.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1692.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1692.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1692.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1692.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1693.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1692.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1692.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1693.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1693.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1692.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1692.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1693.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1693.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1692.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1692.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1693.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1692.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1692.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1693.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1693.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1692.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1693.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1694.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1695.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1695.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1694.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1694.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1695.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1695.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1694.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1694.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1695.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1695.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1694.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1696.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1697.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1696.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1696.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1697.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1697.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1696.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1696.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1697.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1697.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1696.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1696.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1697.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1697.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1696.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1697.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1696.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1697.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1697.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1696.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1697.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1698.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1698.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1698.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1699.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1699.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1698.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1698.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1699.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1699.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1698.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1698.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1699.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1699.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1698.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1698.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1698.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1698.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1699.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1699.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1698.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1698.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1699.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1699.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1699.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1700.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1700.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1700.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1701.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1701.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1700.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1700.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1701.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1701.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1700.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1700.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1701.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1701.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1700.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1701.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1701.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1700.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1700.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1700.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1701.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1700.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1700.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1701.5, + "name": "calcite" + }, + { + "x": 1656.5, + "y": 1701.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1702.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1702.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1703.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1703.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1702.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1702.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1703.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1703.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1702.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1702.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1703.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1703.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1702.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1702.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1703.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1703.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1702.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1703.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1702.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1703.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1702.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1702.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1703.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1704.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1704.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1705.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1705.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1704.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1704.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1705.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1705.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1704.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1704.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1705.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1705.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1704.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1704.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1705.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1705.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1704.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1704.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1705.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1706.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1706.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1706.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1707.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1707.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1706.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1706.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1707.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1708.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1708.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1709.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1708.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1708.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1708.5, + "name": "calcite" + }, + { + "x": 1706.5, + "y": 1755.5, + "name": "sulfuric-acid-geyser" + } + ], + "protos": { + "cliff-vulcanus": { + "type": "cliff", + "layers": [ + "cliff", + "is_lower_object", + "is_object", + "item", + "meltable", + "object", + "player", + "water_tile" + ], + "box": { + "lx": -0.98828125, + "ly": -0.48828125, + "rx": 0.98828125, + "ry": 0.48828125 + } + }, + "crater-cliff": { + "type": "cliff", + "layers": [ + "item", + "object", + "player", + "water_tile" + ], + "box": { + "lx": -0.98828125, + "ly": -0.48828125, + "rx": 0.98828125, + "ry": 0.48828125 + } + }, + "tungsten-ore": { + "type": "resource", + "layers": [ + "resource" + ], + "box": { + "lx": -0.09765625, + "ly": -0.09765625, + "rx": 0.09765625, + "ry": 0.09765625 + } + }, + "calcite": { + "type": "resource", + "layers": [ + "resource" + ], + "box": { + "lx": -0.09765625, + "ly": -0.09765625, + "rx": 0.09765625, + "ry": 0.09765625 + } + }, + "coal": { + "type": "resource", + "layers": [ + "resource" + ], + "box": { + "lx": -0.09765625, + "ly": -0.09765625, + "rx": 0.09765625, + "ry": 0.09765625 + } + }, + "sulfuric-acid-geyser": { + "type": "resource", + "layers": [ + "resource" + ], + "box": { + "lx": -1.3984375, + "ly": -1.3984375, + "rx": 1.3984375, + "ry": 1.3984375 + } + }, + "big-volcanic-rock": { + "type": "simple-entity", + "layers": [ + "is_lower_object", + "is_object", + "item", + "meltable", + "object", + "player", + "water_tile" + ], + "box": { + "lx": -0.75, + "ly": -0.75, + "rx": 0.75, + "ry": 0.75 + } + }, + "huge-volcanic-rock": { + "type": "simple-entity", + "layers": [ + "is_lower_object", + "is_object", + "item", + "meltable", + "object", + "player", + "water_tile" + ], + "box": { + "lx": -1.5, + "ly": -1.09765625, + "rx": 1.5, + "ry": 1.09765625 + } + } + } + }, + { + "label": "entity region, ALL resources OFF", + "region": { + "x0": 1500, + "y0": 1500, + "x1": 1756, + "y1": 1756 + }, + "cliffSettings": null, + "autoplaceControls": { + "tungsten_ore": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "calcite": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "vulcanus_coal": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "sulfuric_acid_geyser": { + "frequency": 1, + "size": 0, + "richness": 1 + } + }, + "effectiveCliffSettings": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 70, + "cliff_elevation_interval": 120, + "cliff_smoothing": 1, + "richness": 1 + }, + "effectiveAutoplace": { + "calcite": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "sulfuric_acid_geyser": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "tungsten_ore": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "vulcanus_coal": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "vulcanus_volcanism": { + "frequency": 1, + "size": 1, + "richness": 1 + } + }, + "cliffs": [ + { + "x": 1502, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1506, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1510, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1522, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1534, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1538, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1574, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1578, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1594, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1642, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1710, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1714, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1726, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1502, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1506, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1510, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1518, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1522, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1534, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1578, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1582, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1586, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1590, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1594, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1598, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1642, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1710, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1714, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1726, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1730, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1502, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1534, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1598, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1642, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1662, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1666, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1682, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1686, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1502, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1530, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1534, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1582, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1586, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1590, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1594, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1598, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1618, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1622, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1642, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1646, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1662, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1666, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1686, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1690, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1498, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1502, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1518, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1534, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1578, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1582, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1622, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1646, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1650, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1654, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1658, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1662, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1666, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1670, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1690, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1694, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1518, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1522, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1526, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1530, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1534, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1582, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1586, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1622, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1630, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1634, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1638, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1670, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1674, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1694, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1514, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1518, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1522, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1526, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1622, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1626, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1630, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1638, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1642, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1646, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1650, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1654, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1670, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1674, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1694, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1698, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1702, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1706, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1514, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1618, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1622, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1626, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1654, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1658, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1662, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1666, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1670, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1706, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1710, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1510, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1514, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1626, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1630, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1634, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1638, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1642, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1646, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1650, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1682, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1686, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1690, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1694, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1698, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1702, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1510, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1514, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1522, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1634, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1638, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1678, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1682, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1702, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1742, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1510, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1514, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1518, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1522, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1534, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1550, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1662, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1666, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1678, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1702, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1718, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1738, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1742, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1510, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1518, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1522, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1530, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1534, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1550, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1662, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1666, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1678, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1702, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1718, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1722, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1730, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1734, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1738, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1746, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1750, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1754, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1506, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1510, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1514, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1518, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1522, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1526, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1538, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1546, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1658, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1662, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1666, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1678, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1702, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1722, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1726, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1730, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1506, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1510, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1514, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1518, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1522, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1526, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1538, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1658, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1662, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1666, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1670, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1678, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1702, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1706, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1754, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1498, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1502, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1506, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1510, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1538, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1542, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1546, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1670, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1678, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1682, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1686, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1690, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1702, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1706, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1754, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1502, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1506, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1510, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1534, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1542, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1670, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1674, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1690, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1694, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1698, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1702, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1718, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1722, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1726, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1754, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1502, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1506, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1510, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1530, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1674, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1678, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1714, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1718, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1726, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1502, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1506, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1510, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1678, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1690, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1694, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1698, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1702, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1714, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1726, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1730, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1734, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1738, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1742, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1746, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1750, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1754, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1506, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1510, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1518, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1678, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1690, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1702, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1706, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1714, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1754, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1506, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1510, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1518, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1530, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1658, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1662, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1666, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1670, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1674, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1678, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1682, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1686, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1690, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1706, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1710, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1714, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1718, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1742, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1746, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1750, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1754, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1506, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1510, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1518, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1530, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1658, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1678, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1682, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1686, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1710, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1718, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1722, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1510, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1654, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1658, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1678, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1682, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1686, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1690, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1694, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1698, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1710, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1714, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1510, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1682, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1686, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1690, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1694, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1698, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1702, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1706, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1710, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1714, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1502, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1506, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1510, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1606, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1690, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1694, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1698, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1702, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1710, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1714, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1718, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1722, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1726, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1510, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1606, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1690, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1694, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1702, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1706, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1710, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1726, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1502, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1506, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1510, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1606, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1610, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1614, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1638, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1694, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1702, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1726, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1506, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1598, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1602, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1606, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1614, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1634, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1638, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1654, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1658, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1726, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1530, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1534, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1538, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1598, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1602, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1614, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1630, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1634, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1654, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1530, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1538, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1598, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1602, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1614, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1618, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1630, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1650, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1654, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1718, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1754, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1758, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1506, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1510, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1518, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1530, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1538, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1542, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1590, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1598, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1602, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1618, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1622, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1626, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1630, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1646, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1650, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1718, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1746, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1750, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1754, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1510, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1522, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1530, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1542, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1546, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1590, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1594, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1598, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1602, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1646, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1650, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1746, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1510, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1522, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1534, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1546, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1558, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1594, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1602, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1650, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1730, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1734, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1510, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1518, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1522, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1538, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1546, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1558, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1562, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1650, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1654, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1730, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1510, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1522, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1538, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1550, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1562, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1650, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1654, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1658, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1726, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1730, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1510, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1514, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1518, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1522, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1526, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1538, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1542, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1550, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1554, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1558, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1650, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1658, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1662, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1726, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1506, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1518, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1542, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1546, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1558, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1562, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1650, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1726, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1506, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1550, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1562, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1566, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1650, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1726, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1502, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1506, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1518, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1522, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1526, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1530, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1534, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1538, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1550, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1554, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1566, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1650, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1726, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1502, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1506, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1522, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1534, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1538, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1542, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1550, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1554, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1566, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1570, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1574, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1650, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1654, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1726, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1742, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1746, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1506, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1522, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1526, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1534, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1542, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1550, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1574, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1578, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1582, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1590, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1654, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1658, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1726, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1506, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1538, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1542, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1550, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1582, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1590, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1594, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1658, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1662, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1714, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1718, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1722, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1726, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1754, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1506, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1530, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1538, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1542, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1550, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1554, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1566, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1582, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1594, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1662, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1666, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1670, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1754, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1506, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1510, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1514, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1518, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1522, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1530, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1534, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1542, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1546, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1554, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1558, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1566, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1570, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1582, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1586, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1594, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1670, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1750, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1754, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1522, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1558, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1570, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1574, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1586, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1590, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1746, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1750, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1522, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1550, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1554, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1558, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1574, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1578, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1590, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1646.625, + "y": 1674.80078125, + "name": "crater-cliff", + "orientation": "west-to-east" + }, + { + "x": 1726, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1730, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1734, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1738, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1742, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1746, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1641.67578125, + "y": 1676.25, + "name": "crater-cliff", + "orientation": "south-to-east" + }, + { + "x": 1651.57421875, + "y": 1676.25, + "name": "crater-cliff", + "orientation": "west-to-south" + }, + { + "x": 1522, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1526, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1534, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1554, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1578, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1582, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1586, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1590, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1594, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1639.625, + "y": 1679.75, + "name": "crater-cliff", + "orientation": "south-to-north" + }, + { + "x": 1653.625, + "y": 1679.75, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": 1682, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1686, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1690, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1694, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1702, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1706, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1722, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1726, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1730, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1526, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1534, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1554, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1586, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1614, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1618, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1641.67578125, + "y": 1683.24609375, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": 1651.57421875, + "y": 1683.24609375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": 1694, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1698, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1702, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1710, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1714, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1718, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1722, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1646.625, + "y": 1684.69921875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": 1534, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1538, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1554, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1558, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1566, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1570, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1618, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1694, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1698, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1706, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1710, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1538, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1542, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1558, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1570, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1574, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1602, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1618, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1626, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1702, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1706, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1738, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1742, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1746, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1750, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1754, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1530, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1534, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1542, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1558, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1562, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1574, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1578, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1594, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1598, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1602, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1618, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1622, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1626, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1694, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1698, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1702, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1738, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1746, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1750, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1754, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1534, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1542, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1562, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1578, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1582, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1594, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1598, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1602, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1606, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1610, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1622, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1626, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1630, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1738, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1742, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1746, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1534, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1542, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1562, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1566, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1570, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1582, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1586, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1590, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1594, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1598, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1602, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1610, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1614, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1622, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1626, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1742, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1746, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1750, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1754, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1758, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1526, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1530, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1542, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1546, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1570, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1574, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1602, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1606, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1614, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1618, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1626, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1630, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1742, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1522, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1526, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1546, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1574, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1578, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1590, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1594, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1598, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1602, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1606, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1610, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1618, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1630, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1742, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1746, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1518, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1522, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1542, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1546, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1578, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1582, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1586, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1590, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1602, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1610, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1618, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1622, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1630, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1738, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1742, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1746, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1754, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1758, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1518, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1538, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1542, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1602, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1610, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1622, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1630, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1730, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1734, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1738, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1746, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1750, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1754, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1514, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1518, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1530, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1534, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1574, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1578, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1582, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1586, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1590, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1602, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1610, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1614, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1622, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1630, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1634, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1726, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1730, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1738, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1742, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1746, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1754, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1758, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1506, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1510, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1514, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1522, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1526, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1530, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1574, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1590, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1602, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1606, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1614, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1622, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1630, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1634, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1726, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1730, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1734, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1738, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1754, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1498, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1502, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1506, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1574, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1578, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1586, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1590, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1606, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1614, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1618, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1622, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1626, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1630, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1750, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1754, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1578, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1582, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1586, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1606, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1610, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1618, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1622, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1626, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1746, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1750, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1610, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1614, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1618, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1622, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1726, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1730, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1734, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1738, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1742, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1746, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1754, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1758, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1618, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1622, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1750, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1754, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1506, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1510, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1622, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1726, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1730, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1734, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1738, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1742, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1746, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1750, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1498, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1502, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1506, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1574, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1578, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1582, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1622, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1726, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1502, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1506, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1582, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1586, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1590, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1622, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1626, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1718, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1722, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1726, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1730, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1734, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1754, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1590, + "y": 1758.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1626, + "y": 1758.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + } + ], + "resources": [], + "protos": { + "cliff-vulcanus": { + "type": "cliff", + "layers": [ + "cliff", + "is_lower_object", + "is_object", + "item", + "meltable", + "object", + "player", + "water_tile" + ], + "box": { + "lx": -0.98828125, + "ly": -0.48828125, + "rx": 0.98828125, + "ry": 0.48828125 + } + }, + "crater-cliff": { + "type": "cliff", + "layers": [ + "item", + "object", + "player", + "water_tile" + ], + "box": { + "lx": -0.98828125, + "ly": -0.48828125, + "rx": 0.98828125, + "ry": 0.48828125 + } + }, + "tungsten-ore": { + "type": "resource", + "layers": [ + "resource" + ], + "box": { + "lx": -0.09765625, + "ly": -0.09765625, + "rx": 0.09765625, + "ry": 0.09765625 + } + }, + "calcite": { + "type": "resource", + "layers": [ + "resource" + ], + "box": { + "lx": -0.09765625, + "ly": -0.09765625, + "rx": 0.09765625, + "ry": 0.09765625 + } + }, + "coal": { + "type": "resource", + "layers": [ + "resource" + ], + "box": { + "lx": -0.09765625, + "ly": -0.09765625, + "rx": 0.09765625, + "ry": 0.09765625 + } + }, + "sulfuric-acid-geyser": { + "type": "resource", + "layers": [ + "resource" + ], + "box": { + "lx": -1.3984375, + "ly": -1.3984375, + "rx": 1.3984375, + "ry": 1.3984375 + } + }, + "big-volcanic-rock": { + "type": "simple-entity", + "layers": [ + "is_lower_object", + "is_object", + "item", + "meltable", + "object", + "player", + "water_tile" + ], + "box": { + "lx": -0.75, + "ly": -0.75, + "rx": 0.75, + "ry": 0.75 + } + }, + "huge-volcanic-rock": { + "type": "simple-entity", + "layers": [ + "is_lower_object", + "is_object", + "item", + "meltable", + "object", + "player", + "water_tile" + ], + "box": { + "lx": -1.5, + "ly": -1.09765625, + "rx": 1.5, + "ry": 1.09765625 + } + } + } + }, + { + "label": "entity region, calcite OFF", + "region": { + "x0": 1500, + "y0": 1500, + "x1": 1756, + "y1": 1756 + }, + "cliffSettings": null, + "autoplaceControls": { + "calcite": { + "frequency": 1, + "size": 0, + "richness": 1 + } + }, + "effectiveCliffSettings": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 70, + "cliff_elevation_interval": 120, + "cliff_smoothing": 1, + "richness": 1 + }, + "effectiveAutoplace": { + "calcite": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "sulfuric_acid_geyser": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "tungsten_ore": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "vulcanus_coal": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "vulcanus_volcanism": { + "frequency": 1, + "size": 1, + "richness": 1 + } + }, + "cliffs": [ + { + "x": 1502, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1506, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1510, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1522, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1534, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1538, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1574, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1578, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1594, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1642, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1710, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1714, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1726, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1502, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1506, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1510, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1518, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1522, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1534, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1578, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1582, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1586, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1590, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1594, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1598, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1642, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1710, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1714, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1726, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1730, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1502, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1534, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1598, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1642, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1662, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1666, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1682, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1686, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1502, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1530, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1534, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1582, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1586, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1590, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1594, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1598, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1618, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1622, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1642, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1646, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1662, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1666, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1686, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1690, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1498, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1502, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1518, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1534, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1578, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1582, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1622, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1646, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1650, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1654, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1658, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1662, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1666, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1670, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1690, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1694, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1518, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1522, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1526, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1530, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1534, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1582, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1586, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1622, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1630, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1634, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1638, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1670, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1674, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1694, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1514, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1518, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1522, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1526, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1622, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1626, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1630, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1638, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1642, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1646, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1650, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1654, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1670, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1674, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1694, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1698, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1702, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1706, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1514, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1618, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1622, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1626, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1654, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1658, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1662, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1666, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1670, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1706, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1710, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1510, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1514, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1626, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1630, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1634, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1638, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1642, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1646, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1650, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1682, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1686, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1690, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1694, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1698, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1702, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1510, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1514, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1522, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1634, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1638, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1678, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1682, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1702, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1742, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1510, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1514, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1518, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1522, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1534, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1550, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1662, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1666, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1678, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1702, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1718, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1738, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1742, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1510, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1518, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1522, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1530, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1534, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1550, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1662, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1666, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1678, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1702, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1718, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1722, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1730, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1734, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1738, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1746, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1750, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1754, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1506, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1510, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1514, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1518, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1522, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1526, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1538, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1546, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1658, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1662, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1666, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1678, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1702, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1722, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1726, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1730, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1506, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1510, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1514, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1518, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1522, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1526, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1538, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1658, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1662, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1666, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1670, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1678, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1702, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1706, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1754, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1498, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1502, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1506, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1510, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1538, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1670, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1678, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1682, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1686, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1690, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1702, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1706, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1754, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1502, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1506, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1510, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1534, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1670, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1674, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1690, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1694, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1698, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1702, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1718, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1722, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1726, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1754, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1502, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1506, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1510, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1530, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1674, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1678, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1714, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1718, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1726, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1502, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1506, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1510, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1678, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1690, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1694, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1698, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1702, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1714, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1726, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1730, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1734, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1738, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1742, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1746, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1750, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1754, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1506, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1510, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1518, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1678, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1690, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1702, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1706, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1714, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1754, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1506, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1510, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1518, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1530, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1658, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1662, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1666, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1670, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1674, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1678, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1682, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1686, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1690, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1706, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1710, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1714, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1718, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1742, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1746, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1750, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1754, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1506, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1510, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1518, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1530, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1658, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1678, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1682, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1686, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1710, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1718, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1722, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1510, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1654, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1658, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1678, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1682, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1686, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1690, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1694, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1698, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1710, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1714, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1510, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1682, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1686, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1690, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1694, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1698, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1702, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1706, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1710, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1714, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1502, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1506, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1510, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1606, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1690, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1694, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1698, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1702, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1710, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1714, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1718, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1722, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1726, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1510, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1606, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1690, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1694, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1702, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1706, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1710, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1726, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1502, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1506, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1510, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1606, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1610, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1614, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1638, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1694, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1702, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1726, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1506, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1598, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1602, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1606, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1614, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1634, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1638, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1654, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1658, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1726, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1530, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1534, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1538, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1598, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1602, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1614, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1630, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1634, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1654, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1530, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1538, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1598, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1602, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1614, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1618, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1630, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1650, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1654, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1718, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1754, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1758, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1506, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1510, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1518, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1530, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1538, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1542, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1590, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1598, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1602, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1618, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1622, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1626, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1630, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1646, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1650, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1718, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1746, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1750, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1754, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1510, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1522, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1530, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1542, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1546, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1590, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1594, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1598, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1602, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1646, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1650, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1746, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1510, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1522, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1534, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1546, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1558, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1594, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1602, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1650, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1730, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1734, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1510, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1518, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1522, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1538, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1546, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1558, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1562, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1650, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1654, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1730, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1510, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1522, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1538, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1550, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1562, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1650, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1654, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1658, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1726, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1730, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1510, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1514, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1518, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1522, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1526, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1538, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1542, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1550, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1554, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1558, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1650, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1658, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1662, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1726, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1506, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1518, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1542, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1546, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1558, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1562, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1650, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1726, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1506, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1550, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1562, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1566, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1650, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1726, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1502, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1506, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1518, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1522, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1526, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1530, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1534, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1538, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1550, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1554, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1566, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1650, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1726, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1502, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1506, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1522, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1534, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1538, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1542, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1550, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1554, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1566, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1570, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1574, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1650, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1654, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1726, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1742, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1746, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1506, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1522, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1526, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1534, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1542, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1550, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1574, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1578, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1582, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1590, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1654, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1658, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1726, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1506, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1538, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1542, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1550, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1582, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1590, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1594, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1658, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1662, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1714, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1718, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1722, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1726, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1754, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1506, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1530, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1538, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1542, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1550, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1554, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1566, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1582, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1594, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1662, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1666, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1670, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1754, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1506, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1510, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1514, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1518, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1522, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1530, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1534, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1542, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1546, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1554, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1558, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1566, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1570, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1582, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1586, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1594, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1670, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1750, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1754, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1522, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1558, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1570, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1574, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1586, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1590, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1746, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1750, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1522, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1550, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1554, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1558, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1574, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1578, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1590, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1646.625, + "y": 1674.80078125, + "name": "crater-cliff", + "orientation": "west-to-east" + }, + { + "x": 1726, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1730, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1734, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1738, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1742, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1746, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1641.67578125, + "y": 1676.25, + "name": "crater-cliff", + "orientation": "south-to-east" + }, + { + "x": 1651.57421875, + "y": 1676.25, + "name": "crater-cliff", + "orientation": "west-to-south" + }, + { + "x": 1522, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1526, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1534, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1554, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1578, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1582, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1586, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1590, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1594, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1639.625, + "y": 1679.75, + "name": "crater-cliff", + "orientation": "south-to-north" + }, + { + "x": 1653.625, + "y": 1679.75, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": 1682, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1686, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1690, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1694, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1702, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1706, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1722, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1726, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1730, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1526, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1534, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1554, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1586, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1614, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1618, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1641.67578125, + "y": 1683.24609375, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": 1651.57421875, + "y": 1683.24609375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": 1694, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1698, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1702, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1710, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1714, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1718, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1722, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1646.625, + "y": 1684.69921875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": 1534, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1538, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1554, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1558, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1566, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1570, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1618, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1694, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1698, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1706, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1710, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1538, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1542, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1558, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1570, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1574, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1602, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1618, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1626, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1702, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1706, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1738, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1742, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1746, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1750, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1754, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1530, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1534, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1542, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1558, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1562, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1574, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1578, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1594, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1598, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1602, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1618, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1622, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1626, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1694, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1698, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1702, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1738, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1746, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1750, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1754, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1534, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1542, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1562, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1578, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1582, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1594, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1598, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1602, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1606, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1610, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1622, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1626, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1630, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1738, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1742, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1746, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1534, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1542, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1562, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1566, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1570, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1582, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1586, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1590, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1594, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1598, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1602, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1610, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1614, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1622, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1626, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1742, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1746, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1750, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1754, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1758, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1526, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1530, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1542, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1546, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1570, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1574, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1602, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1606, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1614, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1618, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1626, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1630, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1742, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1522, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1526, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1546, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1574, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1578, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1590, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1594, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1598, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1602, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1606, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1610, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1618, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1630, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1742, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1746, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1518, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1522, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1542, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1546, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1578, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1582, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1586, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1590, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1602, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1610, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1618, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1622, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1630, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1738, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1742, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1746, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1754, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1758, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1518, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1538, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1542, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1602, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1610, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1622, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1630, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1730, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1734, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1738, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1746, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1750, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1754, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1514, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1518, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1530, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1534, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1574, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1578, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1582, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1586, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1590, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1602, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1610, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1614, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1622, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1630, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1634, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1726, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1730, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1738, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1742, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1746, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1754, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1758, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1506, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1510, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1514, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1522, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1526, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1530, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1574, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1590, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1602, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1606, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1614, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1622, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1630, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1634, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1726, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1730, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1734, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1738, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1754, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1498, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1502, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1506, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1574, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1578, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1586, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1590, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1606, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1614, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1618, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1622, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1626, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1630, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1750, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1754, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1578, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1582, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1586, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1606, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1610, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1618, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1622, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1626, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1746, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1750, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1610, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1614, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1618, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1622, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1726, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1730, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1734, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1738, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1742, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1746, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1754, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1758, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1618, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1622, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1750, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1754, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1506, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1510, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1622, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1726, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1730, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1734, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1738, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1742, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1746, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1750, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1498, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1502, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1506, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1574, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1578, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1582, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1622, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1726, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1502, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1506, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1582, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1586, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1590, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1622, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1626, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1718, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1722, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1726, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1730, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1734, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1754, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1590, + "y": 1758.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1626, + "y": 1758.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + } + ], + "resources": [ + { + "x": 1543.5, + "y": 1553.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1550.5, + "y": 1556.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1557.5, + "y": 1558.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1555.5, + "y": 1564.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1545.5, + "y": 1567.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1548.5, + "y": 1567.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1541.5, + "y": 1570.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1557.5, + "y": 1571.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1561.5, + "y": 1570.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1548.5, + "y": 1574.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1553.5, + "y": 1574.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1556.5, + "y": 1574.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1549.5, + "y": 1579.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1552.5, + "y": 1579.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1556.5, + "y": 1580.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1545.5, + "y": 1583.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1556.5, + "y": 1584.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1547.5, + "y": 1586.5, + "name": "sulfuric-acid-geyser" + }, + { + "x": 1706.5, + "y": 1755.5, + "name": "sulfuric-acid-geyser" + } + ], + "protos": { + "cliff-vulcanus": { + "type": "cliff", + "layers": [ + "cliff", + "is_lower_object", + "is_object", + "item", + "meltable", + "object", + "player", + "water_tile" + ], + "box": { + "lx": -0.98828125, + "ly": -0.48828125, + "rx": 0.98828125, + "ry": 0.48828125 + } + }, + "crater-cliff": { + "type": "cliff", + "layers": [ + "item", + "object", + "player", + "water_tile" + ], + "box": { + "lx": -0.98828125, + "ly": -0.48828125, + "rx": 0.98828125, + "ry": 0.48828125 + } + }, + "tungsten-ore": { + "type": "resource", + "layers": [ + "resource" + ], + "box": { + "lx": -0.09765625, + "ly": -0.09765625, + "rx": 0.09765625, + "ry": 0.09765625 + } + }, + "calcite": { + "type": "resource", + "layers": [ + "resource" + ], + "box": { + "lx": -0.09765625, + "ly": -0.09765625, + "rx": 0.09765625, + "ry": 0.09765625 + } + }, + "coal": { + "type": "resource", + "layers": [ + "resource" + ], + "box": { + "lx": -0.09765625, + "ly": -0.09765625, + "rx": 0.09765625, + "ry": 0.09765625 + } + }, + "sulfuric-acid-geyser": { + "type": "resource", + "layers": [ + "resource" + ], + "box": { + "lx": -1.3984375, + "ly": -1.3984375, + "rx": 1.3984375, + "ry": 1.3984375 + } + }, + "big-volcanic-rock": { + "type": "simple-entity", + "layers": [ + "is_lower_object", + "is_object", + "item", + "meltable", + "object", + "player", + "water_tile" + ], + "box": { + "lx": -0.75, + "ly": -0.75, + "rx": 0.75, + "ry": 0.75 + } + }, + "huge-volcanic-rock": { + "type": "simple-entity", + "layers": [ + "is_lower_object", + "is_object", + "item", + "meltable", + "object", + "player", + "water_tile" + ], + "box": { + "lx": -1.5, + "ly": -1.09765625, + "rx": 1.5, + "ry": 1.09765625 + } + } + } + }, + { + "label": "entity region, geyser OFF", + "region": { + "x0": 1500, + "y0": 1500, + "x1": 1756, + "y1": 1756 + }, + "cliffSettings": null, + "autoplaceControls": { + "sulfuric_acid_geyser": { + "frequency": 1, + "size": 0, + "richness": 1 + } + }, + "effectiveCliffSettings": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 70, + "cliff_elevation_interval": 120, + "cliff_smoothing": 1, + "richness": 1 + }, + "effectiveAutoplace": { + "calcite": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "sulfuric_acid_geyser": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "tungsten_ore": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "vulcanus_coal": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "vulcanus_volcanism": { + "frequency": 1, + "size": 1, + "richness": 1 + } + }, + "cliffs": [ + { + "x": 1502, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1506, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1510, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1522, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1534, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1538, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1574, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1578, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1594, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1642, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1710, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1714, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1726, + "y": 1498.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1502, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1506, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1510, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1518, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1522, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1534, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1578, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1582, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1586, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1590, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1594, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1598, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1642, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1710, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1714, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1726, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1730, + "y": 1502.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1502, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1534, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1598, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1642, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1662, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1666, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1682, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1686, + "y": 1506.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1502, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1530, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1534, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1582, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1586, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1590, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1594, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1598, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1618, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1622, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1642, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1646, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1662, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1666, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1686, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1690, + "y": 1510.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1498, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1502, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1518, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1534, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1578, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1582, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1622, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1646, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1650, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1654, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1658, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1662, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1666, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1670, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1690, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1694, + "y": 1514.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1518, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1522, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1526, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1530, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1534, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1582, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1586, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1622, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1630, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1634, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1638, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1670, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1674, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1694, + "y": 1518.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1514, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1518, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1522, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1526, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1622, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1626, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1630, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1638, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1642, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1646, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1650, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1654, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1670, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1674, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1694, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1698, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1702, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1706, + "y": 1522.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1514, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1618, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1622, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1626, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1654, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1658, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1662, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1666, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1670, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1706, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1710, + "y": 1526.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1510, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1514, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1626, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1630, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1634, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1638, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1642, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1646, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1650, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1682, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1686, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1690, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1694, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1698, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1702, + "y": 1530.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1510, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1514, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1522, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1634, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1638, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1678, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1682, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1702, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1742, + "y": 1534.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1510, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1514, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1518, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1522, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1534, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1550, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1662, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1666, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1678, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1702, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1718, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1738, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1742, + "y": 1538.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1510, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1518, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1522, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1530, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1534, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1550, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1662, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1666, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1678, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1702, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1718, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1722, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1730, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1734, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1738, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1746, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1750, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1754, + "y": 1542.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1506, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1510, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1514, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1518, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1522, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1526, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1538, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1546, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1658, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1662, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1666, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1678, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1702, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1722, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1726, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1730, + "y": 1546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1506, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1510, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1514, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1518, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1522, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1526, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1538, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1658, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1662, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1666, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1670, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1678, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1702, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1706, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1754, + "y": 1550.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1498, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1502, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1506, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1510, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1538, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1542, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1546, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1670, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1678, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1682, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1686, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1690, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1702, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1706, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1754, + "y": 1554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1502, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1506, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1510, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1534, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1542, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1670, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1674, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1690, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1694, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1698, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1702, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1718, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1722, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1726, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1754, + "y": 1558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1502, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1506, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1510, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1530, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1674, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1678, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1714, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1718, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1726, + "y": 1562.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1502, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1506, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1510, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1678, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1690, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1694, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1698, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1702, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1714, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1726, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1730, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1734, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1738, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1742, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1746, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1750, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1754, + "y": 1566.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1506, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1510, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1518, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1678, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1690, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1702, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1706, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1714, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1754, + "y": 1570.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1506, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1510, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1518, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1530, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1658, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1662, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1666, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1670, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1674, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1678, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1682, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1686, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1690, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1706, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1710, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1714, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1718, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1742, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1746, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1750, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1754, + "y": 1574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1506, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1510, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1518, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1530, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1658, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1678, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1682, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1686, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1710, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1718, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1722, + "y": 1578.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1510, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1654, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1658, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1678, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1682, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1686, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1690, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1694, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1698, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1710, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1714, + "y": 1582.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1510, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1682, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1686, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1690, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1694, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1698, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1702, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1706, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1710, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1714, + "y": 1586.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1502, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1506, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1510, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1690, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1694, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1698, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1702, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1710, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1714, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1718, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1722, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1726, + "y": 1590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1510, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1690, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1694, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1702, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1706, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1710, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1726, + "y": 1594.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1502, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1506, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1510, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1610, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1614, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1638, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1694, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1702, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1726, + "y": 1598.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1506, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1614, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1634, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1638, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1654, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1658, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1726, + "y": 1602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1530, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1534, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1538, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1630, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1634, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1654, + "y": 1606.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1530, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1538, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1630, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1650, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1654, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1718, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1754, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1758, + "y": 1610.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1506, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1510, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1518, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1530, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1538, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1542, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1630, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1646, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1650, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1718, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1746, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1750, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1754, + "y": 1614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1510, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1522, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1530, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1542, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1546, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1594, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1646, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1650, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1746, + "y": 1618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1510, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1522, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1534, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1546, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1558, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1594, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1650, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1730, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1734, + "y": 1622.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1510, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1518, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1522, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1538, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1546, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1558, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1562, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1650, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1654, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1730, + "y": 1626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1510, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1522, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1538, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1550, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1562, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1650, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1654, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1658, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1726, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1730, + "y": 1630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1510, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1514, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1518, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1522, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1526, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1538, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1542, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1550, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1554, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1558, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1650, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1658, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1662, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1726, + "y": 1634.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1506, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1518, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1542, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1546, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1558, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1562, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1650, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1726, + "y": 1638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1506, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1550, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1562, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1566, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1650, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1726, + "y": 1642.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1502, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1506, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1518, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1522, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1526, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1530, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1534, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1538, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1550, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1554, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1566, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1650, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1726, + "y": 1646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1502, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1506, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1522, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1534, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1538, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1542, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1550, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1554, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1566, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1570, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1574, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1650, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1654, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1726, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1742, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1746, + "y": 1650.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1506, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1522, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1526, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1534, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1542, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1550, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1574, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1578, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1582, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1590, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1654, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1658, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1726, + "y": 1654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1506, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1538, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1542, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1550, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1582, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1590, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1594, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1658, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1662, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1714, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1718, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1722, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1726, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1754, + "y": 1658.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1506, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1526, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1530, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1538, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1542, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1550, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1554, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1566, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1582, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1594, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1662, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1666, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1670, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1754, + "y": 1662.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1506, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1510, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1514, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1518, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1522, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1530, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1534, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1542, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1546, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1554, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1558, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1566, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1570, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1582, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1586, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1594, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1750, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1754, + "y": 1666.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1522, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1558, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1570, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1574, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1586, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1590, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1746, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1750, + "y": 1670.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1522, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1550, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1554, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1558, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1574, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1578, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1590, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1726, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1730, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1734, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1738, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1742, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1746, + "y": 1674.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1522, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1526, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1534, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1554, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1578, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1582, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1586, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1590, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1594, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1694, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1702, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1706, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1722, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1726, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1730, + "y": 1678.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1526, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1534, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1554, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1586, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1614, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1618, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1694, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1698, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1702, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1710, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1714, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1718, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1722, + "y": 1682.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1534, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1538, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1554, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1558, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1566, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1570, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1618, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1694, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1698, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1706, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1710, + "y": 1686.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1538, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1542, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1558, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1570, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1574, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1602, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1618, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1626, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1702, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1706, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1738, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1742, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1746, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1750, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1754, + "y": 1690.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1530, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1534, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1542, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1558, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1562, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1574, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1578, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1594, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1598, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1602, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1618, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1622, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1626, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1694, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1698, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1702, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1738, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1746, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1750, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1754, + "y": 1694.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1534, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1542, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1562, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1578, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1582, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1594, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1598, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1602, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1606, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1610, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1622, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1626, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1630, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1738, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1742, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1746, + "y": 1698.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1534, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1542, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1562, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1566, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1570, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1582, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1586, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1590, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1594, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1598, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1602, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1610, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1614, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1622, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1626, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1742, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1746, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1750, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1754, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1758, + "y": 1702.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1526, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1530, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1542, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1546, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1570, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1574, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1602, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1606, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1614, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1618, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1626, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1630, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1742, + "y": 1706.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1522, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1526, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1546, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1574, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1578, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1590, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1594, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1598, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1602, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1606, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1610, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1618, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1630, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1742, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1746, + "y": 1710.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1518, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1522, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1542, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1546, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1578, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1582, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1586, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1590, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1602, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1610, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1618, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1622, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1630, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1738, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1742, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1746, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1754, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1758, + "y": 1714.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1518, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1538, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1542, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1602, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1610, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1622, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1630, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1730, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1734, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1738, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1746, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1750, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1754, + "y": 1718.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1514, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1518, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1530, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1534, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1574, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1578, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1582, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1586, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1590, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1602, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1610, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1614, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1622, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1630, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1634, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1726, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1730, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1738, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1742, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1746, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1754, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1758, + "y": 1722.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1506, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1510, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1514, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1522, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1526, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1530, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1574, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1590, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1602, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1606, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1614, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1622, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1630, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1634, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1726, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1730, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1734, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1738, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1754, + "y": 1726.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1498, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1502, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1506, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1574, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1578, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1586, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1590, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1606, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1614, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1618, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1622, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1626, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1630, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1750, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1754, + "y": 1730.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1578, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1582, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1586, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1606, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1610, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1618, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1622, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1626, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1746, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1750, + "y": 1734.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1610, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1614, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1618, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1622, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1726, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1730, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1734, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1738, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1742, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1746, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1754, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1758, + "y": 1738.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1618, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1622, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1750, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1754, + "y": 1742.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1506, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1510, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1622, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1726, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1730, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1734, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1738, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1742, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1746, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1750, + "y": 1746.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1498, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1502, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1506, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1574, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1578, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1582, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1622, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1726, + "y": 1750.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1502, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1506, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1582, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1586, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1590, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1622, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1626, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1718, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1722, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1726, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1730, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1734, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1754, + "y": 1754.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1590, + "y": 1758.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1626, + "y": 1758.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + } + ], + "resources": [ + { + "x": 1753.5, + "y": 1511.5, + "name": "calcite" + }, + { + "x": 1752.5, + "y": 1512.5, + "name": "calcite" + }, + { + "x": 1753.5, + "y": 1512.5, + "name": "calcite" + }, + { + "x": 1752.5, + "y": 1513.5, + "name": "calcite" + }, + { + "x": 1753.5, + "y": 1513.5, + "name": "calcite" + }, + { + "x": 1754.5, + "y": 1512.5, + "name": "calcite" + }, + { + "x": 1755.5, + "y": 1512.5, + "name": "calcite" + }, + { + "x": 1754.5, + "y": 1513.5, + "name": "calcite" + }, + { + "x": 1755.5, + "y": 1513.5, + "name": "calcite" + }, + { + "x": 1752.5, + "y": 1514.5, + "name": "calcite" + }, + { + "x": 1753.5, + "y": 1514.5, + "name": "calcite" + }, + { + "x": 1752.5, + "y": 1515.5, + "name": "calcite" + }, + { + "x": 1753.5, + "y": 1515.5, + "name": "calcite" + }, + { + "x": 1754.5, + "y": 1514.5, + "name": "calcite" + }, + { + "x": 1755.5, + "y": 1514.5, + "name": "calcite" + }, + { + "x": 1754.5, + "y": 1515.5, + "name": "calcite" + }, + { + "x": 1755.5, + "y": 1515.5, + "name": "calcite" + }, + { + "x": 1749.5, + "y": 1517.5, + "name": "calcite" + }, + { + "x": 1750.5, + "y": 1517.5, + "name": "calcite" + }, + { + "x": 1751.5, + "y": 1517.5, + "name": "calcite" + }, + { + "x": 1752.5, + "y": 1516.5, + "name": "calcite" + }, + { + "x": 1753.5, + "y": 1516.5, + "name": "calcite" + }, + { + "x": 1752.5, + "y": 1517.5, + "name": "calcite" + }, + { + "x": 1753.5, + "y": 1517.5, + "name": "calcite" + }, + { + "x": 1754.5, + "y": 1516.5, + "name": "calcite" + }, + { + "x": 1755.5, + "y": 1516.5, + "name": "calcite" + }, + { + "x": 1754.5, + "y": 1517.5, + "name": "calcite" + }, + { + "x": 1755.5, + "y": 1517.5, + "name": "calcite" + }, + { + "x": 1749.5, + "y": 1518.5, + "name": "calcite" + }, + { + "x": 1750.5, + "y": 1518.5, + "name": "calcite" + }, + { + "x": 1751.5, + "y": 1518.5, + "name": "calcite" + }, + { + "x": 1751.5, + "y": 1519.5, + "name": "calcite" + }, + { + "x": 1752.5, + "y": 1518.5, + "name": "calcite" + }, + { + "x": 1753.5, + "y": 1518.5, + "name": "calcite" + }, + { + "x": 1752.5, + "y": 1519.5, + "name": "calcite" + }, + { + "x": 1753.5, + "y": 1519.5, + "name": "calcite" + }, + { + "x": 1754.5, + "y": 1518.5, + "name": "calcite" + }, + { + "x": 1755.5, + "y": 1518.5, + "name": "calcite" + }, + { + "x": 1754.5, + "y": 1519.5, + "name": "calcite" + }, + { + "x": 1755.5, + "y": 1519.5, + "name": "calcite" + }, + { + "x": 1751.5, + "y": 1520.5, + "name": "calcite" + }, + { + "x": 1752.5, + "y": 1520.5, + "name": "calcite" + }, + { + "x": 1753.5, + "y": 1520.5, + "name": "calcite" + }, + { + "x": 1753.5, + "y": 1521.5, + "name": "calcite" + }, + { + "x": 1754.5, + "y": 1520.5, + "name": "calcite" + }, + { + "x": 1755.5, + "y": 1520.5, + "name": "calcite" + }, + { + "x": 1754.5, + "y": 1521.5, + "name": "calcite" + }, + { + "x": 1755.5, + "y": 1521.5, + "name": "calcite" + }, + { + "x": 1753.5, + "y": 1522.5, + "name": "calcite" + }, + { + "x": 1754.5, + "y": 1522.5, + "name": "calcite" + }, + { + "x": 1755.5, + "y": 1522.5, + "name": "calcite" + }, + { + "x": 1755.5, + "y": 1523.5, + "name": "calcite" + }, + { + "x": 1755.5, + "y": 1524.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1571.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1573.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1573.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1573.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1572.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1573.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1573.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1572.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1573.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1573.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1572.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1572.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1573.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1573.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1572.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1572.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1573.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1573.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1575.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1574.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1575.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1574.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1574.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1575.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1575.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1574.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1574.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1575.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1575.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1574.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1574.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1575.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1575.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1574.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1574.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1575.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1575.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1574.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1574.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1575.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1575.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1574.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1574.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1575.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1575.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1574.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1575.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1575.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1577.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1577.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1576.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1576.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1577.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1577.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1576.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1576.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1577.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1577.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1576.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1576.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1577.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1577.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1576.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1576.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1577.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1577.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1576.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1576.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1577.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1577.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1576.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1576.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1577.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1577.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1576.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1576.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1577.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1577.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1576.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1576.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1577.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1577.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1576.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1576.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1577.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1577.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1576.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1576.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1577.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1577.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1576.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1577.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1577.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1578.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1579.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1580.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1581.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1582.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1583.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1584.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1585.5, + "name": "calcite" + }, + { + "x": 1557.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1586.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1587.5, + "name": "calcite" + }, + { + "x": 1555.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1556.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1557.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1556.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1557.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1588.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1589.5, + "name": "calcite" + }, + { + "x": 1555.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1555.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1556.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1557.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1556.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1557.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1590.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1603.5, + "y": 1591.5, + "name": "calcite" + }, + { + "x": 1555.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1555.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1556.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1557.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1556.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1557.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1603.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1603.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1604.5, + "y": 1592.5, + "name": "calcite" + }, + { + "x": 1604.5, + "y": 1593.5, + "name": "calcite" + }, + { + "x": 1557.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1556.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1557.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1603.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1603.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1604.5, + "y": 1594.5, + "name": "calcite" + }, + { + "x": 1604.5, + "y": 1595.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1603.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1603.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1604.5, + "y": 1596.5, + "name": "calcite" + }, + { + "x": 1604.5, + "y": 1597.5, + "name": "calcite" + }, + { + "x": 1557.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1603.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1603.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1604.5, + "y": 1598.5, + "name": "calcite" + }, + { + "x": 1604.5, + "y": 1599.5, + "name": "calcite" + }, + { + "x": 1556.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1557.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1603.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1603.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1604.5, + "y": 1600.5, + "name": "calcite" + }, + { + "x": 1604.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1605.5, + "y": 1601.5, + "name": "calcite" + }, + { + "x": 1553.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1603.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1603.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1604.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1605.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1604.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1605.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1606.5, + "y": 1602.5, + "name": "calcite" + }, + { + "x": 1606.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1607.5, + "y": 1603.5, + "name": "calcite" + }, + { + "x": 1551.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1552.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1552.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1553.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1603.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1603.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1604.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1605.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1604.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1605.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1606.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1607.5, + "y": 1604.5, + "name": "calcite" + }, + { + "x": 1606.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1607.5, + "y": 1605.5, + "name": "calcite" + }, + { + "x": 1549.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1550.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1551.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1550.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1551.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1552.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1553.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1552.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1553.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1554.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1554.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1555.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1557.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1556.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1557.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1603.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1603.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1604.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1605.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1604.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1605.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1606.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1607.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1611.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1612.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1613.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1612.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1613.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1614.5, + "y": 1606.5, + "name": "calcite" + }, + { + "x": 1614.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1615.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1621.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1622.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1623.5, + "y": 1607.5, + "name": "calcite" + }, + { + "x": 1549.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1549.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1550.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1551.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1550.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1551.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1552.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1553.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1552.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1553.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1554.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1555.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1554.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1555.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1556.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1557.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1556.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1557.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1603.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1603.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1604.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1605.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1604.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1605.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1606.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1609.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1610.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1611.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1610.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1611.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1612.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1613.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1612.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1613.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1614.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1615.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1614.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1615.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1616.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1616.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1617.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1619.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1618.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1619.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1620.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1621.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1620.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1621.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1622.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1623.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1622.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1623.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1624.5, + "y": 1608.5, + "name": "calcite" + }, + { + "x": 1624.5, + "y": 1609.5, + "name": "calcite" + }, + { + "x": 1550.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1551.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1550.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1551.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1552.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1553.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1554.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1555.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1554.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1555.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1556.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1557.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1556.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1557.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1603.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1608.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1609.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1610.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1611.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1610.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1611.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1612.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1613.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1612.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1613.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1614.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1615.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1614.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1615.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1616.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1617.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1616.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1617.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1618.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1619.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1618.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1619.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1620.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1621.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1620.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1621.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1622.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1623.5, + "y": 1610.5, + "name": "calcite" + }, + { + "x": 1622.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1623.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1625.5, + "y": 1611.5, + "name": "calcite" + }, + { + "x": 1551.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1555.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1556.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1557.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1556.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1557.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1605.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1607.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1606.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1607.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1608.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1609.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1608.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1609.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1610.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1611.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1610.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1611.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1612.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1613.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1612.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1613.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1614.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1615.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1614.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1615.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1616.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1617.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1616.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1617.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1618.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1619.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1618.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1619.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1620.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1621.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1621.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1623.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1624.5, + "y": 1612.5, + "name": "calcite" + }, + { + "x": 1624.5, + "y": 1613.5, + "name": "calcite" + }, + { + "x": 1556.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1557.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1556.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1557.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1558.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1559.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1560.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1591.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1593.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1603.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1605.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1605.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1607.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1606.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1607.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1608.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1609.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1608.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1609.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1610.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1611.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1610.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1611.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1612.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1613.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1612.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1613.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1614.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1615.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1614.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1615.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1616.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1617.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1616.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1617.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1618.5, + "y": 1614.5, + "name": "calcite" + }, + { + "x": 1618.5, + "y": 1615.5, + "name": "calcite" + }, + { + "x": 1552.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1553.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1554.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1555.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1554.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1555.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1556.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1564.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1565.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1566.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1587.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1589.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1588.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1590.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1592.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1594.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1595.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1596.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1603.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1602.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1604.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1605.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1605.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1606.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1607.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1606.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1607.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1608.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1609.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1609.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1610.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1611.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1610.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1611.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1612.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1613.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1612.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1613.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1614.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1615.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1614.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1615.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1616.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1617.5, + "y": 1616.5, + "name": "calcite" + }, + { + "x": 1616.5, + "y": 1617.5, + "name": "calcite" + }, + { + "x": 1553.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1554.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1561.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1562.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1563.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1567.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1568.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1619.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1619.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1619.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1619.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1619.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1619.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1619.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1619.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1619.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1619.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1619.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1619.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1619.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1619.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1619.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1619.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1619.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1586.5, + "y": 1619.5, + "name": "calcite" + }, + { + "x": 1597.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1598.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1599.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1600.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1601.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1603.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1604.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1605.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1606.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1607.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1611.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1612.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1613.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1614.5, + "y": 1618.5, + "name": "calcite" + }, + { + "x": 1569.5, + "y": 1620.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1620.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1620.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1621.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1621.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1620.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1620.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1621.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1621.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1620.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1620.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1621.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1621.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1620.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1620.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1621.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1621.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1620.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1620.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1621.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1621.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1620.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1620.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1621.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1621.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1620.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1620.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1621.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1621.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1620.5, + "name": "calcite" + }, + { + "x": 1585.5, + "y": 1620.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1621.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1622.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1622.5, + "name": "calcite" + }, + { + "x": 1570.5, + "y": 1623.5, + "name": "calcite" + }, + { + "x": 1571.5, + "y": 1623.5, + "name": "calcite" + }, + { + "x": 1572.5, + "y": 1622.5, + "name": "calcite" + }, + { + "x": 1573.5, + "y": 1622.5, + "name": "calcite" + }, + { + "x": 1574.5, + "y": 1622.5, + "name": "calcite" + }, + { + "x": 1575.5, + "y": 1622.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1622.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1622.5, + "name": "calcite" + }, + { + "x": 1576.5, + "y": 1623.5, + "name": "calcite" + }, + { + "x": 1577.5, + "y": 1623.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1622.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1622.5, + "name": "calcite" + }, + { + "x": 1578.5, + "y": 1623.5, + "name": "calcite" + }, + { + "x": 1579.5, + "y": 1623.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1622.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1622.5, + "name": "calcite" + }, + { + "x": 1580.5, + "y": 1623.5, + "name": "calcite" + }, + { + "x": 1581.5, + "y": 1623.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1622.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1622.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1624.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1624.5, + "name": "calcite" + }, + { + "x": 1582.5, + "y": 1625.5, + "name": "calcite" + }, + { + "x": 1583.5, + "y": 1626.5, + "name": "calcite" + }, + { + "x": 1584.5, + "y": 1626.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1648.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1649.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1649.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1651.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1650.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1650.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1651.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1651.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1651.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1651.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1651.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1651.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1651.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1652.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1652.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1653.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1653.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1652.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1652.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1653.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1653.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1652.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1652.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1653.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1652.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1654.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1654.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1654.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1655.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1655.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1654.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1654.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1655.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1655.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1654.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1657.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1656.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1656.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1657.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1657.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1656.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1656.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1657.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1657.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1656.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1657.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1657.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1657.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1657.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1657.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1657.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1657.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1657.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1657.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1658.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1659.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1659.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1658.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1658.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1659.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1659.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1658.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1658.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1659.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1659.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1658.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1658.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1659.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1659.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1658.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1658.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1659.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1659.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1658.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1658.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1659.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1659.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1658.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1658.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1659.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1659.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1658.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1658.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1659.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1659.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1658.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1658.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1659.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1659.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1659.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1659.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1658.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1658.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1659.5, + "name": "calcite" + }, + { + "x": 1625.5, + "y": 1660.5, + "name": "calcite" + }, + { + "x": 1625.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1660.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1660.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1660.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1660.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1660.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1660.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1660.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1660.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1660.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1660.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1660.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1660.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1660.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1660.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1660.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1660.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1660.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1660.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1660.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1660.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1660.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1661.5, + "name": "calcite" + }, + { + "x": 1625.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1624.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1625.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1657.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1656.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1657.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1659.5, + "y": 1662.5, + "name": "calcite" + }, + { + "x": 1658.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1659.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1660.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1661.5, + "y": 1663.5, + "name": "calcite" + }, + { + "x": 1625.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1624.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1625.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1656.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1657.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1656.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1657.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1658.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1659.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1658.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1659.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1660.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1661.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1660.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1661.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1662.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1663.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1662.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1663.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1664.5, + "y": 1664.5, + "name": "calcite" + }, + { + "x": 1664.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1665.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1666.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1667.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1668.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1669.5, + "y": 1665.5, + "name": "calcite" + }, + { + "x": 1623.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1624.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1625.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1624.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1625.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1656.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1657.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1656.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1657.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1658.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1659.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1658.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1659.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1660.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1661.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1660.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1661.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1662.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1663.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1662.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1663.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1664.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1665.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1664.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1665.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1666.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1667.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1666.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1667.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1668.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1669.5, + "y": 1666.5, + "name": "calcite" + }, + { + "x": 1668.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1669.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1671.5, + "y": 1667.5, + "name": "calcite" + }, + { + "x": 1623.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1623.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1624.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1625.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1624.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1625.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1656.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1657.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1656.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1657.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1658.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1659.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1658.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1659.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1660.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1661.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1660.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1661.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1662.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1663.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1662.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1663.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1664.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1665.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1664.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1665.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1666.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1667.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1666.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1667.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1668.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1669.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1668.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1669.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1671.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1671.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1672.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1672.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1673.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1674.5, + "y": 1668.5, + "name": "calcite" + }, + { + "x": 1674.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1675.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1676.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1677.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1683.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1684.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1685.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1686.5, + "y": 1669.5, + "name": "calcite" + }, + { + "x": 1623.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1623.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1624.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1625.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1624.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1625.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1656.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1657.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1656.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1657.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1658.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1659.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1658.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1659.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1660.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1661.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1660.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1661.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1662.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1663.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1662.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1663.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1664.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1665.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1664.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1665.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1666.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1667.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1666.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1667.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1668.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1669.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1668.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1669.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1671.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1672.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1673.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1672.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1673.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1674.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1675.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1674.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1675.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1676.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1677.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1676.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1677.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1678.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1679.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1678.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1679.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1680.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1681.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1680.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1681.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1682.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1683.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1682.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1683.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1684.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1685.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1684.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1685.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1686.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1687.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1686.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1687.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1688.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1689.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1688.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1689.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1690.5, + "y": 1670.5, + "name": "calcite" + }, + { + "x": 1690.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1691.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1692.5, + "y": 1671.5, + "name": "calcite" + }, + { + "x": 1623.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1623.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1624.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1625.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1624.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1625.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1656.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1657.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1656.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1657.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1658.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1659.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1658.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1659.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1660.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1661.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1660.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1661.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1662.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1663.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1662.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1663.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1664.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1665.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1664.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1665.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1666.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1667.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1666.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1667.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1668.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1669.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1668.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1669.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1671.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1670.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1671.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1672.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1673.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1672.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1673.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1674.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1675.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1674.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1675.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1676.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1677.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1676.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1677.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1678.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1679.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1678.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1679.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1680.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1681.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1680.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1681.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1682.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1683.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1682.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1683.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1684.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1685.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1684.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1685.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1686.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1687.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1686.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1687.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1688.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1689.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1688.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1689.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1690.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1691.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1690.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1691.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1692.5, + "y": 1672.5, + "name": "calcite" + }, + { + "x": 1692.5, + "y": 1673.5, + "name": "calcite" + }, + { + "x": 1625.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1656.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1657.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1656.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1657.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1658.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1659.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1658.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1659.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1660.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1661.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1660.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1661.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1662.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1663.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1662.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1663.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1664.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1665.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1664.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1665.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1666.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1667.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1666.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1667.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1668.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1669.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1668.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1669.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1670.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1671.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1670.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1671.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1672.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1673.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1672.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1673.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1674.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1675.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1674.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1675.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1676.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1677.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1676.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1677.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1678.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1679.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1678.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1679.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1680.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1681.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1680.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1681.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1682.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1683.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1682.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1683.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1684.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1685.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1684.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1685.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1686.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1687.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1686.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1687.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1688.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1689.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1688.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1689.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1690.5, + "y": 1674.5, + "name": "calcite" + }, + { + "x": 1690.5, + "y": 1675.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1656.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1657.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1656.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1657.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1658.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1659.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1659.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1660.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1661.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1662.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1663.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1663.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1664.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1665.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1664.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1666.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1667.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1667.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1668.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1671.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1670.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1671.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1672.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1673.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1672.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1673.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1674.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1675.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1674.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1675.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1676.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1677.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1676.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1677.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1678.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1679.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1678.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1679.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1680.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1681.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1680.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1681.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1682.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1683.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1682.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1683.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1684.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1685.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1684.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1685.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1686.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1687.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1686.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1687.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1688.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1689.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1688.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1689.5, + "y": 1677.5, + "name": "calcite" + }, + { + "x": 1690.5, + "y": 1676.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1657.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1656.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1658.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1660.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1671.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1672.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1673.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1672.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1673.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1674.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1675.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1674.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1675.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1676.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1677.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1676.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1677.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1678.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1679.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1678.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1679.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1680.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1681.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1680.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1681.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1682.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1683.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1684.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1685.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1684.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1685.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1686.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1687.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1686.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1687.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1688.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1689.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1688.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1689.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1690.5, + "y": 1678.5, + "name": "calcite" + }, + { + "x": 1690.5, + "y": 1679.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1656.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1656.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1658.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1674.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1675.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1674.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1675.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1676.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1677.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1676.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1677.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1678.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1679.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1678.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1679.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1680.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1680.5, + "y": 1681.5, + "name": "calcite" + }, + { + "x": 1689.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1690.5, + "y": 1680.5, + "name": "calcite" + }, + { + "x": 1624.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1625.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1656.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1676.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1677.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1677.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1678.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1679.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1678.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1679.5, + "y": 1683.5, + "name": "calcite" + }, + { + "x": 1680.5, + "y": 1682.5, + "name": "calcite" + }, + { + "x": 1625.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1656.5, + "y": 1684.5, + "name": "calcite" + }, + { + "x": 1656.5, + "y": 1685.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1687.5, + "name": "calcite" + }, + { + "x": 1656.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1657.5, + "y": 1686.5, + "name": "calcite" + }, + { + "x": 1626.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1627.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1628.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1689.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1688.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1690.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1691.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1690.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1690.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1691.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1691.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1690.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1690.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1691.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1691.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1690.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1690.5, + "name": "calcite" + }, + { + "x": 1634.5, + "y": 1691.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1691.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1690.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1690.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1691.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1690.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1690.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1691.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1691.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1690.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1690.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1691.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1691.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1690.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1690.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1691.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1691.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1690.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1690.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1691.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1691.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1690.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1690.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1691.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1691.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1690.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1690.5, + "name": "calcite" + }, + { + "x": 1648.5, + "y": 1691.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1690.5, + "name": "calcite" + }, + { + "x": 1629.5, + "y": 1693.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1692.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1692.5, + "name": "calcite" + }, + { + "x": 1630.5, + "y": 1693.5, + "name": "calcite" + }, + { + "x": 1631.5, + "y": 1693.5, + "name": "calcite" + }, + { + "x": 1632.5, + "y": 1692.5, + "name": "calcite" + }, + { + "x": 1633.5, + "y": 1692.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1692.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1692.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1693.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1692.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1692.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1693.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1693.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1692.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1692.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1693.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1693.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1692.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1692.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1693.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1692.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1692.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1693.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1693.5, + "name": "calcite" + }, + { + "x": 1647.5, + "y": 1692.5, + "name": "calcite" + }, + { + "x": 1646.5, + "y": 1693.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1694.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1695.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1695.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1694.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1694.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1695.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1695.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1694.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1694.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1695.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1695.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1694.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1696.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1697.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1696.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1696.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1697.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1697.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1696.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1696.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1697.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1697.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1696.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1696.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1697.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1697.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1696.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1697.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1696.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1697.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1697.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1696.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1697.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1698.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1698.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1698.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1699.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1699.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1698.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1698.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1699.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1699.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1698.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1698.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1699.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1699.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1698.5, + "name": "calcite" + }, + { + "x": 1649.5, + "y": 1698.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1698.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1698.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1699.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1699.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1698.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1698.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1699.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1699.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1699.5, + "name": "calcite" + }, + { + "x": 1635.5, + "y": 1700.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1700.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1700.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1701.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1701.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1700.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1700.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1701.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1701.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1700.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1700.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1701.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1701.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1700.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1701.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1701.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1700.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1700.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1700.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1701.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1700.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1700.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1701.5, + "name": "calcite" + }, + { + "x": 1656.5, + "y": 1701.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1702.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1702.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1703.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1703.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1702.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1702.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1703.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1703.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1702.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1702.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1703.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1703.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1702.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1702.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1703.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1703.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1702.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1703.5, + "name": "calcite" + }, + { + "x": 1652.5, + "y": 1702.5, + "name": "calcite" + }, + { + "x": 1653.5, + "y": 1703.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1702.5, + "name": "calcite" + }, + { + "x": 1655.5, + "y": 1702.5, + "name": "calcite" + }, + { + "x": 1654.5, + "y": 1703.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1704.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1704.5, + "name": "calcite" + }, + { + "x": 1636.5, + "y": 1705.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1705.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1704.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1704.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1705.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1705.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1704.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1704.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1705.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1705.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1704.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1704.5, + "name": "calcite" + }, + { + "x": 1642.5, + "y": 1705.5, + "name": "calcite" + }, + { + "x": 1643.5, + "y": 1705.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1704.5, + "name": "calcite" + }, + { + "x": 1645.5, + "y": 1704.5, + "name": "calcite" + }, + { + "x": 1644.5, + "y": 1705.5, + "name": "calcite" + }, + { + "x": 1637.5, + "y": 1706.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1706.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1706.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1707.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1707.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1706.5, + "name": "calcite" + }, + { + "x": 1641.5, + "y": 1706.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1707.5, + "name": "calcite" + }, + { + "x": 1638.5, + "y": 1708.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1708.5, + "name": "calcite" + }, + { + "x": 1639.5, + "y": 1709.5, + "name": "calcite" + }, + { + "x": 1640.5, + "y": 1708.5, + "name": "calcite" + }, + { + "x": 1650.5, + "y": 1708.5, + "name": "calcite" + }, + { + "x": 1651.5, + "y": 1708.5, + "name": "calcite" + } + ], + "protos": { + "cliff-vulcanus": { + "type": "cliff", + "layers": [ + "cliff", + "is_lower_object", + "is_object", + "item", + "meltable", + "object", + "player", + "water_tile" + ], + "box": { + "lx": -0.98828125, + "ly": -0.48828125, + "rx": 0.98828125, + "ry": 0.48828125 + } + }, + "crater-cliff": { + "type": "cliff", + "layers": [ + "item", + "object", + "player", + "water_tile" + ], + "box": { + "lx": -0.98828125, + "ly": -0.48828125, + "rx": 0.98828125, + "ry": 0.48828125 + } + }, + "tungsten-ore": { + "type": "resource", + "layers": [ + "resource" + ], + "box": { + "lx": -0.09765625, + "ly": -0.09765625, + "rx": 0.09765625, + "ry": 0.09765625 + } + }, + "calcite": { + "type": "resource", + "layers": [ + "resource" + ], + "box": { + "lx": -0.09765625, + "ly": -0.09765625, + "rx": 0.09765625, + "ry": 0.09765625 + } + }, + "coal": { + "type": "resource", + "layers": [ + "resource" + ], + "box": { + "lx": -0.09765625, + "ly": -0.09765625, + "rx": 0.09765625, + "ry": 0.09765625 + } + }, + "sulfuric-acid-geyser": { + "type": "resource", + "layers": [ + "resource" + ], + "box": { + "lx": -1.3984375, + "ly": -1.3984375, + "rx": 1.3984375, + "ry": 1.3984375 + } + }, + "big-volcanic-rock": { + "type": "simple-entity", + "layers": [ + "is_lower_object", + "is_object", + "item", + "meltable", + "object", + "player", + "water_tile" + ], + "box": { + "lx": -0.75, + "ly": -0.75, + "rx": 0.75, + "ry": 0.75 + } + }, + "huge-volcanic-rock": { + "type": "simple-entity", + "layers": [ + "is_lower_object", + "is_object", + "item", + "meltable", + "object", + "player", + "water_tile" + ], + "box": { + "lx": -1.5, + "ly": -1.09765625, + "rx": 1.5, + "ry": 1.09765625 + } + } + } + }, + { + "label": "blob region COLLAPSED, resources ON", + "region": { + "x0": 0, + "y0": 0, + "x1": 256, + "y1": 256 + }, + "cliffSettings": { + "cliff_smoothing": 0, + "cliff_elevation_interval": 1000000, + "cliff_elevation_0": 70, + "richness": 4 + }, + "autoplaceControls": null, + "effectiveCliffSettings": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 70, + "cliff_elevation_interval": 1000000, + "cliff_smoothing": 0, + "richness": 4 + }, + "effectiveAutoplace": { + "calcite": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "sulfuric_acid_geyser": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "tungsten_ore": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "vulcanus_coal": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "vulcanus_volcanism": { + "frequency": 1, + "size": 1, + "richness": 1 + } + }, + "cliffs": [ + { + "x": 130, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 134, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 210, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 214, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 178, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 182, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 186, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 210, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 214, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 178, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 182, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 186, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 178, + "y": 14.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 182, + "y": 14.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 114, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 118, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 110, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 114, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 106, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 110, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 90, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 94, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 82, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 86, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 90, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 78, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 82, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 134, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 138, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 70, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 74, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 78, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 82, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 134, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 138, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 6, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 58, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 62, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 70, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 74, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 78, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 82, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 6, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 22, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 26, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 30, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 42, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 46, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 50, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 54, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 58, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 62, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 66, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 70, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 78, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 30, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 34, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 38, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 42, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 54, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 58, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 62, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 74, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 78, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 86, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 90, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 94, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 98, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 46, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 50, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 54, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 70, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 74, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 78, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 82, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 86, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 94, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 98, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 6, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 46, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 50, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 66, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 70, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 78, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 82, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 94, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 6, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 10, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 14, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 46, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 50, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 66, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 82, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 94, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 138, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 142, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 14, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 18, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 46, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 62, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 66, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 82, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 94, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 98, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 102, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 106, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 134, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 138, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 142, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 18, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 22, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 46, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 62, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 82, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 86, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 102, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 106, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 134, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 138, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 142, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 250, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 254, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 46, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 62, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 66, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 86, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 102, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 250, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 254, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 22, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 46, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 50, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 66, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 86, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 102, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 18, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 22, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 50, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 66, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 86, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 98, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 102, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 18, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 22, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 26, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 50, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 54, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 66, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 86, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 98, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 22, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 26, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 54, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 58, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 66, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 86, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 90, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 94, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 98, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 182, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 186, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 190, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 194, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 198, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 202, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 206, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 210, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 58, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 66, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 90, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 94, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 182, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 202, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 206, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 210, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 22, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 58, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 62, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 66, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 182, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 198, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 202, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 22, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 26, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 182, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 198, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 182, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 186, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 198, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 206, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 210, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 186, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 190, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 194, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 198, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 206, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 210, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 194, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 198, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 30, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 34, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 34, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 34, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 38, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 38, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 42, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 46, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 46, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 50, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 54, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 54, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 58, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 58, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 62, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 66, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 66, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 62, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 66, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 58, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 62, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -4.51171875, + "y": 163.93359375, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": 5.38671875, + "y": 163.93359375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": 42, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 46, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 50, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 54, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 58, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 78, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 82, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 86, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 90, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 0.4375, + "y": 165.38671875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": 38, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 42, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 74, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 78, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 90, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 94, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 34, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 38, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 74, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 94, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 98, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 26, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 30, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 34, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 70, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 74, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 98, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 18, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 22, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 70, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 74, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 90, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 94, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 98, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 6, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 10, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 14, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 18, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 74, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 78, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 82, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 86, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 90, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 110, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 114, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 106, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 110, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 114, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 118, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 102, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 106, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 110, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 114, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 118, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 102, + "y": 194.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 106, + "y": 194.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 110, + "y": 194.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 106, + "y": 198.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 110, + "y": 198.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 34, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 38, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 34, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 38, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 74, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 78, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 82, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 66, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 70, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 74, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 82, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 66, + "y": 222.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 82, + "y": 222.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 66, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 82, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 66, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 70, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 78, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 82, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 70, + "y": 234.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 74, + "y": 234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 78, + "y": 234.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 74, + "y": 238.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 78, + "y": 238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 138, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 142, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 146, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 106, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 110, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 134, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 138, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 146, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 150, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 102, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 106, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 110, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 114, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 134, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 138, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 146, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 150, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 98, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 102, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 114, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 118, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 138, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 142, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 146, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + } + ], + "resources": [ + { + "x": 167.5, + "y": 136.5, + "name": "tungsten-ore" + }, + { + "x": 166.5, + "y": 137.5, + "name": "tungsten-ore" + }, + { + "x": 167.5, + "y": 137.5, + "name": "tungsten-ore" + }, + { + "x": 169.5, + "y": 136.5, + "name": "tungsten-ore" + }, + { + "x": 168.5, + "y": 137.5, + "name": "tungsten-ore" + }, + { + "x": 169.5, + "y": 137.5, + "name": "tungsten-ore" + }, + { + "x": 170.5, + "y": 136.5, + "name": "tungsten-ore" + }, + { + "x": 171.5, + "y": 136.5, + "name": "tungsten-ore" + }, + { + "x": 170.5, + "y": 137.5, + "name": "tungsten-ore" + }, + { + "x": 171.5, + "y": 137.5, + "name": "tungsten-ore" + }, + { + "x": 173.5, + "y": 136.5, + "name": "tungsten-ore" + }, + { + "x": 172.5, + "y": 137.5, + "name": "tungsten-ore" + }, + { + "x": 173.5, + "y": 137.5, + "name": "tungsten-ore" + }, + { + "x": 174.5, + "y": 137.5, + "name": "tungsten-ore" + }, + { + "x": 179.5, + "y": 137.5, + "name": "tungsten-ore" + }, + { + "x": 180.5, + "y": 137.5, + "name": "tungsten-ore" + }, + { + "x": 182.5, + "y": 137.5, + "name": "tungsten-ore" + }, + { + "x": 159.5, + "y": 139.5, + "name": "tungsten-ore" + }, + { + "x": 160.5, + "y": 138.5, + "name": "tungsten-ore" + }, + { + "x": 161.5, + "y": 138.5, + "name": "tungsten-ore" + }, + { + "x": 160.5, + "y": 139.5, + "name": "tungsten-ore" + }, + { + "x": 161.5, + "y": 139.5, + "name": "tungsten-ore" + }, + { + "x": 163.5, + "y": 138.5, + "name": "tungsten-ore" + }, + { + "x": 162.5, + "y": 139.5, + "name": "tungsten-ore" + }, + { + "x": 163.5, + "y": 139.5, + "name": "tungsten-ore" + }, + { + "x": 164.5, + "y": 138.5, + "name": "tungsten-ore" + }, + { + "x": 165.5, + "y": 138.5, + "name": "tungsten-ore" + }, + { + "x": 164.5, + "y": 139.5, + "name": "tungsten-ore" + }, + { + "x": 165.5, + "y": 139.5, + "name": "tungsten-ore" + }, + { + "x": 166.5, + "y": 138.5, + "name": "tungsten-ore" + }, + { + "x": 167.5, + "y": 138.5, + "name": "tungsten-ore" + }, + { + "x": 166.5, + "y": 139.5, + "name": "tungsten-ore" + }, + { + "x": 167.5, + "y": 139.5, + "name": "tungsten-ore" + }, + { + "x": 168.5, + "y": 138.5, + "name": "tungsten-ore" + }, + { + "x": 169.5, + "y": 138.5, + "name": "tungsten-ore" + }, + { + "x": 168.5, + "y": 139.5, + "name": "tungsten-ore" + }, + { + "x": 169.5, + "y": 139.5, + "name": "tungsten-ore" + }, + { + "x": 170.5, + "y": 138.5, + "name": "tungsten-ore" + }, + { + "x": 171.5, + "y": 138.5, + "name": "tungsten-ore" + }, + { + "x": 170.5, + "y": 139.5, + "name": "tungsten-ore" + }, + { + "x": 171.5, + "y": 139.5, + "name": "tungsten-ore" + }, + { + "x": 172.5, + "y": 138.5, + "name": "tungsten-ore" + }, + { + "x": 173.5, + "y": 138.5, + "name": "tungsten-ore" + }, + { + "x": 172.5, + "y": 139.5, + "name": "tungsten-ore" + }, + { + "x": 173.5, + "y": 139.5, + "name": "tungsten-ore" + }, + { + "x": 174.5, + "y": 138.5, + "name": "tungsten-ore" + }, + { + "x": 175.5, + "y": 138.5, + "name": "tungsten-ore" + }, + { + "x": 174.5, + "y": 139.5, + "name": "tungsten-ore" + }, + { + "x": 175.5, + "y": 139.5, + "name": "tungsten-ore" + }, + { + "x": 176.5, + "y": 138.5, + "name": "tungsten-ore" + }, + { + "x": 176.5, + "y": 139.5, + "name": "tungsten-ore" + }, + { + "x": 177.5, + "y": 139.5, + "name": "tungsten-ore" + }, + { + "x": 178.5, + "y": 138.5, + "name": "tungsten-ore" + }, + { + "x": 179.5, + "y": 138.5, + "name": "tungsten-ore" + }, + { + "x": 178.5, + "y": 139.5, + "name": "tungsten-ore" + }, + { + "x": 179.5, + "y": 139.5, + "name": "tungsten-ore" + }, + { + "x": 180.5, + "y": 138.5, + "name": "tungsten-ore" + }, + { + "x": 181.5, + "y": 138.5, + "name": "tungsten-ore" + }, + { + "x": 180.5, + "y": 139.5, + "name": "tungsten-ore" + }, + { + "x": 181.5, + "y": 139.5, + "name": "tungsten-ore" + }, + { + "x": 183.5, + "y": 138.5, + "name": "tungsten-ore" + }, + { + "x": 182.5, + "y": 139.5, + "name": "tungsten-ore" + }, + { + "x": 183.5, + "y": 139.5, + "name": "tungsten-ore" + }, + { + "x": 184.5, + "y": 138.5, + "name": "tungsten-ore" + }, + { + "x": 184.5, + "y": 139.5, + "name": "tungsten-ore" + }, + { + "x": 185.5, + "y": 139.5, + "name": "tungsten-ore" + }, + { + "x": 186.5, + "y": 139.5, + "name": "tungsten-ore" + }, + { + "x": 157.5, + "y": 140.5, + "name": "tungsten-ore" + }, + { + "x": 157.5, + "y": 141.5, + "name": "tungsten-ore" + }, + { + "x": 158.5, + "y": 140.5, + "name": "tungsten-ore" + }, + { + "x": 159.5, + "y": 140.5, + "name": "tungsten-ore" + }, + { + "x": 158.5, + "y": 141.5, + "name": "tungsten-ore" + }, + { + "x": 159.5, + "y": 141.5, + "name": "tungsten-ore" + }, + { + "x": 160.5, + "y": 140.5, + "name": "tungsten-ore" + }, + { + "x": 161.5, + "y": 140.5, + "name": "tungsten-ore" + }, + { + "x": 160.5, + "y": 141.5, + "name": "tungsten-ore" + }, + { + "x": 161.5, + "y": 141.5, + "name": "tungsten-ore" + }, + { + "x": 162.5, + "y": 140.5, + "name": "tungsten-ore" + }, + { + "x": 163.5, + "y": 140.5, + "name": "tungsten-ore" + }, + { + "x": 162.5, + "y": 141.5, + "name": "tungsten-ore" + }, + { + "x": 163.5, + "y": 141.5, + "name": "tungsten-ore" + }, + { + "x": 164.5, + "y": 140.5, + "name": "tungsten-ore" + }, + { + "x": 165.5, + "y": 140.5, + "name": "tungsten-ore" + }, + { + "x": 164.5, + "y": 141.5, + "name": "tungsten-ore" + }, + { + "x": 165.5, + "y": 141.5, + "name": "tungsten-ore" + }, + { + "x": 166.5, + "y": 140.5, + "name": "tungsten-ore" + }, + { + "x": 167.5, + "y": 140.5, + "name": "tungsten-ore" + }, + { + "x": 166.5, + "y": 141.5, + "name": "tungsten-ore" + }, + { + "x": 167.5, + "y": 141.5, + "name": "tungsten-ore" + }, + { + "x": 168.5, + "y": 140.5, + "name": "tungsten-ore" + }, + { + "x": 169.5, + "y": 140.5, + "name": "tungsten-ore" + }, + { + "x": 168.5, + "y": 141.5, + "name": "tungsten-ore" + }, + { + "x": 169.5, + "y": 141.5, + "name": "tungsten-ore" + }, + { + "x": 170.5, + "y": 140.5, + "name": "tungsten-ore" + }, + { + "x": 171.5, + "y": 140.5, + "name": "tungsten-ore" + }, + { + "x": 170.5, + "y": 141.5, + "name": "tungsten-ore" + }, + { + "x": 171.5, + "y": 141.5, + "name": "tungsten-ore" + }, + { + "x": 172.5, + "y": 140.5, + "name": "tungsten-ore" + }, + { + "x": 173.5, + "y": 140.5, + "name": "tungsten-ore" + }, + { + "x": 172.5, + "y": 141.5, + "name": "tungsten-ore" + }, + { + "x": 173.5, + "y": 141.5, + "name": "tungsten-ore" + }, + { + "x": 174.5, + "y": 140.5, + "name": "tungsten-ore" + }, + { + "x": 175.5, + "y": 140.5, + "name": "tungsten-ore" + }, + { + "x": 174.5, + "y": 141.5, + "name": "tungsten-ore" + }, + { + "x": 175.5, + "y": 141.5, + "name": "tungsten-ore" + }, + { + "x": 176.5, + "y": 140.5, + "name": "tungsten-ore" + }, + { + "x": 177.5, + "y": 140.5, + "name": "tungsten-ore" + }, + { + "x": 176.5, + "y": 141.5, + "name": "tungsten-ore" + }, + { + "x": 177.5, + "y": 141.5, + "name": "tungsten-ore" + }, + { + "x": 178.5, + "y": 140.5, + "name": "tungsten-ore" + }, + { + "x": 179.5, + "y": 140.5, + "name": "tungsten-ore" + }, + { + "x": 178.5, + "y": 141.5, + "name": "tungsten-ore" + }, + { + "x": 179.5, + "y": 141.5, + "name": "tungsten-ore" + }, + { + "x": 180.5, + "y": 140.5, + "name": "tungsten-ore" + }, + { + "x": 181.5, + "y": 140.5, + "name": "tungsten-ore" + }, + { + "x": 180.5, + "y": 141.5, + "name": "tungsten-ore" + }, + { + "x": 181.5, + "y": 141.5, + "name": "tungsten-ore" + }, + { + "x": 182.5, + "y": 140.5, + "name": "tungsten-ore" + }, + { + "x": 183.5, + "y": 140.5, + "name": "tungsten-ore" + }, + { + "x": 182.5, + "y": 141.5, + "name": "tungsten-ore" + }, + { + "x": 183.5, + "y": 141.5, + "name": "tungsten-ore" + }, + { + "x": 184.5, + "y": 140.5, + "name": "tungsten-ore" + }, + { + "x": 185.5, + "y": 140.5, + "name": "tungsten-ore" + }, + { + "x": 184.5, + "y": 141.5, + "name": "tungsten-ore" + }, + { + "x": 185.5, + "y": 141.5, + "name": "tungsten-ore" + }, + { + "x": 186.5, + "y": 140.5, + "name": "tungsten-ore" + }, + { + "x": 187.5, + "y": 140.5, + "name": "tungsten-ore" + }, + { + "x": 186.5, + "y": 141.5, + "name": "tungsten-ore" + }, + { + "x": 187.5, + "y": 141.5, + "name": "tungsten-ore" + }, + { + "x": 188.5, + "y": 140.5, + "name": "tungsten-ore" + }, + { + "x": 188.5, + "y": 141.5, + "name": "tungsten-ore" + }, + { + "x": 189.5, + "y": 141.5, + "name": "tungsten-ore" + }, + { + "x": 190.5, + "y": 141.5, + "name": "tungsten-ore" + }, + { + "x": 191.5, + "y": 141.5, + "name": "tungsten-ore" + }, + { + "x": 154.5, + "y": 143.5, + "name": "tungsten-ore" + }, + { + "x": 155.5, + "y": 143.5, + "name": "tungsten-ore" + }, + { + "x": 156.5, + "y": 142.5, + "name": "tungsten-ore" + }, + { + "x": 157.5, + "y": 142.5, + "name": "tungsten-ore" + }, + { + "x": 156.5, + "y": 143.5, + "name": "tungsten-ore" + }, + { + "x": 157.5, + "y": 143.5, + "name": "tungsten-ore" + }, + { + "x": 158.5, + "y": 142.5, + "name": "tungsten-ore" + }, + { + "x": 159.5, + "y": 142.5, + "name": "tungsten-ore" + }, + { + "x": 158.5, + "y": 143.5, + "name": "tungsten-ore" + }, + { + "x": 159.5, + "y": 143.5, + "name": "tungsten-ore" + }, + { + "x": 160.5, + "y": 142.5, + "name": "tungsten-ore" + }, + { + "x": 161.5, + "y": 142.5, + "name": "tungsten-ore" + }, + { + "x": 160.5, + "y": 143.5, + "name": "tungsten-ore" + }, + { + "x": 161.5, + "y": 143.5, + "name": "tungsten-ore" + }, + { + "x": 162.5, + "y": 142.5, + "name": "tungsten-ore" + }, + { + "x": 163.5, + "y": 142.5, + "name": "tungsten-ore" + }, + { + "x": 162.5, + "y": 143.5, + "name": "tungsten-ore" + }, + { + "x": 163.5, + "y": 143.5, + "name": "tungsten-ore" + }, + { + "x": 164.5, + "y": 142.5, + "name": "tungsten-ore" + }, + { + "x": 165.5, + "y": 142.5, + "name": "tungsten-ore" + }, + { + "x": 164.5, + "y": 143.5, + "name": "tungsten-ore" + }, + { + "x": 165.5, + "y": 143.5, + "name": "tungsten-ore" + }, + { + "x": 166.5, + "y": 142.5, + "name": "tungsten-ore" + }, + { + "x": 167.5, + "y": 142.5, + "name": "tungsten-ore" + }, + { + "x": 166.5, + "y": 143.5, + "name": "tungsten-ore" + }, + { + "x": 167.5, + "y": 143.5, + "name": "tungsten-ore" + }, + { + "x": 168.5, + "y": 142.5, + "name": "tungsten-ore" + }, + { + "x": 169.5, + "y": 142.5, + "name": "tungsten-ore" + }, + { + "x": 168.5, + "y": 143.5, + "name": "tungsten-ore" + }, + { + "x": 169.5, + "y": 143.5, + "name": "tungsten-ore" + }, + { + "x": 170.5, + "y": 142.5, + "name": "tungsten-ore" + }, + { + "x": 171.5, + "y": 142.5, + "name": "tungsten-ore" + }, + { + "x": 170.5, + "y": 143.5, + "name": "tungsten-ore" + }, + { + "x": 171.5, + "y": 143.5, + "name": "tungsten-ore" + }, + { + "x": 172.5, + "y": 142.5, + "name": "tungsten-ore" + }, + { + "x": 173.5, + "y": 142.5, + "name": "tungsten-ore" + }, + { + "x": 172.5, + "y": 143.5, + "name": "tungsten-ore" + }, + { + "x": 173.5, + "y": 143.5, + "name": "tungsten-ore" + }, + { + "x": 174.5, + "y": 142.5, + "name": "tungsten-ore" + }, + { + "x": 175.5, + "y": 142.5, + "name": "tungsten-ore" + }, + { + "x": 174.5, + "y": 143.5, + "name": "tungsten-ore" + }, + { + "x": 175.5, + "y": 143.5, + "name": "tungsten-ore" + }, + { + "x": 176.5, + "y": 142.5, + "name": "tungsten-ore" + }, + { + "x": 177.5, + "y": 142.5, + "name": "tungsten-ore" + }, + { + "x": 176.5, + "y": 143.5, + "name": "tungsten-ore" + }, + { + "x": 177.5, + "y": 143.5, + "name": "tungsten-ore" + }, + { + "x": 178.5, + "y": 142.5, + "name": "tungsten-ore" + }, + { + "x": 179.5, + "y": 142.5, + "name": "tungsten-ore" + }, + { + "x": 178.5, + "y": 143.5, + "name": "tungsten-ore" + }, + { + "x": 179.5, + "y": 143.5, + "name": "tungsten-ore" + }, + { + "x": 180.5, + "y": 142.5, + "name": "tungsten-ore" + }, + { + "x": 181.5, + "y": 142.5, + "name": "tungsten-ore" + }, + { + "x": 180.5, + "y": 143.5, + "name": "tungsten-ore" + }, + { + "x": 181.5, + "y": 143.5, + "name": "tungsten-ore" + }, + { + "x": 182.5, + "y": 142.5, + "name": "tungsten-ore" + }, + { + "x": 183.5, + "y": 142.5, + "name": "tungsten-ore" + }, + { + "x": 182.5, + "y": 143.5, + "name": "tungsten-ore" + }, + { + "x": 183.5, + "y": 143.5, + "name": "tungsten-ore" + }, + { + "x": 184.5, + "y": 142.5, + "name": "tungsten-ore" + }, + { + "x": 185.5, + "y": 142.5, + "name": "tungsten-ore" + }, + { + "x": 184.5, + "y": 143.5, + "name": "tungsten-ore" + }, + { + "x": 185.5, + "y": 143.5, + "name": "tungsten-ore" + }, + { + "x": 186.5, + "y": 142.5, + "name": "tungsten-ore" + }, + { + "x": 187.5, + "y": 142.5, + "name": "tungsten-ore" + }, + { + "x": 186.5, + "y": 143.5, + "name": "tungsten-ore" + }, + { + "x": 187.5, + "y": 143.5, + "name": "tungsten-ore" + }, + { + "x": 188.5, + "y": 142.5, + "name": "tungsten-ore" + }, + { + "x": 189.5, + "y": 142.5, + "name": "tungsten-ore" + }, + { + "x": 188.5, + "y": 143.5, + "name": "tungsten-ore" + }, + { + "x": 189.5, + "y": 143.5, + "name": "tungsten-ore" + }, + { + "x": 190.5, + "y": 142.5, + "name": "tungsten-ore" + }, + { + "x": 191.5, + "y": 142.5, + "name": "tungsten-ore" + }, + { + "x": 190.5, + "y": 143.5, + "name": "tungsten-ore" + }, + { + "x": 191.5, + "y": 143.5, + "name": "tungsten-ore" + }, + { + "x": 192.5, + "y": 142.5, + "name": "tungsten-ore" + }, + { + "x": 193.5, + "y": 142.5, + "name": "tungsten-ore" + }, + { + "x": 192.5, + "y": 143.5, + "name": "tungsten-ore" + }, + { + "x": 193.5, + "y": 143.5, + "name": "tungsten-ore" + }, + { + "x": 194.5, + "y": 143.5, + "name": "tungsten-ore" + }, + { + "x": 195.5, + "y": 143.5, + "name": "tungsten-ore" + }, + { + "x": 155.5, + "y": 144.5, + "name": "tungsten-ore" + }, + { + "x": 155.5, + "y": 145.5, + "name": "tungsten-ore" + }, + { + "x": 156.5, + "y": 144.5, + "name": "tungsten-ore" + }, + { + "x": 157.5, + "y": 144.5, + "name": "tungsten-ore" + }, + { + "x": 156.5, + "y": 145.5, + "name": "tungsten-ore" + }, + { + "x": 157.5, + "y": 145.5, + "name": "tungsten-ore" + }, + { + "x": 158.5, + "y": 144.5, + "name": "tungsten-ore" + }, + { + "x": 159.5, + "y": 144.5, + "name": "tungsten-ore" + }, + { + "x": 158.5, + "y": 145.5, + "name": "tungsten-ore" + }, + { + "x": 159.5, + "y": 145.5, + "name": "tungsten-ore" + }, + { + "x": 160.5, + "y": 144.5, + "name": "tungsten-ore" + }, + { + "x": 161.5, + "y": 144.5, + "name": "tungsten-ore" + }, + { + "x": 160.5, + "y": 145.5, + "name": "tungsten-ore" + }, + { + "x": 161.5, + "y": 145.5, + "name": "tungsten-ore" + }, + { + "x": 162.5, + "y": 144.5, + "name": "tungsten-ore" + }, + { + "x": 163.5, + "y": 144.5, + "name": "tungsten-ore" + }, + { + "x": 162.5, + "y": 145.5, + "name": "tungsten-ore" + }, + { + "x": 163.5, + "y": 145.5, + "name": "tungsten-ore" + }, + { + "x": 164.5, + "y": 144.5, + "name": "tungsten-ore" + }, + { + "x": 165.5, + "y": 144.5, + "name": "tungsten-ore" + }, + { + "x": 164.5, + "y": 145.5, + "name": "tungsten-ore" + }, + { + "x": 165.5, + "y": 145.5, + "name": "tungsten-ore" + }, + { + "x": 166.5, + "y": 144.5, + "name": "tungsten-ore" + }, + { + "x": 167.5, + "y": 144.5, + "name": "tungsten-ore" + }, + { + "x": 166.5, + "y": 145.5, + "name": "tungsten-ore" + }, + { + "x": 167.5, + "y": 145.5, + "name": "tungsten-ore" + }, + { + "x": 168.5, + "y": 144.5, + "name": "tungsten-ore" + }, + { + "x": 169.5, + "y": 144.5, + "name": "tungsten-ore" + }, + { + "x": 168.5, + "y": 145.5, + "name": "tungsten-ore" + }, + { + "x": 169.5, + "y": 145.5, + "name": "tungsten-ore" + }, + { + "x": 170.5, + "y": 144.5, + "name": "tungsten-ore" + }, + { + "x": 171.5, + "y": 144.5, + "name": "tungsten-ore" + }, + { + "x": 170.5, + "y": 145.5, + "name": "tungsten-ore" + }, + { + "x": 171.5, + "y": 145.5, + "name": "tungsten-ore" + }, + { + "x": 172.5, + "y": 144.5, + "name": "tungsten-ore" + }, + { + "x": 173.5, + "y": 144.5, + "name": "tungsten-ore" + }, + { + "x": 172.5, + "y": 145.5, + "name": "tungsten-ore" + }, + { + "x": 173.5, + "y": 145.5, + "name": "tungsten-ore" + }, + { + "x": 174.5, + "y": 144.5, + "name": "tungsten-ore" + }, + { + "x": 175.5, + "y": 144.5, + "name": "tungsten-ore" + }, + { + "x": 174.5, + "y": 145.5, + "name": "tungsten-ore" + }, + { + "x": 175.5, + "y": 145.5, + "name": "tungsten-ore" + }, + { + "x": 176.5, + "y": 144.5, + "name": "tungsten-ore" + }, + { + "x": 177.5, + "y": 144.5, + "name": "tungsten-ore" + }, + { + "x": 176.5, + "y": 145.5, + "name": "tungsten-ore" + }, + { + "x": 177.5, + "y": 145.5, + "name": "tungsten-ore" + }, + { + "x": 178.5, + "y": 144.5, + "name": "tungsten-ore" + }, + { + "x": 179.5, + "y": 144.5, + "name": "tungsten-ore" + }, + { + "x": 178.5, + "y": 145.5, + "name": "tungsten-ore" + }, + { + "x": 179.5, + "y": 145.5, + "name": "tungsten-ore" + }, + { + "x": 180.5, + "y": 144.5, + "name": "tungsten-ore" + }, + { + "x": 181.5, + "y": 144.5, + "name": "tungsten-ore" + }, + { + "x": 180.5, + "y": 145.5, + "name": "tungsten-ore" + }, + { + "x": 181.5, + "y": 145.5, + "name": "tungsten-ore" + }, + { + "x": 182.5, + "y": 144.5, + "name": "tungsten-ore" + }, + { + "x": 183.5, + "y": 144.5, + "name": "tungsten-ore" + }, + { + "x": 182.5, + "y": 145.5, + "name": "tungsten-ore" + }, + { + "x": 183.5, + "y": 145.5, + "name": "tungsten-ore" + }, + { + "x": 184.5, + "y": 144.5, + "name": "tungsten-ore" + }, + { + "x": 185.5, + "y": 144.5, + "name": "tungsten-ore" + }, + { + "x": 184.5, + "y": 145.5, + "name": "tungsten-ore" + }, + { + "x": 185.5, + "y": 145.5, + "name": "tungsten-ore" + }, + { + "x": 186.5, + "y": 144.5, + "name": "tungsten-ore" + }, + { + "x": 187.5, + "y": 144.5, + "name": "tungsten-ore" + }, + { + "x": 186.5, + "y": 145.5, + "name": "tungsten-ore" + }, + { + "x": 187.5, + "y": 145.5, + "name": "tungsten-ore" + }, + { + "x": 188.5, + "y": 144.5, + "name": "tungsten-ore" + }, + { + "x": 189.5, + "y": 144.5, + "name": "tungsten-ore" + }, + { + "x": 188.5, + "y": 145.5, + "name": "tungsten-ore" + }, + { + "x": 189.5, + "y": 145.5, + "name": "tungsten-ore" + }, + { + "x": 190.5, + "y": 144.5, + "name": "tungsten-ore" + }, + { + "x": 191.5, + "y": 144.5, + "name": "tungsten-ore" + }, + { + "x": 190.5, + "y": 145.5, + "name": "tungsten-ore" + }, + { + "x": 191.5, + "y": 145.5, + "name": "tungsten-ore" + }, + { + "x": 192.5, + "y": 144.5, + "name": "tungsten-ore" + }, + { + "x": 193.5, + "y": 144.5, + "name": "tungsten-ore" + }, + { + "x": 192.5, + "y": 145.5, + "name": "tungsten-ore" + }, + { + "x": 193.5, + "y": 145.5, + "name": "tungsten-ore" + }, + { + "x": 194.5, + "y": 144.5, + "name": "tungsten-ore" + }, + { + "x": 195.5, + "y": 144.5, + "name": "tungsten-ore" + }, + { + "x": 194.5, + "y": 145.5, + "name": "tungsten-ore" + }, + { + "x": 195.5, + "y": 145.5, + "name": "tungsten-ore" + }, + { + "x": 196.5, + "y": 144.5, + "name": "tungsten-ore" + }, + { + "x": 196.5, + "y": 145.5, + "name": "tungsten-ore" + }, + { + "x": 197.5, + "y": 145.5, + "name": "tungsten-ore" + }, + { + "x": 198.5, + "y": 145.5, + "name": "tungsten-ore" + }, + { + "x": 155.5, + "y": 146.5, + "name": "tungsten-ore" + }, + { + "x": 156.5, + "y": 146.5, + "name": "tungsten-ore" + }, + { + "x": 157.5, + "y": 146.5, + "name": "tungsten-ore" + }, + { + "x": 156.5, + "y": 147.5, + "name": "tungsten-ore" + }, + { + "x": 157.5, + "y": 147.5, + "name": "tungsten-ore" + }, + { + "x": 158.5, + "y": 146.5, + "name": "tungsten-ore" + }, + { + "x": 159.5, + "y": 146.5, + "name": "tungsten-ore" + }, + { + "x": 158.5, + "y": 147.5, + "name": "tungsten-ore" + }, + { + "x": 159.5, + "y": 147.5, + "name": "tungsten-ore" + }, + { + "x": 160.5, + "y": 146.5, + "name": "tungsten-ore" + }, + { + "x": 161.5, + "y": 146.5, + "name": "tungsten-ore" + }, + { + "x": 160.5, + "y": 147.5, + "name": "tungsten-ore" + }, + { + "x": 161.5, + "y": 147.5, + "name": "tungsten-ore" + }, + { + "x": 162.5, + "y": 146.5, + "name": "tungsten-ore" + }, + { + "x": 163.5, + "y": 146.5, + "name": "tungsten-ore" + }, + { + "x": 162.5, + "y": 147.5, + "name": "tungsten-ore" + }, + { + "x": 163.5, + "y": 147.5, + "name": "tungsten-ore" + }, + { + "x": 164.5, + "y": 146.5, + "name": "tungsten-ore" + }, + { + "x": 165.5, + "y": 146.5, + "name": "tungsten-ore" + }, + { + "x": 164.5, + "y": 147.5, + "name": "tungsten-ore" + }, + { + "x": 165.5, + "y": 147.5, + "name": "tungsten-ore" + }, + { + "x": 166.5, + "y": 146.5, + "name": "tungsten-ore" + }, + { + "x": 167.5, + "y": 146.5, + "name": "tungsten-ore" + }, + { + "x": 166.5, + "y": 147.5, + "name": "tungsten-ore" + }, + { + "x": 167.5, + "y": 147.5, + "name": "tungsten-ore" + }, + { + "x": 168.5, + "y": 146.5, + "name": "tungsten-ore" + }, + { + "x": 169.5, + "y": 146.5, + "name": "tungsten-ore" + }, + { + "x": 168.5, + "y": 147.5, + "name": "tungsten-ore" + }, + { + "x": 169.5, + "y": 147.5, + "name": "tungsten-ore" + }, + { + "x": 170.5, + "y": 146.5, + "name": "tungsten-ore" + }, + { + "x": 171.5, + "y": 146.5, + "name": "tungsten-ore" + }, + { + "x": 170.5, + "y": 147.5, + "name": "tungsten-ore" + }, + { + "x": 171.5, + "y": 147.5, + "name": "tungsten-ore" + }, + { + "x": 172.5, + "y": 146.5, + "name": "tungsten-ore" + }, + { + "x": 173.5, + "y": 146.5, + "name": "tungsten-ore" + }, + { + "x": 172.5, + "y": 147.5, + "name": "tungsten-ore" + }, + { + "x": 173.5, + "y": 147.5, + "name": "tungsten-ore" + }, + { + "x": 174.5, + "y": 146.5, + "name": "tungsten-ore" + }, + { + "x": 175.5, + "y": 146.5, + "name": "tungsten-ore" + }, + { + "x": 174.5, + "y": 147.5, + "name": "tungsten-ore" + }, + { + "x": 175.5, + "y": 147.5, + "name": "tungsten-ore" + }, + { + "x": 176.5, + "y": 146.5, + "name": "tungsten-ore" + }, + { + "x": 177.5, + "y": 146.5, + "name": "tungsten-ore" + }, + { + "x": 176.5, + "y": 147.5, + "name": "tungsten-ore" + }, + { + "x": 177.5, + "y": 147.5, + "name": "tungsten-ore" + }, + { + "x": 178.5, + "y": 146.5, + "name": "tungsten-ore" + }, + { + "x": 179.5, + "y": 146.5, + "name": "tungsten-ore" + }, + { + "x": 178.5, + "y": 147.5, + "name": "tungsten-ore" + }, + { + "x": 179.5, + "y": 147.5, + "name": "tungsten-ore" + }, + { + "x": 180.5, + "y": 146.5, + "name": "tungsten-ore" + }, + { + "x": 181.5, + "y": 146.5, + "name": "tungsten-ore" + }, + { + "x": 180.5, + "y": 147.5, + "name": "tungsten-ore" + }, + { + "x": 181.5, + "y": 147.5, + "name": "tungsten-ore" + }, + { + "x": 182.5, + "y": 146.5, + "name": "tungsten-ore" + }, + { + "x": 183.5, + "y": 146.5, + "name": "tungsten-ore" + }, + { + "x": 182.5, + "y": 147.5, + "name": "tungsten-ore" + }, + { + "x": 183.5, + "y": 147.5, + "name": "tungsten-ore" + }, + { + "x": 184.5, + "y": 146.5, + "name": "tungsten-ore" + }, + { + "x": 185.5, + "y": 146.5, + "name": "tungsten-ore" + }, + { + "x": 184.5, + "y": 147.5, + "name": "tungsten-ore" + }, + { + "x": 185.5, + "y": 147.5, + "name": "tungsten-ore" + }, + { + "x": 186.5, + "y": 146.5, + "name": "tungsten-ore" + }, + { + "x": 187.5, + "y": 146.5, + "name": "tungsten-ore" + }, + { + "x": 186.5, + "y": 147.5, + "name": "tungsten-ore" + }, + { + "x": 187.5, + "y": 147.5, + "name": "tungsten-ore" + }, + { + "x": 188.5, + "y": 146.5, + "name": "tungsten-ore" + }, + { + "x": 189.5, + "y": 146.5, + "name": "tungsten-ore" + }, + { + "x": 188.5, + "y": 147.5, + "name": "tungsten-ore" + }, + { + "x": 189.5, + "y": 147.5, + "name": "tungsten-ore" + }, + { + "x": 190.5, + "y": 146.5, + "name": "tungsten-ore" + }, + { + "x": 191.5, + "y": 146.5, + "name": "tungsten-ore" + }, + { + "x": 190.5, + "y": 147.5, + "name": "tungsten-ore" + }, + { + "x": 191.5, + "y": 147.5, + "name": "tungsten-ore" + }, + { + "x": 192.5, + "y": 146.5, + "name": "tungsten-ore" + }, + { + "x": 193.5, + "y": 146.5, + "name": "tungsten-ore" + }, + { + "x": 192.5, + "y": 147.5, + "name": "tungsten-ore" + }, + { + "x": 193.5, + "y": 147.5, + "name": "tungsten-ore" + }, + { + "x": 194.5, + "y": 146.5, + "name": "tungsten-ore" + }, + { + "x": 195.5, + "y": 146.5, + "name": "tungsten-ore" + }, + { + "x": 194.5, + "y": 147.5, + "name": "tungsten-ore" + }, + { + "x": 195.5, + "y": 147.5, + "name": "tungsten-ore" + }, + { + "x": 196.5, + "y": 146.5, + "name": "tungsten-ore" + }, + { + "x": 197.5, + "y": 146.5, + "name": "tungsten-ore" + }, + { + "x": 196.5, + "y": 147.5, + "name": "tungsten-ore" + }, + { + "x": 197.5, + "y": 147.5, + "name": "tungsten-ore" + }, + { + "x": 198.5, + "y": 146.5, + "name": "tungsten-ore" + }, + { + "x": 156.5, + "y": 148.5, + "name": "tungsten-ore" + }, + { + "x": 157.5, + "y": 148.5, + "name": "tungsten-ore" + }, + { + "x": 157.5, + "y": 149.5, + "name": "tungsten-ore" + }, + { + "x": 158.5, + "y": 148.5, + "name": "tungsten-ore" + }, + { + "x": 159.5, + "y": 148.5, + "name": "tungsten-ore" + }, + { + "x": 158.5, + "y": 149.5, + "name": "tungsten-ore" + }, + { + "x": 159.5, + "y": 149.5, + "name": "tungsten-ore" + }, + { + "x": 160.5, + "y": 148.5, + "name": "tungsten-ore" + }, + { + "x": 161.5, + "y": 148.5, + "name": "tungsten-ore" + }, + { + "x": 160.5, + "y": 149.5, + "name": "tungsten-ore" + }, + { + "x": 161.5, + "y": 149.5, + "name": "tungsten-ore" + }, + { + "x": 162.5, + "y": 148.5, + "name": "tungsten-ore" + }, + { + "x": 163.5, + "y": 148.5, + "name": "tungsten-ore" + }, + { + "x": 162.5, + "y": 149.5, + "name": "tungsten-ore" + }, + { + "x": 163.5, + "y": 149.5, + "name": "tungsten-ore" + }, + { + "x": 164.5, + "y": 148.5, + "name": "tungsten-ore" + }, + { + "x": 165.5, + "y": 148.5, + "name": "tungsten-ore" + }, + { + "x": 164.5, + "y": 149.5, + "name": "tungsten-ore" + }, + { + "x": 165.5, + "y": 149.5, + "name": "tungsten-ore" + }, + { + "x": 166.5, + "y": 148.5, + "name": "tungsten-ore" + }, + { + "x": 167.5, + "y": 148.5, + "name": "tungsten-ore" + }, + { + "x": 166.5, + "y": 149.5, + "name": "tungsten-ore" + }, + { + "x": 167.5, + "y": 149.5, + "name": "tungsten-ore" + }, + { + "x": 168.5, + "y": 148.5, + "name": "tungsten-ore" + }, + { + "x": 169.5, + "y": 148.5, + "name": "tungsten-ore" + }, + { + "x": 168.5, + "y": 149.5, + "name": "tungsten-ore" + }, + { + "x": 169.5, + "y": 149.5, + "name": "tungsten-ore" + }, + { + "x": 170.5, + "y": 148.5, + "name": "tungsten-ore" + }, + { + "x": 171.5, + "y": 148.5, + "name": "tungsten-ore" + }, + { + "x": 170.5, + "y": 149.5, + "name": "tungsten-ore" + }, + { + "x": 171.5, + "y": 149.5, + "name": "tungsten-ore" + }, + { + "x": 172.5, + "y": 148.5, + "name": "tungsten-ore" + }, + { + "x": 173.5, + "y": 148.5, + "name": "tungsten-ore" + }, + { + "x": 172.5, + "y": 149.5, + "name": "tungsten-ore" + }, + { + "x": 173.5, + "y": 149.5, + "name": "tungsten-ore" + }, + { + "x": 174.5, + "y": 148.5, + "name": "tungsten-ore" + }, + { + "x": 175.5, + "y": 148.5, + "name": "tungsten-ore" + }, + { + "x": 174.5, + "y": 149.5, + "name": "tungsten-ore" + }, + { + "x": 175.5, + "y": 149.5, + "name": "tungsten-ore" + }, + { + "x": 176.5, + "y": 148.5, + "name": "tungsten-ore" + }, + { + "x": 177.5, + "y": 148.5, + "name": "tungsten-ore" + }, + { + "x": 176.5, + "y": 149.5, + "name": "tungsten-ore" + }, + { + "x": 177.5, + "y": 149.5, + "name": "tungsten-ore" + }, + { + "x": 178.5, + "y": 148.5, + "name": "tungsten-ore" + }, + { + "x": 179.5, + "y": 148.5, + "name": "tungsten-ore" + }, + { + "x": 178.5, + "y": 149.5, + "name": "tungsten-ore" + }, + { + "x": 179.5, + "y": 149.5, + "name": "tungsten-ore" + }, + { + "x": 180.5, + "y": 148.5, + "name": "tungsten-ore" + }, + { + "x": 181.5, + "y": 148.5, + "name": "tungsten-ore" + }, + { + "x": 180.5, + "y": 149.5, + "name": "tungsten-ore" + }, + { + "x": 181.5, + "y": 149.5, + "name": "tungsten-ore" + }, + { + "x": 182.5, + "y": 148.5, + "name": "tungsten-ore" + }, + { + "x": 183.5, + "y": 148.5, + "name": "tungsten-ore" + }, + { + "x": 182.5, + "y": 149.5, + "name": "tungsten-ore" + }, + { + "x": 183.5, + "y": 149.5, + "name": "tungsten-ore" + }, + { + "x": 184.5, + "y": 148.5, + "name": "tungsten-ore" + }, + { + "x": 185.5, + "y": 148.5, + "name": "tungsten-ore" + }, + { + "x": 184.5, + "y": 149.5, + "name": "tungsten-ore" + }, + { + "x": 185.5, + "y": 149.5, + "name": "tungsten-ore" + }, + { + "x": 186.5, + "y": 148.5, + "name": "tungsten-ore" + }, + { + "x": 187.5, + "y": 148.5, + "name": "tungsten-ore" + }, + { + "x": 186.5, + "y": 149.5, + "name": "tungsten-ore" + }, + { + "x": 187.5, + "y": 149.5, + "name": "tungsten-ore" + }, + { + "x": 188.5, + "y": 148.5, + "name": "tungsten-ore" + }, + { + "x": 189.5, + "y": 148.5, + "name": "tungsten-ore" + }, + { + "x": 188.5, + "y": 149.5, + "name": "tungsten-ore" + }, + { + "x": 189.5, + "y": 149.5, + "name": "tungsten-ore" + }, + { + "x": 190.5, + "y": 148.5, + "name": "tungsten-ore" + }, + { + "x": 191.5, + "y": 148.5, + "name": "tungsten-ore" + }, + { + "x": 190.5, + "y": 149.5, + "name": "tungsten-ore" + }, + { + "x": 191.5, + "y": 149.5, + "name": "tungsten-ore" + }, + { + "x": 192.5, + "y": 148.5, + "name": "tungsten-ore" + }, + { + "x": 193.5, + "y": 148.5, + "name": "tungsten-ore" + }, + { + "x": 192.5, + "y": 149.5, + "name": "tungsten-ore" + }, + { + "x": 193.5, + "y": 149.5, + "name": "tungsten-ore" + }, + { + "x": 194.5, + "y": 148.5, + "name": "tungsten-ore" + }, + { + "x": 195.5, + "y": 148.5, + "name": "tungsten-ore" + }, + { + "x": 194.5, + "y": 149.5, + "name": "tungsten-ore" + }, + { + "x": 195.5, + "y": 149.5, + "name": "tungsten-ore" + }, + { + "x": 196.5, + "y": 148.5, + "name": "tungsten-ore" + }, + { + "x": 197.5, + "y": 148.5, + "name": "tungsten-ore" + }, + { + "x": 196.5, + "y": 149.5, + "name": "tungsten-ore" + }, + { + "x": 197.5, + "y": 149.5, + "name": "tungsten-ore" + }, + { + "x": 198.5, + "y": 148.5, + "name": "tungsten-ore" + }, + { + "x": 199.5, + "y": 148.5, + "name": "tungsten-ore" + }, + { + "x": 198.5, + "y": 149.5, + "name": "tungsten-ore" + }, + { + "x": 199.5, + "y": 149.5, + "name": "tungsten-ore" + }, + { + "x": 155.5, + "y": 151.5, + "name": "tungsten-ore" + }, + { + "x": 156.5, + "y": 150.5, + "name": "tungsten-ore" + }, + { + "x": 157.5, + "y": 150.5, + "name": "tungsten-ore" + }, + { + "x": 156.5, + "y": 151.5, + "name": "tungsten-ore" + }, + { + "x": 157.5, + "y": 151.5, + "name": "tungsten-ore" + }, + { + "x": 158.5, + "y": 150.5, + "name": "tungsten-ore" + }, + { + "x": 159.5, + "y": 150.5, + "name": "tungsten-ore" + }, + { + "x": 158.5, + "y": 151.5, + "name": "tungsten-ore" + }, + { + "x": 159.5, + "y": 151.5, + "name": "tungsten-ore" + }, + { + "x": 160.5, + "y": 150.5, + "name": "tungsten-ore" + }, + { + "x": 161.5, + "y": 150.5, + "name": "tungsten-ore" + }, + { + "x": 160.5, + "y": 151.5, + "name": "tungsten-ore" + }, + { + "x": 161.5, + "y": 151.5, + "name": "tungsten-ore" + }, + { + "x": 162.5, + "y": 150.5, + "name": "tungsten-ore" + }, + { + "x": 163.5, + "y": 150.5, + "name": "tungsten-ore" + }, + { + "x": 162.5, + "y": 151.5, + "name": "tungsten-ore" + }, + { + "x": 163.5, + "y": 151.5, + "name": "tungsten-ore" + }, + { + "x": 164.5, + "y": 150.5, + "name": "tungsten-ore" + }, + { + "x": 165.5, + "y": 150.5, + "name": "tungsten-ore" + }, + { + "x": 164.5, + "y": 151.5, + "name": "tungsten-ore" + }, + { + "x": 165.5, + "y": 151.5, + "name": "tungsten-ore" + }, + { + "x": 166.5, + "y": 150.5, + "name": "tungsten-ore" + }, + { + "x": 167.5, + "y": 150.5, + "name": "tungsten-ore" + }, + { + "x": 166.5, + "y": 151.5, + "name": "tungsten-ore" + }, + { + "x": 167.5, + "y": 151.5, + "name": "tungsten-ore" + }, + { + "x": 168.5, + "y": 150.5, + "name": "tungsten-ore" + }, + { + "x": 169.5, + "y": 150.5, + "name": "tungsten-ore" + }, + { + "x": 168.5, + "y": 151.5, + "name": "tungsten-ore" + }, + { + "x": 169.5, + "y": 151.5, + "name": "tungsten-ore" + }, + { + "x": 170.5, + "y": 150.5, + "name": "tungsten-ore" + }, + { + "x": 171.5, + "y": 150.5, + "name": "tungsten-ore" + }, + { + "x": 170.5, + "y": 151.5, + "name": "tungsten-ore" + }, + { + "x": 171.5, + "y": 151.5, + "name": "tungsten-ore" + }, + { + "x": 172.5, + "y": 150.5, + "name": "tungsten-ore" + }, + { + "x": 173.5, + "y": 150.5, + "name": "tungsten-ore" + }, + { + "x": 172.5, + "y": 151.5, + "name": "tungsten-ore" + }, + { + "x": 173.5, + "y": 151.5, + "name": "tungsten-ore" + }, + { + "x": 174.5, + "y": 150.5, + "name": "tungsten-ore" + }, + { + "x": 175.5, + "y": 150.5, + "name": "tungsten-ore" + }, + { + "x": 174.5, + "y": 151.5, + "name": "tungsten-ore" + }, + { + "x": 175.5, + "y": 151.5, + "name": "tungsten-ore" + }, + { + "x": 176.5, + "y": 150.5, + "name": "tungsten-ore" + }, + { + "x": 177.5, + "y": 150.5, + "name": "tungsten-ore" + }, + { + "x": 176.5, + "y": 151.5, + "name": "tungsten-ore" + }, + { + "x": 177.5, + "y": 151.5, + "name": "tungsten-ore" + }, + { + "x": 178.5, + "y": 150.5, + "name": "tungsten-ore" + }, + { + "x": 179.5, + "y": 150.5, + "name": "tungsten-ore" + }, + { + "x": 178.5, + "y": 151.5, + "name": "tungsten-ore" + }, + { + "x": 179.5, + "y": 151.5, + "name": "tungsten-ore" + }, + { + "x": 180.5, + "y": 150.5, + "name": "tungsten-ore" + }, + { + "x": 181.5, + "y": 150.5, + "name": "tungsten-ore" + }, + { + "x": 180.5, + "y": 151.5, + "name": "tungsten-ore" + }, + { + "x": 181.5, + "y": 151.5, + "name": "tungsten-ore" + }, + { + "x": 182.5, + "y": 150.5, + "name": "tungsten-ore" + }, + { + "x": 183.5, + "y": 150.5, + "name": "tungsten-ore" + }, + { + "x": 182.5, + "y": 151.5, + "name": "tungsten-ore" + }, + { + "x": 183.5, + "y": 151.5, + "name": "tungsten-ore" + }, + { + "x": 184.5, + "y": 150.5, + "name": "tungsten-ore" + }, + { + "x": 185.5, + "y": 150.5, + "name": "tungsten-ore" + }, + { + "x": 184.5, + "y": 151.5, + "name": "tungsten-ore" + }, + { + "x": 185.5, + "y": 151.5, + "name": "tungsten-ore" + }, + { + "x": 186.5, + "y": 150.5, + "name": "tungsten-ore" + }, + { + "x": 187.5, + "y": 150.5, + "name": "tungsten-ore" + }, + { + "x": 186.5, + "y": 151.5, + "name": "tungsten-ore" + }, + { + "x": 187.5, + "y": 151.5, + "name": "tungsten-ore" + }, + { + "x": 188.5, + "y": 150.5, + "name": "tungsten-ore" + }, + { + "x": 189.5, + "y": 150.5, + "name": "tungsten-ore" + }, + { + "x": 188.5, + "y": 151.5, + "name": "tungsten-ore" + }, + { + "x": 189.5, + "y": 151.5, + "name": "tungsten-ore" + }, + { + "x": 190.5, + "y": 150.5, + "name": "tungsten-ore" + }, + { + "x": 191.5, + "y": 150.5, + "name": "tungsten-ore" + }, + { + "x": 190.5, + "y": 151.5, + "name": "tungsten-ore" + }, + { + "x": 191.5, + "y": 151.5, + "name": "tungsten-ore" + }, + { + "x": 192.5, + "y": 150.5, + "name": "tungsten-ore" + }, + { + "x": 193.5, + "y": 150.5, + "name": "tungsten-ore" + }, + { + "x": 192.5, + "y": 151.5, + "name": "tungsten-ore" + }, + { + "x": 193.5, + "y": 151.5, + "name": "tungsten-ore" + }, + { + "x": 194.5, + "y": 150.5, + "name": "tungsten-ore" + }, + { + "x": 195.5, + "y": 150.5, + "name": "tungsten-ore" + }, + { + "x": 194.5, + "y": 151.5, + "name": "tungsten-ore" + }, + { + "x": 195.5, + "y": 151.5, + "name": "tungsten-ore" + }, + { + "x": 196.5, + "y": 150.5, + "name": "tungsten-ore" + }, + { + "x": 197.5, + "y": 150.5, + "name": "tungsten-ore" + }, + { + "x": 196.5, + "y": 151.5, + "name": "tungsten-ore" + }, + { + "x": 197.5, + "y": 151.5, + "name": "tungsten-ore" + }, + { + "x": 198.5, + "y": 150.5, + "name": "tungsten-ore" + }, + { + "x": 199.5, + "y": 150.5, + "name": "tungsten-ore" + }, + { + "x": 198.5, + "y": 151.5, + "name": "tungsten-ore" + }, + { + "x": 199.5, + "y": 151.5, + "name": "tungsten-ore" + }, + { + "x": 200.5, + "y": 150.5, + "name": "tungsten-ore" + }, + { + "x": 157.5, + "y": 152.5, + "name": "tungsten-ore" + }, + { + "x": 158.5, + "y": 152.5, + "name": "tungsten-ore" + }, + { + "x": 159.5, + "y": 152.5, + "name": "tungsten-ore" + }, + { + "x": 159.5, + "y": 153.5, + "name": "tungsten-ore" + }, + { + "x": 160.5, + "y": 152.5, + "name": "tungsten-ore" + }, + { + "x": 161.5, + "y": 152.5, + "name": "tungsten-ore" + }, + { + "x": 160.5, + "y": 153.5, + "name": "tungsten-ore" + }, + { + "x": 161.5, + "y": 153.5, + "name": "tungsten-ore" + }, + { + "x": 162.5, + "y": 152.5, + "name": "tungsten-ore" + }, + { + "x": 163.5, + "y": 152.5, + "name": "tungsten-ore" + }, + { + "x": 162.5, + "y": 153.5, + "name": "tungsten-ore" + }, + { + "x": 163.5, + "y": 153.5, + "name": "tungsten-ore" + }, + { + "x": 164.5, + "y": 152.5, + "name": "tungsten-ore" + }, + { + "x": 165.5, + "y": 152.5, + "name": "tungsten-ore" + }, + { + "x": 164.5, + "y": 153.5, + "name": "tungsten-ore" + }, + { + "x": 165.5, + "y": 153.5, + "name": "tungsten-ore" + }, + { + "x": 166.5, + "y": 152.5, + "name": "tungsten-ore" + }, + { + "x": 167.5, + "y": 152.5, + "name": "tungsten-ore" + }, + { + "x": 166.5, + "y": 153.5, + "name": "tungsten-ore" + }, + { + "x": 167.5, + "y": 153.5, + "name": "tungsten-ore" + }, + { + "x": 168.5, + "y": 152.5, + "name": "tungsten-ore" + }, + { + "x": 169.5, + "y": 152.5, + "name": "tungsten-ore" + }, + { + "x": 168.5, + "y": 153.5, + "name": "tungsten-ore" + }, + { + "x": 169.5, + "y": 153.5, + "name": "tungsten-ore" + }, + { + "x": 170.5, + "y": 152.5, + "name": "tungsten-ore" + }, + { + "x": 171.5, + "y": 152.5, + "name": "tungsten-ore" + }, + { + "x": 170.5, + "y": 153.5, + "name": "tungsten-ore" + }, + { + "x": 171.5, + "y": 153.5, + "name": "tungsten-ore" + }, + { + "x": 172.5, + "y": 152.5, + "name": "tungsten-ore" + }, + { + "x": 173.5, + "y": 152.5, + "name": "tungsten-ore" + }, + { + "x": 172.5, + "y": 153.5, + "name": "tungsten-ore" + }, + { + "x": 173.5, + "y": 153.5, + "name": "tungsten-ore" + }, + { + "x": 174.5, + "y": 152.5, + "name": "tungsten-ore" + }, + { + "x": 175.5, + "y": 152.5, + "name": "tungsten-ore" + }, + { + "x": 174.5, + "y": 153.5, + "name": "tungsten-ore" + }, + { + "x": 175.5, + "y": 153.5, + "name": "tungsten-ore" + }, + { + "x": 176.5, + "y": 152.5, + "name": "tungsten-ore" + }, + { + "x": 177.5, + "y": 152.5, + "name": "tungsten-ore" + }, + { + "x": 176.5, + "y": 153.5, + "name": "tungsten-ore" + }, + { + "x": 177.5, + "y": 153.5, + "name": "tungsten-ore" + }, + { + "x": 178.5, + "y": 152.5, + "name": "tungsten-ore" + }, + { + "x": 179.5, + "y": 152.5, + "name": "tungsten-ore" + }, + { + "x": 178.5, + "y": 153.5, + "name": "tungsten-ore" + }, + { + "x": 179.5, + "y": 153.5, + "name": "tungsten-ore" + }, + { + "x": 180.5, + "y": 152.5, + "name": "tungsten-ore" + }, + { + "x": 181.5, + "y": 152.5, + "name": "tungsten-ore" + }, + { + "x": 180.5, + "y": 153.5, + "name": "tungsten-ore" + }, + { + "x": 181.5, + "y": 153.5, + "name": "tungsten-ore" + }, + { + "x": 182.5, + "y": 152.5, + "name": "tungsten-ore" + }, + { + "x": 183.5, + "y": 152.5, + "name": "tungsten-ore" + }, + { + "x": 182.5, + "y": 153.5, + "name": "tungsten-ore" + }, + { + "x": 183.5, + "y": 153.5, + "name": "tungsten-ore" + }, + { + "x": 184.5, + "y": 152.5, + "name": "tungsten-ore" + }, + { + "x": 185.5, + "y": 152.5, + "name": "tungsten-ore" + }, + { + "x": 184.5, + "y": 153.5, + "name": "tungsten-ore" + }, + { + "x": 185.5, + "y": 153.5, + "name": "tungsten-ore" + }, + { + "x": 186.5, + "y": 152.5, + "name": "tungsten-ore" + }, + { + "x": 187.5, + "y": 152.5, + "name": "tungsten-ore" + }, + { + "x": 186.5, + "y": 153.5, + "name": "tungsten-ore" + }, + { + "x": 187.5, + "y": 153.5, + "name": "tungsten-ore" + }, + { + "x": 188.5, + "y": 152.5, + "name": "tungsten-ore" + }, + { + "x": 189.5, + "y": 152.5, + "name": "tungsten-ore" + }, + { + "x": 188.5, + "y": 153.5, + "name": "tungsten-ore" + }, + { + "x": 189.5, + "y": 153.5, + "name": "tungsten-ore" + }, + { + "x": 190.5, + "y": 152.5, + "name": "tungsten-ore" + }, + { + "x": 191.5, + "y": 152.5, + "name": "tungsten-ore" + }, + { + "x": 190.5, + "y": 153.5, + "name": "tungsten-ore" + }, + { + "x": 191.5, + "y": 153.5, + "name": "tungsten-ore" + }, + { + "x": 192.5, + "y": 152.5, + "name": "tungsten-ore" + }, + { + "x": 193.5, + "y": 152.5, + "name": "tungsten-ore" + }, + { + "x": 192.5, + "y": 153.5, + "name": "tungsten-ore" + }, + { + "x": 193.5, + "y": 153.5, + "name": "tungsten-ore" + }, + { + "x": 194.5, + "y": 152.5, + "name": "tungsten-ore" + }, + { + "x": 195.5, + "y": 152.5, + "name": "tungsten-ore" + }, + { + "x": 194.5, + "y": 153.5, + "name": "tungsten-ore" + }, + { + "x": 195.5, + "y": 153.5, + "name": "tungsten-ore" + }, + { + "x": 196.5, + "y": 152.5, + "name": "tungsten-ore" + }, + { + "x": 197.5, + "y": 152.5, + "name": "tungsten-ore" + }, + { + "x": 196.5, + "y": 153.5, + "name": "tungsten-ore" + }, + { + "x": 197.5, + "y": 153.5, + "name": "tungsten-ore" + }, + { + "x": 198.5, + "y": 152.5, + "name": "tungsten-ore" + }, + { + "x": 199.5, + "y": 152.5, + "name": "tungsten-ore" + }, + { + "x": 198.5, + "y": 153.5, + "name": "tungsten-ore" + }, + { + "x": 199.5, + "y": 153.5, + "name": "tungsten-ore" + }, + { + "x": 200.5, + "y": 152.5, + "name": "tungsten-ore" + }, + { + "x": 200.5, + "y": 153.5, + "name": "tungsten-ore" + }, + { + "x": 159.5, + "y": 154.5, + "name": "tungsten-ore" + }, + { + "x": 160.5, + "y": 154.5, + "name": "tungsten-ore" + }, + { + "x": 161.5, + "y": 154.5, + "name": "tungsten-ore" + }, + { + "x": 161.5, + "y": 155.5, + "name": "tungsten-ore" + }, + { + "x": 162.5, + "y": 154.5, + "name": "tungsten-ore" + }, + { + "x": 163.5, + "y": 154.5, + "name": "tungsten-ore" + }, + { + "x": 162.5, + "y": 155.5, + "name": "tungsten-ore" + }, + { + "x": 163.5, + "y": 155.5, + "name": "tungsten-ore" + }, + { + "x": 164.5, + "y": 154.5, + "name": "tungsten-ore" + }, + { + "x": 165.5, + "y": 154.5, + "name": "tungsten-ore" + }, + { + "x": 164.5, + "y": 155.5, + "name": "tungsten-ore" + }, + { + "x": 165.5, + "y": 155.5, + "name": "tungsten-ore" + }, + { + "x": 166.5, + "y": 154.5, + "name": "tungsten-ore" + }, + { + "x": 167.5, + "y": 154.5, + "name": "tungsten-ore" + }, + { + "x": 166.5, + "y": 155.5, + "name": "tungsten-ore" + }, + { + "x": 167.5, + "y": 155.5, + "name": "tungsten-ore" + }, + { + "x": 168.5, + "y": 154.5, + "name": "tungsten-ore" + }, + { + "x": 169.5, + "y": 154.5, + "name": "tungsten-ore" + }, + { + "x": 168.5, + "y": 155.5, + "name": "tungsten-ore" + }, + { + "x": 169.5, + "y": 155.5, + "name": "tungsten-ore" + }, + { + "x": 170.5, + "y": 154.5, + "name": "tungsten-ore" + }, + { + "x": 171.5, + "y": 154.5, + "name": "tungsten-ore" + }, + { + "x": 170.5, + "y": 155.5, + "name": "tungsten-ore" + }, + { + "x": 171.5, + "y": 155.5, + "name": "tungsten-ore" + }, + { + "x": 172.5, + "y": 154.5, + "name": "tungsten-ore" + }, + { + "x": 173.5, + "y": 154.5, + "name": "tungsten-ore" + }, + { + "x": 172.5, + "y": 155.5, + "name": "tungsten-ore" + }, + { + "x": 173.5, + "y": 155.5, + "name": "tungsten-ore" + }, + { + "x": 174.5, + "y": 154.5, + "name": "tungsten-ore" + }, + { + "x": 175.5, + "y": 154.5, + "name": "tungsten-ore" + }, + { + "x": 174.5, + "y": 155.5, + "name": "tungsten-ore" + }, + { + "x": 175.5, + "y": 155.5, + "name": "tungsten-ore" + }, + { + "x": 176.5, + "y": 154.5, + "name": "tungsten-ore" + }, + { + "x": 177.5, + "y": 154.5, + "name": "tungsten-ore" + }, + { + "x": 176.5, + "y": 155.5, + "name": "tungsten-ore" + }, + { + "x": 177.5, + "y": 155.5, + "name": "tungsten-ore" + }, + { + "x": 178.5, + "y": 154.5, + "name": "tungsten-ore" + }, + { + "x": 179.5, + "y": 154.5, + "name": "tungsten-ore" + }, + { + "x": 178.5, + "y": 155.5, + "name": "tungsten-ore" + }, + { + "x": 179.5, + "y": 155.5, + "name": "tungsten-ore" + }, + { + "x": 180.5, + "y": 154.5, + "name": "tungsten-ore" + }, + { + "x": 181.5, + "y": 154.5, + "name": "tungsten-ore" + }, + { + "x": 180.5, + "y": 155.5, + "name": "tungsten-ore" + }, + { + "x": 181.5, + "y": 155.5, + "name": "tungsten-ore" + }, + { + "x": 182.5, + "y": 154.5, + "name": "tungsten-ore" + }, + { + "x": 183.5, + "y": 154.5, + "name": "tungsten-ore" + }, + { + "x": 182.5, + "y": 155.5, + "name": "tungsten-ore" + }, + { + "x": 183.5, + "y": 155.5, + "name": "tungsten-ore" + }, + { + "x": 184.5, + "y": 154.5, + "name": "tungsten-ore" + }, + { + "x": 185.5, + "y": 154.5, + "name": "tungsten-ore" + }, + { + "x": 184.5, + "y": 155.5, + "name": "tungsten-ore" + }, + { + "x": 185.5, + "y": 155.5, + "name": "tungsten-ore" + }, + { + "x": 186.5, + "y": 154.5, + "name": "tungsten-ore" + }, + { + "x": 187.5, + "y": 154.5, + "name": "tungsten-ore" + }, + { + "x": 186.5, + "y": 155.5, + "name": "tungsten-ore" + }, + { + "x": 187.5, + "y": 155.5, + "name": "tungsten-ore" + }, + { + "x": 188.5, + "y": 154.5, + "name": "tungsten-ore" + }, + { + "x": 189.5, + "y": 154.5, + "name": "tungsten-ore" + }, + { + "x": 188.5, + "y": 155.5, + "name": "tungsten-ore" + }, + { + "x": 189.5, + "y": 155.5, + "name": "tungsten-ore" + }, + { + "x": 190.5, + "y": 154.5, + "name": "tungsten-ore" + }, + { + "x": 191.5, + "y": 154.5, + "name": "tungsten-ore" + }, + { + "x": 190.5, + "y": 155.5, + "name": "tungsten-ore" + }, + { + "x": 191.5, + "y": 155.5, + "name": "tungsten-ore" + }, + { + "x": 192.5, + "y": 154.5, + "name": "tungsten-ore" + }, + { + "x": 193.5, + "y": 154.5, + "name": "tungsten-ore" + }, + { + "x": 192.5, + "y": 155.5, + "name": "tungsten-ore" + }, + { + "x": 193.5, + "y": 155.5, + "name": "tungsten-ore" + }, + { + "x": 194.5, + "y": 154.5, + "name": "tungsten-ore" + }, + { + "x": 195.5, + "y": 154.5, + "name": "tungsten-ore" + }, + { + "x": 194.5, + "y": 155.5, + "name": "tungsten-ore" + }, + { + "x": 195.5, + "y": 155.5, + "name": "tungsten-ore" + }, + { + "x": 196.5, + "y": 154.5, + "name": "tungsten-ore" + }, + { + "x": 197.5, + "y": 154.5, + "name": "tungsten-ore" + }, + { + "x": 196.5, + "y": 155.5, + "name": "tungsten-ore" + }, + { + "x": 197.5, + "y": 155.5, + "name": "tungsten-ore" + }, + { + "x": 198.5, + "y": 154.5, + "name": "tungsten-ore" + }, + { + "x": 199.5, + "y": 154.5, + "name": "tungsten-ore" + }, + { + "x": 198.5, + "y": 155.5, + "name": "tungsten-ore" + }, + { + "x": 199.5, + "y": 155.5, + "name": "tungsten-ore" + }, + { + "x": 200.5, + "y": 154.5, + "name": "tungsten-ore" + }, + { + "x": 200.5, + "y": 155.5, + "name": "tungsten-ore" + }, + { + "x": 160.5, + "y": 156.5, + "name": "tungsten-ore" + }, + { + "x": 161.5, + "y": 156.5, + "name": "tungsten-ore" + }, + { + "x": 160.5, + "y": 157.5, + "name": "tungsten-ore" + }, + { + "x": 161.5, + "y": 157.5, + "name": "tungsten-ore" + }, + { + "x": 162.5, + "y": 156.5, + "name": "tungsten-ore" + }, + { + "x": 163.5, + "y": 156.5, + "name": "tungsten-ore" + }, + { + "x": 162.5, + "y": 157.5, + "name": "tungsten-ore" + }, + { + "x": 163.5, + "y": 157.5, + "name": "tungsten-ore" + }, + { + "x": 164.5, + "y": 156.5, + "name": "tungsten-ore" + }, + { + "x": 165.5, + "y": 156.5, + "name": "tungsten-ore" + }, + { + "x": 164.5, + "y": 157.5, + "name": "tungsten-ore" + }, + { + "x": 165.5, + "y": 157.5, + "name": "tungsten-ore" + }, + { + "x": 166.5, + "y": 156.5, + "name": "tungsten-ore" + }, + { + "x": 167.5, + "y": 156.5, + "name": "tungsten-ore" + }, + { + "x": 166.5, + "y": 157.5, + "name": "tungsten-ore" + }, + { + "x": 167.5, + "y": 157.5, + "name": "tungsten-ore" + }, + { + "x": 168.5, + "y": 156.5, + "name": "tungsten-ore" + }, + { + "x": 169.5, + "y": 156.5, + "name": "tungsten-ore" + }, + { + "x": 168.5, + "y": 157.5, + "name": "tungsten-ore" + }, + { + "x": 169.5, + "y": 157.5, + "name": "tungsten-ore" + }, + { + "x": 170.5, + "y": 156.5, + "name": "tungsten-ore" + }, + { + "x": 171.5, + "y": 156.5, + "name": "tungsten-ore" + }, + { + "x": 170.5, + "y": 157.5, + "name": "tungsten-ore" + }, + { + "x": 171.5, + "y": 157.5, + "name": "tungsten-ore" + }, + { + "x": 172.5, + "y": 156.5, + "name": "tungsten-ore" + }, + { + "x": 173.5, + "y": 156.5, + "name": "tungsten-ore" + }, + { + "x": 172.5, + "y": 157.5, + "name": "tungsten-ore" + }, + { + "x": 173.5, + "y": 157.5, + "name": "tungsten-ore" + }, + { + "x": 174.5, + "y": 156.5, + "name": "tungsten-ore" + }, + { + "x": 175.5, + "y": 156.5, + "name": "tungsten-ore" + }, + { + "x": 174.5, + "y": 157.5, + "name": "tungsten-ore" + }, + { + "x": 175.5, + "y": 157.5, + "name": "tungsten-ore" + }, + { + "x": 176.5, + "y": 156.5, + "name": "tungsten-ore" + }, + { + "x": 177.5, + "y": 156.5, + "name": "tungsten-ore" + }, + { + "x": 176.5, + "y": 157.5, + "name": "tungsten-ore" + }, + { + "x": 177.5, + "y": 157.5, + "name": "tungsten-ore" + }, + { + "x": 178.5, + "y": 156.5, + "name": "tungsten-ore" + }, + { + "x": 179.5, + "y": 156.5, + "name": "tungsten-ore" + }, + { + "x": 178.5, + "y": 157.5, + "name": "tungsten-ore" + }, + { + "x": 179.5, + "y": 157.5, + "name": "tungsten-ore" + }, + { + "x": 180.5, + "y": 156.5, + "name": "tungsten-ore" + }, + { + "x": 181.5, + "y": 156.5, + "name": "tungsten-ore" + }, + { + "x": 180.5, + "y": 157.5, + "name": "tungsten-ore" + }, + { + "x": 181.5, + "y": 157.5, + "name": "tungsten-ore" + }, + { + "x": 182.5, + "y": 156.5, + "name": "tungsten-ore" + }, + { + "x": 183.5, + "y": 156.5, + "name": "tungsten-ore" + }, + { + "x": 182.5, + "y": 157.5, + "name": "tungsten-ore" + }, + { + "x": 183.5, + "y": 157.5, + "name": "tungsten-ore" + }, + { + "x": 184.5, + "y": 156.5, + "name": "tungsten-ore" + }, + { + "x": 185.5, + "y": 156.5, + "name": "tungsten-ore" + }, + { + "x": 184.5, + "y": 157.5, + "name": "tungsten-ore" + }, + { + "x": 185.5, + "y": 157.5, + "name": "tungsten-ore" + }, + { + "x": 186.5, + "y": 156.5, + "name": "tungsten-ore" + }, + { + "x": 187.5, + "y": 156.5, + "name": "tungsten-ore" + }, + { + "x": 186.5, + "y": 157.5, + "name": "tungsten-ore" + }, + { + "x": 187.5, + "y": 157.5, + "name": "tungsten-ore" + }, + { + "x": 188.5, + "y": 156.5, + "name": "tungsten-ore" + }, + { + "x": 189.5, + "y": 156.5, + "name": "tungsten-ore" + }, + { + "x": 188.5, + "y": 157.5, + "name": "tungsten-ore" + }, + { + "x": 189.5, + "y": 157.5, + "name": "tungsten-ore" + }, + { + "x": 190.5, + "y": 156.5, + "name": "tungsten-ore" + }, + { + "x": 191.5, + "y": 156.5, + "name": "tungsten-ore" + }, + { + "x": 190.5, + "y": 157.5, + "name": "tungsten-ore" + }, + { + "x": 191.5, + "y": 157.5, + "name": "tungsten-ore" + }, + { + "x": 192.5, + "y": 156.5, + "name": "tungsten-ore" + }, + { + "x": 193.5, + "y": 156.5, + "name": "tungsten-ore" + }, + { + "x": 192.5, + "y": 157.5, + "name": "tungsten-ore" + }, + { + "x": 193.5, + "y": 157.5, + "name": "tungsten-ore" + }, + { + "x": 194.5, + "y": 156.5, + "name": "tungsten-ore" + }, + { + "x": 195.5, + "y": 156.5, + "name": "tungsten-ore" + }, + { + "x": 194.5, + "y": 157.5, + "name": "tungsten-ore" + }, + { + "x": 195.5, + "y": 157.5, + "name": "tungsten-ore" + }, + { + "x": 196.5, + "y": 156.5, + "name": "tungsten-ore" + }, + { + "x": 197.5, + "y": 156.5, + "name": "tungsten-ore" + }, + { + "x": 196.5, + "y": 157.5, + "name": "tungsten-ore" + }, + { + "x": 197.5, + "y": 157.5, + "name": "tungsten-ore" + }, + { + "x": 198.5, + "y": 156.5, + "name": "tungsten-ore" + }, + { + "x": 199.5, + "y": 156.5, + "name": "tungsten-ore" + }, + { + "x": 198.5, + "y": 157.5, + "name": "tungsten-ore" + }, + { + "x": 199.5, + "y": 157.5, + "name": "tungsten-ore" + }, + { + "x": 200.5, + "y": 156.5, + "name": "tungsten-ore" + }, + { + "x": 200.5, + "y": 157.5, + "name": "tungsten-ore" + }, + { + "x": 161.5, + "y": 158.5, + "name": "tungsten-ore" + }, + { + "x": 162.5, + "y": 158.5, + "name": "tungsten-ore" + }, + { + "x": 163.5, + "y": 158.5, + "name": "tungsten-ore" + }, + { + "x": 162.5, + "y": 159.5, + "name": "tungsten-ore" + }, + { + "x": 163.5, + "y": 159.5, + "name": "tungsten-ore" + }, + { + "x": 164.5, + "y": 158.5, + "name": "tungsten-ore" + }, + { + "x": 165.5, + "y": 158.5, + "name": "tungsten-ore" + }, + { + "x": 164.5, + "y": 159.5, + "name": "tungsten-ore" + }, + { + "x": 165.5, + "y": 159.5, + "name": "tungsten-ore" + }, + { + "x": 166.5, + "y": 158.5, + "name": "tungsten-ore" + }, + { + "x": 167.5, + "y": 158.5, + "name": "tungsten-ore" + }, + { + "x": 166.5, + "y": 159.5, + "name": "tungsten-ore" + }, + { + "x": 167.5, + "y": 159.5, + "name": "tungsten-ore" + }, + { + "x": 168.5, + "y": 158.5, + "name": "tungsten-ore" + }, + { + "x": 169.5, + "y": 158.5, + "name": "tungsten-ore" + }, + { + "x": 168.5, + "y": 159.5, + "name": "tungsten-ore" + }, + { + "x": 169.5, + "y": 159.5, + "name": "tungsten-ore" + }, + { + "x": 170.5, + "y": 158.5, + "name": "tungsten-ore" + }, + { + "x": 171.5, + "y": 158.5, + "name": "tungsten-ore" + }, + { + "x": 170.5, + "y": 159.5, + "name": "tungsten-ore" + }, + { + "x": 171.5, + "y": 159.5, + "name": "tungsten-ore" + }, + { + "x": 172.5, + "y": 158.5, + "name": "tungsten-ore" + }, + { + "x": 173.5, + "y": 158.5, + "name": "tungsten-ore" + }, + { + "x": 172.5, + "y": 159.5, + "name": "tungsten-ore" + }, + { + "x": 173.5, + "y": 159.5, + "name": "tungsten-ore" + }, + { + "x": 174.5, + "y": 158.5, + "name": "tungsten-ore" + }, + { + "x": 175.5, + "y": 158.5, + "name": "tungsten-ore" + }, + { + "x": 174.5, + "y": 159.5, + "name": "tungsten-ore" + }, + { + "x": 175.5, + "y": 159.5, + "name": "tungsten-ore" + }, + { + "x": 176.5, + "y": 158.5, + "name": "tungsten-ore" + }, + { + "x": 177.5, + "y": 158.5, + "name": "tungsten-ore" + }, + { + "x": 176.5, + "y": 159.5, + "name": "tungsten-ore" + }, + { + "x": 177.5, + "y": 159.5, + "name": "tungsten-ore" + }, + { + "x": 178.5, + "y": 158.5, + "name": "tungsten-ore" + }, + { + "x": 179.5, + "y": 158.5, + "name": "tungsten-ore" + }, + { + "x": 178.5, + "y": 159.5, + "name": "tungsten-ore" + }, + { + "x": 179.5, + "y": 159.5, + "name": "tungsten-ore" + }, + { + "x": 180.5, + "y": 158.5, + "name": "tungsten-ore" + }, + { + "x": 181.5, + "y": 158.5, + "name": "tungsten-ore" + }, + { + "x": 180.5, + "y": 159.5, + "name": "tungsten-ore" + }, + { + "x": 181.5, + "y": 159.5, + "name": "tungsten-ore" + }, + { + "x": 182.5, + "y": 158.5, + "name": "tungsten-ore" + }, + { + "x": 183.5, + "y": 158.5, + "name": "tungsten-ore" + }, + { + "x": 182.5, + "y": 159.5, + "name": "tungsten-ore" + }, + { + "x": 183.5, + "y": 159.5, + "name": "tungsten-ore" + }, + { + "x": 184.5, + "y": 158.5, + "name": "tungsten-ore" + }, + { + "x": 185.5, + "y": 158.5, + "name": "tungsten-ore" + }, + { + "x": 184.5, + "y": 159.5, + "name": "tungsten-ore" + }, + { + "x": 185.5, + "y": 159.5, + "name": "tungsten-ore" + }, + { + "x": 186.5, + "y": 158.5, + "name": "tungsten-ore" + }, + { + "x": 187.5, + "y": 158.5, + "name": "tungsten-ore" + }, + { + "x": 186.5, + "y": 159.5, + "name": "tungsten-ore" + }, + { + "x": 187.5, + "y": 159.5, + "name": "tungsten-ore" + }, + { + "x": 188.5, + "y": 158.5, + "name": "tungsten-ore" + }, + { + "x": 189.5, + "y": 158.5, + "name": "tungsten-ore" + }, + { + "x": 188.5, + "y": 159.5, + "name": "tungsten-ore" + }, + { + "x": 189.5, + "y": 159.5, + "name": "tungsten-ore" + }, + { + "x": 190.5, + "y": 158.5, + "name": "tungsten-ore" + }, + { + "x": 191.5, + "y": 158.5, + "name": "tungsten-ore" + }, + { + "x": 190.5, + "y": 159.5, + "name": "tungsten-ore" + }, + { + "x": 191.5, + "y": 159.5, + "name": "tungsten-ore" + }, + { + "x": 192.5, + "y": 158.5, + "name": "tungsten-ore" + }, + { + "x": 193.5, + "y": 158.5, + "name": "tungsten-ore" + }, + { + "x": 192.5, + "y": 159.5, + "name": "tungsten-ore" + }, + { + "x": 193.5, + "y": 159.5, + "name": "tungsten-ore" + }, + { + "x": 194.5, + "y": 158.5, + "name": "tungsten-ore" + }, + { + "x": 195.5, + "y": 158.5, + "name": "tungsten-ore" + }, + { + "x": 196.5, + "y": 158.5, + "name": "tungsten-ore" + }, + { + "x": 198.5, + "y": 158.5, + "name": "tungsten-ore" + }, + { + "x": 199.5, + "y": 158.5, + "name": "tungsten-ore" + }, + { + "x": 198.5, + "y": 159.5, + "name": "tungsten-ore" + }, + { + "x": 200.5, + "y": 158.5, + "name": "tungsten-ore" + }, + { + "x": 164.5, + "y": 160.5, + "name": "tungsten-ore" + }, + { + "x": 165.5, + "y": 160.5, + "name": "tungsten-ore" + }, + { + "x": 166.5, + "y": 160.5, + "name": "tungsten-ore" + }, + { + "x": 167.5, + "y": 160.5, + "name": "tungsten-ore" + }, + { + "x": 168.5, + "y": 160.5, + "name": "tungsten-ore" + }, + { + "x": 169.5, + "y": 160.5, + "name": "tungsten-ore" + }, + { + "x": 168.5, + "y": 161.5, + "name": "tungsten-ore" + }, + { + "x": 170.5, + "y": 160.5, + "name": "tungsten-ore" + }, + { + "x": 171.5, + "y": 160.5, + "name": "tungsten-ore" + }, + { + "x": 170.5, + "y": 161.5, + "name": "tungsten-ore" + }, + { + "x": 171.5, + "y": 161.5, + "name": "tungsten-ore" + }, + { + "x": 172.5, + "y": 160.5, + "name": "tungsten-ore" + }, + { + "x": 173.5, + "y": 160.5, + "name": "tungsten-ore" + }, + { + "x": 172.5, + "y": 161.5, + "name": "tungsten-ore" + }, + { + "x": 173.5, + "y": 161.5, + "name": "tungsten-ore" + }, + { + "x": 174.5, + "y": 160.5, + "name": "tungsten-ore" + }, + { + "x": 175.5, + "y": 160.5, + "name": "tungsten-ore" + }, + { + "x": 174.5, + "y": 161.5, + "name": "tungsten-ore" + }, + { + "x": 175.5, + "y": 161.5, + "name": "tungsten-ore" + }, + { + "x": 176.5, + "y": 160.5, + "name": "tungsten-ore" + }, + { + "x": 177.5, + "y": 160.5, + "name": "tungsten-ore" + }, + { + "x": 176.5, + "y": 161.5, + "name": "tungsten-ore" + }, + { + "x": 177.5, + "y": 161.5, + "name": "tungsten-ore" + }, + { + "x": 178.5, + "y": 160.5, + "name": "tungsten-ore" + }, + { + "x": 179.5, + "y": 160.5, + "name": "tungsten-ore" + }, + { + "x": 178.5, + "y": 161.5, + "name": "tungsten-ore" + }, + { + "x": 179.5, + "y": 161.5, + "name": "tungsten-ore" + }, + { + "x": 180.5, + "y": 160.5, + "name": "tungsten-ore" + }, + { + "x": 181.5, + "y": 160.5, + "name": "tungsten-ore" + }, + { + "x": 180.5, + "y": 161.5, + "name": "tungsten-ore" + }, + { + "x": 181.5, + "y": 161.5, + "name": "tungsten-ore" + }, + { + "x": 182.5, + "y": 160.5, + "name": "tungsten-ore" + }, + { + "x": 183.5, + "y": 160.5, + "name": "tungsten-ore" + }, + { + "x": 182.5, + "y": 161.5, + "name": "tungsten-ore" + }, + { + "x": 183.5, + "y": 161.5, + "name": "tungsten-ore" + }, + { + "x": 184.5, + "y": 160.5, + "name": "tungsten-ore" + }, + { + "x": 185.5, + "y": 160.5, + "name": "tungsten-ore" + }, + { + "x": 184.5, + "y": 161.5, + "name": "tungsten-ore" + }, + { + "x": 185.5, + "y": 161.5, + "name": "tungsten-ore" + }, + { + "x": 186.5, + "y": 160.5, + "name": "tungsten-ore" + }, + { + "x": 187.5, + "y": 160.5, + "name": "tungsten-ore" + }, + { + "x": 186.5, + "y": 161.5, + "name": "tungsten-ore" + }, + { + "x": 187.5, + "y": 161.5, + "name": "tungsten-ore" + }, + { + "x": 188.5, + "y": 160.5, + "name": "tungsten-ore" + }, + { + "x": 189.5, + "y": 160.5, + "name": "tungsten-ore" + }, + { + "x": 188.5, + "y": 161.5, + "name": "tungsten-ore" + }, + { + "x": 189.5, + "y": 161.5, + "name": "tungsten-ore" + }, + { + "x": 190.5, + "y": 160.5, + "name": "tungsten-ore" + }, + { + "x": 191.5, + "y": 160.5, + "name": "tungsten-ore" + }, + { + "x": 191.5, + "y": 161.5, + "name": "tungsten-ore" + }, + { + "x": 192.5, + "y": 160.5, + "name": "tungsten-ore" + }, + { + "x": 166.5, + "y": 162.5, + "name": "tungsten-ore" + }, + { + "x": 178.5, + "y": 162.5, + "name": "tungsten-ore" + }, + { + "x": 179.5, + "y": 162.5, + "name": "tungsten-ore" + }, + { + "x": 181.5, + "y": 162.5, + "name": "tungsten-ore" + }, + { + "x": 182.5, + "y": 162.5, + "name": "tungsten-ore" + }, + { + "x": 184.5, + "y": 162.5, + "name": "tungsten-ore" + }, + { + "x": 186.5, + "y": 162.5, + "name": "tungsten-ore" + }, + { + "x": 187.5, + "y": 162.5, + "name": "tungsten-ore" + }, + { + "x": 189.5, + "y": 162.5, + "name": "tungsten-ore" + } + ], + "protos": { + "cliff-vulcanus": { + "type": "cliff", + "layers": [ + "cliff", + "is_lower_object", + "is_object", + "item", + "meltable", + "object", + "player", + "water_tile" + ], + "box": { + "lx": -0.98828125, + "ly": -0.48828125, + "rx": 0.98828125, + "ry": 0.48828125 + } + }, + "crater-cliff": { + "type": "cliff", + "layers": [ + "item", + "object", + "player", + "water_tile" + ], + "box": { + "lx": -0.98828125, + "ly": -0.48828125, + "rx": 0.98828125, + "ry": 0.48828125 + } + }, + "tungsten-ore": { + "type": "resource", + "layers": [ + "resource" + ], + "box": { + "lx": -0.09765625, + "ly": -0.09765625, + "rx": 0.09765625, + "ry": 0.09765625 + } + }, + "calcite": { + "type": "resource", + "layers": [ + "resource" + ], + "box": { + "lx": -0.09765625, + "ly": -0.09765625, + "rx": 0.09765625, + "ry": 0.09765625 + } + }, + "coal": { + "type": "resource", + "layers": [ + "resource" + ], + "box": { + "lx": -0.09765625, + "ly": -0.09765625, + "rx": 0.09765625, + "ry": 0.09765625 + } + }, + "sulfuric-acid-geyser": { + "type": "resource", + "layers": [ + "resource" + ], + "box": { + "lx": -1.3984375, + "ly": -1.3984375, + "rx": 1.3984375, + "ry": 1.3984375 + } + }, + "big-volcanic-rock": { + "type": "simple-entity", + "layers": [ + "is_lower_object", + "is_object", + "item", + "meltable", + "object", + "player", + "water_tile" + ], + "box": { + "lx": -0.75, + "ly": -0.75, + "rx": 0.75, + "ry": 0.75 + } + }, + "huge-volcanic-rock": { + "type": "simple-entity", + "layers": [ + "is_lower_object", + "is_object", + "item", + "meltable", + "object", + "player", + "water_tile" + ], + "box": { + "lx": -1.5, + "ly": -1.09765625, + "rx": 1.5, + "ry": 1.09765625 + } + } + } + }, + { + "label": "blob region COLLAPSED, ALL resources OFF", + "region": { + "x0": 0, + "y0": 0, + "x1": 256, + "y1": 256 + }, + "cliffSettings": { + "cliff_smoothing": 0, + "cliff_elevation_interval": 1000000, + "cliff_elevation_0": 70, + "richness": 4 + }, + "autoplaceControls": { + "tungsten_ore": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "calcite": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "vulcanus_coal": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "sulfuric_acid_geyser": { + "frequency": 1, + "size": 0, + "richness": 1 + } + }, + "effectiveCliffSettings": { + "name": "cliff-vulcanus", + "cliff_elevation_0": 70, + "cliff_elevation_interval": 1000000, + "cliff_smoothing": 0, + "richness": 4 + }, + "effectiveAutoplace": { + "calcite": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "sulfuric_acid_geyser": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "tungsten_ore": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "vulcanus_coal": { + "frequency": 1, + "size": 0, + "richness": 1 + }, + "vulcanus_volcanism": { + "frequency": 1, + "size": 1, + "richness": 1 + } + }, + "cliffs": [ + { + "x": 130, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 134, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 210, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 214, + "y": 2.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 178, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 182, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 186, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 210, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 214, + "y": 6.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 178, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 182, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 186, + "y": 10.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 178, + "y": 14.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 182, + "y": 14.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 114, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 118, + "y": 18.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 110, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 114, + "y": 22.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 106, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 110, + "y": 26.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 90, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 94, + "y": 30.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 82, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 86, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 90, + "y": 34.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 78, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 82, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 134, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 138, + "y": 38.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 70, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 74, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 78, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 82, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 134, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 138, + "y": 42.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 6, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 58, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 62, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 70, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 74, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 78, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 82, + "y": 46.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 6, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 22, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 26, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 30, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 42, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 46, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 50, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 54, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 58, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 62, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 66, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 70, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 78, + "y": 50.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 30, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 34, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 38, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 42, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 54, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 58, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 62, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 74, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 78, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 86, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 90, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 94, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 98, + "y": 54.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 46, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 50, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 54, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 70, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 74, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 78, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 82, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 86, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 94, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 98, + "y": 58.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 6, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 46, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 50, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 66, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 70, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 78, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 82, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 94, + "y": 62.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 6, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 10, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 14, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 46, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 50, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 66, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 82, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 94, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 138, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 142, + "y": 66.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 14, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 18, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 46, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 62, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 66, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 82, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 94, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 98, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 102, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 106, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 134, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 138, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 142, + "y": 70.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 18, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 22, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 46, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 62, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 82, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 86, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 102, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 106, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 134, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 138, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 142, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 250, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 254, + "y": 74.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 46, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 62, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 66, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 86, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 102, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 250, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 254, + "y": 78.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 22, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 46, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 50, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 66, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 86, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 102, + "y": 82.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 18, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 22, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 50, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 66, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 86, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 98, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 102, + "y": 86.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 18, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 22, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 26, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 50, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 54, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 66, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 86, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 98, + "y": 90.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 22, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 26, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 54, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 58, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 66, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 86, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 90, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 94, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 98, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 182, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 186, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 190, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 194, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 198, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 202, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 206, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 210, + "y": 94.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 58, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 66, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 90, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 94, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 182, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 202, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 206, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 210, + "y": 98.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 22, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 58, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 62, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 66, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 182, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 198, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 202, + "y": 102.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 22, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 26, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 182, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 198, + "y": 106.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 182, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 186, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 198, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 206, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 210, + "y": 110.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 186, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 190, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 194, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 198, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 206, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 210, + "y": 114.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 194, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 198, + "y": 118.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 30, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 34, + "y": 122.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 34, + "y": 126.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 34, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 38, + "y": 130.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 38, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 42, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 46, + "y": 134.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 46, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 50, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 54, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 178, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 182, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 186, + "y": 138.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 54, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 58, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 178, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 182, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 186, + "y": 142.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 58, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 62, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 66, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 178, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 182, + "y": 146.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 66, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 178, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 182, + "y": 150.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 62, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 66, + "y": 154.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 58, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 62, + "y": 158.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -4.51171875, + "y": 163.93359375, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": 5.38671875, + "y": 163.93359375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": 42, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 46, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 50, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 54, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 58, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 78, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 82, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 86, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 90, + "y": 162.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 0.4375, + "y": 165.38671875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": 38, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 42, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 74, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 78, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 90, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 94, + "y": 166.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 34, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 38, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 74, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 94, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 98, + "y": 170.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 22, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 26, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 30, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 34, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 70, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 74, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 98, + "y": 174.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 18, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 22, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 70, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 74, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 90, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 94, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 98, + "y": 178.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 6, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 10, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 14, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 18, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 74, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 78, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 82, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 86, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 90, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 110, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 114, + "y": 182.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 106, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 110, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 114, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 118, + "y": 186.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 102, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 106, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 110, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 114, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 118, + "y": 190.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 102, + "y": 194.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 106, + "y": 194.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 110, + "y": 194.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 106, + "y": 198.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 110, + "y": 198.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 34, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 38, + "y": 210.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 34, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 38, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 74, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 78, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 82, + "y": 214.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 66, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 70, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 74, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 82, + "y": 218.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 66, + "y": 222.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 82, + "y": 222.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 66, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 82, + "y": 226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 66, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 70, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 78, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 82, + "y": 230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 70, + "y": 234.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 74, + "y": 234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 78, + "y": 234.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 74, + "y": 238.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 78, + "y": 238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 138, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 142, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 146, + "y": 242.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 106, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 110, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 134, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 138, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 146, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 150, + "y": 246.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 102, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 106, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 110, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 114, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 134, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 138, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 146, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 150, + "y": 250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 98, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 102, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 114, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 118, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 138, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 142, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 146, + "y": 254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + } + ], + "resources": [], + "protos": { + "cliff-vulcanus": { + "type": "cliff", + "layers": [ + "cliff", + "is_lower_object", + "is_object", + "item", + "meltable", + "object", + "player", + "water_tile" + ], + "box": { + "lx": -0.98828125, + "ly": -0.48828125, + "rx": 0.98828125, + "ry": 0.48828125 + } + }, + "crater-cliff": { + "type": "cliff", + "layers": [ + "item", + "object", + "player", + "water_tile" + ], + "box": { + "lx": -0.98828125, + "ly": -0.48828125, + "rx": 0.98828125, + "ry": 0.48828125 + } + }, + "tungsten-ore": { + "type": "resource", + "layers": [ + "resource" + ], + "box": { + "lx": -0.09765625, + "ly": -0.09765625, + "rx": 0.09765625, + "ry": 0.09765625 + } + }, + "calcite": { + "type": "resource", + "layers": [ + "resource" + ], + "box": { + "lx": -0.09765625, + "ly": -0.09765625, + "rx": 0.09765625, + "ry": 0.09765625 + } + }, + "coal": { + "type": "resource", + "layers": [ + "resource" + ], + "box": { + "lx": -0.09765625, + "ly": -0.09765625, + "rx": 0.09765625, + "ry": 0.09765625 + } + }, + "sulfuric-acid-geyser": { + "type": "resource", + "layers": [ + "resource" + ], + "box": { + "lx": -1.3984375, + "ly": -1.3984375, + "rx": 1.3984375, + "ry": 1.3984375 + } + }, + "big-volcanic-rock": { + "type": "simple-entity", + "layers": [ + "is_lower_object", + "is_object", + "item", + "meltable", + "object", + "player", + "water_tile" + ], + "box": { + "lx": -0.75, + "ly": -0.75, + "rx": 0.75, + "ry": 0.75 + } + }, + "huge-volcanic-rock": { + "type": "simple-entity", + "layers": [ + "is_lower_object", + "is_object", + "item", + "meltable", + "object", + "player", + "water_tile" + ], + "box": { + "lx": -1.5, + "ly": -1.09765625, + "rx": 1.5, + "ry": 1.09765625 + } + } + } + } + ] +} diff --git a/test/oracle/capture.ts b/test/oracle/capture.ts index 73a8fc95..ca6654e7 100644 --- a/test/oracle/capture.ts +++ b/test/oracle/capture.ts @@ -3712,7 +3712,169 @@ async function captureCliffSmoothingStencil(): Promise { console.log(`wrote ${out} (${String(cases.length)} arms)`); } +/** + * **The DIRECTION of the cliff/ore exclusion, asked of the game** (#84 item 1, + * which is really #24). + * + * The port puts cliffs on ore and the game essentially does not - 3 of its 1,569 + * against the port's 29. That correlation fits two mechanisms which demand + * opposite fixes: ore suppresses cliffs, or cliffs suppress ore. `#94` handed the + * question over unresolved after ruling out lava, every other tile, the + * cliffiness gate and entity collision. + * + * It is settleable by experiment rather than argument, because the resources are + * a `map_gen_settings` lever like `cliff_settings`: turn them OFF and look. The + * arms are cumulative in neither direction - they are a 2x2, because each + * hypothesis needs its own control: + * + * - `[1500,1500]` at DEFAULT cliff settings, resources ON then OFF. The + * difference IS the suppressed set, with no model of the geometry needed to + * obtain it, and this is the region where the exclusion costs the port + * accuracy (26 of its 42 surplus cells). + * - The same region with only `calcite` off and only `sulfuric_acid_geyser` off, + * so the suppressed set can be attributed per resource. It is exactly + * additive: 27 + 4 = 31. + * - `[0,0]` with the rule COLLAPSED (single contour at 70, gate forced open, + * smoothing off) so a contour is forced through the tungsten blob that #94 + * named the sharpest open lead, resources ON then OFF. + * + * Every arm dumps the resources and the effective autoplace controls **in the + * same run as the cliffs**. Two runs cannot answer this: "the ore moved" and + * "the cliffs moved" have to be read off one generated surface, and the + * non-vacuity check that the ore really did vanish has to come from the arm + * making the claim. + * + * The prototype geometry rides along because the answer turned on it. The ores' + * collision half-extent is 0.098 and the geyser's is 1.398, which is why a test + * treating every resource as a point at its tile centre explains the calcite + * cells and cannot explain the geyser ones. + */ +async function captureVulcanusCliffOreDirection(): Promise { + const seed = 123456; + const entityRegion: Region = { x0: 1500, y0: 1500, x1: 1756, y1: 1756 }; + const blobRegion: Region = { x0: 0, y0: 0, x1: 256, y1: 256 }; + const ONE_BAND = 1000000; + // The collapsed rule of `oracle-vulcanus-cliff-collapsed`'s third arm, which is + // where the blob is reachable at all: at real settings the port places nothing + // there, so the exclusion is only visible once a contour is forced through it. + const COLLAPSED = { + cliff_smoothing: 0, + cliff_elevation_interval: ONE_BAND, + cliff_elevation_0: 70, + richness: 4, + }; + const OFF = { frequency: 1, size: 0, richness: 1 }; + const ALL_OFF = { + tungsten_ore: OFF, + calcite: OFF, + vulcanus_coal: OFF, + sulfuric_acid_geyser: OFF, + }; + const PROTOS = [ + "cliff-vulcanus", + "crater-cliff", + "tungsten-ore", + "calcite", + "coal", + "sulfuric-acid-geyser", + "big-volcanic-rock", + "huge-volcanic-rock", + ]; + + const arms: { + label: string; + region: Region; + cliffSettings?: Record; + autoplaceControls?: Record; + }[] = [ + { label: "entity region, resources ON", region: entityRegion }, + { label: "entity region, ALL resources OFF", region: entityRegion, autoplaceControls: ALL_OFF }, + { + label: "entity region, calcite OFF", + region: entityRegion, + autoplaceControls: { calcite: OFF }, + }, + { + label: "entity region, geyser OFF", + region: entityRegion, + autoplaceControls: { sulfuric_acid_geyser: OFF }, + }, + { label: "blob region COLLAPSED, resources ON", region: blobRegion, cliffSettings: COLLAPSED }, + { + label: "blob region COLLAPSED, ALL resources OFF", + region: blobRegion, + cliffSettings: COLLAPSED, + autoplaceControls: ALL_OFF, + }, + ]; + + const cases: unknown[] = []; + for (const arm of arms) { + const workDir = await mkdtemp(join(tmpdir(), "oracle-capture-")); + try { + const dump = await sampleCliffEntitiesFull(arm.region, { + workDir, + seed, + spaceAge: true, + planet: "vulcanus", + cliffSettings: arm.cliffSettings, + autoplaceControls: arm.autoplaceControls, + alsoResources: true, + protoNames: PROTOS, + }); + cases.push({ + label: arm.label, + region: arm.region, + cliffSettings: arm.cliffSettings ?? null, + autoplaceControls: arm.autoplaceControls ?? null, + effectiveCliffSettings: dump.cliffSettings, + effectiveAutoplace: dump.autoplaceControls, + cliffs: dump.cliffs, + resources: dump.resources, + protos: dump.protos, + }); + // The probe writes `name` and `orientation` alongside the position, but + // `CliffDump.cliffs` is typed as the bare `Position` the noise samplers + // share. Only this progress line needs the name, so it is narrowed here + // rather than by widening a type six other captures depend on. + const named = dump.cliffs as unknown as readonly { name: string }[]; + const vulc = named.filter((c) => c.name === "cliff-vulcanus").length; + console.log( + ` ${arm.label} -> ${String(vulc)} cliff-vulcanus, ` + + `${String(dump.cliffs.length - vulc)} other cliff, ` + + `${String(dump.resources?.length ?? -1)} resources`, + ); + } finally { + await rm(workDir, { recursive: true, force: true }); + } + } + + const fixture = { + _comment: + "Ground truth from Factorio 2.1.12 via test/oracle. Settles the DIRECTION of the Vulcanus " + + "cliff/ore exclusion (#84 item 1, #24) by turning the resources OFF through " + + "map_gen_settings.autoplace_controls and regenerating - the same trick " + + "oracle-vulcanus-cliff-collapsed plays on cliff_settings. Arms are NOT cumulative; they are " + + "paired ON/OFF controls, because 'ore suppresses cliffs' and 'cliffs suppress ore' each need " + + "their own. Every arm dumps the cliffs, the resources, the prototype collision geometry and " + + "the autoplace controls the SURFACE read back, all from ONE generated surface, so an override " + + "that failed to apply cannot be mistaken for a term that does not matter and 'the ore moved' " + + "and 'the cliffs moved' are never compared across two different worlds. Sampled on a " + + "create_surface() surface whose seed is FORCED to `seed`, like every other Vulcanus oracle " + + "fixture. Regenerate: node --experimental-strip-types test/oracle/capture.ts " + + "vulcanus-cliff-ore-direction", + seed, + entityRegion, + blobRegion, + cases, + }; + const out = join(FIXTURES, "oracle-vulcanus-cliff-ore-direction.seed123456.json"); + await writeFile(out, JSON.stringify(fixture, null, 2) + "\n"); + console.log(`wrote ${out} (${String(cases.length)} arms)`); +} + if (want("cliff-entities")) await captureCliffEntities(); +if (want("vulcanus-cliff-ore-direction")) await captureVulcanusCliffOreDirection(); if (want("vulcanus-ore-cliff-replication")) await captureVulcanusOreCliffReplication(); if (want("vulcanus-cliff-corner-fields")) await captureVulcanusCliffCornerFields(); if (want("vulcanus-cliff-corner-fields-entity-regions")) diff --git a/test/oracle/oracle.ts b/test/oracle/oracle.ts index 20c4ff94..4cf021fb 100644 --- a/test/oracle/oracle.ts +++ b/test/oracle/oracle.ts @@ -466,6 +466,11 @@ export function buildCliffControlLua( entityType?: string; cliffSettings?: Readonly>; propertyRoutes?: Readonly>; + autoplaceControls?: Readonly< + Record + >; + alsoResources?: boolean; + protoNames?: readonly string[]; } = {}, ): string { const dumpFile = opts.dumpFile ?? CLIFF_DUMP_FILE; @@ -492,23 +497,71 @@ export function buildCliffControlLua( ([k, v]) => `\n mgs.property_expression_names[${JSON.stringify(k)}] = ${JSON.stringify(v)}`, ) .join(""); + // Rides the same `mgs` round-trip as the cliff settings and the routes, so a + // resource arm and a cliff arm are set the same way and land before any chunk + // in the sampled region exists. + const autoplaceLua = Object.entries(opts.autoplaceControls ?? {}) + .map( + ([k, v]) => + `\n mgs.autoplace_controls[${JSON.stringify(k)}] = ` + + `{frequency = ${String(v.frequency)}, size = ${String(v.size)}, richness = ${String(v.richness)}}`, + ) + .join(""); // The Nauvis path needs the same round-trip when settings are overridden. It // is safe on `surfaces[1]` because the sampled regions are far from spawn and // therefore ungenerated at `on_init` - a setting cannot retro-edit a chunk // that already exists, so a near-spawn region would silently ignore this. const nauvisLua = - settingsLua === "" && routesLua === "" + settingsLua === "" && routesLua === "" && autoplaceLua === "" ? ` local surface = game.surfaces[1]` : ` local surface = game.surfaces[1] - local mgs = surface.map_gen_settings${settingsLua}${routesLua} + local mgs = surface.map_gen_settings${settingsLua}${routesLua}${autoplaceLua} surface.map_gen_settings = mgs`; const surfaceLua = opts.planet === undefined ? nauvisLua : ` local surface = game.planets["${opts.planet}"].create_surface() local mgs = surface.map_gen_settings - mgs.seed = ${String(opts.seed ?? 123456)}${settingsLua}${routesLua} + mgs.seed = ${String(opts.seed ?? 123456)}${settingsLua}${routesLua}${autoplaceLua} surface.map_gen_settings = mgs`; + // `resources`, `protos` and `autoplace` stay nil unless asked for, so + // `table_to_json` simply omits them and every existing fixture's shape is + // byte-identical to what it was before this option existed. + const resourceLua = + opts.alsoResources !== true + ? " local resources, protos, autoplace = nil, nil, nil" + : ` local resources = {} + for i, e in ipairs(surface.find_entities_filtered{ type = "resource", area = {{x0, y0}, {x1, y1}} }) do + resources[i] = {x = e.position.x, y = e.position.y, name = e.name} + end + -- Prototype geometry read off the RUNNING GAME. #94 ruled entity collision + -- out for ore by reasoning about layers; the game then said ore suppresses + -- cliffs anyway, so the layers belong in the fixture rather than in a claim. + -- The collision boxes are what makes the geyser separable from the ores: its + -- half-extent is 1.398 against their 0.098. + local protos = {} + for _, n in ipairs({${(opts.protoNames ?? []).map((p) => JSON.stringify(p)).join(", ")}}) do + local p = prototypes.entity[n] + if p then + local layers = {} + if p.collision_mask and p.collision_mask.layers then + for l, v in pairs(p.collision_mask.layers) do if v then layers[#layers + 1] = l end end + end + table.sort(layers) + protos[n] = { + type = p.type, + layers = layers, + box = p.collision_box and { + lx = p.collision_box.left_top.x, ly = p.collision_box.left_top.y, + rx = p.collision_box.right_bottom.x, ry = p.collision_box.right_bottom.y, + } or nil, + } + end + end + local autoplace = {} + for k, v in pairs(surface.map_gen_settings.autoplace_controls) do + autoplace[k] = {frequency = v.frequency, size = v.size, richness = v.richness} + end`; return `script.on_init(function() ${surfaceLua} local x0, y0, x1, y1 = ${region.x0}, ${region.y0}, ${region.x1}, ${region.y1} @@ -547,7 +600,11 @@ ${surfaceLua} cliff_smoothing = cs.cliff_smoothing, richness = cs.richness, } - helpers.write_file("${dumpFile}", helpers.table_to_json({ cliffs = cliffs, cliffSettings = settings }), false) +${resourceLua} + helpers.write_file("${dumpFile}", helpers.table_to_json({ + cliffs = cliffs, cliffSettings = settings, + resources = resources, protos = protos, autoplaceControls = autoplace, + }), false) error("DUMPED-OK") end) `; @@ -562,10 +619,26 @@ export interface DumpedCliffSettings { readonly richness: number; } +/** A prototype's collision geometry, as the running game reports it. */ +export interface DumpedProto { + readonly type: string; + readonly layers: string[]; + readonly box?: { lx: number; ly: number; rx: number; ry: number }; +} + /** The cliff probe's full dump: the entities plus the settings that produced them. */ export interface CliffDump { readonly cliffs: Position[]; readonly cliffSettings?: DumpedCliffSettings; + /** Present only with `alsoResources`. `type = "resource"` entities in the same region. */ + readonly resources?: Position[]; + /** Present only with `alsoResources`. Collision geometry of `protoNames`. */ + readonly protos?: Record; + /** Present only with `alsoResources`. The autoplace controls the surface read BACK. */ + readonly autoplaceControls?: Record< + string, + { frequency: number; size: number; richness: number } + >; } /** Parse the cliff-entity mod's dump into `{x, y}` cliff positions. */ @@ -585,10 +658,28 @@ export function parseCliffDump(jsonText: string): Position[] { * zero rather than as a broken dump. */ export function parseCliffDumpFull(jsonText: string): CliffDump { - const parsed = JSON.parse(jsonText) as { cliffs?: unknown; cliffSettings?: DumpedCliffSettings }; + const parsed = JSON.parse(jsonText) as { + cliffs?: unknown; + cliffSettings?: DumpedCliffSettings; + resources?: unknown; + protos?: Record; + autoplaceControls?: Record; + }; return { cliffs: Array.isArray(parsed.cliffs) ? (parsed.cliffs as Position[]) : [], cliffSettings: parsed.cliffSettings, + // The `Array.isArray` guard is load-bearing on BOTH lists, not defensive + // padding: an EMPTY Lua table serialises to `{}`, so a resources-off arm - + // exactly the arm these captures exist for - comes back as an object and + // dies on the first `for ... of` without it. + resources: + parsed.resources === undefined + ? undefined + : Array.isArray(parsed.resources) + ? (parsed.resources as Position[]) + : [], + protos: parsed.protos, + autoplaceControls: parsed.autoplaceControls, }; } @@ -691,6 +782,39 @@ export interface OracleOptions { probeExpression?: string; /** Property {@link probeExpression} is routed onto. Default `cliff_elevation`. */ probeProperty?: string; + /** + * Override `map_gen_settings.autoplace_controls`, keyed by the GAME's own + * control names (`tungsten_ore`, `calcite`, `vulcanus_coal`, + * `sulfuric_acid_geyser` - note the underscores, and that they are NOT the + * entity names). + * + * This is {@link cliffSettings}'s trick applied one subsystem over: instead of + * arguing about whether resources and cliffs interact, set `size = 0` and let + * the game answer. It is what settled the direction of the cliff/ore exclusion + * (#84, #24) - with the resources off, cliffs appear where the game otherwise + * leaves a hole, while forcing 335 cliffs through an ore field moves the ore + * not one tile. + * + * The dump reports the controls the surface read BACK + * ({@link CliffDump.autoplaceControls}), for the same reason `cliffSettings` + * does: an override that silently failed to apply and a term that does not + * matter are otherwise indistinguishable. + */ + autoplaceControls?: Readonly< + Record + >; + /** + * Also dump `type = "resource"` entities and the collision geometry of the + * named prototypes, in the SAME run as the cliffs. + * + * Two runs cannot answer this question. "The resources moved" and "the cliffs + * moved" have to be read off one generated surface or the comparison is + * between two different worlds; and a resource arm's non-vacuity check ("the + * ore really did disappear") has to come from the arm itself. + */ + alsoResources?: boolean; + /** Entity prototypes whose collision box and mask layers to dump. Needs {@link alsoResources}. */ + protoNames?: readonly string[]; } /** @@ -878,6 +1002,9 @@ export async function sampleCliffEntitiesFull( seed, entityType: opts.entityType, cliffSettings: opts.cliffSettings, + autoplaceControls: opts.autoplaceControls, + alsoResources: opts.alsoResources, + protoNames: opts.protoNames, propertyRoutes: opts.probeExpression === undefined ? undefined