diff --git a/crates/fmw-noise/src/fixtures.rs b/crates/fmw-noise/src/fixtures.rs index 2a3f7e7..307c299 100644 --- a/crates/fmw-noise/src/fixtures.rs +++ b/crates/fmw-noise/src/fixtures.rs @@ -4538,12 +4538,16 @@ fn vulcanus_cliffs_track_the_volcanism_sliders() { // // R1 is 277 / 4 / 2 / 2 in every arm, by the control above. // - // What it says, and what it cannot: the residual MOVES with the elevation - // input - the non-R1 error rate spans 1.5% to 3.3% across arms - so it is - // not a fixed placement-side defect that the elevation leaves alone. But - // it is not monotonic in frequency either (default is the worst arm, not - // frequency 2), and with 14 to 41 residual events per arm the resolution - // is about two sigma. It localises the residual to "depends on the field", + // What it looked like, and what it turned out to be: on these three + // regions the non-R1 error rate spans 1.5% to 3.3% across arms, with + // frequency 0.5 and size 3 each about 2.9 sigma below the default - which + // read as "the residual moves with the field". It does NOT replicate. + // `the_volcanism_contrast_out_of_sample` below re-measures the same + // contrast on eight fresh regions and gets z = -1.80, the other direction. + // With 14 to 41 residual events per arm these rows cannot carry a claim + // about the lever at all; they stand as frozen counts, not as a finding. + // What IS real is the per-region spread - see the out-of-sample test. + // It does not localise the residual to a term or to "depends on the field"; // not to a term. `unscored` is game cliffs on the region boundary, every // one of them - see the volcanism sweep section (2026-09-07) of // `docs/noise/vulcanus-cliffs-NOTES.md`. @@ -4588,6 +4592,180 @@ fn vulcanus_cliffs_track_the_volcanism_sliders() { } } +/// Two-proportion z: `a` errors of `n_a` against `b` errors of `n_b`, pooled. +fn two_proportion_z(a: usize, n_a: usize, b: usize, n_b: usize) -> f64 { + #[allow(clippy::cast_precision_loss)] + let (a, n_a, b, n_b) = (a as f64, n_a as f64, b as f64, n_b as f64); + let p = (a + b) / (n_a + n_b); + (a / n_a - b / n_b) / (p * (1.0 - p) * (1.0 / n_a + 1.0 / n_b)).sqrt() +} + +/// The sweep's headline contrast, OUT OF SAMPLE (#84). +/// +/// [`vulcanus_cliffs_track_the_volcanism_sliders`] found the frequency 0.5 arm +/// halving the residual rate against the default - 41 of 1248 against 21 of +/// 1359, about 2.9 sigma - on the three regions every earlier #84 number was +/// measured on. Eight fresh regions, disjoint from all 23 captured before and +/// all outside the starting area, at the same two arms. The regions and the +/// engine-side pre-check that each contains cliffs in BOTH arms are in +/// `scripts/probes/vulcanus-cliff-volcanism/capture.ts`. +/// +/// Asserted before any count is read: the read-back agrees with the arm, and +/// every region's game cliffs MOVED between the arms - the override reached +/// the generator in every one of the eight. +#[test] +fn the_volcanism_contrast_out_of_sample() { + let fixture = load_captured_at( + "test/fixtures/oracle-vulcanus-cliff-volcanism-oos.seed123456.json", + "2.1.17", + ); + #[allow(clippy::cast_possible_truncation, clippy::cast_sign_loss)] + let seed0 = fixture.get("seed").as_f64() as u32; + let arms = fixture.get("arms").as_array(); + assert_eq!(arms.len(), 2, "default and frequency 0.5"); + assert_eq!(arms[0].get("label").as_str(), "default"); + assert_eq!(arms[1].get("label").as_str(), "frequency 0.5"); + + let cell = |c: &Json| -> (u64, u64, String) { + ( + c.get("x").as_f64().to_bits(), + c.get("y").as_f64().to_bits(), + c.get("orientation").as_str().to_owned(), + ) + }; + let game_cells = |case: &Json| -> Vec<(u64, u64, String)> { + case.get("cliffs") + .as_array() + .iter() + .filter(|c| c.get("name").as_str() == "cliff-vulcanus") + .map(cell) + .collect() + }; + + let mut per_arm: Vec<(String, Vec, SweepRow)> = Vec::new(); + for arm in arms { + let label = arm.get("label").as_str().to_owned(); + let frequency = arm.get("frequency").as_f64(); + let size = arm.get("size").as_f64(); + let reported = arm.get("reported"); + assert_eq!(reported.get("frequency").as_f64(), frequency, "{label}"); + assert_eq!(reported.get("size").as_f64(), size, "{label}"); + + let mut ctx = crate::eval::ctx::EvalCtx::new(seed0); + ctx.vulcanus_volcanism_frequency = frequency; + ctx.vulcanus_volcanism_size = size; + let cases = arm.get("cases").as_array(); + assert_eq!(cases.len(), 8, "{label}: eight regions"); + let rows: Vec = cases + .iter() + .map(|case| sweep_score(case.get("region"), case.get("cliffs").as_array(), &ctx)) + .collect(); + let total = rows.iter().fold(SweepRow::ZERO, |acc, r| acc.add(*r)); + for (i, r) in rows.iter().enumerate() { + eprintln!("{label:>14} region {i}: {r:?}"); + } + eprintln!("{label:>14} total: {total:?}"); + per_arm.push((label, rows, total)); + } + + // Every region moved on the game side, or the lever never reached it. + let default_cases = arms[0].get("cases").as_array(); + let moved_cases = arms[1].get("cases").as_array(); + for (i, (a, b)) in default_cases.iter().zip(moved_cases).enumerate() { + assert_eq!( + a.get("region").get("x0").as_f64(), + b.get("region").get("x0").as_f64() + ); + assert_ne!( + game_cells(a), + game_cells(b), + "region {i}: must move under frequency 0.5" + ); + } + + // The frozen rows, measured 2026-09-07. Read a moved number, do not adjust + // it. Regions in the order `OUT_OF_SAMPLE` lists them. + let row = |matched, wrong, surplus, missing, unscored| SweepRow { + matched, + wrong, + surplus, + missing, + unscored, + }; + let expected: [(&str, [SweepRow; 8]); 2] = [ + ( + "default", + [ + row(309, 6, 5, 0, 12), + row(208, 4, 6, 3, 11), + row(763, 1, 4, 0, 13), + row(462, 5, 6, 0, 24), + row(703, 1, 1, 0, 8), + row(518, 7, 13, 0, 15), + row(834, 11, 16, 0, 12), + row(697, 13, 22, 0, 11), + ], + ), + ( + "frequency 0.5", + [ + row(612, 3, 8, 5, 13), + row(768, 24, 47, 3, 27), + row(199, 1, 0, 0, 6), + row(774, 2, 4, 1, 24), + row(439, 2, 3, 0, 11), + row(255, 1, 0, 1, 18), + row(641, 8, 11, 0, 0), + row(319, 6, 8, 0, 2), + ], + ), + ]; + for ((label, rows, total), (want_label, want)) in per_arm.iter().zip(expected) { + assert_eq!(label, want_label); + assert_eq!(rows.as_slice(), want.as_slice(), "{label}: per-region rows"); + assert_eq!( + *total, + want.iter().fold(SweepRow::ZERO, |acc, r| acc.add(*r)), + "{label}: totals" + ); + } + + // THE CONTRAST DOES NOT REPLICATE. In sample it was 41 of 1248 against 21 + // of 1359, z = +2.9 in favour of frequency 0.5. Out of sample, on eight + // regions and 3.5x the cells, the default arm is the BETTER one and the + // gap is inside noise. So the sweep's "the residual moves with the field" + // was a small-n reading - `docs/noise/vulcanus-cliffs-NOTES.md` records + // both the claim and its refutation - and the comparison does not support + // volcanism as a lever the residual responds to. + let errors = |r: &SweepRow| r.wrong + r.surplus + r.missing; + let comparable = |r: &SweepRow| r.matched + r.wrong + r.missing; + let (d, m) = (&per_arm[0].2, &per_arm[1].2); + assert_eq!((errors(d), comparable(d)), (124, 4545), "default: 2.73%"); + assert_eq!( + (errors(m), comparable(m)), + (138, 4064), + "frequency 0.5: 3.40%" + ); + let z = two_proportion_z(errors(d), comparable(d), errors(m), comparable(m)); + assert!( + (-1.85..-1.75).contains(&z), + "z = {z:.3}: measured -1.80, and the SIGN is the finding" + ); + + // What is real is the spread BETWEEN regions, at one slider setting: the + // frequency 0.5 arm's `[-2200,-1500]` carries 74 of that arm's 138 errors + // on its own - 24 wrong and 47 surplus of 795 comparable cells, 9.3% - while + // `[1800,3400]` in the same arm has 1 of 200. A residual that concentrated + // is a lead the diffuse in-sample numbers never offered. + let worst = &per_arm[1].1[1]; + assert_eq!( + (worst.wrong, worst.surplus), + (24, 47), + "the concentrated region" + ); + assert_eq!(errors(worst), 74); +} + /// The Vulcanus cliff fields against the game's own samples at the game's own /// lattice - 12,675 corners across three regions. /// diff --git a/docs/noise/vulcanus-cliffs-NOTES.md b/docs/noise/vulcanus-cliffs-NOTES.md index 4ac2baa..d5468dd 100644 --- a/docs/noise/vulcanus-cliffs-NOTES.md +++ b/docs/noise/vulcanus-cliffs-NOTES.md @@ -4714,3 +4714,56 @@ measurement is more regions per arm, not more arms - the capture is 2 seconds per region now, so eight fresh regions at two arms (default, frequency 0.5) is under a minute and would put the 2.9 sigma either side of 4. Raise n before slicing again, per the section above this one. + +## RAISING N on the volcanism contrast: it does NOT replicate (2026-09-07, #84) + +The section above ended with "raise n before slicing again", so this is that, +done the same day and before the finding could be cited anywhere else. The +sweep's headline was frequency 0.5 halving the residual rate on the three known +regions: 41 of 1248 against 21 of 1359, z = +2.9. **Out of sample, on eight +fresh regions and 3.5x the cells, the default arm is the better one and the gap +is inside noise:** + +| arm | R2 + R3 (in sample) | rate | eight fresh regions | rate | +| ------------- | ------------------- | --------: | ------------------- | --------: | +| default | 41 of 1248 | 3.29% | 124 of 4545 | **2.73%** | +| frequency 0.5 | 21 of 1359 | **1.55%** | 138 of 4064 | 3.40% | +| z | | **+2.9** | | **-1.80** | + +Fixture: `oracle-vulcanus-cliff-volcanism-oos.seed123456.json`, eight 256x256 +regions disjoint from all 23 captured before, all more than 1000 tiles from the +origin, each checked on the engine for cliffs in BOTH arms before capture (the +table is in `capture.ts`). Test: `the_volcanism_contrast_out_of_sample`. The +read-back guard held on all sixteen runs and every region moved between arms. + +**So the sweep's "the residual moves with the field" was a small-n reading and +is withdrawn.** The out-of-sample comparison does not support volcanism as a lever the residual responds to; it cannot rule one out either, only bound it below what three regions could show. That also +means the "scales or flat" framing the sweep was built to decide has no answer +from this lever: neither elevation-side nor placement-side is favoured by it. + +**What IS real is the spread between REGIONS at one slider setting**, which +the three in-sample regions were too few to show. Per region, frequency 0.5 arm, +errors of comparable cells: + +| region | wrong | surplus | missing | comparable | rate | +| --------------- | ----: | ------: | ------: | ---------: | ----: | +| `[-2200,-1500]` | 24 | 47 | 3 | 795 | 9.3% | +| `[2600,800]` | 6 | 8 | 0 | 325 | 4.3% | +| `[1400,-3200]` | 8 | 11 | 0 | 649 | 2.9% | +| `[2000,-1200]` | 3 | 8 | 5 | 620 | 2.6% | +| `[4000,-600]` | 2 | 3 | 0 | 441 | 1.1% | +| `[600,2200]` | 2 | 4 | 1 | 777 | 0.9% | +| `[-2800,400]` | 1 | 0 | 1 | 257 | 0.8% | +| `[1800,3400]` | 1 | 0 | 0 | 200 | 0.5% | + +One region carries 74 of the arm's 138 errors, and 47 of them are SURPLUS - +cells the port places and the game does not - which is the ore rule's +signature from the earlier sections (`cliff_removal_probability`, the destroy +stage) far more than the connection pass's. At the default the same region is +13 errors of 215. A residual this concentrated is a lead the diffuse in-sample +numbers never offered: one region, one arm, 795 cells, and the port over-places +by 6%. + +Cost of the whole exercise: 28 seconds of capture. The cost of NOT doing it +would have been a #84 comment, a memory and a CLAUDE.md line all citing a 2.9 +sigma that does not exist. diff --git a/scripts/probes/vulcanus-cliff-volcanism/capture.ts b/scripts/probes/vulcanus-cliff-volcanism/capture.ts index c54da1e..ad2cb12 100644 --- a/scripts/probes/vulcanus-cliff-volcanism/capture.ts +++ b/scripts/probes/vulcanus-cliff-volcanism/capture.ts @@ -3,7 +3,12 @@ * regions of `oracle-vulcanus-cliff-entities.seed123456.json`, captured at * several settings of the `vulcanus_volcanism` autoplace control (#84). * - * node --experimental-strip-types scripts/probes/vulcanus-cliff-volcanism/capture.ts + * node --experimental-strip-types scripts/probes/vulcanus-cliff-volcanism/capture.ts sweep + * node --experimental-strip-types scripts/probes/vulcanus-cliff-volcanism/capture.ts oos + * + * `sweep` is the four-arm capture over the three known regions; `oos` is the + * out-of-sample replication - eight FRESH regions at two arms, described at + * `OUT_OF_SAMPLE` below. * * ## Why this lever * @@ -74,14 +79,6 @@ const run = promisify(execFile); const REPO = join(dirname(fileURLToPath(import.meta.url)), "..", "..", ".."); const FIXTURES = join(REPO, "test", "fixtures"); const ORACLE = join(homedir(), ".cargo", "bin", "factorio-oracle"); -const OUT = "oracle-vulcanus-cliff-volcanism-sweep.seed123456.json"; - -/** The three regions of `oracle-vulcanus-cliff-entities.seed123456.json`, verbatim. */ -const REGIONS: readonly Region[] = [ - { x0: 0, y0: 0, x1: 256, y1: 256 }, - { x0: 1500, y0: 1500, x1: 1756, y1: 1756 }, - { x0: -1200, y0: 800, x1: -944, y1: 1056 }, -]; /** Every committed Vulcanus cliff fixture forces the surface seed to this. */ const SEED = 123456; @@ -97,13 +94,95 @@ interface Arm { * 3), and the default arm passes NO override, so its read-back reports what the * planet ships with rather than an echo of what was written. */ -const ARMS: readonly Arm[] = [ +const SWEEP_ARMS: readonly Arm[] = [ { label: "default", frequency: 1, size: 1 }, { label: "frequency 0.5", frequency: 0.5, size: 1 }, { label: "frequency 2", frequency: 2, size: 1 }, { label: "size 3", frequency: 1, size: 3 }, ]; +interface Capture { + readonly out: string; + readonly regions: readonly Region[]; + readonly arms: readonly Arm[]; + readonly comment: string; +} + +/** The four-arm sweep over the three regions of `oracle-vulcanus-cliff-entities`, verbatim. */ +const SWEEP: Capture = { + out: "oracle-vulcanus-cliff-volcanism-sweep.seed123456.json", + regions: [ + { x0: 0, y0: 0, x1: 256, y1: 256 }, + { x0: 1500, y0: 1500, x1: 1756, y1: 1756 }, + { x0: -1200, y0: 800, x1: -944, y1: 1056 }, + ], + arms: SWEEP_ARMS, + comment: + "Every cliff entity (find_entities_filtered{type='cliff'}) the game placed in the three " + + "regions of oracle-vulcanus-cliff-entities.seed123456.json, once per ARM of the " + + "vulcanus_volcanism autoplace control (#84). R1 [0,0] is inside the starting area and is " + + "the CONTROL: it must not move between arms. The default arm is a re-capture of the 2.1.12 " + + "fixture at this version.", +}; + +/** + * The out-of-sample replication of the sweep's headline contrast - default + * against frequency 0.5, which READ as halving the residual rate (41 of 1248 + * against 21 of 1359, about 2.9 sigma) on the three known regions. It did not + * replicate: out of sample the default arm is the better one, z = -1.80. See + * `the_volcanism_contrast_out_of_sample` in `fixtures.rs`. + * + * Eight FRESH 256x256 regions, disjoint from every one of the 23 Vulcanus + * cliff regions already captured (listed by walking every + * `oracle-vulcanus-cliff*` fixture for `{x0, y0, x1, y1}`), all more than + * 1000 tiles from the origin so none is inside the starting area R1 proved + * blind, and spread over all four quadrants. Two arms rather than four + * because n per arm, not arm count, is what the 2.9 sigma needs. + * + * Each was checked on the engine before capture - "a window must contain the + * thing it grades" - for cliff pixels in BOTH arms and for movement between + * them, cliffs-view at 1 tile/px over 65,536 pixels: + * + * | region | cliff px default | cliff px f0.5 | moved | + * | --------------- | ---------------: | ------------: | -----: | + * | `[2000,-1200]` | 5,120 | 9,968 | 50,873 | + * | `[-2200,-1500]` | 3,488 | 13,424 | 62,935 | + * | `[1800,3400]` | 12,288 | 3,200 | 57,775 | + * | `[600,2200]` | 7,568 | 12,480 | 51,824 | + * | `[4000,-600]` | 11,280 | 7,104 | 60,403 | + * | `[-2800,400]` | 8,608 | 4,096 | 56,648 | + * | `[1400,-3200]` | 13,776 | 10,560 | 42,280 | + * | `[2600,800]` | 11,712 | 5,328 | 61,609 | + * + * Four candidates were dropped for having under 2,000 cliff pixels in one arm + * (`[-3200,-2000]` 384, `[3200,1600]` 1,200, `[-1400,-2600]` 1,904, + * `[-600,-2000]` 896): a region with almost no cliffs in an arm grades almost + * nothing there. + */ +const OUT_OF_SAMPLE: Capture = { + out: "oracle-vulcanus-cliff-volcanism-oos.seed123456.json", + regions: [ + { x0: 2000, y0: -1200, x1: 2256, y1: -944 }, + { x0: -2200, y0: -1500, x1: -1944, y1: -1244 }, + { x0: 1800, y0: 3400, x1: 2056, y1: 3656 }, + { x0: 600, y0: 2200, x1: 856, y1: 2456 }, + { x0: 4000, y0: -600, x1: 4256, y1: -344 }, + { x0: -2800, y0: 400, x1: -2544, y1: 656 }, + { x0: 1400, y0: -3200, x1: 1656, y1: -2944 }, + { x0: 2600, y0: 800, x1: 2856, y1: 1056 }, + ], + arms: SWEEP_ARMS.filter((a) => a.label === "default" || a.label === "frequency 0.5"), + comment: + "Every cliff entity (find_entities_filtered{type='cliff'}) the game placed in eight FRESH " + + "256x256 regions, disjoint from every Vulcanus cliff region captured before it, at the " + + "default and the frequency 0.5 arm of the vulcanus_volcanism control - the out-of-sample " + + "replication of oracle-vulcanus-cliff-volcanism-sweep's headline contrast (#84). Every " + + "region is more than 1000 tiles from the origin, outside the starting area the sweep's R1 " + + "proved blind to the slider.", +}; + +const CAPTURES: Record = { sweep: SWEEP, oos: OUT_OF_SAMPLE }; + interface Case { readonly region: Region; readonly cliffs: Position[]; @@ -170,17 +249,31 @@ async function captureRegion(arm: Arm, region: Region, version: string) { 2, ), ); + // A successful run throws (DUMPED-OK), so the error cannot be re-thrown + // here. It is KEPT, because a real failure - a missing binary, a Lua error + // before the dump, a timeout - also lands here, and without it the next + // line reports an ENOENT on the dump that hides the cause. + let oracleError: unknown; try { await run( ORACLE, ["run", "--probe", probePath, "--work-dir", workDir, "--version", version], { maxBuffer: 64 * 1024 * 1024 }, ); - } catch { - // Expected: see the DUMPED-OK note above. + } catch (e) { + oracleError = e; } const dumpPath = join(workDir, "write", "script-output", "oracle-dump.json"); - const dump = parseCliffDumpFull(await readFile(dumpPath, "utf8")); + let dumpText: string; + try { + dumpText = await readFile(dumpPath, "utf8"); + } catch (e) { + throw new Error( + `${arm.label} [${String(region.x0)},${String(region.y0)}]: no dump at ${dumpPath}`, + { cause: oracleError ?? e }, + ); + } + const dump = parseCliffDumpFull(dumpText); const reported = dump.autoplaceControls?.vulcanus_volcanism; if (reported === undefined) { throw new Error(`${arm.label}: the surface reported no vulcanus_volcanism control`); @@ -193,13 +286,18 @@ async function captureRegion(arm: Arm, region: Region, version: string) { } async function main(): Promise { + const which = process.argv[2] ?? "sweep"; + const capture = Object.hasOwn(CAPTURES, which) ? CAPTURES[which] : undefined; + if (capture === undefined) { + throw new Error(`unknown capture "${which}"; one of ${Object.keys(CAPTURES).join(", ")}`); + } const version = await installedVersion(); - console.log(`capturing against Factorio ${version}`); + console.log(`capturing "${which}" against Factorio ${version}`); const arms: CapturedArm[] = []; - for (const arm of ARMS) { + for (const arm of capture.arms) { const cases: Case[] = []; let reported: CapturedArm["reported"] | undefined; - for (const region of REGIONS) { + for (const region of capture.regions) { const started = Date.now(); const got = await captureRegion(arm, region, version); // The read-back has to AGREE with the arm, per region, or the arm is not @@ -224,24 +322,22 @@ async function main(): Promise { const fixture = { _comment: - `Ground truth from Factorio ${version} via factorio-oracle. Every cliff entity ` + - "(find_entities_filtered{type='cliff'}) the game placed in the three regions of " + - "oracle-vulcanus-cliff-entities.seed123456.json, once per ARM of the vulcanus_volcanism " + - "autoplace control (#84). Each arm records the control the SURFACE reported back, so an " + - "override that failed to apply cannot pass as a setting that does not matter. Positions " + - "are cliff cell centres on the 4-tile grid; each entry carries LuaEntity.cliff_orientation. " + - "Sampled on a create_surface() surface whose seed is FORCED to `seed`, like every other " + - "Vulcanus cliff fixture. R1 [0,0] is inside the starting area and is the CONTROL: it must " + - "not move between arms. The default arm is a re-capture of the 2.1.12 fixture at this " + - "version. Graded by crates/fmw-noise/src/fixtures.rs. Regenerate: " + - "node --experimental-strip-types scripts/probes/vulcanus-cliff-volcanism/capture.ts", + `Ground truth from Factorio ${version} via factorio-oracle. ${capture.comment} ` + + "Each arm records the control the SURFACE reported back, so an override that failed to " + + "apply cannot pass as a setting that does not matter. Positions are cliff cell centres on " + + "the 4-tile grid; each entry carries LuaEntity.cliff_orientation. Sampled on a " + + "create_surface() surface whose seed is FORCED to `seed`, like every other Vulcanus cliff " + + "fixture. Graded by crates/fmw-noise/src/fixtures.rs. Regenerate: " + + `node --experimental-strip-types scripts/probes/vulcanus-cliff-volcanism/capture.ts ${which}`, _factorioVersion: version, seed: SEED, arms, }; - const out = join(FIXTURES, OUT); + const out = join(FIXTURES, capture.out); await writeFile(out, `${JSON.stringify(fixture, null, 2)}\n`); - console.log(`wrote ${out} (${String(arms.length)} arms x ${String(REGIONS.length)} regions)`); + console.log( + `wrote ${out} (${String(arms.length)} arms x ${String(capture.regions.length)} regions)`, + ); } await main(); diff --git a/test/fixtures/PROVENANCE.json b/test/fixtures/PROVENANCE.json index f0df298..dd72e68 100644 --- a/test/fixtures/PROVENANCE.json +++ b/test/fixtures/PROVENANCE.json @@ -307,7 +307,11 @@ }, "oracle-vulcanus-cliff-volcanism-sweep.seed123456.json": { "factorioVersion": "2.1.17", - "evidence": "captured 2026-09-07 by scripts/probes/vulcanus-cliff-volcanism/capture.ts through factorio-oracle, which read 2.1.17 (build 87315) off the installed binary and passed it as --version. The three regions of oracle-vulcanus-cliff-entities, each captured once per ARM of the vulcanus_volcanism autoplace control (default, frequency 0.5, frequency 2, size 3), 2s per region. Each arm records the control the SURFACE reported back and the capture refuses an arm whose read-back disagrees, so an override that failed to apply cannot pass as a setting that does not matter. The default arm reproduces the 2.1.12 fixture cell for cell; R1 [0,0] is identical in all four arms, which is the control - it sits inside the starting area, where volcanism reaches nothing. Same Lua as every committed cliff fixture (test/oracle/oracle.ts buildCliffControlLua), seed forced to 123456 on a create_surface() Vulcanus surface." + "evidence": "captured 2026-09-07 by scripts/probes/vulcanus-cliff-volcanism/capture.ts through factorio-oracle, which read 2.1.17 (build 87315) off the installed binary and passed it as --version. The three regions of oracle-vulcanus-cliff-entities, each captured once per ARM of the vulcanus_volcanism autoplace control (default, frequency 0.5, frequency 2, size 3), 2s per region. Each arm records the control the SURFACE reported back and the capture refuses an arm whose read-back disagrees, so an override that failed to apply cannot pass as a setting that does not matter. The default arm reproduces the 2.1.12 fixture cell for cell; R1 [0,0] is identical in all four arms, which is the control - it sits inside the starting area, where volcanism reaches nothing. Same Lua as every committed cliff fixture (test/oracle/oracle.ts buildCliffControlLua), seed forced to 123456 on a create_surface() Vulcanus surface.\n\nRegenerated 2026-09-07 after the runner grew an out-of-sample mode: byte-identical data, only the _comment text moved." + }, + "oracle-vulcanus-cliff-volcanism-oos.seed123456.json": { + "factorioVersion": "2.1.17", + "evidence": "captured 2026-09-07 by scripts/probes/vulcanus-cliff-volcanism/capture.ts oos through factorio-oracle, which read 2.1.17 (build 87315) off the installed binary and passed it as --version. The out-of-sample replication of the sweep's headline contrast: eight FRESH 256x256 regions, disjoint from all 23 Vulcanus cliff regions captured before, all more than 1000 tiles from the origin, at the default and the frequency 0.5 arm. Each region was checked on the engine before capture for cliff pixels in both arms and for movement between them (the table in the script). Same read-back guard and same Lua as the sweep fixture." }, "oracle-vulcanus-cliff-fine-sweep.seed123456.json": { "factorioVersion": "2.1.12", diff --git a/test/fixtures/oracle-vulcanus-cliff-volcanism-oos.seed123456.json b/test/fixtures/oracle-vulcanus-cliff-volcanism-oos.seed123456.json new file mode 100644 index 0000000..879e20c --- /dev/null +++ b/test/fixtures/oracle-vulcanus-cliff-volcanism-oos.seed123456.json @@ -0,0 +1,53555 @@ +{ + "_comment": "Ground truth from Factorio 2.1.17 via factorio-oracle. Every cliff entity (find_entities_filtered{type='cliff'}) the game placed in eight FRESH 256x256 regions, disjoint from every Vulcanus cliff region captured before it, at the default and the frequency 0.5 arm of the vulcanus_volcanism control - the out-of-sample replication of oracle-vulcanus-cliff-volcanism-sweep's headline contrast (#84). Every region is more than 1000 tiles from the origin, outside the starting area the sweep's R1 proved blind to the slider. Each arm records the control the SURFACE reported back, so an override that failed to apply cannot pass as a setting that does not matter. Positions are cliff cell centres on the 4-tile grid; each entry carries LuaEntity.cliff_orientation. Sampled on a create_surface() surface whose seed is FORCED to `seed`, like every other Vulcanus cliff fixture. Graded by crates/fmw-noise/src/fixtures.rs. Regenerate: node --experimental-strip-types scripts/probes/vulcanus-cliff-volcanism/capture.ts oos", + "_factorioVersion": "2.1.17", + "seed": 123456, + "arms": [ + { + "label": "default", + "frequency": 1, + "size": 1, + "reported": { + "frequency": 1, + "size": 1, + "richness": 1 + }, + "cases": [ + { + "region": { + "x0": 2000, + "y0": -1200, + "x1": 2256, + "y1": -944 + }, + "cliffs": [ + { + "x": 2162, + "y": -1201.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2174, + "y": -1201.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2194, + "y": -1201.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2198, + "y": -1201.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2226, + "y": -1201.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2250, + "y": -1201.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2146, + "y": -1197.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2150, + "y": -1197.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2154, + "y": -1197.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2158, + "y": -1197.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2162, + "y": -1197.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2174, + "y": -1197.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2222, + "y": -1197.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2226, + "y": -1197.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2250, + "y": -1197.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2062, + "y": -1193.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2066, + "y": -1193.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2138, + "y": -1193.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2142, + "y": -1193.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2146, + "y": -1193.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2170, + "y": -1193.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2174, + "y": -1193.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2234, + "y": -1193.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2246, + "y": -1193.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2250, + "y": -1193.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2058, + "y": -1189.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2062, + "y": -1189.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2066, + "y": -1189.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2070, + "y": -1189.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2134, + "y": -1189.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2138, + "y": -1189.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2166, + "y": -1189.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2170, + "y": -1189.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2218, + "y": -1189.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2222, + "y": -1189.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2234, + "y": -1189.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2246, + "y": -1189.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2254, + "y": -1189.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2258, + "y": -1189.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2054, + "y": -1185.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2058, + "y": -1185.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2070, + "y": -1185.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2154, + "y": -1185.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2158, + "y": -1185.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2162, + "y": -1185.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2166, + "y": -1185.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2222, + "y": -1185.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2226, + "y": -1185.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2230, + "y": -1185.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2234, + "y": -1185.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2054, + "y": -1181.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2058, + "y": -1181.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2070, + "y": -1181.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2242, + "y": -1181.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2058, + "y": -1177.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2062, + "y": -1177.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2066, + "y": -1177.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2070, + "y": -1177.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2234, + "y": -1177.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2238, + "y": -1177.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2242, + "y": -1177.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2198, + "y": -1173.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2226, + "y": -1173.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2230, + "y": -1173.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2234, + "y": -1173.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2042, + "y": -1169.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2046, + "y": -1169.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2198, + "y": -1169.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2202, + "y": -1169.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2226, + "y": -1169.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2026, + "y": -1165.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2030, + "y": -1165.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2034, + "y": -1165.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2038, + "y": -1165.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2042, + "y": -1165.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2046, + "y": -1165.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2050, + "y": -1165.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2054, + "y": -1165.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2058, + "y": -1165.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2202, + "y": -1165.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2222, + "y": -1165.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2226, + "y": -1165.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2026, + "y": -1161.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2042, + "y": -1161.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2046, + "y": -1161.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2058, + "y": -1161.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2062, + "y": -1161.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2066, + "y": -1161.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2202, + "y": -1161.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2206, + "y": -1161.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2222, + "y": -1161.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2022, + "y": -1157.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2042, + "y": -1157.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2046, + "y": -1157.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2050, + "y": -1157.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2054, + "y": -1157.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2066, + "y": -1157.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2206, + "y": -1157.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2222, + "y": -1157.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2242, + "y": -1157.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2246, + "y": -1157.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2022, + "y": -1153.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2054, + "y": -1153.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2066, + "y": -1153.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2070, + "y": -1153.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2206, + "y": -1153.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2210, + "y": -1153.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2242, + "y": -1153.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2246, + "y": -1153.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2050, + "y": -1149.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2054, + "y": -1149.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2070, + "y": -1149.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2226, + "y": -1149.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2230, + "y": -1149.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2242, + "y": -1149.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2246, + "y": -1149.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2250, + "y": -1149.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2066, + "y": -1145.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2070, + "y": -1145.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2230, + "y": -1145.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2250, + "y": -1145.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2254, + "y": -1145.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2258, + "y": -1145.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2058, + "y": -1141.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2066, + "y": -1141.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2230, + "y": -1141.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2058, + "y": -1137.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2062, + "y": -1137.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2066, + "y": -1137.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2230, + "y": -1137.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2234, + "y": -1137.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2246, + "y": -1137.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2250, + "y": -1137.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2254, + "y": -1137.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2062, + "y": -1133.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2066, + "y": -1133.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2218, + "y": -1133.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2234, + "y": -1133.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2238, + "y": -1133.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2242, + "y": -1133.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2246, + "y": -1133.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2254, + "y": -1133.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2258, + "y": -1133.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2218, + "y": -1129.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2222, + "y": -1129.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2242, + "y": -1129.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2246, + "y": -1129.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2250, + "y": -1129.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2254, + "y": -1129.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2206, + "y": -1125.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2210, + "y": -1125.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2222, + "y": -1125.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2238, + "y": -1125.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2242, + "y": -1125.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2250, + "y": -1125.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2254, + "y": -1125.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2258, + "y": -1125.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2198, + "y": -1121.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2202, + "y": -1121.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2210, + "y": -1121.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2214, + "y": -1121.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2218, + "y": -1121.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2222, + "y": -1121.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2226, + "y": -1121.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2230, + "y": -1121.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2234, + "y": -1121.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2238, + "y": -1121.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2246, + "y": -1121.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2250, + "y": -1121.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2182, + "y": -1117.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2186, + "y": -1117.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2202, + "y": -1117.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2206, + "y": -1117.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2210, + "y": -1117.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2218, + "y": -1117.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2222, + "y": -1117.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2226, + "y": -1117.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2230, + "y": -1117.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2234, + "y": -1117.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2238, + "y": -1117.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2242, + "y": -1117.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2246, + "y": -1117.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2186, + "y": -1113.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2190, + "y": -1113.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2194, + "y": -1113.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2210, + "y": -1113.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2214, + "y": -1113.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2218, + "y": -1113.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2222, + "y": -1113.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2234, + "y": -1113.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2238, + "y": -1113.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2246, + "y": -1113.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2250, + "y": -1113.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2254, + "y": -1113.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2258, + "y": -1113.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2170, + "y": -1109.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2174, + "y": -1109.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2222, + "y": -1109.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2226, + "y": -1109.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2230, + "y": -1109.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2234, + "y": -1109.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2238, + "y": -1109.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2242, + "y": -1109.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2246, + "y": -1109.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2054, + "y": -1105.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2170, + "y": -1105.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2174, + "y": -1105.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2178, + "y": -1105.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2222, + "y": -1105.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2226, + "y": -1105.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2230, + "y": -1105.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2234, + "y": -1105.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2238, + "y": -1105.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2242, + "y": -1105.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2246, + "y": -1105.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2250, + "y": -1105.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2254, + "y": -1105.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2258, + "y": -1105.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2050, + "y": -1101.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2054, + "y": -1101.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2170, + "y": -1101.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2174, + "y": -1101.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2178, + "y": -1101.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2234, + "y": -1101.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2238, + "y": -1101.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2242, + "y": -1101.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2246, + "y": -1101.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2250, + "y": -1101.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2042, + "y": -1097.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2046, + "y": -1097.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2050, + "y": -1097.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2230, + "y": -1097.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2234, + "y": -1097.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2226, + "y": -1093.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2230, + "y": -1093.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2074, + "y": -1089.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2078, + "y": -1089.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2226, + "y": -1089.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2230, + "y": -1089.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2177.6875, + "y": -1087.375, + "name": "crater-cliff", + "orientation": "south-to-north" + }, + { + "x": 2191.6875, + "y": -1087.375, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": 2074, + "y": -1085.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2078, + "y": -1085.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2138, + "y": -1085.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2142, + "y": -1085.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2146, + "y": -1085.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2230, + "y": -1085.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2179.73828125, + "y": -1083.87890625, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": 2184.6875, + "y": -1082.42578125, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": 2189.63671875, + "y": -1083.87890625, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": 2230, + "y": -1081.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2230, + "y": -1077.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2230, + "y": -1073.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2206, + "y": -1069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2210, + "y": -1069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2214, + "y": -1069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2218, + "y": -1069.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2230, + "y": -1069.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2202, + "y": -1065.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2206, + "y": -1065.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2218, + "y": -1065.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2222, + "y": -1065.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2226, + "y": -1065.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2230, + "y": -1065.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2222, + "y": -1061.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2226, + "y": -1061.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2234, + "y": -1057.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2238, + "y": -1057.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2242, + "y": -1057.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2234, + "y": -1053.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2238, + "y": -1053.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2242, + "y": -1053.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2210, + "y": -1049.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2214, + "y": -1049.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2218, + "y": -1049.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2222, + "y": -1049.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2226, + "y": -1049.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2238, + "y": -1049.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2242, + "y": -1049.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2030, + "y": -1045.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2034, + "y": -1045.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2226, + "y": -1045.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2230, + "y": -1045.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2238, + "y": -1045.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2030, + "y": -1041.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2034, + "y": -1041.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2230, + "y": -1041.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2034, + "y": -1037.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2014, + "y": -997.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2018, + "y": -997.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2046, + "y": -997.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2050, + "y": -997.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2014, + "y": -993.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2042, + "y": -993.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2046, + "y": -993.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2050, + "y": -993.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2142, + "y": -993.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2146, + "y": -993.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2014, + "y": -989.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2050, + "y": -989.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2054, + "y": -989.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2142, + "y": -989.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2146, + "y": -989.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2014, + "y": -985.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2018, + "y": -985.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2022, + "y": -985.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2054, + "y": -985.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2014, + "y": -981.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2018, + "y": -981.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2122, + "y": -977.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2122, + "y": -973.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2122, + "y": -969.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2174, + "y": -965.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2178, + "y": -965.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2170, + "y": -961.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2174, + "y": -961.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2178, + "y": -961.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2110, + "y": -957.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2118, + "y": -957.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2170, + "y": -957.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2174, + "y": -957.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2178, + "y": -957.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2106, + "y": -953.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2110, + "y": -953.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2114, + "y": -953.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2118, + "y": -953.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2106, + "y": -949.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2110, + "y": -949.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2114, + "y": -949.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2102, + "y": -945.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2106, + "y": -945.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2110, + "y": -945.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + } + ] + }, + { + "region": { + "x0": -2200, + "y0": -1500, + "x1": -1944, + "y1": -1244 + }, + "cliffs": [ + { + "x": -2086, + "y": -1501.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2074, + "y": -1501.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2086, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2082, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2074, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2070, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2082, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2078, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2070, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2078, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2074, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2070, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2018, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2014, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2074, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2070, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2018, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2014, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2074, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2070, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2078, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2074, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2070, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2082, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2078, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2070, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2086, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2082, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2074, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2070, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2154, + "y": -1465.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2150, + "y": -1465.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2146, + "y": -1465.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2086, + "y": -1465.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2078, + "y": -1465.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2074, + "y": -1465.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2166, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2162, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2158, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2154, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2130, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2126, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2090, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2086, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2082, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2078, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2126, + "y": -1457.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2122, + "y": -1457.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2090, + "y": -1457.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2086, + "y": -1457.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2082, + "y": -1457.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1986, + "y": -1457.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2182, + "y": -1453.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2122, + "y": -1453.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2090, + "y": -1453.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2086, + "y": -1453.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1986, + "y": -1453.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2182, + "y": -1449.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2178, + "y": -1449.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2122, + "y": -1449.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2094, + "y": -1449.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2090, + "y": -1449.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2086, + "y": -1449.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1986, + "y": -1449.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2122, + "y": -1445.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2118, + "y": -1445.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2094, + "y": -1445.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2090, + "y": -1445.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2086, + "y": -1445.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2118, + "y": -1441.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2094, + "y": -1441.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2090, + "y": -1441.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2146, + "y": -1437.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2134, + "y": -1437.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2110, + "y": -1437.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2106, + "y": -1437.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2102, + "y": -1437.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2098, + "y": -1437.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2094, + "y": -1437.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2090, + "y": -1437.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2146, + "y": -1433.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2134, + "y": -1433.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2094, + "y": -1433.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2090, + "y": -1433.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2178, + "y": -1429.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2174, + "y": -1429.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2146, + "y": -1429.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2134, + "y": -1429.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2102, + "y": -1429.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2098, + "y": -1429.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2094, + "y": -1429.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2182, + "y": -1425.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2178, + "y": -1425.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2174, + "y": -1425.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2146, + "y": -1425.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2202, + "y": -1421.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2198, + "y": -1421.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2194, + "y": -1421.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2190, + "y": -1421.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2182, + "y": -1421.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2174, + "y": -1421.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2202, + "y": -1417.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2198, + "y": -1417.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2194, + "y": -1417.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2190, + "y": -1417.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2186, + "y": -1417.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2182, + "y": -1417.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2174, + "y": -1417.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2170, + "y": -1417.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2202, + "y": -1413.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2198, + "y": -1413.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2190, + "y": -1413.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2186, + "y": -1413.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2182, + "y": -1413.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2170, + "y": -1413.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2198, + "y": -1409.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2190, + "y": -1409.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2186, + "y": -1409.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2182, + "y": -1409.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2178, + "y": -1409.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2174, + "y": -1409.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2170, + "y": -1409.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2202, + "y": -1405.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2198, + "y": -1405.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2190, + "y": -1405.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2186, + "y": -1405.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2182, + "y": -1405.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2178, + "y": -1405.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2174, + "y": -1405.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2170, + "y": -1405.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2194, + "y": -1401.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2190, + "y": -1401.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2186, + "y": -1401.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2182, + "y": -1401.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2198, + "y": -1397.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2194, + "y": -1397.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2186, + "y": -1397.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2182, + "y": -1397.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2202, + "y": -1393.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2198, + "y": -1393.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2190, + "y": -1393.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2186, + "y": -1393.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2182, + "y": -1393.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2174, + "y": -1393.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2170, + "y": -1393.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2114, + "y": -1393.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2110, + "y": -1393.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2202, + "y": -1389.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2198, + "y": -1389.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2194, + "y": -1389.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2190, + "y": -1389.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2186, + "y": -1389.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2182, + "y": -1389.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2178, + "y": -1389.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2174, + "y": -1389.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2114, + "y": -1389.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2110, + "y": -1389.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2202, + "y": -1385.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2198, + "y": -1385.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2194, + "y": -1385.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2190, + "y": -1385.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2186, + "y": -1385.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2182, + "y": -1385.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2178, + "y": -1385.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2186, + "y": -1381.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2182, + "y": -1381.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2182, + "y": -1361.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2178, + "y": -1361.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2174, + "y": -1361.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2182, + "y": -1357.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2174, + "y": -1357.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2170, + "y": -1357.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2166, + "y": -1357.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2186, + "y": -1353.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2166, + "y": -1353.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2162, + "y": -1353.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2190, + "y": -1349.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2186, + "y": -1349.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2162, + "y": -1349.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2202, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2198, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2194, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2190, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2162, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2202, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2198, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2194, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2162, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2194, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2190, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2186, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2166, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2162, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2186, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2182, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2178, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2174, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2170, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2166, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2178, + "y": -1329.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2174, + "y": -1329.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2086, + "y": -1277.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2090, + "y": -1273.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2086, + "y": -1273.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2090, + "y": -1269.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2130, + "y": -1265.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2126, + "y": -1265.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2090, + "y": -1265.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2130, + "y": -1261.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2126, + "y": -1261.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2090, + "y": -1261.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2086, + "y": -1261.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2130, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2086, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2086, + "y": -1253.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1962, + "y": -1253.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1958, + "y": -1253.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1954, + "y": -1253.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2086, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1962, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1958, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1954, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1950, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1958, + "y": -1245.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1954, + "y": -1245.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1950, + "y": -1245.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + } + ] + }, + { + "region": { + "x0": 1800, + "y0": 3400, + "x1": 2056, + "y1": 3656 + }, + "cliffs": [ + { + "x": 1902, + "y": 3398.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1910, + "y": 3398.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2018, + "y": 3398.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2030, + "y": 3398.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1910, + "y": 3402.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2014, + "y": 3402.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2018, + "y": 3402.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2030, + "y": 3402.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1910, + "y": 3406.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1914, + "y": 3406.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1994, + "y": 3406.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1998, + "y": 3406.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2010, + "y": 3406.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2014, + "y": 3406.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2026, + "y": 3406.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2030, + "y": 3406.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1846, + "y": 3410.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1850, + "y": 3410.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1854, + "y": 3410.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1914, + "y": 3410.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1994, + "y": 3410.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1998, + "y": 3410.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2010, + "y": 3410.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2014, + "y": 3410.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2026, + "y": 3410.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1854, + "y": 3414.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1858, + "y": 3414.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1914, + "y": 3414.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1982, + "y": 3414.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1998, + "y": 3414.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2002, + "y": 3414.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2014, + "y": 3414.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2026, + "y": 3414.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1838, + "y": 3418.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1918, + "y": 3418.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1942, + "y": 3418.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1982, + "y": 3418.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2002, + "y": 3418.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2014, + "y": 3418.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1834, + "y": 3422.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1838, + "y": 3422.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1918, + "y": 3422.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1942, + "y": 3422.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1946, + "y": 3422.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1950, + "y": 3422.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1982, + "y": 3422.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1986, + "y": 3422.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1990, + "y": 3422.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1994, + "y": 3422.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1998, + "y": 3422.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2002, + "y": 3422.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2010, + "y": 3422.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2014, + "y": 3422.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1834, + "y": 3426.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1950, + "y": 3426.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1982, + "y": 3426.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1986, + "y": 3426.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1834, + "y": 3430.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1838, + "y": 3430.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1950, + "y": 3430.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1978, + "y": 3430.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1982, + "y": 3430.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1986, + "y": 3430.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1990, + "y": 3430.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1994, + "y": 3430.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1998, + "y": 3430.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2002, + "y": 3430.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1950, + "y": 3434.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1978, + "y": 3434.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2002, + "y": 3434.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1950, + "y": 3438.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1974, + "y": 3438.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1978, + "y": 3438.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2002, + "y": 3438.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1950, + "y": 3442.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1974, + "y": 3442.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2002, + "y": 3442.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2010, + "y": 3442.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2014, + "y": 3442.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2022, + "y": 3442.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1950, + "y": 3446.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1954, + "y": 3446.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1974, + "y": 3446.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1998, + "y": 3446.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2002, + "y": 3446.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2010, + "y": 3446.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2022, + "y": 3446.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1802, + "y": 3450.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1806, + "y": 3450.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1810, + "y": 3450.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1914, + "y": 3450.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1954, + "y": 3450.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1958, + "y": 3450.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1962, + "y": 3450.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1970, + "y": 3450.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1974, + "y": 3450.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1994, + "y": 3450.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1998, + "y": 3450.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2010, + "y": 3450.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2018, + "y": 3450.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2022, + "y": 3450.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1802, + "y": 3454.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1806, + "y": 3454.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1810, + "y": 3454.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1822, + "y": 3454.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1910, + "y": 3454.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1914, + "y": 3454.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1962, + "y": 3454.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1966, + "y": 3454.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1970, + "y": 3454.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1990, + "y": 3454.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1994, + "y": 3454.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2018, + "y": 3454.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2022, + "y": 3454.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1810, + "y": 3458.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1822, + "y": 3458.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1910, + "y": 3458.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1914, + "y": 3458.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1986, + "y": 3458.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1990, + "y": 3458.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1810, + "y": 3462.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1822, + "y": 3462.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1914, + "y": 3462.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1918, + "y": 3462.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1922, + "y": 3462.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1926, + "y": 3462.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1930, + "y": 3462.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1986, + "y": 3462.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1810, + "y": 3466.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1822, + "y": 3466.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1846, + "y": 3466.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1850, + "y": 3466.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1854, + "y": 3466.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1858, + "y": 3466.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1914, + "y": 3466.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1918, + "y": 3466.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1938, + "y": 3466.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1942, + "y": 3466.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1982, + "y": 3466.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1986, + "y": 3466.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2006, + "y": 3466.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1810, + "y": 3470.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1822, + "y": 3470.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1858, + "y": 3470.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1862, + "y": 3470.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1942, + "y": 3470.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2002, + "y": 3470.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2006, + "y": 3470.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1810, + "y": 3474.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1822, + "y": 3474.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1862, + "y": 3474.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1866, + "y": 3474.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1942, + "y": 3474.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1946, + "y": 3474.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2002, + "y": 3474.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2022, + "y": 3474.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1802, + "y": 3478.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1806, + "y": 3478.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1810, + "y": 3478.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1818, + "y": 3478.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1822, + "y": 3478.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1866, + "y": 3478.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1946, + "y": 3478.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2002, + "y": 3478.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2006, + "y": 3478.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2022, + "y": 3478.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1798, + "y": 3482.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1802, + "y": 3482.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1818, + "y": 3482.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1934, + "y": 3482.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1938, + "y": 3482.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1946, + "y": 3482.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1950, + "y": 3482.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1990, + "y": 3482.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2006, + "y": 3482.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2022, + "y": 3482.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2026, + "y": 3482.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1818, + "y": 3486.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1906, + "y": 3486.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1910, + "y": 3486.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1934, + "y": 3486.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1938, + "y": 3486.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1950, + "y": 3486.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1954, + "y": 3486.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1986, + "y": 3486.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1990, + "y": 3486.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1998, + "y": 3486.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2002, + "y": 3486.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2006, + "y": 3486.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1818, + "y": 3490.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1878, + "y": 3490.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1882, + "y": 3490.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1902, + "y": 3490.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1906, + "y": 3490.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1910, + "y": 3490.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1938, + "y": 3490.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1954, + "y": 3490.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1958, + "y": 3490.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1962, + "y": 3490.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1966, + "y": 3490.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1970, + "y": 3490.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1974, + "y": 3490.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1978, + "y": 3490.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1982, + "y": 3490.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1986, + "y": 3490.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1998, + "y": 3490.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2050, + "y": 3490.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1818, + "y": 3494.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1882, + "y": 3494.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1886, + "y": 3494.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1890, + "y": 3494.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1902, + "y": 3494.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1906, + "y": 3494.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1938, + "y": 3494.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1978, + "y": 3494.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1982, + "y": 3494.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1998, + "y": 3494.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2050, + "y": 3494.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1798, + "y": 3498.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1802, + "y": 3498.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1818, + "y": 3498.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1890, + "y": 3498.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1894, + "y": 3498.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1998, + "y": 3498.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2002, + "y": 3498.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2050, + "y": 3498.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2054, + "y": 3498.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1802, + "y": 3502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1818, + "y": 3502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1894, + "y": 3502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1898, + "y": 3502.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2002, + "y": 3502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2042, + "y": 3502.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2046, + "y": 3502.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2054, + "y": 3502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1802, + "y": 3506.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1814, + "y": 3506.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1818, + "y": 3506.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1898, + "y": 3506.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1902, + "y": 3506.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1998, + "y": 3506.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2002, + "y": 3506.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2042, + "y": 3506.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2046, + "y": 3506.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2054, + "y": 3506.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1802, + "y": 3510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1814, + "y": 3510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1902, + "y": 3510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1906, + "y": 3510.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1990, + "y": 3510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1994, + "y": 3510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1998, + "y": 3510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2042, + "y": 3510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2054, + "y": 3510.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1798, + "y": 3514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1802, + "y": 3514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1814, + "y": 3514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1906, + "y": 3514.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1914, + "y": 3514.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1922, + "y": 3514.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1926, + "y": 3514.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1930, + "y": 3514.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1946, + "y": 3514.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1950, + "y": 3514.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1974, + "y": 3514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1978, + "y": 3514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1982, + "y": 3514.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1986, + "y": 3514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1990, + "y": 3514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2010, + "y": 3514.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2054, + "y": 3514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1814, + "y": 3518.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1906, + "y": 3518.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1914, + "y": 3518.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1930, + "y": 3518.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1934, + "y": 3518.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1938, + "y": 3518.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1942, + "y": 3518.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1946, + "y": 3518.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1950, + "y": 3518.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1982, + "y": 3518.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1986, + "y": 3518.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1998, + "y": 3518.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2002, + "y": 3518.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2006, + "y": 3518.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2010, + "y": 3518.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2054, + "y": 3518.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1814, + "y": 3522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1906, + "y": 3522.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1914, + "y": 3522.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1934, + "y": 3522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1938, + "y": 3522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1942, + "y": 3522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1946, + "y": 3522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1950, + "y": 3522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1958, + "y": 3522.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1994, + "y": 3522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1998, + "y": 3522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2050, + "y": 3522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2054, + "y": 3522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1798, + "y": 3526.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1802, + "y": 3526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1814, + "y": 3526.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1818, + "y": 3526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1906, + "y": 3526.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1914, + "y": 3526.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1930, + "y": 3526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1934, + "y": 3526.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1954, + "y": 3526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1958, + "y": 3526.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2050, + "y": 3526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2054, + "y": 3526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2058, + "y": 3526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1802, + "y": 3530.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1806, + "y": 3530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1818, + "y": 3530.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1822, + "y": 3530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1906, + "y": 3530.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1914, + "y": 3530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1918, + "y": 3530.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1930, + "y": 3530.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1954, + "y": 3530.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1806, + "y": 3534.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1810, + "y": 3534.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1822, + "y": 3534.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1906, + "y": 3534.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1910, + "y": 3534.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1918, + "y": 3534.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1926, + "y": 3534.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1930, + "y": 3534.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1946, + "y": 3534.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1950, + "y": 3534.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1954, + "y": 3534.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1962, + "y": 3534.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1966, + "y": 3534.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2050, + "y": 3534.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2054, + "y": 3534.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2058, + "y": 3534.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1810, + "y": 3538.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1814, + "y": 3538.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1822, + "y": 3538.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1826, + "y": 3538.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1830, + "y": 3538.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1834, + "y": 3538.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1902, + "y": 3538.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1906, + "y": 3538.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1910, + "y": 3538.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1918, + "y": 3538.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1922, + "y": 3538.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1926, + "y": 3538.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1942, + "y": 3538.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1946, + "y": 3538.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1958, + "y": 3538.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1962, + "y": 3538.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2006, + "y": 3538.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2010, + "y": 3538.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2034, + "y": 3538.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2038, + "y": 3538.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2042, + "y": 3538.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1822, + "y": 3542.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1826, + "y": 3542.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1834, + "y": 3542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1838, + "y": 3542.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1918, + "y": 3542.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1922, + "y": 3542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1938, + "y": 3542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1942, + "y": 3542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1946, + "y": 3542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1950, + "y": 3542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1954, + "y": 3542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1958, + "y": 3542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2030, + "y": 3542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2034, + "y": 3542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2038, + "y": 3542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2042, + "y": 3542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2046, + "y": 3542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2050, + "y": 3542.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1826, + "y": 3546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1830, + "y": 3546.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1838, + "y": 3546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1842, + "y": 3546.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1918, + "y": 3546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1922, + "y": 3546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1934, + "y": 3546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1938, + "y": 3546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1942, + "y": 3546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1946, + "y": 3546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2010, + "y": 3546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2014, + "y": 3546.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2018, + "y": 3546.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2026, + "y": 3546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2030, + "y": 3546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2034, + "y": 3546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2038, + "y": 3546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2046, + "y": 3546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2050, + "y": 3546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2054, + "y": 3546.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1830, + "y": 3550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1834, + "y": 3550.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1842, + "y": 3550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1846, + "y": 3550.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1934, + "y": 3550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1942, + "y": 3550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2010, + "y": 3550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2014, + "y": 3550.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2018, + "y": 3550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2026, + "y": 3550.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2030, + "y": 3550.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2034, + "y": 3550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2042, + "y": 3550.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2046, + "y": 3550.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2050, + "y": 3550.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2054, + "y": 3550.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1834, + "y": 3554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1846, + "y": 3554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1930, + "y": 3554.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1934, + "y": 3554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1942, + "y": 3554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1978, + "y": 3554.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1982, + "y": 3554.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1986, + "y": 3554.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2010, + "y": 3554.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2014, + "y": 3554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2026, + "y": 3554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2030, + "y": 3554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2042, + "y": 3554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2046, + "y": 3554.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2050, + "y": 3554.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1830, + "y": 3558.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1834, + "y": 3558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1842, + "y": 3558.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1846, + "y": 3558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1930, + "y": 3558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1942, + "y": 3558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1970, + "y": 3558.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1974, + "y": 3558.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1978, + "y": 3558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1998, + "y": 3558.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2002, + "y": 3558.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2006, + "y": 3558.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2010, + "y": 3558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2030, + "y": 3558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2038, + "y": 3558.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2042, + "y": 3558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2050, + "y": 3558.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2054, + "y": 3558.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2058, + "y": 3558.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1830, + "y": 3562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1842, + "y": 3562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1926, + "y": 3562.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1930, + "y": 3562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1938, + "y": 3562.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1942, + "y": 3562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1962, + "y": 3562.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1966, + "y": 3562.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1970, + "y": 3562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1978, + "y": 3562.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1982, + "y": 3562.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1986, + "y": 3562.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1990, + "y": 3562.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2030, + "y": 3562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2038, + "y": 3562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1830, + "y": 3566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1838, + "y": 3566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1842, + "y": 3566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1922, + "y": 3566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1926, + "y": 3566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1938, + "y": 3566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1950, + "y": 3566.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1974, + "y": 3566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1978, + "y": 3566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2006, + "y": 3566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2010, + "y": 3566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2014, + "y": 3566.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2018, + "y": 3566.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2030, + "y": 3566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2038, + "y": 3566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2046, + "y": 3566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2050, + "y": 3566.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1830, + "y": 3570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1838, + "y": 3570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1842, + "y": 3570.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1938, + "y": 3570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1950, + "y": 3570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1970, + "y": 3570.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1974, + "y": 3570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1982, + "y": 3570.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1986, + "y": 3570.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2002, + "y": 3570.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2006, + "y": 3570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2014, + "y": 3570.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2018, + "y": 3570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2026, + "y": 3570.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2030, + "y": 3570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2038, + "y": 3570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2046, + "y": 3570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2050, + "y": 3570.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1830, + "y": 3574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1842, + "y": 3574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1938, + "y": 3574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1950, + "y": 3574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1970, + "y": 3574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1978, + "y": 3574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1982, + "y": 3574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1998, + "y": 3574.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2002, + "y": 3574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2018, + "y": 3574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2022, + "y": 3574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2026, + "y": 3574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2038, + "y": 3574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2042, + "y": 3574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1842, + "y": 3578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1846, + "y": 3578.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1938, + "y": 3578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1950, + "y": 3578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1966, + "y": 3578.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1970, + "y": 3578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1974, + "y": 3578.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1978, + "y": 3578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1982, + "y": 3578.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1998, + "y": 3578.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2002, + "y": 3578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2010, + "y": 3578.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2014, + "y": 3578.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2018, + "y": 3578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2030, + "y": 3578.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2034, + "y": 3578.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2042, + "y": 3578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2046, + "y": 3578.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2050, + "y": 3578.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1826, + "y": 3582.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1846, + "y": 3582.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1914, + "y": 3582.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1938, + "y": 3582.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1950, + "y": 3582.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1954, + "y": 3582.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1966, + "y": 3582.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1974, + "y": 3582.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1978, + "y": 3582.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1982, + "y": 3582.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1986, + "y": 3582.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2010, + "y": 3582.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2026, + "y": 3582.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2030, + "y": 3582.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2034, + "y": 3582.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2038, + "y": 3582.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2042, + "y": 3582.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2046, + "y": 3582.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2050, + "y": 3582.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1826, + "y": 3586.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1914, + "y": 3586.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1954, + "y": 3586.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1966, + "y": 3586.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1978, + "y": 3586.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2010, + "y": 3586.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2026, + "y": 3586.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2030, + "y": 3586.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2056.75, + "y": 3588.80078125, + "name": "crater-cliff", + "orientation": "west-to-east" + }, + { + "x": 1822, + "y": 3590.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1914, + "y": 3590.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1966, + "y": 3590.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1978, + "y": 3590.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2006, + "y": 3590.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2010, + "y": 3590.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2030, + "y": 3590.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2034, + "y": 3590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1822, + "y": 3594.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1914, + "y": 3594.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1966, + "y": 3594.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1978, + "y": 3594.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1998, + "y": 3594.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2002, + "y": 3594.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2006, + "y": 3594.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2034, + "y": 3594.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2038, + "y": 3594.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2051.80078125, + "y": 3597.24609375, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": 1910, + "y": 3598.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1914, + "y": 3598.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1938, + "y": 3598.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1966, + "y": 3598.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1978, + "y": 3598.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2038, + "y": 3598.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2042, + "y": 3598.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2046, + "y": 3598.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2056.75, + "y": 3598.69921875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": 1910, + "y": 3602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1914, + "y": 3602.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1938, + "y": 3602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1966, + "y": 3602.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1978, + "y": 3602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1982, + "y": 3602.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1914, + "y": 3606.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1938, + "y": 3606.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1966, + "y": 3606.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1982, + "y": 3606.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2018, + "y": 3606.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2022, + "y": 3606.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2026, + "y": 3606.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2030, + "y": 3606.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2034, + "y": 3606.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1822, + "y": 3610.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1826, + "y": 3610.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1858, + "y": 3610.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1914, + "y": 3610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1938, + "y": 3610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1950, + "y": 3610.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1962, + "y": 3610.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1982, + "y": 3610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2034, + "y": 3610.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1818, + "y": 3614.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1822, + "y": 3614.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1826, + "y": 3614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1830, + "y": 3614.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1838, + "y": 3614.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1842, + "y": 3614.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1858, + "y": 3614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1894, + "y": 3614.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1914, + "y": 3614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1938, + "y": 3614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1946, + "y": 3614.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1950, + "y": 3614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1958, + "y": 3614.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1962, + "y": 3614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1982, + "y": 3614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2034, + "y": 3614.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2042, + "y": 3614.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1838, + "y": 3618.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1842, + "y": 3618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1854, + "y": 3618.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1858, + "y": 3618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1894, + "y": 3618.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1914, + "y": 3618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1930, + "y": 3618.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1934, + "y": 3618.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1938, + "y": 3618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1946, + "y": 3618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1958, + "y": 3618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1970, + "y": 3618.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1974, + "y": 3618.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1978, + "y": 3618.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1982, + "y": 3618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2030, + "y": 3618.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2034, + "y": 3618.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2042, + "y": 3618.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1838, + "y": 3622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1850, + "y": 3622.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1854, + "y": 3622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1894, + "y": 3622.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1914, + "y": 3622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1930, + "y": 3622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1942, + "y": 3622.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1946, + "y": 3622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1954, + "y": 3622.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1958, + "y": 3622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1966, + "y": 3622.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1970, + "y": 3622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1986, + "y": 3622.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2026, + "y": 3622.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2030, + "y": 3622.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2038, + "y": 3622.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2042, + "y": 3622.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1838, + "y": 3626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1850, + "y": 3626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1894, + "y": 3626.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1926, + "y": 3626.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1930, + "y": 3626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1938, + "y": 3626.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1942, + "y": 3626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1950, + "y": 3626.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1954, + "y": 3626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1966, + "y": 3626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1986, + "y": 3626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2026, + "y": 3626.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2038, + "y": 3626.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1838, + "y": 3630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1846, + "y": 3630.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1850, + "y": 3630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1894, + "y": 3630.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1922, + "y": 3630.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1926, + "y": 3630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1934, + "y": 3630.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1938, + "y": 3630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1946, + "y": 3630.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1950, + "y": 3630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1962, + "y": 3630.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1966, + "y": 3630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1978, + "y": 3630.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1982, + "y": 3630.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1986, + "y": 3630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1990, + "y": 3630.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1994, + "y": 3630.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2030, + "y": 3630.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2034, + "y": 3630.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2038, + "y": 3630.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1838, + "y": 3634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1846, + "y": 3634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1894, + "y": 3634.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1910, + "y": 3634.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1922, + "y": 3634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1934, + "y": 3634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1946, + "y": 3634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1950, + "y": 3634.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1962, + "y": 3634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1978, + "y": 3634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1982, + "y": 3634.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1986, + "y": 3634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1990, + "y": 3634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1998, + "y": 3634.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1834, + "y": 3638.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1838, + "y": 3638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1846, + "y": 3638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1890, + "y": 3638.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1894, + "y": 3638.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1910, + "y": 3638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1918, + "y": 3638.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1922, + "y": 3638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1930, + "y": 3638.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1934, + "y": 3638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1962, + "y": 3638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1974, + "y": 3638.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1978, + "y": 3638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1990, + "y": 3638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1998, + "y": 3638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1846, + "y": 3642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1882, + "y": 3642.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1886, + "y": 3642.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1890, + "y": 3642.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1910, + "y": 3642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1918, + "y": 3642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1930, + "y": 3642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1962, + "y": 3642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1974, + "y": 3642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1990, + "y": 3642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1998, + "y": 3642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2002, + "y": 3642.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2006, + "y": 3642.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1846, + "y": 3646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1882, + "y": 3646.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1918, + "y": 3646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1930, + "y": 3646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1934, + "y": 3646.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1938, + "y": 3646.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1962, + "y": 3646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1974, + "y": 3646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1978, + "y": 3646.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1982, + "y": 3646.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1986, + "y": 3646.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1990, + "y": 3646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2014, + "y": 3646.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1846, + "y": 3650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1930, + "y": 3650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1934, + "y": 3650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1938, + "y": 3650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1950, + "y": 3650.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1962, + "y": 3650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1974, + "y": 3650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1978, + "y": 3650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1982, + "y": 3650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1986, + "y": 3650.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1990, + "y": 3650.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1994, + "y": 3650.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1998, + "y": 3650.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2002, + "y": 3650.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2014, + "y": 3650.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2026, + "y": 3650.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1846, + "y": 3654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1850, + "y": 3654.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1926, + "y": 3654.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1930, + "y": 3654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1950, + "y": 3654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1962, + "y": 3654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1974, + "y": 3654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2002, + "y": 3654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2006, + "y": 3654.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2010, + "y": 3654.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2014, + "y": 3654.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2022, + "y": 3654.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2026, + "y": 3654.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1962, + "y": 3658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1974, + "y": 3658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + } + ] + }, + { + "region": { + "x0": 600, + "y0": 2200, + "x1": 856, + "y1": 2456 + }, + "cliffs": [ + { + "x": 598, + "y": 2198.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 630, + "y": 2198.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 646, + "y": 2198.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 666, + "y": 2198.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 726, + "y": 2198.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 754, + "y": 2198.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 758, + "y": 2198.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 762, + "y": 2198.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 766, + "y": 2198.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 770, + "y": 2198.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 794, + "y": 2198.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 630, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 634, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 638, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 642, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 646, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 666, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 670, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 710, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 714, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 718, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 722, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 726, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 730, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 754, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 758, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 762, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 766, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 794, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 798, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 802, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 606, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 610, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 614, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 634, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 638, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 642, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 646, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 650, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 654, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 658, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 662, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 666, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 670, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 710, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 714, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 722, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 730, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 754, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 758, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 762, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 766, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 798, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 802, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 606, + "y": 2210.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 610, + "y": 2210.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 614, + "y": 2210.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 634, + "y": 2210.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 638, + "y": 2210.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 646, + "y": 2210.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 662, + "y": 2210.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 666, + "y": 2210.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 714, + "y": 2210.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 718, + "y": 2210.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 722, + "y": 2210.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 726, + "y": 2210.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 730, + "y": 2210.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 754, + "y": 2210.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 758, + "y": 2210.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 762, + "y": 2210.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 598, + "y": 2214.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 602, + "y": 2214.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 646, + "y": 2214.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 650, + "y": 2214.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 654, + "y": 2214.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 662, + "y": 2214.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 714, + "y": 2214.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 718, + "y": 2214.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 722, + "y": 2214.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 726, + "y": 2214.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 730, + "y": 2214.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 734, + "y": 2214.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 754, + "y": 2214.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 758, + "y": 2214.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 762, + "y": 2214.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 770, + "y": 2214.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 602, + "y": 2218.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 606, + "y": 2218.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 706, + "y": 2218.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 710, + "y": 2218.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 714, + "y": 2218.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 722, + "y": 2218.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 726, + "y": 2218.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 730, + "y": 2218.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 754, + "y": 2218.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 758, + "y": 2218.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 770, + "y": 2218.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 606, + "y": 2222.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 610, + "y": 2222.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 702, + "y": 2222.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 706, + "y": 2222.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 714, + "y": 2222.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 718, + "y": 2222.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 722, + "y": 2222.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 730, + "y": 2222.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 734, + "y": 2222.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 738, + "y": 2222.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 758, + "y": 2222.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 762, + "y": 2222.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 766, + "y": 2222.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 598, + "y": 2226.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 602, + "y": 2226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 610, + "y": 2226.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 614, + "y": 2226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 694, + "y": 2226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 698, + "y": 2226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 702, + "y": 2226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 714, + "y": 2226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 730, + "y": 2226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 738, + "y": 2226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 742, + "y": 2226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 746, + "y": 2226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 750, + "y": 2226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 602, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 606, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 614, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 618, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 622, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 638, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 694, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 714, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 726, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 730, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 738, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 742, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 746, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 750, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 606, + "y": 2234.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 622, + "y": 2234.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 626, + "y": 2234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 630, + "y": 2234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 634, + "y": 2234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 638, + "y": 2234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 710, + "y": 2234.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 714, + "y": 2234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 738, + "y": 2234.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 742, + "y": 2234.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 746, + "y": 2234.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 750, + "y": 2234.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 754, + "y": 2234.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 606, + "y": 2238.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 610, + "y": 2238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 614, + "y": 2238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 706, + "y": 2238.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 710, + "y": 2238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 738, + "y": 2238.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 742, + "y": 2238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 746, + "y": 2238.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 750, + "y": 2238.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 754, + "y": 2238.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 602, + "y": 2242.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 606, + "y": 2242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 614, + "y": 2242.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 618, + "y": 2242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 702, + "y": 2242.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 746, + "y": 2242.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 750, + "y": 2242.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 754, + "y": 2242.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 762, + "y": 2242.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 794, + "y": 2242.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 606, + "y": 2246.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 610, + "y": 2246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 618, + "y": 2246.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 622, + "y": 2246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 626, + "y": 2246.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 630, + "y": 2246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 762, + "y": 2246.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 790, + "y": 2246.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 794, + "y": 2246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 610, + "y": 2250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 614, + "y": 2250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 622, + "y": 2250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 754, + "y": 2250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 758, + "y": 2250.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 762, + "y": 2250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 774, + "y": 2250.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 778, + "y": 2250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 790, + "y": 2250.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 614, + "y": 2254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 774, + "y": 2254.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 782, + "y": 2254.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 786, + "y": 2254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 790, + "y": 2254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 682, + "y": 2258.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 686, + "y": 2258.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 714, + "y": 2258.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 718, + "y": 2258.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 770, + "y": 2258.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 774, + "y": 2258.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 782, + "y": 2258.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 642, + "y": 2262.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 646, + "y": 2262.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 678, + "y": 2262.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 682, + "y": 2262.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 710, + "y": 2262.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 714, + "y": 2262.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 722, + "y": 2262.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 726, + "y": 2262.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 762, + "y": 2262.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 766, + "y": 2262.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 770, + "y": 2262.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 778, + "y": 2262.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 782, + "y": 2262.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 606, + "y": 2266.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 634, + "y": 2266.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 638, + "y": 2266.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 642, + "y": 2266.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 646, + "y": 2266.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 650, + "y": 2266.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 662, + "y": 2266.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 702, + "y": 2266.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 706, + "y": 2266.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 710, + "y": 2266.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 714, + "y": 2266.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 718, + "y": 2266.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 722, + "y": 2266.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 726, + "y": 2266.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 730, + "y": 2266.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 754, + "y": 2266.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 758, + "y": 2266.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 762, + "y": 2266.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 774, + "y": 2266.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 778, + "y": 2266.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 602, + "y": 2270.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 606, + "y": 2270.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 634, + "y": 2270.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 638, + "y": 2270.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 642, + "y": 2270.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 646, + "y": 2270.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 650, + "y": 2270.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 658, + "y": 2270.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 662, + "y": 2270.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 666, + "y": 2270.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 670, + "y": 2270.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 674, + "y": 2270.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 678, + "y": 2270.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 682, + "y": 2270.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 686, + "y": 2270.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 690, + "y": 2270.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 694, + "y": 2270.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 702, + "y": 2270.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 710, + "y": 2270.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 714, + "y": 2270.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 718, + "y": 2270.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 726, + "y": 2270.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 730, + "y": 2270.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 766, + "y": 2270.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 770, + "y": 2270.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 602, + "y": 2274.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 650, + "y": 2274.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 658, + "y": 2274.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 666, + "y": 2274.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 670, + "y": 2274.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 678, + "y": 2274.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 682, + "y": 2274.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 706, + "y": 2274.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 714, + "y": 2274.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 718, + "y": 2274.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 722, + "y": 2274.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 726, + "y": 2274.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 766, + "y": 2274.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 602, + "y": 2278.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 650, + "y": 2278.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 658, + "y": 2278.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 662, + "y": 2278.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 682, + "y": 2278.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 686, + "y": 2278.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 690, + "y": 2278.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 702, + "y": 2278.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 706, + "y": 2278.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 714, + "y": 2278.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 718, + "y": 2278.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 598, + "y": 2282.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 602, + "y": 2282.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 646, + "y": 2282.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 650, + "y": 2282.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 662, + "y": 2282.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 666, + "y": 2282.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 670, + "y": 2282.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 674, + "y": 2282.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 718, + "y": 2282.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 722, + "y": 2282.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 726, + "y": 2282.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 730, + "y": 2282.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 758, + "y": 2282.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 762, + "y": 2282.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 626, + "y": 2286.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 630, + "y": 2286.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 646, + "y": 2286.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 666, + "y": 2286.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 670, + "y": 2286.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 674, + "y": 2286.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 678, + "y": 2286.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 682, + "y": 2286.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 730, + "y": 2286.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 758, + "y": 2286.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 598, + "y": 2290.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 602, + "y": 2290.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 626, + "y": 2290.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 630, + "y": 2290.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 646, + "y": 2290.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 650, + "y": 2290.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 654, + "y": 2290.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 662, + "y": 2290.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 666, + "y": 2290.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 670, + "y": 2290.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 674, + "y": 2290.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 678, + "y": 2290.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 682, + "y": 2290.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 754, + "y": 2290.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 782, + "y": 2290.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 786, + "y": 2290.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 790, + "y": 2290.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 794, + "y": 2290.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 798, + "y": 2290.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 802, + "y": 2290.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 602, + "y": 2294.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 606, + "y": 2294.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 610, + "y": 2294.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 614, + "y": 2294.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 622, + "y": 2294.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 626, + "y": 2294.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 654, + "y": 2294.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 658, + "y": 2294.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 662, + "y": 2294.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 682, + "y": 2294.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 754, + "y": 2294.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 774, + "y": 2294.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 778, + "y": 2294.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 782, + "y": 2294.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 794, + "y": 2294.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 798, + "y": 2294.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 802, + "y": 2294.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 854, + "y": 2294.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 858, + "y": 2294.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 674, + "y": 2298.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 678, + "y": 2298.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 682, + "y": 2298.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 762, + "y": 2298.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 766, + "y": 2298.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 770, + "y": 2298.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 774, + "y": 2298.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 802, + "y": 2298.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 806, + "y": 2298.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 842, + "y": 2298.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 846, + "y": 2298.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 850, + "y": 2298.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 854, + "y": 2298.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 654, + "y": 2302.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 658, + "y": 2302.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 662, + "y": 2302.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 666, + "y": 2302.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 670, + "y": 2302.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 674, + "y": 2302.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 762, + "y": 2302.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 766, + "y": 2302.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 806, + "y": 2302.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 842, + "y": 2302.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 846, + "y": 2302.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 850, + "y": 2302.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 854, + "y": 2302.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 858, + "y": 2302.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 722, + "y": 2306.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 766, + "y": 2306.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 778, + "y": 2306.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 782, + "y": 2306.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 786, + "y": 2306.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 806, + "y": 2306.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 846, + "y": 2306.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 850, + "y": 2306.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 626, + "y": 2310.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 630, + "y": 2310.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 634, + "y": 2310.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 638, + "y": 2310.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 642, + "y": 2310.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 722, + "y": 2310.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 786, + "y": 2310.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 806, + "y": 2310.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 786, + "y": 2314.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 790, + "y": 2314.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 802, + "y": 2314.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 806, + "y": 2314.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 790, + "y": 2318.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 802, + "y": 2318.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 826, + "y": 2318.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 790, + "y": 2322.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 794, + "y": 2322.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 798, + "y": 2322.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 802, + "y": 2322.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 826, + "y": 2322.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 614, + "y": 2354.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 750, + "y": 2354.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 754, + "y": 2354.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 614, + "y": 2358.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 750, + "y": 2358.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 754, + "y": 2358.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 614, + "y": 2362.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 754, + "y": 2362.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 610, + "y": 2366.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 614, + "y": 2366.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 622, + "y": 2366.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 626, + "y": 2366.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 738, + "y": 2366.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 742, + "y": 2366.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 746, + "y": 2366.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 750, + "y": 2366.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 754, + "y": 2366.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 802, + "y": 2366.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 806, + "y": 2366.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 602, + "y": 2370.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 606, + "y": 2370.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 610, + "y": 2370.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 622, + "y": 2370.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 626, + "y": 2370.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 802, + "y": 2370.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 806, + "y": 2370.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 598, + "y": 2374.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 602, + "y": 2374.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 802, + "y": 2374.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 602, + "y": 2378.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 606, + "y": 2378.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 610, + "y": 2378.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 662, + "y": 2378.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 598, + "y": 2382.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 602, + "y": 2382.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 610, + "y": 2382.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 614, + "y": 2382.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 622, + "y": 2382.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 626, + "y": 2382.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 630, + "y": 2382.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 658, + "y": 2382.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 662, + "y": 2382.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 598, + "y": 2386.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 602, + "y": 2386.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 606, + "y": 2386.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 610, + "y": 2386.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 614, + "y": 2386.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 622, + "y": 2386.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 630, + "y": 2386.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 634, + "y": 2386.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 638, + "y": 2386.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 646, + "y": 2386.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 650, + "y": 2386.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 654, + "y": 2386.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 658, + "y": 2386.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 602, + "y": 2390.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 606, + "y": 2390.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 614, + "y": 2390.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 618, + "y": 2390.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 622, + "y": 2390.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 638, + "y": 2390.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 642, + "y": 2390.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 646, + "y": 2390.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 598, + "y": 2394.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 602, + "y": 2394.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 606, + "y": 2394.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 614, + "y": 2394.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 598, + "y": 2398.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 602, + "y": 2398.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 606, + "y": 2398.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 606, + "y": 2402.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 610, + "y": 2402.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 610, + "y": 2406.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 610, + "y": 2410.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 614, + "y": 2410.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 614, + "y": 2414.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 614, + "y": 2418.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 610, + "y": 2422.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 614, + "y": 2422.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 598, + "y": 2426.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 602, + "y": 2426.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 606, + "y": 2426.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 610, + "y": 2426.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 598, + "y": 2430.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 602, + "y": 2430.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 606, + "y": 2430.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 610, + "y": 2430.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 606, + "y": 2434.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 610, + "y": 2434.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 602, + "y": 2438.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 606, + "y": 2438.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + } + ] + }, + { + "region": { + "x0": 4000, + "y0": -600, + "x1": 4256, + "y1": -344 + }, + "cliffs": [ + { + "x": 4006, + "y": -601.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4014, + "y": -601.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 4018, + "y": -601.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 4026, + "y": -601.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4162, + "y": -601.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4178, + "y": -601.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4210, + "y": -601.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4006, + "y": -597.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4010, + "y": -597.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4014, + "y": -597.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 4018, + "y": -597.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4022, + "y": -597.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4026, + "y": -597.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4058, + "y": -597.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4062, + "y": -597.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4066, + "y": -597.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 4142, + "y": -597.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 4146, + "y": -597.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4162, + "y": -597.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4166, + "y": -597.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4178, + "y": -597.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4182, + "y": -597.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4210, + "y": -597.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4002, + "y": -593.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4006, + "y": -593.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4010, + "y": -593.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4014, + "y": -593.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4018, + "y": -593.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4030, + "y": -593.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4034, + "y": -593.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4038, + "y": -593.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4042, + "y": -593.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4046, + "y": -593.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4050, + "y": -593.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4054, + "y": -593.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4058, + "y": -593.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4146, + "y": -593.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4150, + "y": -593.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4154, + "y": -593.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4166, + "y": -593.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4170, + "y": -593.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4182, + "y": -593.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4210, + "y": -593.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4002, + "y": -589.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4014, + "y": -589.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4018, + "y": -589.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4022, + "y": -589.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4026, + "y": -589.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4030, + "y": -589.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4126, + "y": -589.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 4138, + "y": -589.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 4154, + "y": -589.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4158, + "y": -589.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4162, + "y": -589.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4170, + "y": -589.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4182, + "y": -589.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4210, + "y": -589.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4002.30078125, + "y": -586.375, + "name": "crater-cliff", + "orientation": "south-to-east" + }, + { + "x": 4007.25, + "y": -587.82421875, + "name": "crater-cliff", + "orientation": "west-to-east" + }, + { + "x": 4014, + "y": -585.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 4126, + "y": -585.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4138, + "y": -585.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4142, + "y": -585.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4162, + "y": -585.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4170, + "y": -585.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4174, + "y": -585.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4182, + "y": -585.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4210, + "y": -585.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4010, + "y": -581.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4014, + "y": -581.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4126, + "y": -581.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4142, + "y": -581.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4146, + "y": -581.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4162, + "y": -581.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4166, + "y": -581.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4174, + "y": -581.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4182, + "y": -581.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4186, + "y": -581.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4206, + "y": -581.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 4210, + "y": -581.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4002.30078125, + "y": -579.37890625, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": 4010, + "y": -577.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 4014, + "y": -577.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4018, + "y": -577.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 4126, + "y": -577.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4130, + "y": -577.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 4146, + "y": -577.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4150, + "y": -577.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4154, + "y": -577.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4158, + "y": -577.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4166, + "y": -577.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4170, + "y": -577.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4174, + "y": -577.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4178, + "y": -577.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4186, + "y": -577.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4238, + "y": -577.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 4242, + "y": -577.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4002, + "y": -573.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4006, + "y": -573.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4010, + "y": -573.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4014, + "y": -573.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4018, + "y": -573.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4158, + "y": -573.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4170, + "y": -573.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 4178, + "y": -573.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4186, + "y": -573.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4242, + "y": -573.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 4034, + "y": -569.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 4038, + "y": -569.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4158, + "y": -569.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4162, + "y": -569.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 4174, + "y": -569.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 4178, + "y": -569.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4182, + "y": -569.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4186, + "y": -569.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4038, + "y": -565.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4042, + "y": -565.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 4174, + "y": -565.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4178, + "y": -565.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4182, + "y": -565.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4186, + "y": -565.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4018, + "y": -561.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 4130, + "y": -561.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 4138, + "y": -561.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 4142, + "y": -561.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4178, + "y": -561.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4182, + "y": -561.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4186, + "y": -561.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4006, + "y": -557.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4010, + "y": -557.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4014, + "y": -557.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4018, + "y": -557.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4130, + "y": -557.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4134, + "y": -557.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4142, + "y": -557.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4146, + "y": -557.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4178, + "y": -557.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4182, + "y": -557.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4186, + "y": -557.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4002, + "y": -553.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4006, + "y": -553.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4074, + "y": -553.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 4134, + "y": -553.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4138, + "y": -553.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4146, + "y": -553.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4150, + "y": -553.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4154, + "y": -553.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4158, + "y": -553.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 4178, + "y": -553.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4182, + "y": -553.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4186, + "y": -553.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4218, + "y": -553.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 4222, + "y": -553.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4038, + "y": -549.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 4042, + "y": -549.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4074, + "y": -549.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4078, + "y": -549.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4138, + "y": -549.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4178, + "y": -549.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 4182, + "y": -549.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4186, + "y": -549.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4222, + "y": -549.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4226, + "y": -549.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4026, + "y": -545.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4030, + "y": -545.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 4042, + "y": -545.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4046, + "y": -545.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4074, + "y": -545.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4078, + "y": -545.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4138, + "y": -545.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4154, + "y": -545.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4158, + "y": -545.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4162, + "y": -545.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4166, + "y": -545.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 4174, + "y": -545.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 4178, + "y": -545.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4182, + "y": -545.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4186, + "y": -545.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4226, + "y": -545.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4230, + "y": -545.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 4026, + "y": -541.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 4042, + "y": -541.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4046, + "y": -541.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4074, + "y": -541.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4111.6875, + "y": -540.32421875, + "name": "crater-cliff", + "orientation": "west-to-east" + }, + { + "x": 4126, + "y": -541.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4130, + "y": -541.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4138, + "y": -541.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4154, + "y": -541.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 4162, + "y": -541.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4166, + "y": -541.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4170, + "y": -541.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 4174, + "y": -541.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4178, + "y": -541.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 4182, + "y": -541.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 4186, + "y": -541.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4190, + "y": -541.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4106.73828125, + "y": -538.875, + "name": "crater-cliff", + "orientation": "south-to-east" + }, + { + "x": 4116.63671875, + "y": -538.875, + "name": "crater-cliff", + "orientation": "west-to-south" + }, + { + "x": 4026, + "y": -537.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 4030, + "y": -537.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 4038, + "y": -537.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4042, + "y": -537.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4074, + "y": -537.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 4126, + "y": -537.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 4130, + "y": -537.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4138, + "y": -537.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4142, + "y": -537.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4150, + "y": -537.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4154, + "y": -537.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4162, + "y": -537.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4166, + "y": -537.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4170, + "y": -537.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4174, + "y": -537.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 4178, + "y": -537.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 4182, + "y": -537.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 4186, + "y": -537.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 4190, + "y": -537.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 4104.6875, + "y": -535.375, + "name": "crater-cliff", + "orientation": "south-to-north" + }, + { + "x": 4118.6875, + "y": -535.375, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": 4030, + "y": -533.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 4034, + "y": -533.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4038, + "y": -533.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4126, + "y": -533.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 4130, + "y": -533.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4142, + "y": -533.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4146, + "y": -533.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4150, + "y": -533.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4162, + "y": -533.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4170, + "y": -533.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4174, + "y": -533.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4178, + "y": -533.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 4182, + "y": -533.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 4186, + "y": -533.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4106.73828125, + "y": -531.87890625, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": 4111.6875, + "y": -530.42578125, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": 4116.63671875, + "y": -531.87890625, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": 4002, + "y": -529.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4006, + "y": -529.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4010, + "y": -529.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4130, + "y": -529.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4134, + "y": -529.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4142, + "y": -529.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4146, + "y": -529.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4162, + "y": -529.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4174, + "y": -529.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 4178, + "y": -529.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 4182, + "y": -529.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 4186, + "y": -529.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4010, + "y": -525.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4014, + "y": -525.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4062, + "y": -525.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4066, + "y": -525.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 4134, + "y": -525.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4162, + "y": -525.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4166, + "y": -525.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4178, + "y": -525.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4182, + "y": -525.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4186, + "y": -525.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4002, + "y": -521.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4014, + "y": -521.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 4062, + "y": -521.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 4066, + "y": -521.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 4070, + "y": -521.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4074, + "y": -521.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 4130, + "y": -521.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4134, + "y": -521.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4166, + "y": -521.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4178, + "y": -521.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4182, + "y": -521.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4186, + "y": -521.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4002, + "y": -517.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4006, + "y": -517.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4062, + "y": -517.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 4066, + "y": -517.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 4126, + "y": -517.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4130, + "y": -517.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4154, + "y": -517.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4158, + "y": -517.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 4166, + "y": -517.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4178, + "y": -517.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4182, + "y": -517.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4186, + "y": -517.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4002, + "y": -513.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4006, + "y": -513.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4026, + "y": -513.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 4030, + "y": -513.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4038, + "y": -513.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 4042, + "y": -513.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4046, + "y": -513.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 4126, + "y": -513.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4130, + "y": -513.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4134, + "y": -513.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4154, + "y": -513.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4158, + "y": -513.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 4166, + "y": -513.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4170, + "y": -513.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4178, + "y": -513.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4182, + "y": -513.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4186, + "y": -513.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4190, + "y": -513.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4002, + "y": -509.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4006, + "y": -509.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4010, + "y": -509.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 4026, + "y": -509.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4030, + "y": -509.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4102, + "y": -509.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 4134, + "y": -509.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4138, + "y": -509.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4154, + "y": -509.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4158, + "y": -509.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4170, + "y": -509.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4178, + "y": -509.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4182, + "y": -509.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4186, + "y": -509.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4190, + "y": -509.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4194, + "y": -509.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 4006, + "y": -505.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4010, + "y": -505.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4022, + "y": -505.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4026, + "y": -505.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4102, + "y": -505.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 4106, + "y": -505.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 4114, + "y": -505.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4118, + "y": -505.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 4138, + "y": -505.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4142, + "y": -505.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4146, + "y": -505.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4170, + "y": -505.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4178, + "y": -505.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4182, + "y": -505.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4186, + "y": -505.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4190, + "y": -505.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4194, + "y": -505.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4002, + "y": -501.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4006, + "y": -501.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4010, + "y": -501.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4018, + "y": -501.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4022, + "y": -501.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4106, + "y": -501.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 4110, + "y": -501.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4114, + "y": -501.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4146, + "y": -501.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4150, + "y": -501.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4170, + "y": -501.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4178, + "y": -501.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4182, + "y": -501.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4186, + "y": -501.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 4190, + "y": -501.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4002, + "y": -497.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4010, + "y": -497.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4014, + "y": -497.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4018, + "y": -497.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4122, + "y": -497.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4126, + "y": -497.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4150, + "y": -497.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4154, + "y": -497.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4170, + "y": -497.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4178, + "y": -497.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 4182, + "y": -497.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 4186, + "y": -497.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4190, + "y": -497.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4214, + "y": -497.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 4002, + "y": -493.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4006, + "y": -493.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4010, + "y": -493.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4014, + "y": -493.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4118, + "y": -493.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4122, + "y": -493.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4126, + "y": -493.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4130, + "y": -493.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4154, + "y": -493.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4166, + "y": -493.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4170, + "y": -493.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4178, + "y": -493.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 4182, + "y": -493.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 4186, + "y": -493.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4198, + "y": -493.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4202, + "y": -493.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 4214, + "y": -493.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 4002, + "y": -489.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4006, + "y": -489.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4010, + "y": -489.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4014, + "y": -489.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4118, + "y": -489.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 4130, + "y": -489.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4154, + "y": -489.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 4162, + "y": -489.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4166, + "y": -489.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4174, + "y": -489.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 4178, + "y": -489.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4182, + "y": -489.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 4186, + "y": -489.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4194, + "y": -489.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4198, + "y": -489.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4002, + "y": -485.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4010, + "y": -485.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4018, + "y": -485.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 4118, + "y": -485.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 4130, + "y": -485.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4134, + "y": -485.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4142, + "y": -485.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 4146, + "y": -485.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4150, + "y": -485.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 4154, + "y": -485.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4158, + "y": -485.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 4162, + "y": -485.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4166, + "y": -485.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 4170, + "y": -485.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 4174, + "y": -485.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4178, + "y": -485.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 4182, + "y": -485.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 4186, + "y": -485.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4190, + "y": -485.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4194, + "y": -485.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4006, + "y": -481.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4010, + "y": -481.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4014, + "y": -481.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4018, + "y": -481.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4114, + "y": -481.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4118, + "y": -481.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4134, + "y": -481.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 4146, + "y": -481.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 4150, + "y": -481.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 4154, + "y": -481.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 4158, + "y": -481.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4162, + "y": -481.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4166, + "y": -481.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 4170, + "y": -481.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 4174, + "y": -481.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 4178, + "y": -481.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 4182, + "y": -481.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 4186, + "y": -481.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 4190, + "y": -481.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 4006, + "y": -477.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4014, + "y": -477.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 4110, + "y": -477.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 4114, + "y": -477.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4158, + "y": -477.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4162, + "y": -477.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4178, + "y": -477.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4182, + "y": -477.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4186, + "y": -477.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 4006, + "y": -473.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4010, + "y": -473.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4162, + "y": -473.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4166, + "y": -473.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 4178, + "y": -473.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 4182, + "y": -473.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 4010, + "y": -469.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4014, + "y": -469.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4014, + "y": -465.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 4014, + "y": -461.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 4002, + "y": -457.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4010, + "y": -457.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4014, + "y": -457.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4154, + "y": -457.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 4158, + "y": -457.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 4186, + "y": -457.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 4002, + "y": -453.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4010, + "y": -453.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4030, + "y": -453.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 4034, + "y": -453.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 4074, + "y": -453.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 4186, + "y": -453.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 4002, + "y": -449.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4010, + "y": -449.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4014, + "y": -449.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4018, + "y": -449.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4022, + "y": -449.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4070, + "y": -449.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4074, + "y": -449.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4002, + "y": -445.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4022, + "y": -445.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4026, + "y": -445.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4070, + "y": -445.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4086, + "y": -445.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 4002, + "y": -441.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4006, + "y": -441.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4026, + "y": -441.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4030, + "y": -441.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4034, + "y": -441.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4038, + "y": -441.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 4070, + "y": -441.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4074, + "y": -441.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4078, + "y": -441.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4082, + "y": -441.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4086, + "y": -441.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4006, + "y": -437.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4010, + "y": -437.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4158, + "y": -437.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 4010, + "y": -433.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4014, + "y": -433.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4018, + "y": -433.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4022, + "y": -433.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4026, + "y": -433.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4030, + "y": -433.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4034, + "y": -433.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4150, + "y": -433.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4154, + "y": -433.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4158, + "y": -433.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4014, + "y": -429.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4018, + "y": -429.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4034, + "y": -429.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4038, + "y": -429.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4150, + "y": -429.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 4002, + "y": -425.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4006, + "y": -425.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 4026, + "y": -425.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4030, + "y": -425.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 4038, + "y": -425.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4042, + "y": -425.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4046, + "y": -425.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4050, + "y": -425.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4006, + "y": -421.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 4026, + "y": -421.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4030, + "y": -421.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 4050, + "y": -421.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 4062, + "y": -421.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4066, + "y": -421.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4070, + "y": -421.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4074, + "y": -421.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4078, + "y": -421.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4082, + "y": -421.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4086, + "y": -421.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4006, + "y": -417.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 4010, + "y": -417.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4014, + "y": -417.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 4018, + "y": -417.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4022, + "y": -417.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4026, + "y": -417.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4030, + "y": -417.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 4054, + "y": -417.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 4058, + "y": -417.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4062, + "y": -417.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4066, + "y": -417.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4070, + "y": -417.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4074, + "y": -417.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4078, + "y": -417.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4082, + "y": -417.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4086, + "y": -417.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4014, + "y": -413.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 4018, + "y": -413.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4030, + "y": -413.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 4054, + "y": -413.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 4058, + "y": -413.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4062, + "y": -413.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4066, + "y": -413.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4142, + "y": -413.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 4146, + "y": -413.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4150, + "y": -413.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 4154, + "y": -413.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 4030, + "y": -409.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 4046, + "y": -409.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 4050, + "y": -409.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 4074, + "y": -409.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4078, + "y": -409.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4082, + "y": -409.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4086, + "y": -409.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4090, + "y": -409.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4094, + "y": -409.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4098, + "y": -409.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4102, + "y": -409.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4106, + "y": -409.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 4130, + "y": -409.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4134, + "y": -409.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 4142, + "y": -409.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4146, + "y": -409.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4150, + "y": -409.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4154, + "y": -409.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4038, + "y": -405.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4042, + "y": -405.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 4066, + "y": -405.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4070, + "y": -405.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4074, + "y": -405.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4130, + "y": -405.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 4138, + "y": -405.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4142, + "y": -405.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4146, + "y": -405.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 4150, + "y": -405.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 4034, + "y": -401.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 4038, + "y": -401.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4062, + "y": -401.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4066, + "y": -401.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4134, + "y": -401.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 4138, + "y": -401.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4146, + "y": -401.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4150, + "y": -401.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 4062, + "y": -397.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4106, + "y": -397.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4110, + "y": -397.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4114, + "y": -397.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 4134, + "y": -397.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 4138, + "y": -397.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 4142, + "y": -397.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 4146, + "y": -397.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4038, + "y": -393.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4042, + "y": -393.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4046, + "y": -393.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4050, + "y": -393.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4054, + "y": -393.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4058, + "y": -393.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4062, + "y": -393.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4090, + "y": -393.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4094, + "y": -393.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4098, + "y": -393.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4102, + "y": -393.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4106, + "y": -393.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4114, + "y": -393.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 4030, + "y": -389.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 4034, + "y": -389.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4038, + "y": -389.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4086, + "y": -389.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4090, + "y": -389.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4114, + "y": -389.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4042, + "y": -385.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4046, + "y": -385.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4050, + "y": -385.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4054, + "y": -385.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4058, + "y": -385.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 4062, + "y": -385.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4066, + "y": -385.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4070, + "y": -385.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 4086, + "y": -385.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 4102, + "y": -385.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4106, + "y": -385.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4110, + "y": -385.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 4114, + "y": -385.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4190, + "y": -385.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4194, + "y": -385.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4034, + "y": -381.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 4038, + "y": -381.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4042, + "y": -381.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4058, + "y": -381.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 4062, + "y": -381.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4094, + "y": -381.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 4098, + "y": -381.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 4102, + "y": -381.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 4106, + "y": -381.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 4110, + "y": -381.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 4114, + "y": -381.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 4190, + "y": -381.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 4194, + "y": -381.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4002, + "y": -377.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 4074, + "y": -377.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 4078, + "y": -377.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 4090, + "y": -377.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 4094, + "y": -377.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4098, + "y": -377.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4102, + "y": -377.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4106, + "y": -377.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4110, + "y": -377.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 4114, + "y": -377.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 4118, + "y": -377.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 4122, + "y": -377.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 4002, + "y": -373.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 4006, + "y": -373.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4010, + "y": -373.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 4066, + "y": -373.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 4078, + "y": -373.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4082, + "y": -373.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4086, + "y": -373.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4090, + "y": -373.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4094, + "y": -373.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4098, + "y": -373.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4102, + "y": -373.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 4122, + "y": -373.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 4010, + "y": -369.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 4014, + "y": -369.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 4058, + "y": -369.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4062, + "y": -369.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 4066, + "y": -369.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 4070, + "y": -369.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 4074, + "y": -369.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4078, + "y": -369.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4002, + "y": -365.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 4046, + "y": -365.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 4050, + "y": -365.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4054, + "y": -365.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4058, + "y": -365.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4062, + "y": -365.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 4066, + "y": -365.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 4070, + "y": -365.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 4074, + "y": -365.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4002, + "y": -361.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 4006, + "y": -361.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 4050, + "y": -361.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 4054, + "y": -361.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4058, + "y": -361.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4062, + "y": -361.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4066, + "y": -361.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 4070, + "y": -361.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4074, + "y": -361.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4006, + "y": -357.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 4010, + "y": -357.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4014, + "y": -357.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 4018, + "y": -357.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 4022, + "y": -357.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 4050, + "y": -357.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 4054, + "y": -357.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4058, + "y": -357.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4062, + "y": -357.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4066, + "y": -357.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 4070, + "y": -357.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 4010, + "y": -353.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 4014, + "y": -353.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 4018, + "y": -353.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 4022, + "y": -353.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4026, + "y": -353.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 4062, + "y": -353.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4066, + "y": -353.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 4074, + "y": -353.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 4078, + "y": -353.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 4006, + "y": -349.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 4010, + "y": -349.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4030, + "y": -349.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 4058, + "y": -349.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 4062, + "y": -349.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4018, + "y": -345.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4022, + "y": -345.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4026, + "y": -345.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4030, + "y": -345.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4018, + "y": -341.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + } + ] + }, + { + "region": { + "x0": -2800, + "y0": 400, + "x1": -2544, + "y1": 656 + }, + "cliffs": [ + { + "x": -2714, + "y": 398.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2650, + "y": 398.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2562, + "y": 398.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2714, + "y": 402.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2662, + "y": 402.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2658, + "y": 402.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2654, + "y": 402.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2650, + "y": 402.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2566, + "y": 402.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2562, + "y": 402.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2546, + "y": 402.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2542, + "y": 402.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2662, + "y": 406.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2658, + "y": 406.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2654, + "y": 406.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2570, + "y": 406.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2566, + "y": 406.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2546, + "y": 406.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2802, + "y": 410.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2798, + "y": 410.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2666, + "y": 410.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2662, + "y": 410.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2630, + "y": 410.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2546, + "y": 410.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2802, + "y": 414.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2798, + "y": 414.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2638, + "y": 414.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2634, + "y": 414.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2630, + "y": 414.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2546, + "y": 414.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2706, + "y": 418.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2702, + "y": 418.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2638, + "y": 418.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2546, + "y": 418.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2542, + "y": 418.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2706, + "y": 422.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2702, + "y": 422.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2638, + "y": 422.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2638, + "y": 426.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2618, + "y": 426.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2638, + "y": 430.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2618, + "y": 430.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2606, + "y": 430.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2602, + "y": 430.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2634, + "y": 434.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2630, + "y": 434.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2626, + "y": 434.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2622, + "y": 434.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2618, + "y": 434.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2610, + "y": 434.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2606, + "y": 434.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2626, + "y": 438.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2622, + "y": 438.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2614, + "y": 438.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2610, + "y": 438.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2630, + "y": 442.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2618, + "y": 442.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2614, + "y": 442.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2630, + "y": 446.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2626, + "y": 446.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2622, + "y": 446.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2618, + "y": 446.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2662, + "y": 450.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2658, + "y": 450.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2666, + "y": 454.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2662, + "y": 454.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2670, + "y": 458.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2666, + "y": 458.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2802, + "y": 462.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2798, + "y": 462.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2798, + "y": 466.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2794, + "y": 466.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2794, + "y": 470.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2794, + "y": 474.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2790, + "y": 474.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2798, + "y": 478.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2790, + "y": 478.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2786, + "y": 478.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2782, + "y": 478.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2798, + "y": 482.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2794, + "y": 482.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2794, + "y": 486.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2790, + "y": 486.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2734, + "y": 502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2730, + "y": 502.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2742, + "y": 510.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2742, + "y": 514.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2786, + "y": 518.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2782, + "y": 518.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2778, + "y": 518.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2762, + "y": 518.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2742, + "y": 518.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2790, + "y": 522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2786, + "y": 522.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2778, + "y": 522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2774, + "y": 522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2770, + "y": 522.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2762, + "y": 522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2742, + "y": 522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2738, + "y": 522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2798, + "y": 526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2794, + "y": 526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2790, + "y": 526.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2786, + "y": 526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2782, + "y": 526.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2770, + "y": 526.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2766, + "y": 526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2762, + "y": 526.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2738, + "y": 526.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2734, + "y": 526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2730, + "y": 526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2726, + "y": 526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2802, + "y": 530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2798, + "y": 530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2794, + "y": 530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2790, + "y": 530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2786, + "y": 530.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2782, + "y": 530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2778, + "y": 530.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2730, + "y": 530.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2726, + "y": 530.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2802, + "y": 534.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2798, + "y": 534.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2794, + "y": 534.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2790, + "y": 534.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2786, + "y": 534.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2782, + "y": 534.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2730, + "y": 534.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2802, + "y": 538.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2798, + "y": 538.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2794, + "y": 538.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2790, + "y": 538.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2786, + "y": 538.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2782, + "y": 538.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2734, + "y": 538.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2730, + "y": 538.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2802, + "y": 542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2798, + "y": 542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2794, + "y": 542.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2790, + "y": 542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2786, + "y": 542.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2782, + "y": 542.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2778, + "y": 542.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2754, + "y": 542.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2734, + "y": 542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2798, + "y": 546.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2794, + "y": 546.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2786, + "y": 546.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2782, + "y": 546.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2778, + "y": 546.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2766, + "y": 546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2762, + "y": 546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2758, + "y": 546.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2754, + "y": 546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2750, + "y": 546.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2734, + "y": 546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2730, + "y": 546.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2798, + "y": 550.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2794, + "y": 550.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2790, + "y": 550.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2786, + "y": 550.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2778, + "y": 550.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2774, + "y": 550.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2770, + "y": 550.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2766, + "y": 550.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2762, + "y": 550.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2758, + "y": 550.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2754, + "y": 550.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2750, + "y": 550.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2746, + "y": 550.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2738, + "y": 550.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2734, + "y": 550.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2730, + "y": 550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2798, + "y": 554.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2794, + "y": 554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2770, + "y": 554.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2766, + "y": 554.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2762, + "y": 554.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2758, + "y": 554.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2754, + "y": 554.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2750, + "y": 554.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2746, + "y": 554.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2742, + "y": 554.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2738, + "y": 554.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2734, + "y": 554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2730, + "y": 554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2802, + "y": 558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2798, + "y": 558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2794, + "y": 558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2790, + "y": 558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2786, + "y": 558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2782, + "y": 558.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2778, + "y": 558.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2774, + "y": 558.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2770, + "y": 558.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2766, + "y": 558.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2762, + "y": 558.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2754, + "y": 558.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2750, + "y": 558.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2746, + "y": 558.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2742, + "y": 558.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2738, + "y": 558.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2734, + "y": 558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2730, + "y": 558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2798, + "y": 562.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2794, + "y": 562.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2790, + "y": 562.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2786, + "y": 562.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2782, + "y": 562.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2778, + "y": 562.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2774, + "y": 562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2762, + "y": 562.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2758, + "y": 562.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2754, + "y": 562.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2750, + "y": 562.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2746, + "y": 562.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2742, + "y": 562.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2738, + "y": 562.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2578, + "y": 562.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2574, + "y": 562.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2798, + "y": 566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2794, + "y": 566.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2790, + "y": 566.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2786, + "y": 566.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2782, + "y": 566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2778, + "y": 566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2774, + "y": 566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2770, + "y": 566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2766, + "y": 566.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2758, + "y": 566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2754, + "y": 566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2750, + "y": 566.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2746, + "y": 566.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2742, + "y": 566.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2738, + "y": 566.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2582, + "y": 566.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2578, + "y": 566.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2574, + "y": 566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2570, + "y": 566.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2786, + "y": 570.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2782, + "y": 570.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2778, + "y": 570.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2774, + "y": 570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2770, + "y": 570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2750, + "y": 570.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2742, + "y": 570.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2738, + "y": 570.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2722, + "y": 570.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2718, + "y": 570.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2714, + "y": 570.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2586, + "y": 570.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2582, + "y": 570.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2570, + "y": 570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2778, + "y": 574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2774, + "y": 574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2750, + "y": 574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2746, + "y": 574.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2738, + "y": 574.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2714, + "y": 574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2586, + "y": 574.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2570, + "y": 574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2566, + "y": 574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2562, + "y": 574.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2754, + "y": 578.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2750, + "y": 578.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2746, + "y": 578.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2734, + "y": 578.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2714, + "y": 578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2710, + "y": 578.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2586, + "y": 578.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2562, + "y": 578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2558, + "y": 578.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2754, + "y": 582.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2750, + "y": 582.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2746, + "y": 582.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2742, + "y": 582.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2738, + "y": 582.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2734, + "y": 582.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2722, + "y": 582.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2710, + "y": 582.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2706, + "y": 582.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2590, + "y": 582.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2586, + "y": 582.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2575.32421875, + "y": 583.62109375, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": -2565.42578125, + "y": 583.62109375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": -2558, + "y": 582.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2554, + "y": 582.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2550, + "y": 582.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2546, + "y": 582.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2570.375, + "y": 585.07421875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": -2754, + "y": 586.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2750, + "y": 586.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2742, + "y": 586.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2738, + "y": 586.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2734, + "y": 586.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2726, + "y": 586.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2722, + "y": 586.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2706, + "y": 586.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2702, + "y": 586.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2594, + "y": 586.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2590, + "y": 586.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2546, + "y": 586.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2542, + "y": 586.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2750, + "y": 590.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2746, + "y": 590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2742, + "y": 590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2738, + "y": 590.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2734, + "y": 590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2726, + "y": 590.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2722, + "y": 590.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2702, + "y": 590.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2698, + "y": 590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2598, + "y": 590.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2594, + "y": 590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2746, + "y": 594.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2742, + "y": 594.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2738, + "y": 594.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2722, + "y": 594.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2718, + "y": 594.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2706, + "y": 594.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2702, + "y": 594.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2698, + "y": 594.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2694, + "y": 594.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2606, + "y": 594.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2602, + "y": 594.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2598, + "y": 594.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2742, + "y": 598.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2738, + "y": 598.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2734, + "y": 598.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2730, + "y": 598.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2722, + "y": 598.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2718, + "y": 598.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2714, + "y": 598.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2706, + "y": 598.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2702, + "y": 598.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2698, + "y": 598.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2694, + "y": 598.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2690, + "y": 598.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2686, + "y": 598.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2606, + "y": 598.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2594, + "y": 598.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2590, + "y": 598.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2730, + "y": 602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2722, + "y": 602.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2718, + "y": 602.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2714, + "y": 602.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2710, + "y": 602.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2706, + "y": 602.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2698, + "y": 602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2694, + "y": 602.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2686, + "y": 602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2682, + "y": 602.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2602, + "y": 602.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2598, + "y": 602.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2594, + "y": 602.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2590, + "y": 602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2746, + "y": 606.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2742, + "y": 606.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2738, + "y": 606.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2734, + "y": 606.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2730, + "y": 606.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2726, + "y": 606.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2722, + "y": 606.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2710, + "y": 606.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2706, + "y": 606.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2694, + "y": 606.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2690, + "y": 606.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2686, + "y": 606.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2682, + "y": 606.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2678, + "y": 606.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2642, + "y": 606.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2638, + "y": 606.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2634, + "y": 606.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2606, + "y": 606.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2602, + "y": 606.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2730, + "y": 610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2722, + "y": 610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2714, + "y": 610.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2710, + "y": 610.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2706, + "y": 610.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2686, + "y": 610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2678, + "y": 610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2674, + "y": 610.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2646, + "y": 610.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2642, + "y": 610.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2634, + "y": 610.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2630, + "y": 610.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2626, + "y": 610.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2606, + "y": 610.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2550, + "y": 610.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2546, + "y": 610.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2542, + "y": 610.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2738, + "y": 614.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2734, + "y": 614.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2714, + "y": 614.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2706, + "y": 614.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2686, + "y": 614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2674, + "y": 614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2606, + "y": 614.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2602, + "y": 614.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2598, + "y": 614.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2594, + "y": 614.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2590, + "y": 614.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2562, + "y": 614.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2558, + "y": 614.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2554, + "y": 614.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2550, + "y": 614.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2754, + "y": 618.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2750, + "y": 618.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2746, + "y": 618.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2734, + "y": 618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2714, + "y": 618.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2706, + "y": 618.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2686, + "y": 618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2682, + "y": 618.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2674, + "y": 618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2630, + "y": 618.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2626, + "y": 618.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2562, + "y": 618.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2754, + "y": 622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2750, + "y": 622.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2734, + "y": 622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2710, + "y": 622.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2706, + "y": 622.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2682, + "y": 622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2674, + "y": 622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2670, + "y": 622.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2666, + "y": 622.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2634, + "y": 622.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2630, + "y": 622.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2626, + "y": 622.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2622, + "y": 622.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2606, + "y": 622.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2602, + "y": 622.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2598, + "y": 622.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2594, + "y": 622.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2590, + "y": 622.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2586, + "y": 622.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2578, + "y": 622.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2574, + "y": 622.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2570, + "y": 622.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2566, + "y": 622.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2562, + "y": 622.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2702, + "y": 626.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2698, + "y": 626.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2682, + "y": 626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2638, + "y": 626.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2634, + "y": 626.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2622, + "y": 626.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2614, + "y": 626.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2586, + "y": 626.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2578, + "y": 626.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2574, + "y": 626.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2570, + "y": 626.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2698, + "y": 630.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2694, + "y": 630.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2682, + "y": 630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2678, + "y": 630.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2642, + "y": 630.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2638, + "y": 630.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2634, + "y": 630.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2630, + "y": 630.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2614, + "y": 630.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2586, + "y": 630.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2570, + "y": 630.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2566, + "y": 630.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2722, + "y": 634.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2694, + "y": 634.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2678, + "y": 634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2674, + "y": 634.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2670, + "y": 634.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2666, + "y": 634.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2662, + "y": 634.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2658, + "y": 634.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2654, + "y": 634.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2634, + "y": 634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2618, + "y": 634.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2614, + "y": 634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2586, + "y": 634.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2566, + "y": 634.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2734, + "y": 638.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2726, + "y": 638.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2722, + "y": 638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2690, + "y": 638.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2686, + "y": 638.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2682, + "y": 638.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2678, + "y": 638.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2674, + "y": 638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2670, + "y": 638.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2666, + "y": 638.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2662, + "y": 638.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2638, + "y": 638.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2634, + "y": 638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2626, + "y": 638.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2622, + "y": 638.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2618, + "y": 638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2586, + "y": 638.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2582, + "y": 638.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2578, + "y": 638.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2574, + "y": 638.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2566, + "y": 638.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2734, + "y": 642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2726, + "y": 642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2690, + "y": 642.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2686, + "y": 642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2662, + "y": 642.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2658, + "y": 642.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2654, + "y": 642.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2650, + "y": 642.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2646, + "y": 642.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2642, + "y": 642.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2638, + "y": 642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2630, + "y": 642.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2626, + "y": 642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2574, + "y": 642.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2570, + "y": 642.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2734, + "y": 646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2726, + "y": 646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2658, + "y": 646.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2654, + "y": 646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2634, + "y": 646.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2630, + "y": 646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2570, + "y": 646.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2754, + "y": 650.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2686, + "y": 650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2682, + "y": 650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2678, + "y": 650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2674, + "y": 650.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2642, + "y": 650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2638, + "y": 650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2634, + "y": 650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2754, + "y": 654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2742, + "y": 654.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2738, + "y": 654.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2674, + "y": 654.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2670, + "y": 654.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2666, + "y": 654.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2662, + "y": 654.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2658, + "y": 654.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2654, + "y": 654.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2650, + "y": 654.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2646, + "y": 654.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2642, + "y": 654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + } + ] + }, + { + "region": { + "x0": 1400, + "y0": -3200, + "x1": 1656, + "y1": -2944 + }, + "cliffs": [ + { + "x": 1462, + "y": -3197.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1466, + "y": -3197.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1566, + "y": -3197.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1574, + "y": -3197.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1582, + "y": -3197.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1586, + "y": -3197.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1590, + "y": -3197.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1598, + "y": -3197.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1462, + "y": -3193.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1466, + "y": -3193.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1566, + "y": -3193.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1574, + "y": -3193.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1598, + "y": -3193.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1466, + "y": -3189.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1566, + "y": -3189.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1574, + "y": -3189.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1578, + "y": -3189.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1566, + "y": -3185.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1578, + "y": -3185.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1582, + "y": -3185.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1586, + "y": -3185.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1590, + "y": -3185.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1594, + "y": -3185.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1598, + "y": -3185.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1606, + "y": -3185.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1610, + "y": -3185.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1566, + "y": -3181.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1598, + "y": -3181.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1610, + "y": -3181.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1614, + "y": -3181.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1550, + "y": -3177.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1554, + "y": -3177.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1566, + "y": -3177.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1598, + "y": -3177.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1602, + "y": -3177.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1614, + "y": -3177.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1618, + "y": -3177.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1622, + "y": -3177.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1530, + "y": -3173.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1550, + "y": -3173.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1554, + "y": -3173.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1558, + "y": -3173.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1566, + "y": -3173.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1602, + "y": -3173.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1606, + "y": -3173.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1622, + "y": -3173.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1626, + "y": -3173.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1522, + "y": -3169.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1526, + "y": -3169.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1530, + "y": -3169.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1550, + "y": -3169.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1554, + "y": -3169.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1558, + "y": -3169.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1566, + "y": -3169.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1570, + "y": -3169.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1574, + "y": -3169.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1606, + "y": -3169.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1398, + "y": -3165.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1402, + "y": -3165.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1406, + "y": -3165.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1410, + "y": -3165.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1414, + "y": -3165.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1538, + "y": -3165.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1550, + "y": -3165.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1554, + "y": -3165.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1606, + "y": -3165.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1610, + "y": -3165.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1414, + "y": -3161.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1418, + "y": -3161.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1422, + "y": -3161.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1538, + "y": -3161.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1550, + "y": -3161.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1554, + "y": -3161.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1590, + "y": -3161.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1610, + "y": -3161.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1614, + "y": -3161.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1402, + "y": -3157.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1406, + "y": -3157.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1410, + "y": -3157.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1422, + "y": -3157.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1426, + "y": -3157.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1430, + "y": -3157.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1534, + "y": -3157.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1538, + "y": -3157.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1550, + "y": -3157.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1554, + "y": -3157.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1558, + "y": -3157.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1590, + "y": -3157.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1614, + "y": -3157.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1618, + "y": -3157.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1646, + "y": -3157.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1650, + "y": -3157.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1654, + "y": -3157.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1658, + "y": -3157.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1398, + "y": -3153.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1402, + "y": -3153.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1410, + "y": -3153.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1414, + "y": -3153.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1418, + "y": -3153.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1430, + "y": -3153.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1502, + "y": -3153.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1546, + "y": -3153.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1550, + "y": -3153.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1558, + "y": -3153.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1562, + "y": -3153.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1590, + "y": -3153.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1618, + "y": -3153.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1638, + "y": -3153.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1642, + "y": -3153.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1646, + "y": -3153.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1650, + "y": -3153.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1406, + "y": -3149.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1410, + "y": -3149.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1414, + "y": -3149.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1418, + "y": -3149.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1430, + "y": -3149.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1502, + "y": -3149.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1546, + "y": -3149.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1558, + "y": -3149.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1562, + "y": -3149.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1590, + "y": -3149.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1634, + "y": -3149.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1642, + "y": -3149.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1646, + "y": -3149.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1406, + "y": -3145.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1426, + "y": -3145.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1430, + "y": -3145.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1502, + "y": -3145.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1558, + "y": -3145.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1590, + "y": -3145.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1594, + "y": -3145.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1634, + "y": -3145.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1646, + "y": -3145.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1410, + "y": -3141.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1414, + "y": -3141.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1418, + "y": -3141.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1422, + "y": -3141.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1426, + "y": -3141.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1558, + "y": -3141.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1594, + "y": -3141.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1642, + "y": -3141.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1654, + "y": -3141.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1406, + "y": -3137.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1410, + "y": -3137.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1554, + "y": -3137.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1558, + "y": -3137.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1594, + "y": -3137.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1598, + "y": -3137.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1638, + "y": -3137.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1642, + "y": -3137.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1654, + "y": -3137.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1538, + "y": -3133.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1542, + "y": -3133.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1546, + "y": -3133.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1550, + "y": -3133.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1554, + "y": -3133.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1598, + "y": -3133.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1610, + "y": -3133.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1614, + "y": -3133.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1638, + "y": -3133.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1642, + "y": -3133.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1646, + "y": -3133.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1654, + "y": -3133.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1658, + "y": -3133.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1614, + "y": -3129.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1618, + "y": -3129.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1622, + "y": -3129.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1646, + "y": -3129.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1650, + "y": -3129.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1654, + "y": -3129.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1566, + "y": -3125.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1570, + "y": -3125.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1574, + "y": -3125.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1578, + "y": -3125.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1582, + "y": -3125.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1586, + "y": -3125.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1622, + "y": -3125.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1626, + "y": -3125.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1630, + "y": -3125.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1654, + "y": -3125.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1658, + "y": -3125.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1566, + "y": -3121.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1606, + "y": -3121.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1610, + "y": -3121.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1614, + "y": -3121.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1618, + "y": -3121.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1630, + "y": -3121.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1646, + "y": -3121.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1650, + "y": -3121.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1654, + "y": -3121.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1658, + "y": -3121.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1618, + "y": -3117.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1622, + "y": -3117.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1630, + "y": -3117.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1634, + "y": -3117.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1638, + "y": -3117.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1606, + "y": -3113.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1610, + "y": -3113.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1622, + "y": -3113.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1626, + "y": -3113.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1630, + "y": -3113.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1634, + "y": -3113.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1510, + "y": -3109.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1514, + "y": -3109.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1546, + "y": -3109.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1610, + "y": -3109.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1634, + "y": -3109.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1638, + "y": -3109.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1642, + "y": -3109.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1506, + "y": -3105.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1510, + "y": -3105.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1546, + "y": -3105.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1550, + "y": -3105.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1610, + "y": -3105.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1614, + "y": -3105.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1642, + "y": -3105.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1478, + "y": -3101.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1482, + "y": -3101.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1550, + "y": -3101.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1554, + "y": -3101.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1558, + "y": -3101.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1614, + "y": -3101.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1618, + "y": -3101.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1622, + "y": -3101.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1638, + "y": -3101.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1642, + "y": -3101.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1478, + "y": -3097.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1482, + "y": -3097.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1538, + "y": -3097.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1542, + "y": -3097.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1546, + "y": -3097.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1622, + "y": -3097.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1626, + "y": -3097.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1634, + "y": -3097.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1638, + "y": -3097.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1478, + "y": -3093.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1482, + "y": -3093.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1534, + "y": -3093.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1538, + "y": -3093.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1546, + "y": -3093.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1550, + "y": -3093.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1610, + "y": -3093.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1614, + "y": -3093.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1618, + "y": -3093.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1626, + "y": -3093.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1630, + "y": -3093.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1634, + "y": -3093.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1522, + "y": -3089.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1538, + "y": -3089.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1542, + "y": -3089.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1550, + "y": -3089.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1554, + "y": -3089.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1558, + "y": -3089.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1618, + "y": -3089.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1622, + "y": -3089.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1654, + "y": -3089.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1658, + "y": -3089.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1518, + "y": -3085.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1522, + "y": -3085.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1526, + "y": -3085.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1530, + "y": -3085.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1542, + "y": -3085.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1650, + "y": -3085.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1654, + "y": -3085.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1458, + "y": -3081.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1510, + "y": -3081.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1514, + "y": -3081.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1518, + "y": -3081.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1530, + "y": -3081.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1542, + "y": -3081.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1650, + "y": -3081.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1442, + "y": -3077.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1446, + "y": -3077.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1458, + "y": -3077.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1502, + "y": -3077.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1506, + "y": -3077.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1510, + "y": -3077.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1530, + "y": -3077.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1542, + "y": -3077.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1646, + "y": -3077.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1650, + "y": -3077.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1418, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1422, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1458, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1462, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1466, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1470, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1474, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1498, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1502, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1530, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1534, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1538, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1542, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1562, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1634, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1646, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1650, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1410, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1414, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1418, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1442, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1446, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1450, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1454, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1458, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1462, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1466, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1474, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1518, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1522, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1526, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1538, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1542, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1546, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1550, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1554, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1558, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1562, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1634, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1638, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1650, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1398, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1402, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1406, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1410, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1430, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1434, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1438, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1442, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1446, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1450, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1454, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1462, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1466, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1470, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1474, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1486, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1494, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1498, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1502, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1506, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1510, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1514, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1638, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1642, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1650, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1654, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1410, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1414, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1418, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1422, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1426, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1430, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1438, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1446, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1450, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1458, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1462, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1470, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1486, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1558, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1562, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1566, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1570, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1630, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1642, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1654, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1398, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1402, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1406, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1410, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1438, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1442, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1446, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1450, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1454, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1458, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1462, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1466, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1470, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1486, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1490, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1502, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1506, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1510, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1514, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1518, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1522, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1546, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1550, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1554, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1558, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1566, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1570, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1630, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1634, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1642, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1654, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1398, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1402, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1406, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1410, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1414, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1418, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1422, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1426, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1430, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1434, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1438, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1442, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1446, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1450, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1454, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1490, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1498, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1502, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1550, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1554, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1566, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1570, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1586, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1590, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1642, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1654, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1402, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1406, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1410, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1414, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1418, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1426, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1430, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1438, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1442, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1446, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1454, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1458, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1486, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1490, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1494, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1498, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1566, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1570, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1590, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1402, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1406, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1410, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1414, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1418, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1422, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1426, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1434, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1438, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1442, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1446, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1458, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1462, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1466, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1486, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1494, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1590, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1594, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1402, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1406, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1410, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1414, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1418, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1422, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1430, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1434, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1438, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1442, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1458, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1462, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1466, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1478, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1482, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1486, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1494, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1498, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1502, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1534, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1538, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1542, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1546, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1562, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1566, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1582, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1586, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1590, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1594, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1398, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1402, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1406, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1410, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1414, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1430, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1434, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1438, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1458, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1466, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1470, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1474, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1478, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1494, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1498, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1502, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1530, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1534, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1546, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1550, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1554, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1558, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1562, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1582, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1586, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1590, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1622, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1626, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1406, + "y": -3033.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1414, + "y": -3033.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1426, + "y": -3033.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1430, + "y": -3033.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1450, + "y": -3033.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1454, + "y": -3033.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1458, + "y": -3033.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1462, + "y": -3033.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1466, + "y": -3033.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1498, + "y": -3033.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1502, + "y": -3033.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1526, + "y": -3033.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1530, + "y": -3033.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1550, + "y": -3033.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1554, + "y": -3033.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1590, + "y": -3033.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1626, + "y": -3033.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1406, + "y": -3029.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1410, + "y": -3029.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1414, + "y": -3029.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1418, + "y": -3029.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1422, + "y": -3029.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1426, + "y": -3029.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1442, + "y": -3029.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1446, + "y": -3029.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1450, + "y": -3029.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1458, + "y": -3029.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1462, + "y": -3029.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1470, + "y": -3029.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1474, + "y": -3029.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1478, + "y": -3029.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1482, + "y": -3029.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1522, + "y": -3029.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1526, + "y": -3029.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1534, + "y": -3029.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1538, + "y": -3029.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1542, + "y": -3029.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1590, + "y": -3029.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1626, + "y": -3029.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1630, + "y": -3029.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1634, + "y": -3029.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1406, + "y": -3025.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1410, + "y": -3025.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1418, + "y": -3025.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1422, + "y": -3025.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1438, + "y": -3025.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1442, + "y": -3025.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1454, + "y": -3025.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1458, + "y": -3025.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1466, + "y": -3025.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1470, + "y": -3025.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1482, + "y": -3025.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1486, + "y": -3025.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1490, + "y": -3025.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1494, + "y": -3025.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1502, + "y": -3025.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1506, + "y": -3025.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1522, + "y": -3025.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1530, + "y": -3025.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1534, + "y": -3025.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1542, + "y": -3025.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1546, + "y": -3025.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1550, + "y": -3025.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1554, + "y": -3025.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1618, + "y": -3025.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1622, + "y": -3025.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1634, + "y": -3025.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1406, + "y": -3021.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1410, + "y": -3021.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1414, + "y": -3021.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1418, + "y": -3021.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1422, + "y": -3021.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1438, + "y": -3021.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1450, + "y": -3021.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1454, + "y": -3021.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1466, + "y": -3021.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1470, + "y": -3021.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1482, + "y": -3021.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1494, + "y": -3021.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1498, + "y": -3021.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1502, + "y": -3021.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1526, + "y": -3021.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1530, + "y": -3021.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1550, + "y": -3021.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1554, + "y": -3021.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1622, + "y": -3021.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1406, + "y": -3017.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1410, + "y": -3017.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1414, + "y": -3017.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1418, + "y": -3017.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1422, + "y": -3017.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1438, + "y": -3017.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1446, + "y": -3017.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1450, + "y": -3017.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1470, + "y": -3017.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1474, + "y": -3017.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1482, + "y": -3017.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1486, + "y": -3017.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1498, + "y": -3017.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1502, + "y": -3017.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1622, + "y": -3017.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1406, + "y": -3013.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1410, + "y": -3013.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1414, + "y": -3013.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1418, + "y": -3013.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1438, + "y": -3013.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1446, + "y": -3013.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1454, + "y": -3013.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1458, + "y": -3013.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1474, + "y": -3013.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1478, + "y": -3013.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1486, + "y": -3013.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1502, + "y": -3013.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1406, + "y": -3009.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1410, + "y": -3009.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1438, + "y": -3009.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1442, + "y": -3009.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1446, + "y": -3009.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1454, + "y": -3009.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1458, + "y": -3009.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1478, + "y": -3009.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1486, + "y": -3009.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1502, + "y": -3009.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1566, + "y": -3009.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1570, + "y": -3009.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1606, + "y": -3009.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1610, + "y": -3009.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1614, + "y": -3009.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1618, + "y": -3009.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1626, + "y": -3009.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1406, + "y": -3005.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1410, + "y": -3005.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1414, + "y": -3005.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1438, + "y": -3005.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1442, + "y": -3005.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1446, + "y": -3005.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1454, + "y": -3005.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1458, + "y": -3005.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1474, + "y": -3005.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1478, + "y": -3005.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1486, + "y": -3005.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1562, + "y": -3005.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1566, + "y": -3005.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1570, + "y": -3005.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1606, + "y": -3005.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1618, + "y": -3005.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1626, + "y": -3005.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1406, + "y": -3001.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1410, + "y": -3001.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1414, + "y": -3001.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1418, + "y": -3001.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1422, + "y": -3001.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1426, + "y": -3001.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1430, + "y": -3001.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1434, + "y": -3001.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1438, + "y": -3001.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1446, + "y": -3001.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1474, + "y": -3001.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1482, + "y": -3001.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1486, + "y": -3001.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1562, + "y": -3001.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1606, + "y": -3001.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1618, + "y": -3001.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1626, + "y": -3001.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1406, + "y": -2997.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1410, + "y": -2997.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1414, + "y": -2997.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1418, + "y": -2997.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1422, + "y": -2997.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1446, + "y": -2997.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1562, + "y": -2997.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1566, + "y": -2997.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1606, + "y": -2997.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1618, + "y": -2997.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1626, + "y": -2997.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1630, + "y": -2997.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1410, + "y": -2993.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1414, + "y": -2993.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1418, + "y": -2993.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1422, + "y": -2993.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1566, + "y": -2993.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1606, + "y": -2993.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1610, + "y": -2993.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1618, + "y": -2993.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1630, + "y": -2993.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1640.125, + "y": -2991.07421875, + "name": "crater-cliff", + "orientation": "west-to-east" + }, + { + "x": 1406, + "y": -2989.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1410, + "y": -2989.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1414, + "y": -2989.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1418, + "y": -2989.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1422, + "y": -2989.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1486, + "y": -2989.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1490, + "y": -2989.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1566, + "y": -2989.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1606, + "y": -2989.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1610, + "y": -2989.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1618, + "y": -2989.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1626, + "y": -2989.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1630, + "y": -2989.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1645.07421875, + "y": -2989.625, + "name": "crater-cliff", + "orientation": "west-to-south" + }, + { + "x": 1647.125, + "y": -2986.125, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": 1406, + "y": -2985.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1414, + "y": -2985.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1418, + "y": -2985.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1422, + "y": -2985.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1438, + "y": -2985.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1478, + "y": -2985.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1482, + "y": -2985.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1490, + "y": -2985.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1566, + "y": -2985.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1602, + "y": -2985.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1606, + "y": -2985.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1618, + "y": -2985.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1626, + "y": -2985.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1635.17578125, + "y": -2982.62890625, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": 1645.07421875, + "y": -2982.62890625, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": 1406, + "y": -2981.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1410, + "y": -2981.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1414, + "y": -2981.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1422, + "y": -2981.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1434, + "y": -2981.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1438, + "y": -2981.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1482, + "y": -2981.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1486, + "y": -2981.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1490, + "y": -2981.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1566, + "y": -2981.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1582, + "y": -2981.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1586, + "y": -2981.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1590, + "y": -2981.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1594, + "y": -2981.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1598, + "y": -2981.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1602, + "y": -2981.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1618, + "y": -2981.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1626, + "y": -2981.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1640.125, + "y": -2981.17578125, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": 1406, + "y": -2977.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1410, + "y": -2977.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1414, + "y": -2977.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1422, + "y": -2977.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1430, + "y": -2977.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1434, + "y": -2977.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1482, + "y": -2977.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1486, + "y": -2977.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1490, + "y": -2977.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1566, + "y": -2977.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1574, + "y": -2977.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1578, + "y": -2977.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1582, + "y": -2977.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1594, + "y": -2977.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1598, + "y": -2977.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1602, + "y": -2977.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1606, + "y": -2977.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1610, + "y": -2977.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1614, + "y": -2977.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1618, + "y": -2977.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1626, + "y": -2977.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1630, + "y": -2977.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1634, + "y": -2977.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1410, + "y": -2973.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1414, + "y": -2973.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1422, + "y": -2973.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1430, + "y": -2973.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1482, + "y": -2973.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1566, + "y": -2973.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1574, + "y": -2973.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1578, + "y": -2973.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1594, + "y": -2973.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1618, + "y": -2973.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1622, + "y": -2973.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1626, + "y": -2973.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1630, + "y": -2973.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1410, + "y": -2969.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1422, + "y": -2969.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1430, + "y": -2969.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1566, + "y": -2969.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1578, + "y": -2969.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1582, + "y": -2969.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1594, + "y": -2969.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1614, + "y": -2969.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1618, + "y": -2969.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1406, + "y": -2965.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1410, + "y": -2965.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1422, + "y": -2965.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1430, + "y": -2965.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1566, + "y": -2965.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1570, + "y": -2965.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1582, + "y": -2965.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1594, + "y": -2965.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1610, + "y": -2965.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1614, + "y": -2965.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1402, + "y": -2961.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1406, + "y": -2961.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1418, + "y": -2961.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1422, + "y": -2961.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1430, + "y": -2961.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1570, + "y": -2961.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1582, + "y": -2961.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1594, + "y": -2961.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1598, + "y": -2961.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1602, + "y": -2961.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1610, + "y": -2961.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1402, + "y": -2957.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1418, + "y": -2957.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1422, + "y": -2957.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1582, + "y": -2957.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1586, + "y": -2957.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1590, + "y": -2957.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1594, + "y": -2957.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1598, + "y": -2957.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1602, + "y": -2957.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1610, + "y": -2957.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1402, + "y": -2953.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1558, + "y": -2953.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1562, + "y": -2953.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1582, + "y": -2953.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1586, + "y": -2953.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1610, + "y": -2953.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1614, + "y": -2953.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1402, + "y": -2949.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1478, + "y": -2949.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1558, + "y": -2949.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1566, + "y": -2949.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1570, + "y": -2949.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1574, + "y": -2949.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1578, + "y": -2949.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1582, + "y": -2949.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1586, + "y": -2949.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1598, + "y": -2949.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1602, + "y": -2949.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1606, + "y": -2949.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1398, + "y": -2945.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1402, + "y": -2945.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1478, + "y": -2945.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1506, + "y": -2945.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1510, + "y": -2945.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1554, + "y": -2945.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1562, + "y": -2945.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1566, + "y": -2945.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1586, + "y": -2945.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1598, + "y": -2945.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1606, + "y": -2945.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1630, + "y": -2945.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1634, + "y": -2945.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + } + ] + }, + { + "region": { + "x0": 2600, + "y0": 800, + "x1": 2856, + "y1": 1056 + }, + "cliffs": [ + { + "x": 2598, + "y": 802.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2602, + "y": 802.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2638, + "y": 802.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2698, + "y": 802.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2706, + "y": 802.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2682, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2694, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2698, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2706, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2606, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2682, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2694, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2706, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2598, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2602, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2606, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2666, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2670, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2674, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2682, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2694, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2706, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2614, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2654, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2658, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2674, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2682, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2694, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2722, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2750, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2754, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2691.13671875, + "y": 821.6875, + "name": "crater-cliff", + "orientation": "west-to-south" + }, + { + "x": 2614, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2618, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2622, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2626, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2654, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2682, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2722, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2750, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2754, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2802, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2693.1875, + "y": 825.1875, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": 2626, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2630, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2678, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2682, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2722, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2802, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2810, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2814, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2691.13671875, + "y": 828.68359375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": 2618, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2622, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2630, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2634, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2638, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2642, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2678, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2686.1875, + "y": 830.13671875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": 2714, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2718, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2722, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2726, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2802, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2806, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2810, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2814, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2622, + "y": 834.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2642, + "y": 834.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2646, + "y": 834.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2666, + "y": 834.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2678, + "y": 834.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2694, + "y": 834.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2698, + "y": 834.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2718, + "y": 834.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2722, + "y": 834.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2726, + "y": 834.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2642, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2646, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2666, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2678, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2682, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2698, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2718, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2722, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2730, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2642, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2666, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2682, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2686, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2690, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2698, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2702, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2714, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2718, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2722, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2730, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2642, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2666, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2682, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2686, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2690, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2702, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2710, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2714, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2722, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2730, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2642, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2650, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2654, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2662, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2666, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2682, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2686, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2690, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2698, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2702, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2710, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2718, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2722, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2730, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2742, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2746, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2786, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2794, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2798, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2818, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2822, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2826, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2642, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2654, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2658, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2662, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2686, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2690, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2698, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2706, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2710, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2718, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2730, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2734, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2746, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2778, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2782, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2786, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2790, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2798, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2826, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2830, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2834, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2838, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2658, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2702, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2706, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2718, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2734, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2746, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2782, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2790, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2798, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2810, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2838, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2842, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2846, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2850, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2658, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2702, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2706, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2718, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2722, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2734, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2738, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2746, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2782, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2786, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2790, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2794, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2798, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2810, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2850, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2854, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2702, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2706, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2722, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2786, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2794, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2810, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2814, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2818, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2822, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2826, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2830, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2834, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2854, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2702, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2722, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2802, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2806, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2834, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2838, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2854, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2858, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2690, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2702, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2798, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2802, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2806, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2810, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2838, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2842, + "y": 874.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2690, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2694, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2702, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2734, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2738, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2742, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2746, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2790, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2794, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2802, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2806, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2810, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2814, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2818, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2822, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2826, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2830, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2842, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2694, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2702, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2706, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2734, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2738, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2742, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2746, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2786, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2794, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2798, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2802, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2806, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2810, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2830, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2834, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2842, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2846, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2694, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2730, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2734, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2742, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2746, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2786, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2790, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2802, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2806, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2810, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2814, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2818, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2834, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2846, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2850, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2854, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2694, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2718, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2730, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2746, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2790, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2794, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2798, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2802, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2806, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2810, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2814, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2818, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2822, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2834, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2838, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2854, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2858, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2690, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2694, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2718, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2722, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2730, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2746, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2802, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2814, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2822, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2838, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2630, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2634, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2718, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2722, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2730, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2746, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2802, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2806, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2814, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2822, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2838, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2630, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2726, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2730, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2734, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2738, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2746, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2770, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2774, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2778, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2782, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2806, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2814, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2822, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2826, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2838, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2618, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2622, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2626, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2630, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2722, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2726, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2734, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2762, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2766, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2782, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2786, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2806, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2810, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2814, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2818, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2826, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2838, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2846, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2850, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2854, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2858, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2622, + "y": 910.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2626, + "y": 910.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2722, + "y": 910.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2730, + "y": 910.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2734, + "y": 910.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2758, + "y": 910.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2762, + "y": 910.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2786, + "y": 910.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2790, + "y": 910.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2810, + "y": 910.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2814, + "y": 910.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2818, + "y": 910.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2826, + "y": 910.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2838, + "y": 910.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2846, + "y": 910.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2622, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2626, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2630, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2634, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2638, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2758, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2762, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2790, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2826, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2830, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2838, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2842, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2846, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2622, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2750, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2762, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2790, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2794, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2814, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2818, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2822, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2830, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2834, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2838, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2842, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2846, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2850, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2854, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2858, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2750, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2762, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2794, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2798, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2810, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2814, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2822, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2826, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2842, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2846, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2750, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2762, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2766, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2798, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2810, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2826, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2830, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2834, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2838, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2842, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2846, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2850, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2854, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2858, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2706, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2750, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2754, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2766, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2770, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2798, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2802, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2810, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2814, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2842, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2706, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2710, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2754, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2758, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2770, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2774, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2778, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2802, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2814, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2818, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2822, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2826, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2830, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2834, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2710, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2714, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2758, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2762, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2766, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2770, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2778, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2782, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2786, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2802, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2806, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2810, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2834, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2714, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2718, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2770, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2774, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2786, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2790, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2810, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2814, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2818, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2822, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2718, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2774, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2778, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2790, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2794, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2822, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2702, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2706, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2718, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2758, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2762, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2766, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2778, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2794, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2822, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2706, + "y": 954.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2718, + "y": 954.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2766, + "y": 954.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2770, + "y": 954.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2778, + "y": 954.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2782, + "y": 954.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2786, + "y": 954.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2822, + "y": 954.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2678, + "y": 958.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2682, + "y": 958.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2706, + "y": 958.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2710, + "y": 958.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2718, + "y": 958.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2722, + "y": 958.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2726, + "y": 958.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2754, + "y": 958.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2758, + "y": 958.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2770, + "y": 958.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2786, + "y": 958.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2814, + "y": 958.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2818, + "y": 958.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2822, + "y": 958.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2606, + "y": 962.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2610, + "y": 962.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2698, + "y": 962.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2710, + "y": 962.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2714, + "y": 962.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2758, + "y": 962.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2770, + "y": 962.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2774, + "y": 962.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2778, + "y": 962.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2782, + "y": 962.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2814, + "y": 962.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2818, + "y": 962.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2602, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2606, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2698, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2702, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2706, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2714, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2758, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2762, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2766, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2598, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2602, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2706, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2714, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2718, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2742, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2746, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2750, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2766, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2770, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2774, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2706, + "y": 974.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2710, + "y": 974.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2718, + "y": 974.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2750, + "y": 974.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2774, + "y": 974.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2778, + "y": 974.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2710, + "y": 978.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2718, + "y": 978.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2722, + "y": 978.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2726, + "y": 978.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2730, + "y": 978.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2750, + "y": 978.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2790, + "y": 978.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2798, + "y": 978.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2646, + "y": 982.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2650, + "y": 982.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2710, + "y": 982.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2730, + "y": 982.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2734, + "y": 982.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2738, + "y": 982.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2750, + "y": 982.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2790, + "y": 982.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2798, + "y": 982.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2650, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2654, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2666, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2670, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2674, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2678, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2710, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2738, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2742, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2750, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2790, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2798, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2638, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2642, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2658, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2678, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2682, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2686, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2710, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2714, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2718, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2722, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2726, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2738, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2742, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2798, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2802, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2638, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2642, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2658, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2662, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2666, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2670, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2674, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2686, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2726, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2674, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2678, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2682, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2686, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2690, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2726, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2814, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2818, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2846, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2850, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2854, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2858, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2618, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2622, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2650, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2654, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2682, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2690, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2694, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2726, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2822, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2598, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2602, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2614, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2618, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2622, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2646, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2650, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2654, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2666, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2682, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2694, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2698, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2714, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2718, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2722, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2726, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2822, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2598, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2602, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2614, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2618, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2622, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2638, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2642, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2646, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2666, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2682, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2698, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2702, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2706, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2710, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2714, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2718, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2722, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2726, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2822, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2630, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2634, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2638, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2666, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2682, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2702, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2706, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2718, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2722, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2726, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2730, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2822, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2606, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2678, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2682, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2722, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2730, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2734, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2606, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2678, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2682, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2698, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2702, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2706, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2710, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2722, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2730, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2734, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2842, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2846, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2850, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2854, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2682, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2686, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2698, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2710, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2722, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2854, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2686, + "y": 1030.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2694, + "y": 1030.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2698, + "y": 1030.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2710, + "y": 1030.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2718, + "y": 1030.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2722, + "y": 1030.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2750, + "y": 1030.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2754, + "y": 1030.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2686, + "y": 1034.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2690, + "y": 1034.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2694, + "y": 1034.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2710, + "y": 1034.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2714, + "y": 1034.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2718, + "y": 1034.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2730, + "y": 1034.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2750, + "y": 1034.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2714, + "y": 1038.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2718, + "y": 1038.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2726, + "y": 1038.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2730, + "y": 1038.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2746, + "y": 1038.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2750, + "y": 1038.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2710, + "y": 1042.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2714, + "y": 1042.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2718, + "y": 1042.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2726, + "y": 1042.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2746, + "y": 1042.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2706, + "y": 1046.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2710, + "y": 1046.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2718, + "y": 1046.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2726, + "y": 1046.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2742, + "y": 1046.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2746, + "y": 1046.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2686, + "y": 1050.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2690, + "y": 1050.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2718, + "y": 1050.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2726, + "y": 1050.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2742, + "y": 1050.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2762, + "y": 1050.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2682, + "y": 1054.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2686, + "y": 1054.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2718, + "y": 1054.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2722, + "y": 1054.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2726, + "y": 1054.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2738, + "y": 1054.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2742, + "y": 1054.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2758, + "y": 1054.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2762, + "y": 1054.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2778, + "y": 1054.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2782, + "y": 1054.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2794, + "y": 1054.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + } + ] + } + ] + }, + { + "label": "frequency 0.5", + "frequency": 0.5, + "size": 1, + "reported": { + "frequency": 0.5, + "size": 1, + "richness": 1 + }, + "cases": [ + { + "region": { + "x0": 2000, + "y0": -1200, + "x1": 2256, + "y1": -944 + }, + "cliffs": [ + { + "x": 2186, + "y": -1201.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2234, + "y": -1201.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2254, + "y": -1201.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2158, + "y": -1197.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2162, + "y": -1197.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2166, + "y": -1197.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2182, + "y": -1197.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2186, + "y": -1197.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2234, + "y": -1197.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2238, + "y": -1197.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2242, + "y": -1197.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2246, + "y": -1197.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2254, + "y": -1197.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2258, + "y": -1197.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2142, + "y": -1193.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2146, + "y": -1193.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2150, + "y": -1193.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2154, + "y": -1193.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2158, + "y": -1193.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2218, + "y": -1193.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2222, + "y": -1193.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2226, + "y": -1193.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2230, + "y": -1193.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2234, + "y": -1193.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2238, + "y": -1193.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2246, + "y": -1193.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2250, + "y": -1193.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2254, + "y": -1193.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2138, + "y": -1189.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2142, + "y": -1189.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2238, + "y": -1189.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2242, + "y": -1189.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2246, + "y": -1189.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2254, + "y": -1189.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2258, + "y": -1189.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2138, + "y": -1185.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2158, + "y": -1185.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2162, + "y": -1185.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2166, + "y": -1185.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2170, + "y": -1185.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2238, + "y": -1185.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2242, + "y": -1185.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2234, + "y": -1181.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2238, + "y": -1181.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2242, + "y": -1181.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2230, + "y": -1177.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2234, + "y": -1177.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2126, + "y": -1173.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2226, + "y": -1173.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2230, + "y": -1173.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2122, + "y": -1169.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2126, + "y": -1169.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2194, + "y": -1169.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2226, + "y": -1169.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2118, + "y": -1165.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2122, + "y": -1165.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2194, + "y": -1165.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2222, + "y": -1165.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2226, + "y": -1165.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2118, + "y": -1161.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2222, + "y": -1161.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2114, + "y": -1157.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2118, + "y": -1157.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2222, + "y": -1157.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2242, + "y": -1157.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2246, + "y": -1157.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2114, + "y": -1153.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2230, + "y": -1153.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2234, + "y": -1153.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2238, + "y": -1153.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2242, + "y": -1153.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2246, + "y": -1153.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2090, + "y": -1149.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2094, + "y": -1149.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2098, + "y": -1149.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2110, + "y": -1149.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2114, + "y": -1149.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2118, + "y": -1149.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2122, + "y": -1149.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2126, + "y": -1149.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2130, + "y": -1149.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2134, + "y": -1149.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2234, + "y": -1149.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2238, + "y": -1149.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2242, + "y": -1149.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2086, + "y": -1145.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2090, + "y": -1145.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2098, + "y": -1145.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2102, + "y": -1145.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2106, + "y": -1145.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2110, + "y": -1145.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2114, + "y": -1145.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2118, + "y": -1145.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2122, + "y": -1145.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2126, + "y": -1145.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2130, + "y": -1145.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2242, + "y": -1145.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2246, + "y": -1145.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2082, + "y": -1141.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2086, + "y": -1141.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2090, + "y": -1141.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2098, + "y": -1141.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2102, + "y": -1141.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2106, + "y": -1141.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2110, + "y": -1141.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2114, + "y": -1141.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2118, + "y": -1141.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2122, + "y": -1141.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2126, + "y": -1141.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2246, + "y": -1141.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2082, + "y": -1137.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2086, + "y": -1137.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2090, + "y": -1137.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2098, + "y": -1137.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2102, + "y": -1137.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2106, + "y": -1137.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2110, + "y": -1137.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2114, + "y": -1137.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2118, + "y": -1137.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2122, + "y": -1137.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2126, + "y": -1137.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2246, + "y": -1137.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2250, + "y": -1137.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2086, + "y": -1133.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2090, + "y": -1133.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2094, + "y": -1133.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2098, + "y": -1133.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2106, + "y": -1133.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2110, + "y": -1133.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2250, + "y": -1133.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2090, + "y": -1129.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2094, + "y": -1129.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2102, + "y": -1129.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2106, + "y": -1129.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2234, + "y": -1129.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2238, + "y": -1129.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2250, + "y": -1129.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2078, + "y": -1125.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2082, + "y": -1125.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2086, + "y": -1125.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2090, + "y": -1125.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2094, + "y": -1125.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2098, + "y": -1125.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2102, + "y": -1125.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2202, + "y": -1125.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2206, + "y": -1125.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2210, + "y": -1125.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2226, + "y": -1125.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2230, + "y": -1125.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2234, + "y": -1125.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2238, + "y": -1125.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2250, + "y": -1125.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2254, + "y": -1125.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2258, + "y": -1125.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2078, + "y": -1121.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2094, + "y": -1121.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2098, + "y": -1121.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2210, + "y": -1121.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2214, + "y": -1121.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2218, + "y": -1121.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2222, + "y": -1121.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2226, + "y": -1121.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2238, + "y": -1121.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2242, + "y": -1121.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2246, + "y": -1121.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2250, + "y": -1121.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2094, + "y": -1117.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2098, + "y": -1117.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2162, + "y": -1117.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2174, + "y": -1117.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2182, + "y": -1117.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2186, + "y": -1117.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2250, + "y": -1117.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2138, + "y": -1113.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2158, + "y": -1113.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2162, + "y": -1113.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2174, + "y": -1113.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2186, + "y": -1113.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2190, + "y": -1113.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2250, + "y": -1113.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2254, + "y": -1113.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2138, + "y": -1109.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2174, + "y": -1109.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2178, + "y": -1109.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2182, + "y": -1109.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2190, + "y": -1109.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2194, + "y": -1109.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2198, + "y": -1109.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2202, + "y": -1109.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2206, + "y": -1109.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2210, + "y": -1109.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2214, + "y": -1109.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2234, + "y": -1109.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2238, + "y": -1109.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2254, + "y": -1109.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2182, + "y": -1105.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2186, + "y": -1105.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2214, + "y": -1105.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2218, + "y": -1105.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2230, + "y": -1105.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2234, + "y": -1105.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2238, + "y": -1105.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2242, + "y": -1105.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2254, + "y": -1105.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2186, + "y": -1101.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2190, + "y": -1101.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2218, + "y": -1101.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2222, + "y": -1101.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2226, + "y": -1101.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2230, + "y": -1101.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2238, + "y": -1101.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2242, + "y": -1101.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2070, + "y": -1097.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2074, + "y": -1097.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2086, + "y": -1097.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2090, + "y": -1097.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2094, + "y": -1097.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2098, + "y": -1097.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2102, + "y": -1097.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2106, + "y": -1097.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2190, + "y": -1097.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2194, + "y": -1097.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2198, + "y": -1097.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2222, + "y": -1097.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2226, + "y": -1097.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2238, + "y": -1097.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2070, + "y": -1093.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2074, + "y": -1093.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2078, + "y": -1093.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2198, + "y": -1093.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2202, + "y": -1093.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2234, + "y": -1093.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2238, + "y": -1093.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2054, + "y": -1089.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2058, + "y": -1089.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2062, + "y": -1089.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2066, + "y": -1089.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2070, + "y": -1089.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2074, + "y": -1089.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2078, + "y": -1089.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2110, + "y": -1089.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2114, + "y": -1089.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2186, + "y": -1089.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2190, + "y": -1089.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2194, + "y": -1089.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2202, + "y": -1089.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2206, + "y": -1089.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2210, + "y": -1089.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2234, + "y": -1089.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2238, + "y": -1089.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2242, + "y": -1089.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2054, + "y": -1085.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2058, + "y": -1085.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2062, + "y": -1085.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2066, + "y": -1085.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2078, + "y": -1085.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2110, + "y": -1085.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2134, + "y": -1085.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2138, + "y": -1085.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2170, + "y": -1085.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2174, + "y": -1085.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2186, + "y": -1085.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2194, + "y": -1085.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2210, + "y": -1085.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2214, + "y": -1085.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2242, + "y": -1085.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2054, + "y": -1081.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2058, + "y": -1081.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2062, + "y": -1081.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2078, + "y": -1081.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2110, + "y": -1081.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2138, + "y": -1081.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2142, + "y": -1081.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2166, + "y": -1081.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2170, + "y": -1081.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2174, + "y": -1081.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2178, + "y": -1081.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2182, + "y": -1081.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2186, + "y": -1081.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2194, + "y": -1081.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2214, + "y": -1081.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2218, + "y": -1081.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2238, + "y": -1081.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2242, + "y": -1081.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2054, + "y": -1077.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2058, + "y": -1077.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2062, + "y": -1077.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2110, + "y": -1077.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2142, + "y": -1077.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2146, + "y": -1077.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2150, + "y": -1077.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2154, + "y": -1077.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2158, + "y": -1077.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2162, + "y": -1077.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2166, + "y": -1077.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2190, + "y": -1077.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2194, + "y": -1077.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2218, + "y": -1077.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2238, + "y": -1077.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2058, + "y": -1073.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2062, + "y": -1073.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2070, + "y": -1073.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2110, + "y": -1073.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2158, + "y": -1073.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2162, + "y": -1073.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2186, + "y": -1073.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2190, + "y": -1073.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2218, + "y": -1073.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2238, + "y": -1073.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2054, + "y": -1069.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2058, + "y": -1069.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2062, + "y": -1069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2066, + "y": -1069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2070, + "y": -1069.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2110, + "y": -1069.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2186, + "y": -1069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2190, + "y": -1069.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2206, + "y": -1069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2210, + "y": -1069.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2218, + "y": -1069.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2238, + "y": -1069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2242, + "y": -1069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2246, + "y": -1069.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2046, + "y": -1065.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2050, + "y": -1065.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2054, + "y": -1065.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2058, + "y": -1065.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2134, + "y": -1065.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2138, + "y": -1065.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2142, + "y": -1065.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2146, + "y": -1065.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2150, + "y": -1065.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2170, + "y": -1065.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2174, + "y": -1065.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2198, + "y": -1065.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2202, + "y": -1065.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2206, + "y": -1065.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2210, + "y": -1065.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2218, + "y": -1065.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2222, + "y": -1065.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2046, + "y": -1061.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2050, + "y": -1061.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2054, + "y": -1061.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2122, + "y": -1061.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2126, + "y": -1061.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2130, + "y": -1061.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2134, + "y": -1061.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2166, + "y": -1061.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2170, + "y": -1061.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2174, + "y": -1061.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2210, + "y": -1061.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2222, + "y": -1061.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2234, + "y": -1061.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2238, + "y": -1061.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2038, + "y": -1057.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2042, + "y": -1057.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2046, + "y": -1057.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2118, + "y": -1057.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2122, + "y": -1057.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2138, + "y": -1057.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2206, + "y": -1057.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2210, + "y": -1057.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2222, + "y": -1057.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2234, + "y": -1057.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2238, + "y": -1057.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2038, + "y": -1053.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2042, + "y": -1053.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2046, + "y": -1053.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2050, + "y": -1053.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2054, + "y": -1053.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2110, + "y": -1053.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2114, + "y": -1053.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2118, + "y": -1053.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2138, + "y": -1053.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2222, + "y": -1053.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2226, + "y": -1053.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2230, + "y": -1053.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2234, + "y": -1053.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2238, + "y": -1053.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2242, + "y": -1053.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2210, + "y": -1049.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2214, + "y": -1049.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2242, + "y": -1049.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2214, + "y": -1045.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2218, + "y": -1045.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2222, + "y": -1045.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2226, + "y": -1045.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2110, + "y": -1041.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2114, + "y": -1041.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2226, + "y": -1041.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2230, + "y": -1041.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2234, + "y": -1041.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2026, + "y": -1037.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2110, + "y": -1037.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2114, + "y": -1037.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2250, + "y": -1037.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2254, + "y": -1037.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2022, + "y": -1033.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2026, + "y": -1033.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2110, + "y": -1033.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2254, + "y": -1033.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2258, + "y": -1033.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2022, + "y": -1029.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2026, + "y": -1029.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2094, + "y": -1029.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2098, + "y": -1029.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2022, + "y": -1025.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2026, + "y": -1025.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2030, + "y": -1025.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2066, + "y": -1025.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2098, + "y": -1025.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2022, + "y": -1021.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2026, + "y": -1021.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2030, + "y": -1021.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2066, + "y": -1021.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2098, + "y": -1021.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2102, + "y": -1021.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2106, + "y": -1021.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2202, + "y": -1021.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2206, + "y": -1021.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2238, + "y": -1021.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2014, + "y": -1017.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2018, + "y": -1017.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2026, + "y": -1017.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2030, + "y": -1017.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2106, + "y": -1017.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2198, + "y": -1017.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2202, + "y": -1017.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2206, + "y": -1017.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2210, + "y": -1017.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2222, + "y": -1017.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2238, + "y": -1017.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2022, + "y": -1013.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2026, + "y": -1013.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2030, + "y": -1013.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2198, + "y": -1013.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2202, + "y": -1013.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2210, + "y": -1013.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2222, + "y": -1013.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2238, + "y": -1013.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2014, + "y": -1009.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2018, + "y": -1009.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2022, + "y": -1009.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2030, + "y": -1009.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2034, + "y": -1009.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2202, + "y": -1009.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2210, + "y": -1009.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2214, + "y": -1009.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2222, + "y": -1009.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2238, + "y": -1009.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2242, + "y": -1009.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2014, + "y": -1005.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2018, + "y": -1005.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2022, + "y": -1005.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2034, + "y": -1005.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2122, + "y": -1005.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2126, + "y": -1005.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2202, + "y": -1005.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2206, + "y": -1005.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2210, + "y": -1005.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2214, + "y": -1005.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2222, + "y": -1005.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2242, + "y": -1005.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2014, + "y": -1001.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2034, + "y": -1001.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2126, + "y": -1001.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2206, + "y": -1001.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2210, + "y": -1001.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2222, + "y": -1001.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2242, + "y": -1001.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2246, + "y": -1001.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2014, + "y": -997.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2034, + "y": -997.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2046, + "y": -997.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2118, + "y": -997.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2206, + "y": -997.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2210, + "y": -997.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2218, + "y": -997.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2222, + "y": -997.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2246, + "y": -997.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2010, + "y": -993.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2014, + "y": -993.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2034, + "y": -993.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2038, + "y": -993.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2046, + "y": -993.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2054, + "y": -993.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2118, + "y": -993.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2202, + "y": -993.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2218, + "y": -993.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2222, + "y": -993.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2246, + "y": -993.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2010, + "y": -989.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2014, + "y": -989.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2025.61328125, + "y": -989.6875, + "name": "crater-cliff", + "orientation": "south-to-east" + }, + { + "x": 2034, + "y": -989.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2038, + "y": -989.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2046, + "y": -989.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2050, + "y": -989.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2054, + "y": -989.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2202, + "y": -989.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2206, + "y": -989.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2222, + "y": -989.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2226, + "y": -989.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2246, + "y": -989.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2250, + "y": -989.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2023.5625, + "y": -986.1875, + "name": "crater-cliff", + "orientation": "south-to-north" + }, + { + "x": 2006, + "y": -985.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2010, + "y": -985.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2014, + "y": -985.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2030, + "y": -985.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2034, + "y": -985.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2082, + "y": -985.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2086, + "y": -985.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2198, + "y": -985.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2206, + "y": -985.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2210, + "y": -985.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2226, + "y": -985.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2230, + "y": -985.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2250, + "y": -985.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2254, + "y": -985.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2258, + "y": -985.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2035.51171875, + "y": -982.69140625, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": 2006, + "y": -981.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2010, + "y": -981.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2014, + "y": -981.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2026, + "y": -981.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2030, + "y": -981.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2086, + "y": -981.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2090, + "y": -981.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2118, + "y": -981.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2122, + "y": -981.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2198, + "y": -981.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2202, + "y": -981.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2210, + "y": -981.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2214, + "y": -981.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2230, + "y": -981.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2234, + "y": -981.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2006, + "y": -977.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2010, + "y": -977.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2026, + "y": -977.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2090, + "y": -977.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2202, + "y": -977.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2206, + "y": -977.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2214, + "y": -977.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2218, + "y": -977.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2234, + "y": -977.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2238, + "y": -977.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2006, + "y": -973.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2010, + "y": -973.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2026, + "y": -973.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2090, + "y": -973.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2206, + "y": -973.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2218, + "y": -973.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2234, + "y": -973.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2238, + "y": -973.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2006, + "y": -969.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2010, + "y": -969.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2026, + "y": -969.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2086, + "y": -969.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2090, + "y": -969.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2206, + "y": -969.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2218, + "y": -969.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2234, + "y": -969.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2006, + "y": -965.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2010, + "y": -965.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2026, + "y": -965.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2086, + "y": -965.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2206, + "y": -965.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2218, + "y": -965.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2234, + "y": -965.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2006, + "y": -961.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2010, + "y": -961.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2014, + "y": -961.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2018, + "y": -961.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2022, + "y": -961.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2026, + "y": -961.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2030, + "y": -961.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2034, + "y": -961.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2038, + "y": -961.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2042, + "y": -961.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2046, + "y": -961.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2126, + "y": -961.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2130, + "y": -961.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2174, + "y": -961.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2178, + "y": -961.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2218, + "y": -961.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2234, + "y": -961.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2254, + "y": -961.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2258, + "y": -961.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2006, + "y": -957.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2010, + "y": -957.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2014, + "y": -957.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2018, + "y": -957.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2022, + "y": -957.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2026, + "y": -957.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2030, + "y": -957.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2046, + "y": -957.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2110, + "y": -957.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2114, + "y": -957.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2118, + "y": -957.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2126, + "y": -957.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2130, + "y": -957.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2174, + "y": -957.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2178, + "y": -957.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2218, + "y": -957.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2234, + "y": -957.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2238, + "y": -957.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2118, + "y": -953.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2122, + "y": -953.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2214, + "y": -953.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2218, + "y": -953.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2238, + "y": -953.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2102, + "y": -949.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2106, + "y": -949.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2110, + "y": -949.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2122, + "y": -949.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2150, + "y": -949.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2154, + "y": -949.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2206, + "y": -949.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2210, + "y": -949.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2214, + "y": -949.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2238, + "y": -949.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2242, + "y": -949.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2094, + "y": -945.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2110, + "y": -945.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2114, + "y": -945.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2122, + "y": -945.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2142, + "y": -945.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2146, + "y": -945.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2150, + "y": -945.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2242, + "y": -945.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2250, + "y": -945.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2114, + "y": -941.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2122, + "y": -941.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2242, + "y": -941.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2250, + "y": -941.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + } + ] + }, + { + "region": { + "x0": -2200, + "y0": -1500, + "x1": -1944, + "y1": -1244 + }, + "cliffs": [ + { + "x": -2170, + "y": -1501.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2166, + "y": -1501.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2154, + "y": -1501.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2142, + "y": -1501.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2130, + "y": -1501.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2098, + "y": -1501.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2094, + "y": -1501.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2074, + "y": -1501.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2058, + "y": -1501.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2054, + "y": -1501.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2050, + "y": -1501.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2046, + "y": -1501.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2042, + "y": -1501.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2038, + "y": -1501.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2002, + "y": -1501.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2182, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2166, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2154, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2146, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2142, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2130, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2126, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2122, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2118, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2114, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2102, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2098, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2094, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2090, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2074, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2062, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2058, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2038, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2034, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2018, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2002, + "y": -1497.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2186, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2182, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2166, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2154, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2146, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2138, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2134, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2130, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2114, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2110, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2102, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2090, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2078, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2074, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2066, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2062, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2034, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2018, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2014, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2002, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1998, + "y": -1493.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2186, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2182, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2166, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2154, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2146, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2142, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2138, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2134, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2130, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2126, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2122, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2118, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2110, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2102, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2098, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2094, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2090, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2086, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2078, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2070, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2066, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2014, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2010, + "y": -1489.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2186, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2182, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2166, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2154, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2146, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2142, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2138, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2134, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2130, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2118, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2110, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2102, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2098, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2094, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2086, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2082, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2070, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2010, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2006, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1982, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1970, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1966, + "y": -1485.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2186, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2182, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2166, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2154, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2146, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2138, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2130, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2118, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2110, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2102, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2098, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2094, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2086, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2082, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2074, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2070, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1986, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1982, + "y": -1481.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2182, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2166, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2154, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2146, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2138, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2130, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2126, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2122, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2118, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2114, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2110, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2106, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2102, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2078, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2074, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2018, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2014, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1990, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1986, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1982, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1966, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1962, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1958, + "y": -1477.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2166, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2154, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2146, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2142, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2138, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2130, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2126, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2122, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2118, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2114, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2110, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2106, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2102, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2098, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2094, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2078, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2074, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2018, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2014, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1990, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1986, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1982, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1966, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1962, + "y": -1473.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2202, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2198, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2170, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2166, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2154, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2142, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2138, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2134, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2130, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2126, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2102, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2098, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2094, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1990, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1986, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1982, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1962, + "y": -1469.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2198, + "y": -1465.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2194, + "y": -1465.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2170, + "y": -1465.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2154, + "y": -1465.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2130, + "y": -1465.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2118, + "y": -1465.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2114, + "y": -1465.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2102, + "y": -1465.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1990, + "y": -1465.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1986, + "y": -1465.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1982, + "y": -1465.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1962, + "y": -1465.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2202, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2198, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2194, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2190, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2154, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2130, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2126, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2122, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2118, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2102, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2086, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2082, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1990, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1986, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1982, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1962, + "y": -1461.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2198, + "y": -1457.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2194, + "y": -1457.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2190, + "y": -1457.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2110, + "y": -1457.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2106, + "y": -1457.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2102, + "y": -1457.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2086, + "y": -1457.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1998, + "y": -1457.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1982, + "y": -1457.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1962, + "y": -1457.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2198, + "y": -1453.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2194, + "y": -1453.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2190, + "y": -1453.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2114, + "y": -1453.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2110, + "y": -1453.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2086, + "y": -1453.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1998, + "y": -1453.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1982, + "y": -1453.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1962, + "y": -1453.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1958, + "y": -1453.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2198, + "y": -1449.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2194, + "y": -1449.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2190, + "y": -1449.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2182, + "y": -1449.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2178, + "y": -1449.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2114, + "y": -1449.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2086, + "y": -1449.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2082, + "y": -1449.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1998, + "y": -1449.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1990, + "y": -1449.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1986, + "y": -1449.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1982, + "y": -1449.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2202, + "y": -1445.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2198, + "y": -1445.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2194, + "y": -1445.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2190, + "y": -1445.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2182, + "y": -1445.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2114, + "y": -1445.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2082, + "y": -1445.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1998, + "y": -1445.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1990, + "y": -1445.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1986, + "y": -1445.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1982, + "y": -1445.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1950, + "y": -1445.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2202, + "y": -1441.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2198, + "y": -1441.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2194, + "y": -1441.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2190, + "y": -1441.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2186, + "y": -1441.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2182, + "y": -1441.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2178, + "y": -1441.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2174, + "y": -1441.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2114, + "y": -1441.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2110, + "y": -1441.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1990, + "y": -1441.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1986, + "y": -1441.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1982, + "y": -1441.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1950, + "y": -1441.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2198, + "y": -1437.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2194, + "y": -1437.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2190, + "y": -1437.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2186, + "y": -1437.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2182, + "y": -1437.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2178, + "y": -1437.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2170, + "y": -1437.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2110, + "y": -1437.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1982, + "y": -1437.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1978, + "y": -1437.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1950, + "y": -1437.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2198, + "y": -1433.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2190, + "y": -1433.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2182, + "y": -1433.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2178, + "y": -1433.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2174, + "y": -1433.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2170, + "y": -1433.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2150, + "y": -1433.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1978, + "y": -1433.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1950, + "y": -1433.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2198, + "y": -1429.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2194, + "y": -1429.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2190, + "y": -1429.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2182, + "y": -1429.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2150, + "y": -1429.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1978, + "y": -1429.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1950, + "y": -1429.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2202, + "y": -1425.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2198, + "y": -1425.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2194, + "y": -1425.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2182, + "y": -1425.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2178, + "y": -1425.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1986, + "y": -1425.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1978, + "y": -1425.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1970, + "y": -1425.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -1966, + "y": -1425.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1950, + "y": -1425.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2194, + "y": -1421.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2182, + "y": -1421.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2178, + "y": -1421.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2170, + "y": -1421.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2094, + "y": -1421.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2090, + "y": -1421.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1986, + "y": -1421.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -1978, + "y": -1421.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1974, + "y": -1421.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1970, + "y": -1421.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1966, + "y": -1421.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1954, + "y": -1421.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1950, + "y": -1421.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2198, + "y": -1417.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2194, + "y": -1417.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2182, + "y": -1417.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2170, + "y": -1417.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1974, + "y": -1417.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1954, + "y": -1417.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2202, + "y": -1413.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2198, + "y": -1413.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2186, + "y": -1413.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2182, + "y": -1413.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2170, + "y": -1413.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2122, + "y": -1413.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1974, + "y": -1413.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1970, + "y": -1413.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1954, + "y": -1413.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2186, + "y": -1409.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2170, + "y": -1409.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2122, + "y": -1409.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1986, + "y": -1409.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1982, + "y": -1409.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1978, + "y": -1409.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1974, + "y": -1409.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1970, + "y": -1409.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -1962, + "y": -1409.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1958, + "y": -1409.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1954, + "y": -1409.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2186, + "y": -1405.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2170, + "y": -1405.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2122, + "y": -1405.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2118, + "y": -1405.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1962, + "y": -1405.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2186, + "y": -1401.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2170, + "y": -1401.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2126, + "y": -1401.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2122, + "y": -1401.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2186, + "y": -1397.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2182, + "y": -1397.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2170, + "y": -1397.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2134, + "y": -1397.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2130, + "y": -1397.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2126, + "y": -1397.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1946, + "y": -1397.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1942, + "y": -1397.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2182, + "y": -1393.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2178, + "y": -1393.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2170, + "y": -1393.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2134, + "y": -1393.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2186, + "y": -1389.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2182, + "y": -1389.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2178, + "y": -1389.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2170, + "y": -1389.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2134, + "y": -1389.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2130, + "y": -1389.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2186, + "y": -1385.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2170, + "y": -1385.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2130, + "y": -1385.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2126, + "y": -1385.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2122, + "y": -1385.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2118, + "y": -1385.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2114, + "y": -1385.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1982, + "y": -1385.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1966, + "y": -1385.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1962, + "y": -1385.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2186, + "y": -1381.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2146, + "y": -1381.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2114, + "y": -1381.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1982, + "y": -1381.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1970, + "y": -1381.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1966, + "y": -1381.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2202, + "y": -1377.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2198, + "y": -1377.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2194, + "y": -1377.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2186, + "y": -1377.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2182, + "y": -1377.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2178, + "y": -1377.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2174, + "y": -1377.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2146, + "y": -1377.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1970, + "y": -1377.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1966, + "y": -1377.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2194, + "y": -1373.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2182, + "y": -1373.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2178, + "y": -1373.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2174, + "y": -1373.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2146, + "y": -1373.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1970, + "y": -1373.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1966, + "y": -1373.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2194, + "y": -1369.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2182, + "y": -1369.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2178, + "y": -1369.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2174, + "y": -1369.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2146, + "y": -1369.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2142, + "y": -1369.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2138, + "y": -1369.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2134, + "y": -1369.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1974, + "y": -1369.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1970, + "y": -1369.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2194, + "y": -1365.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2178, + "y": -1365.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2134, + "y": -1365.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2130, + "y": -1365.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2194, + "y": -1361.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2178, + "y": -1361.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2130, + "y": -1361.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2194, + "y": -1357.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2178, + "y": -1357.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2130, + "y": -1357.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2118, + "y": -1357.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2114, + "y": -1357.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2185.30078125, + "y": -1354.4375, + "name": "crater-cliff", + "orientation": "west-to-south" + }, + { + "x": -2194, + "y": -1353.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2178, + "y": -1353.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2130, + "y": -1353.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2122, + "y": -1353.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2118, + "y": -1353.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1954, + "y": -1353.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1950, + "y": -1353.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2183.25, + "y": -1350.9375, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": -2202, + "y": -1349.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2198, + "y": -1349.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2194, + "y": -1349.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2178, + "y": -1349.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2167, + "y": -1349.51171875, + "name": "crater-cliff", + "orientation": "west-to-east" + }, + { + "x": -2162.05078125, + "y": -1348.0625, + "name": "crater-cliff", + "orientation": "west-to-south" + }, + { + "x": -2150, + "y": -1349.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2130, + "y": -1349.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2122, + "y": -1349.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2114, + "y": -1349.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2110, + "y": -1349.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2106, + "y": -1349.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2074, + "y": -1349.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2070, + "y": -1349.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2066, + "y": -1349.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1950, + "y": -1349.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1946, + "y": -1349.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2185.30078125, + "y": -1347.44140625, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": -2198, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2194, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2178, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2174, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2170, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2160, + "y": -1344.5625, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": -2150, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2138, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2134, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2130, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2122, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2118, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2114, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2106, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2066, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2062, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2058, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1950, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1946, + "y": -1345.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2198, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2150, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2138, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2134, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2058, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2054, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2050, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2046, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2042, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2026, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2022, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2018, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2014, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2010, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2006, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1950, + "y": -1341.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2167, + "y": -1339.61328125, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": -2198, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2194, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2174, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2158, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2154, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2150, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2134, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2130, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2126, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2122, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2118, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2082, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2078, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2006, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2002, + "y": -1337.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2194, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2174, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2162, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2158, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2082, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2078, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2074, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2070, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2066, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2062, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2058, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2050, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2046, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2042, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2034, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2030, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2026, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1950, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1946, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1942, + "y": -1333.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2184, + "y": -1330.76171875, + "name": "crater-cliff", + "orientation": "west-to-east" + }, + { + "x": -2202, + "y": -1329.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2194, + "y": -1329.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2179.05078125, + "y": -1329.3125, + "name": "crater-cliff", + "orientation": "west-to-south" + }, + { + "x": -2166, + "y": -1329.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2162, + "y": -1329.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2082, + "y": -1329.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2058, + "y": -1329.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2054, + "y": -1329.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2050, + "y": -1329.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2046, + "y": -1329.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2042, + "y": -1329.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2038, + "y": -1329.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2026, + "y": -1329.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2022, + "y": -1329.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2198, + "y": -1325.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2194, + "y": -1325.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2177, + "y": -1325.8125, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": -2166, + "y": -1325.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2162, + "y": -1325.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2082, + "y": -1325.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2050, + "y": -1325.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2038, + "y": -1325.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2034, + "y": -1325.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2030, + "y": -1325.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2179.05078125, + "y": -1322.31640625, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": -2198, + "y": -1321.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2194, + "y": -1321.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2184, + "y": -1320.86328125, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": -2162, + "y": -1321.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2158, + "y": -1321.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2154, + "y": -1321.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2150, + "y": -1321.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2030, + "y": -1321.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1962, + "y": -1321.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2202, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2198, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2194, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2162, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2158, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2150, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2146, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2142, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2138, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2078, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2050, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1966, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1962, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1958, + "y": -1317.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2158, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2154, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2138, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2134, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2130, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2126, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2122, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2118, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2114, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2078, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2074, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2070, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2058, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2054, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2050, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1982, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -1978, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1974, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1970, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1966, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1962, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1958, + "y": -1313.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2114, + "y": -1309.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2070, + "y": -1309.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2066, + "y": -1309.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2018, + "y": -1309.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2014, + "y": -1309.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1962, + "y": -1309.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2158, + "y": -1305.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2146, + "y": -1305.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2142, + "y": -1305.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2118, + "y": -1305.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2114, + "y": -1305.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2102, + "y": -1305.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2086, + "y": -1305.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2082, + "y": -1305.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1962, + "y": -1305.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2158, + "y": -1301.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2150, + "y": -1301.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2146, + "y": -1301.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2142, + "y": -1301.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2138, + "y": -1301.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2118, + "y": -1301.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2106, + "y": -1301.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2102, + "y": -1301.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2082, + "y": -1301.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2078, + "y": -1301.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2074, + "y": -1301.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1966, + "y": -1301.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1962, + "y": -1301.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2170, + "y": -1297.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2166, + "y": -1297.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2158, + "y": -1297.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2154, + "y": -1297.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2138, + "y": -1297.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2134, + "y": -1297.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2118, + "y": -1297.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2110, + "y": -1297.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2106, + "y": -1297.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2006, + "y": -1297.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2002, + "y": -1297.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1998, + "y": -1297.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1970, + "y": -1297.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1966, + "y": -1297.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2166, + "y": -1293.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2162, + "y": -1293.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2154, + "y": -1293.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2150, + "y": -1293.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2134, + "y": -1293.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2130, + "y": -1293.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2118, + "y": -1293.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2114, + "y": -1293.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2110, + "y": -1293.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2002, + "y": -1293.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1998, + "y": -1293.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1982, + "y": -1293.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1978, + "y": -1293.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1974, + "y": -1293.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1970, + "y": -1293.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2174, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2170, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2162, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2158, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2150, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2146, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2130, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2126, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2114, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2110, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2042, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2002, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1998, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1994, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1990, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1986, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1982, + "y": -1289.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2174, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2170, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2166, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2158, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2154, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2146, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2126, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2122, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2118, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2114, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2110, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2046, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2042, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2014, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2010, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2006, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2002, + "y": -1285.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2174, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2166, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2154, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2146, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2142, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2138, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2134, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2118, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2114, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2110, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2046, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2042, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2038, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2034, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2018, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2014, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1974, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1970, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1966, + "y": -1281.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2166, + "y": -1277.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2154, + "y": -1277.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2134, + "y": -1277.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2118, + "y": -1277.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2086, + "y": -1277.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2082, + "y": -1277.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2034, + "y": -1277.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2030, + "y": -1277.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -1978, + "y": -1277.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1974, + "y": -1277.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1966, + "y": -1277.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1962, + "y": -1277.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1954, + "y": -1277.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2166, + "y": -1273.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2154, + "y": -1273.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2134, + "y": -1273.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2130, + "y": -1273.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2118, + "y": -1273.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2082, + "y": -1273.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2078, + "y": -1273.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2034, + "y": -1273.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2030, + "y": -1273.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1978, + "y": -1273.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1962, + "y": -1273.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1958, + "y": -1273.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1954, + "y": -1273.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2166, + "y": -1269.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2158, + "y": -1269.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2154, + "y": -1269.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2130, + "y": -1269.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2126, + "y": -1269.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2118, + "y": -1269.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2078, + "y": -1269.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2074, + "y": -1269.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2034, + "y": -1269.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2030, + "y": -1269.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1978, + "y": -1269.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1946, + "y": -1269.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2166, + "y": -1265.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2158, + "y": -1265.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2126, + "y": -1265.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2118, + "y": -1265.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2074, + "y": -1265.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2034, + "y": -1265.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2030, + "y": -1265.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2002, + "y": -1265.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1998, + "y": -1265.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -1958, + "y": -1265.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -1954, + "y": -1265.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1950, + "y": -1265.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1946, + "y": -1265.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2166, + "y": -1261.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2158, + "y": -1261.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2154, + "y": -1261.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2126, + "y": -1261.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2074, + "y": -1261.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2010, + "y": -1261.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2006, + "y": -1261.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2002, + "y": -1261.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1998, + "y": -1261.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1994, + "y": -1261.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -1958, + "y": -1261.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2166, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2154, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2150, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2146, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2142, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2110, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2106, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2102, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2022, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2018, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2014, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2010, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1994, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -1978, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -1974, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -1958, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -1954, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -1950, + "y": -1257.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2174, + "y": -1253.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2170, + "y": -1253.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2166, + "y": -1253.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2142, + "y": -1253.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2138, + "y": -1253.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2102, + "y": -1253.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2034, + "y": -1253.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2030, + "y": -1253.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2026, + "y": -1253.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2022, + "y": -1253.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1994, + "y": -1253.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -1974, + "y": -1253.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -1950, + "y": -1253.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2182, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2170, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2166, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2162, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2154, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2150, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2146, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2138, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2110, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2106, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2102, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2098, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2094, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2090, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2086, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2038, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2034, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1994, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -1990, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1986, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1982, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1978, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -1974, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -1950, + "y": -1249.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2182, + "y": -1245.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2178, + "y": -1245.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2170, + "y": -1245.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2166, + "y": -1245.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2162, + "y": -1245.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2158, + "y": -1245.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2154, + "y": -1245.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2146, + "y": -1245.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2038, + "y": -1245.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -1950, + "y": -1245.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + } + ] + }, + { + "region": { + "x0": 1800, + "y0": 3400, + "x1": 2056, + "y1": 3656 + }, + "cliffs": [ + { + "x": 1798, + "y": 3442.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1802, + "y": 3442.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1802, + "y": 3446.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1802, + "y": 3450.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1806, + "y": 3450.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1802, + "y": 3454.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1806, + "y": 3454.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1814, + "y": 3454.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1798, + "y": 3458.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1802, + "y": 3458.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1814, + "y": 3458.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1814, + "y": 3462.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1910, + "y": 3462.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1922, + "y": 3462.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1810, + "y": 3466.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1814, + "y": 3466.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1902, + "y": 3466.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1906, + "y": 3466.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1910, + "y": 3466.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1922, + "y": 3466.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1926, + "y": 3466.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1806, + "y": 3470.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1810, + "y": 3470.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1902, + "y": 3470.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1926, + "y": 3470.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1806, + "y": 3474.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1810, + "y": 3474.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1814, + "y": 3474.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1818, + "y": 3474.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1822, + "y": 3474.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1826, + "y": 3474.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1830, + "y": 3474.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1926, + "y": 3474.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1930, + "y": 3474.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1830, + "y": 3478.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1834, + "y": 3478.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1930, + "y": 3478.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1834, + "y": 3482.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1914, + "y": 3482.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1918, + "y": 3482.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1922, + "y": 3482.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1930, + "y": 3482.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1934, + "y": 3482.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1834, + "y": 3486.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1914, + "y": 3486.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1922, + "y": 3486.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1934, + "y": 3486.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1818, + "y": 3490.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1822, + "y": 3490.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1834, + "y": 3490.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1838, + "y": 3490.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1914, + "y": 3490.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1918, + "y": 3490.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1922, + "y": 3490.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1934, + "y": 3490.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1798, + "y": 3494.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1802, + "y": 3494.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1814, + "y": 3494.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1818, + "y": 3494.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1822, + "y": 3494.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1838, + "y": 3494.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1898, + "y": 3494.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1902, + "y": 3494.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1802, + "y": 3498.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1806, + "y": 3498.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1810, + "y": 3498.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1814, + "y": 3498.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1822, + "y": 3498.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1826, + "y": 3498.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1838, + "y": 3498.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1842, + "y": 3498.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1846, + "y": 3498.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1902, + "y": 3498.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1906, + "y": 3498.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1826, + "y": 3502.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1846, + "y": 3502.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1850, + "y": 3502.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1906, + "y": 3502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1826, + "y": 3506.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1830, + "y": 3506.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1850, + "y": 3506.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1854, + "y": 3506.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1906, + "y": 3506.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1830, + "y": 3510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1834, + "y": 3510.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1854, + "y": 3510.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1858, + "y": 3510.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1834, + "y": 3514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1838, + "y": 3514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1842, + "y": 3514.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1858, + "y": 3514.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1862, + "y": 3514.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1798, + "y": 3518.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1802, + "y": 3518.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1842, + "y": 3518.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1846, + "y": 3518.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1862, + "y": 3518.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1866, + "y": 3518.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1870, + "y": 3518.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1802, + "y": 3522.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1806, + "y": 3522.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1846, + "y": 3522.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1870, + "y": 3522.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1806, + "y": 3526.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1810, + "y": 3526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1814, + "y": 3526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1818, + "y": 3526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1822, + "y": 3526.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1846, + "y": 3526.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1870, + "y": 3526.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1822, + "y": 3530.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1826, + "y": 3530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1830, + "y": 3530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1834, + "y": 3530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1838, + "y": 3530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1842, + "y": 3530.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1846, + "y": 3530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1870, + "y": 3530.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1838, + "y": 3534.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1842, + "y": 3534.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1850, + "y": 3534.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1854, + "y": 3534.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1858, + "y": 3534.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1870, + "y": 3534.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1874, + "y": 3534.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1850, + "y": 3538.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1854, + "y": 3538.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1858, + "y": 3538.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1870, + "y": 3538.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1874, + "y": 3538.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2010, + "y": 3538.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1810, + "y": 3542.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1814, + "y": 3542.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1818, + "y": 3542.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1822, + "y": 3542.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1826, + "y": 3542.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1830, + "y": 3542.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1866, + "y": 3542.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1870, + "y": 3542.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2010, + "y": 3542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2014, + "y": 3542.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1802, + "y": 3546.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1806, + "y": 3546.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1810, + "y": 3546.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1830, + "y": 3546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1834, + "y": 3546.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1838, + "y": 3546.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1862, + "y": 3546.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1866, + "y": 3546.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2014, + "y": 3546.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2018, + "y": 3546.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1798, + "y": 3550.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1802, + "y": 3550.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1838, + "y": 3550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1842, + "y": 3550.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2014, + "y": 3550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1842, + "y": 3554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1846, + "y": 3554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2014, + "y": 3554.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1846, + "y": 3558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1850, + "y": 3558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1854, + "y": 3558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2014, + "y": 3558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2014, + "y": 3562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1934, + "y": 3598.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1938, + "y": 3598.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1934, + "y": 3602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1938, + "y": 3602.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1854, + "y": 3610.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1858, + "y": 3610.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1854, + "y": 3614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1858, + "y": 3614.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1966, + "y": 3630.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1970, + "y": 3630.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1966, + "y": 3634.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1970, + "y": 3634.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1962, + "y": 3638.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1966, + "y": 3638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1970, + "y": 3638.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1974, + "y": 3638.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1898, + "y": 3642.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1902, + "y": 3642.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1906, + "y": 3642.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1910, + "y": 3642.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1918, + "y": 3642.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1922, + "y": 3642.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1962, + "y": 3642.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1974, + "y": 3642.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1978, + "y": 3642.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1898, + "y": 3646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1918, + "y": 3646.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1922, + "y": 3646.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1962, + "y": 3646.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1966, + "y": 3646.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1978, + "y": 3646.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1982, + "y": 3646.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1898, + "y": 3650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1902, + "y": 3650.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1906, + "y": 3650.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1966, + "y": 3650.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1982, + "y": 3650.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1966, + "y": 3654.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1970, + "y": 3654.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1974, + "y": 3654.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1982, + "y": 3654.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1974, + "y": 3658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + } + ] + }, + { + "region": { + "x0": 600, + "y0": 2200, + "x1": 856, + "y1": 2456 + }, + "cliffs": [ + { + "x": 614, + "y": 2198.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 658, + "y": 2198.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 730, + "y": 2198.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 802, + "y": 2198.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 814, + "y": 2198.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 818, + "y": 2198.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 830, + "y": 2198.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 842, + "y": 2198.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 850, + "y": 2198.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 854, + "y": 2198.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 858, + "y": 2198.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 614, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 618, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 622, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 626, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 658, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 662, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 710, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 714, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 718, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 722, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 730, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 766, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 802, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 810, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 814, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 818, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 822, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 830, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 834, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 842, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 846, + "y": 2202.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 602, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 606, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 610, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 614, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 626, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 638, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 642, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 646, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 650, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 654, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 658, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 662, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 710, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 722, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 730, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 762, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 766, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 798, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 802, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 810, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 822, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 834, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 838, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 846, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 850, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 854, + "y": 2206.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 602, + "y": 2210.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 606, + "y": 2210.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 614, + "y": 2210.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 626, + "y": 2210.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 630, + "y": 2210.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 638, + "y": 2210.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 654, + "y": 2210.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 658, + "y": 2210.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 710, + "y": 2210.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 714, + "y": 2210.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 718, + "y": 2210.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 722, + "y": 2210.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 726, + "y": 2210.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 730, + "y": 2210.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 758, + "y": 2210.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 762, + "y": 2210.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 806, + "y": 2210.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 810, + "y": 2210.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 814, + "y": 2210.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 818, + "y": 2210.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 822, + "y": 2210.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 826, + "y": 2210.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 830, + "y": 2210.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 838, + "y": 2210.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 842, + "y": 2210.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 846, + "y": 2210.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 850, + "y": 2210.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 854, + "y": 2210.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 606, + "y": 2214.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 614, + "y": 2214.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 630, + "y": 2214.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 634, + "y": 2214.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 638, + "y": 2214.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 718, + "y": 2214.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 722, + "y": 2214.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 726, + "y": 2214.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 734, + "y": 2214.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 754, + "y": 2214.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 758, + "y": 2214.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 802, + "y": 2214.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 806, + "y": 2214.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 810, + "y": 2214.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 814, + "y": 2214.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 818, + "y": 2214.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 822, + "y": 2214.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 826, + "y": 2214.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 830, + "y": 2214.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 834, + "y": 2214.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 838, + "y": 2214.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 842, + "y": 2214.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 854, + "y": 2214.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 606, + "y": 2218.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 610, + "y": 2218.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 614, + "y": 2218.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 618, + "y": 2218.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 622, + "y": 2218.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 626, + "y": 2218.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 638, + "y": 2218.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 642, + "y": 2218.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 646, + "y": 2218.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 710, + "y": 2218.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 714, + "y": 2218.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 718, + "y": 2218.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 726, + "y": 2218.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 730, + "y": 2218.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 734, + "y": 2218.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 754, + "y": 2218.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 802, + "y": 2218.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 810, + "y": 2218.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 814, + "y": 2218.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 818, + "y": 2218.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 826, + "y": 2218.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 830, + "y": 2218.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 834, + "y": 2218.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 842, + "y": 2218.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 846, + "y": 2218.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 850, + "y": 2218.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 854, + "y": 2218.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 858, + "y": 2218.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 610, + "y": 2222.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 626, + "y": 2222.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 630, + "y": 2222.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 638, + "y": 2222.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 646, + "y": 2222.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 702, + "y": 2222.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 706, + "y": 2222.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 710, + "y": 2222.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 718, + "y": 2222.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 722, + "y": 2222.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 726, + "y": 2222.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 738, + "y": 2222.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 810, + "y": 2222.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 814, + "y": 2222.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 818, + "y": 2222.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 822, + "y": 2222.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 826, + "y": 2222.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 834, + "y": 2222.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 838, + "y": 2222.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 842, + "y": 2222.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 846, + "y": 2222.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 850, + "y": 2222.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 854, + "y": 2222.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 598, + "y": 2226.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 602, + "y": 2226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 610, + "y": 2226.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 614, + "y": 2226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 618, + "y": 2226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 630, + "y": 2226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 638, + "y": 2226.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 642, + "y": 2226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 646, + "y": 2226.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 702, + "y": 2226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 718, + "y": 2226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 738, + "y": 2226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 826, + "y": 2226.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 854, + "y": 2226.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 602, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 606, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 618, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 622, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 626, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 630, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 638, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 642, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 694, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 698, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 702, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 718, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 722, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 730, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 734, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 738, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 826, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 854, + "y": 2230.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 606, + "y": 2234.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 622, + "y": 2234.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 626, + "y": 2234.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 722, + "y": 2234.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 730, + "y": 2234.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 826, + "y": 2234.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 854, + "y": 2234.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 606, + "y": 2238.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 610, + "y": 2238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 714, + "y": 2238.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 718, + "y": 2238.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 754, + "y": 2238.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 826, + "y": 2238.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 854, + "y": 2238.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 610, + "y": 2242.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 614, + "y": 2242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 702, + "y": 2242.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 706, + "y": 2242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 710, + "y": 2242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 746, + "y": 2242.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 750, + "y": 2242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 754, + "y": 2242.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 758, + "y": 2242.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 762, + "y": 2242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 790, + "y": 2242.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 794, + "y": 2242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 798, + "y": 2242.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 802, + "y": 2242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 826, + "y": 2242.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 830, + "y": 2242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 834, + "y": 2242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 838, + "y": 2242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 842, + "y": 2242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 850, + "y": 2242.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 854, + "y": 2242.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 614, + "y": 2246.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 618, + "y": 2246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 750, + "y": 2246.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 754, + "y": 2246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 758, + "y": 2246.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 762, + "y": 2246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 766, + "y": 2246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 786, + "y": 2246.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 790, + "y": 2246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 798, + "y": 2246.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 842, + "y": 2246.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 846, + "y": 2246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 850, + "y": 2246.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 618, + "y": 2250.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 622, + "y": 2250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 754, + "y": 2250.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 758, + "y": 2250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 766, + "y": 2250.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 770, + "y": 2250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 790, + "y": 2250.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 794, + "y": 2250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 798, + "y": 2250.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 754, + "y": 2254.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 758, + "y": 2254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 762, + "y": 2254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 766, + "y": 2254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 770, + "y": 2254.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 774, + "y": 2254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 778, + "y": 2254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 782, + "y": 2254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 786, + "y": 2254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 790, + "y": 2254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 798, + "y": 2254.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 802, + "y": 2254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 826, + "y": 2254.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 830, + "y": 2254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 834, + "y": 2254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 838, + "y": 2254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 842, + "y": 2254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 846, + "y": 2254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 850, + "y": 2254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 854, + "y": 2254.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 710, + "y": 2258.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 714, + "y": 2258.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 718, + "y": 2258.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 722, + "y": 2258.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 798, + "y": 2258.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 802, + "y": 2258.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 826, + "y": 2258.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 830, + "y": 2258.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 834, + "y": 2258.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 838, + "y": 2258.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 842, + "y": 2258.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 846, + "y": 2258.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 854, + "y": 2258.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 650, + "y": 2262.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 706, + "y": 2262.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 710, + "y": 2262.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 714, + "y": 2262.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 718, + "y": 2262.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 722, + "y": 2262.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 726, + "y": 2262.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 754, + "y": 2262.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 758, + "y": 2262.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 846, + "y": 2262.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 850, + "y": 2262.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 854, + "y": 2262.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 634, + "y": 2266.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 638, + "y": 2266.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 642, + "y": 2266.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 646, + "y": 2266.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 650, + "y": 2266.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 706, + "y": 2266.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 710, + "y": 2266.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 726, + "y": 2266.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 730, + "y": 2266.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 758, + "y": 2266.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 762, + "y": 2266.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 826, + "y": 2266.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 830, + "y": 2266.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 834, + "y": 2266.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 838, + "y": 2266.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 846, + "y": 2266.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 850, + "y": 2266.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 706, + "y": 2270.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 710, + "y": 2270.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 714, + "y": 2270.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 718, + "y": 2270.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 722, + "y": 2270.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 726, + "y": 2270.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 730, + "y": 2270.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 758, + "y": 2270.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 762, + "y": 2270.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 822, + "y": 2270.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 826, + "y": 2270.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 838, + "y": 2270.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 630, + "y": 2274.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 634, + "y": 2274.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 638, + "y": 2274.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 642, + "y": 2274.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 646, + "y": 2274.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 650, + "y": 2274.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 654, + "y": 2274.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 658, + "y": 2274.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 682, + "y": 2274.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 686, + "y": 2274.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 690, + "y": 2274.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 702, + "y": 2274.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 706, + "y": 2274.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 710, + "y": 2274.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 714, + "y": 2274.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 718, + "y": 2274.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 722, + "y": 2274.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 730, + "y": 2274.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 778, + "y": 2274.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 782, + "y": 2274.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 786, + "y": 2274.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 790, + "y": 2274.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 794, + "y": 2274.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 798, + "y": 2274.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 802, + "y": 2274.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 806, + "y": 2274.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 838, + "y": 2274.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 842, + "y": 2274.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 598, + "y": 2278.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 602, + "y": 2278.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 606, + "y": 2278.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 630, + "y": 2278.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 646, + "y": 2278.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 650, + "y": 2278.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 654, + "y": 2278.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 658, + "y": 2278.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 682, + "y": 2278.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 686, + "y": 2278.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 690, + "y": 2278.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 702, + "y": 2278.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 706, + "y": 2278.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 710, + "y": 2278.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 714, + "y": 2278.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 718, + "y": 2278.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 722, + "y": 2278.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 730, + "y": 2278.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 842, + "y": 2278.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 846, + "y": 2278.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 850, + "y": 2278.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 606, + "y": 2282.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 610, + "y": 2282.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 630, + "y": 2282.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 634, + "y": 2282.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 638, + "y": 2282.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 642, + "y": 2282.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 646, + "y": 2282.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 650, + "y": 2282.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 654, + "y": 2282.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 658, + "y": 2282.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 662, + "y": 2282.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 666, + "y": 2282.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 682, + "y": 2282.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 686, + "y": 2282.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 710, + "y": 2282.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 714, + "y": 2282.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 718, + "y": 2282.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 722, + "y": 2282.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 730, + "y": 2282.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 850, + "y": 2282.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 854, + "y": 2282.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 858, + "y": 2282.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 626, + "y": 2286.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 630, + "y": 2286.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 642, + "y": 2286.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 646, + "y": 2286.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 650, + "y": 2286.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 654, + "y": 2286.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 658, + "y": 2286.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 662, + "y": 2286.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 666, + "y": 2286.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 670, + "y": 2286.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 674, + "y": 2286.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 682, + "y": 2286.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 686, + "y": 2286.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 710, + "y": 2286.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 730, + "y": 2286.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 762, + "y": 2286.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 766, + "y": 2286.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 598, + "y": 2290.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 602, + "y": 2290.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 606, + "y": 2290.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 610, + "y": 2290.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 614, + "y": 2290.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 626, + "y": 2290.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 630, + "y": 2290.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 634, + "y": 2290.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 638, + "y": 2290.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 642, + "y": 2290.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 650, + "y": 2290.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 674, + "y": 2290.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 678, + "y": 2290.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 762, + "y": 2290.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 610, + "y": 2294.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 614, + "y": 2294.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 622, + "y": 2294.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 626, + "y": 2294.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 646, + "y": 2294.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 650, + "y": 2294.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 678, + "y": 2294.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 762, + "y": 2294.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 602, + "y": 2298.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 606, + "y": 2298.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 610, + "y": 2298.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 622, + "y": 2298.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 626, + "y": 2298.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 630, + "y": 2298.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 634, + "y": 2298.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 638, + "y": 2298.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 642, + "y": 2298.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 678, + "y": 2298.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 762, + "y": 2298.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 678, + "y": 2302.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 758, + "y": 2302.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 762, + "y": 2302.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 766, + "y": 2302.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 718, + "y": 2306.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 722, + "y": 2306.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 758, + "y": 2306.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 766, + "y": 2306.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 626, + "y": 2310.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 630, + "y": 2310.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 630, + "y": 2314.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 634, + "y": 2314.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 702, + "y": 2314.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 706, + "y": 2314.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 710, + "y": 2314.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 634, + "y": 2318.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 710, + "y": 2318.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 622, + "y": 2322.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 626, + "y": 2322.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 634, + "y": 2322.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 646, + "y": 2322.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 710, + "y": 2322.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 622, + "y": 2326.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 626, + "y": 2326.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 630, + "y": 2326.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 634, + "y": 2326.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 646, + "y": 2326.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 710, + "y": 2326.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 630, + "y": 2330.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 634, + "y": 2330.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 638, + "y": 2330.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 766, + "y": 2330.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 630, + "y": 2334.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 638, + "y": 2334.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 762, + "y": 2334.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 766, + "y": 2334.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 762, + "y": 2338.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 762, + "y": 2342.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 758, + "y": 2346.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 762, + "y": 2346.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 622, + "y": 2350.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 626, + "y": 2350.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 750, + "y": 2350.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 754, + "y": 2350.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 758, + "y": 2350.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 622, + "y": 2354.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 750, + "y": 2354.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 754, + "y": 2354.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 606, + "y": 2358.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 610, + "y": 2358.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 614, + "y": 2358.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 618, + "y": 2358.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 622, + "y": 2358.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 754, + "y": 2358.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 758, + "y": 2358.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 606, + "y": 2362.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 610, + "y": 2362.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 614, + "y": 2362.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 618, + "y": 2362.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 622, + "y": 2362.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 626, + "y": 2362.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 630, + "y": 2362.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 634, + "y": 2362.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 734, + "y": 2362.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 758, + "y": 2362.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 762, + "y": 2362.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 606, + "y": 2366.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 610, + "y": 2366.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 614, + "y": 2366.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 618, + "y": 2366.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 622, + "y": 2366.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 634, + "y": 2366.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 730, + "y": 2366.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 734, + "y": 2366.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 762, + "y": 2366.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 602, + "y": 2370.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 606, + "y": 2370.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 614, + "y": 2370.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 618, + "y": 2370.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 622, + "y": 2370.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 626, + "y": 2370.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 630, + "y": 2370.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 634, + "y": 2370.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 730, + "y": 2370.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 734, + "y": 2370.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 762, + "y": 2370.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 598, + "y": 2374.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 602, + "y": 2374.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 614, + "y": 2374.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 618, + "y": 2374.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 622, + "y": 2374.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 626, + "y": 2374.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 666, + "y": 2374.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 718, + "y": 2374.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 734, + "y": 2374.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 762, + "y": 2374.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 602, + "y": 2378.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 606, + "y": 2378.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 614, + "y": 2378.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 626, + "y": 2378.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 630, + "y": 2378.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 638, + "y": 2378.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 642, + "y": 2378.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 666, + "y": 2378.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 682, + "y": 2378.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 686, + "y": 2378.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 718, + "y": 2378.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 722, + "y": 2378.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 734, + "y": 2378.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 738, + "y": 2378.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 742, + "y": 2378.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 746, + "y": 2378.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 750, + "y": 2378.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 754, + "y": 2378.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 762, + "y": 2378.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 766, + "y": 2378.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 598, + "y": 2382.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 602, + "y": 2382.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 606, + "y": 2382.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 610, + "y": 2382.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 614, + "y": 2382.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 618, + "y": 2382.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 622, + "y": 2382.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 626, + "y": 2382.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 630, + "y": 2382.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 634, + "y": 2382.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 638, + "y": 2382.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 642, + "y": 2382.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 662, + "y": 2382.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 666, + "y": 2382.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 678, + "y": 2382.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 682, + "y": 2382.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 722, + "y": 2382.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 726, + "y": 2382.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 734, + "y": 2382.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 738, + "y": 2382.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 754, + "y": 2382.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 766, + "y": 2382.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 598, + "y": 2386.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 602, + "y": 2386.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 606, + "y": 2386.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 610, + "y": 2386.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 626, + "y": 2386.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 634, + "y": 2386.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 638, + "y": 2386.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 642, + "y": 2386.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 658, + "y": 2386.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 662, + "y": 2386.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 678, + "y": 2386.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 722, + "y": 2386.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 726, + "y": 2386.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 754, + "y": 2386.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 758, + "y": 2386.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 766, + "y": 2386.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 626, + "y": 2390.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 634, + "y": 2390.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 650, + "y": 2390.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 654, + "y": 2390.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 658, + "y": 2390.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 678, + "y": 2390.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 714, + "y": 2390.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 718, + "y": 2390.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 722, + "y": 2390.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 758, + "y": 2390.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 766, + "y": 2390.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 770, + "y": 2390.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 598, + "y": 2394.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 602, + "y": 2394.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 606, + "y": 2394.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 610, + "y": 2394.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 622, + "y": 2394.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 626, + "y": 2394.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 634, + "y": 2394.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 638, + "y": 2394.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 650, + "y": 2394.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 678, + "y": 2394.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 682, + "y": 2394.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 714, + "y": 2394.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 758, + "y": 2394.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 762, + "y": 2394.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 770, + "y": 2394.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 602, + "y": 2398.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 606, + "y": 2398.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 610, + "y": 2398.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 622, + "y": 2398.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 634, + "y": 2398.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 638, + "y": 2398.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 650, + "y": 2398.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 682, + "y": 2398.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 686, + "y": 2398.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 706, + "y": 2398.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 710, + "y": 2398.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 714, + "y": 2398.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 762, + "y": 2398.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 598, + "y": 2402.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 602, + "y": 2402.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 606, + "y": 2402.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 610, + "y": 2402.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 618, + "y": 2402.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 622, + "y": 2402.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 630, + "y": 2402.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 634, + "y": 2402.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 650, + "y": 2402.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 654, + "y": 2402.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 686, + "y": 2402.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 762, + "y": 2402.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 614, + "y": 2406.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 618, + "y": 2406.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 626, + "y": 2406.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 630, + "y": 2406.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 654, + "y": 2406.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 658, + "y": 2406.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 662, + "y": 2406.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 742, + "y": 2406.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 746, + "y": 2406.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 750, + "y": 2406.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 754, + "y": 2406.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 758, + "y": 2406.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 762, + "y": 2406.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 610, + "y": 2410.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 614, + "y": 2410.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 622, + "y": 2410.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 626, + "y": 2410.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 634, + "y": 2410.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 638, + "y": 2410.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 662, + "y": 2410.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 742, + "y": 2410.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 610, + "y": 2414.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 618, + "y": 2414.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 622, + "y": 2414.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 630, + "y": 2414.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 634, + "y": 2414.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 638, + "y": 2414.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 642, + "y": 2414.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 666, + "y": 2414.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 610, + "y": 2418.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 618, + "y": 2418.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 626, + "y": 2418.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 630, + "y": 2418.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 642, + "y": 2418.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 646, + "y": 2418.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 666, + "y": 2418.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 610, + "y": 2422.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 618, + "y": 2422.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 622, + "y": 2422.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 626, + "y": 2422.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 646, + "y": 2422.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 666, + "y": 2422.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 670, + "y": 2422.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 610, + "y": 2426.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 614, + "y": 2426.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 618, + "y": 2426.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 622, + "y": 2426.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 646, + "y": 2426.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 650, + "y": 2426.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 670, + "y": 2426.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 674, + "y": 2426.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 610, + "y": 2430.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 614, + "y": 2430.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 618, + "y": 2430.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 622, + "y": 2430.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 650, + "y": 2430.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 654, + "y": 2430.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 610, + "y": 2434.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 618, + "y": 2434.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 622, + "y": 2434.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 626, + "y": 2434.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 630, + "y": 2434.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 638, + "y": 2434.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 642, + "y": 2434.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 646, + "y": 2434.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 650, + "y": 2434.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 654, + "y": 2434.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 702, + "y": 2434.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 598, + "y": 2438.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 602, + "y": 2438.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 606, + "y": 2438.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 610, + "y": 2438.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 614, + "y": 2438.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 618, + "y": 2438.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 622, + "y": 2438.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 630, + "y": 2438.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 634, + "y": 2438.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 638, + "y": 2438.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 654, + "y": 2438.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 658, + "y": 2438.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 662, + "y": 2438.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 702, + "y": 2438.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 706, + "y": 2438.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 710, + "y": 2438.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 714, + "y": 2438.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 606, + "y": 2442.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 610, + "y": 2442.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 614, + "y": 2442.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 618, + "y": 2442.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 622, + "y": 2442.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 638, + "y": 2442.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 642, + "y": 2442.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 646, + "y": 2442.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 650, + "y": 2442.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 654, + "y": 2442.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 662, + "y": 2442.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 666, + "y": 2442.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 714, + "y": 2442.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 718, + "y": 2442.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 722, + "y": 2442.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 598, + "y": 2446.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 602, + "y": 2446.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 610, + "y": 2446.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 614, + "y": 2446.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 618, + "y": 2446.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 622, + "y": 2446.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 626, + "y": 2446.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 630, + "y": 2446.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 634, + "y": 2446.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 638, + "y": 2446.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 650, + "y": 2446.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 654, + "y": 2446.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 658, + "y": 2446.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 690, + "y": 2446.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 694, + "y": 2446.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 698, + "y": 2446.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 702, + "y": 2446.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 706, + "y": 2446.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 722, + "y": 2446.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 726, + "y": 2446.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 602, + "y": 2450.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 614, + "y": 2450.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 618, + "y": 2450.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 622, + "y": 2450.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 626, + "y": 2450.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 630, + "y": 2450.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 638, + "y": 2450.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 642, + "y": 2450.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 646, + "y": 2450.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 650, + "y": 2450.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 658, + "y": 2450.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 706, + "y": 2450.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 710, + "y": 2450.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 726, + "y": 2450.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 730, + "y": 2450.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 790, + "y": 2450.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 602, + "y": 2454.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 606, + "y": 2454.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 610, + "y": 2454.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 618, + "y": 2454.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 622, + "y": 2454.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 626, + "y": 2454.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 630, + "y": 2454.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 634, + "y": 2454.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 638, + "y": 2454.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 710, + "y": 2454.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 730, + "y": 2454.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 778, + "y": 2454.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 786, + "y": 2454.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 790, + "y": 2454.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 610, + "y": 2458.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + } + ] + }, + { + "region": { + "x0": 4000, + "y0": -600, + "x1": 4256, + "y1": -344 + }, + "cliffs": [ + { + "x": 4146, + "y": -601.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 4214, + "y": -601.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4222, + "y": -601.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4146, + "y": -597.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 4214, + "y": -597.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4222, + "y": -597.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4142, + "y": -593.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4146, + "y": -593.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4210, + "y": -593.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4214, + "y": -593.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4222, + "y": -593.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4118, + "y": -589.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4122, + "y": -589.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 4142, + "y": -589.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 4210, + "y": -589.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4218, + "y": -589.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4222, + "y": -589.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4114, + "y": -585.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4118, + "y": -585.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4142, + "y": -585.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 4210, + "y": -585.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4218, + "y": -585.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4110, + "y": -581.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4114, + "y": -581.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4138, + "y": -581.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4142, + "y": -581.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4210, + "y": -581.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4218, + "y": -581.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4106, + "y": -577.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4110, + "y": -577.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4122, + "y": -577.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4126, + "y": -577.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4138, + "y": -577.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 4206, + "y": -577.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 4210, + "y": -577.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4218, + "y": -577.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4238, + "y": -577.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 4242, + "y": -577.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4106, + "y": -573.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 4122, + "y": -573.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 4126, + "y": -573.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4218, + "y": -573.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4242, + "y": -573.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 4114, + "y": -569.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4118, + "y": -569.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4122, + "y": -569.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4126, + "y": -569.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 4218, + "y": -569.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4110, + "y": -565.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 4114, + "y": -565.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4218, + "y": -565.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4218, + "y": -561.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4002, + "y": -557.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4006, + "y": -557.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4010, + "y": -557.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4014, + "y": -557.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4018, + "y": -557.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 4218, + "y": -557.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4222, + "y": -557.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4086, + "y": -553.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 4222, + "y": -553.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4226, + "y": -553.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4086, + "y": -549.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 4226, + "y": -549.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4230, + "y": -549.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4002, + "y": -545.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4006, + "y": -545.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4010, + "y": -545.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4014, + "y": -545.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 4026, + "y": -545.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 4030, + "y": -545.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4034, + "y": -545.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4070, + "y": -545.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 4074, + "y": -545.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4086, + "y": -545.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 4230, + "y": -545.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4234, + "y": -545.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 4034, + "y": -541.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4038, + "y": -541.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4042, + "y": -541.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4046, + "y": -541.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4074, + "y": -541.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4086, + "y": -541.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 4111.6875, + "y": -540.32421875, + "name": "crater-cliff", + "orientation": "west-to-east" + }, + { + "x": 4106.73828125, + "y": -538.875, + "name": "crater-cliff", + "orientation": "south-to-east" + }, + { + "x": 4116.63671875, + "y": -538.875, + "name": "crater-cliff", + "orientation": "west-to-south" + }, + { + "x": 4046, + "y": -537.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 4074, + "y": -537.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 4086, + "y": -537.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 4254, + "y": -537.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 4104.6875, + "y": -535.375, + "name": "crater-cliff", + "orientation": "south-to-north" + }, + { + "x": 4118.6875, + "y": -535.375, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": 4106.73828125, + "y": -531.87890625, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": 4111.6875, + "y": -530.42578125, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": 4116.63671875, + "y": -531.87890625, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": 4074, + "y": -529.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 4074, + "y": -525.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4238, + "y": -525.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 4254, + "y": -525.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4070, + "y": -521.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4074, + "y": -521.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4094.375, + "y": -521.13671875, + "name": "crater-cliff", + "orientation": "west-to-east" + }, + { + "x": 4238, + "y": -521.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4242, + "y": -521.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4246, + "y": -521.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4250, + "y": -521.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4254, + "y": -521.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4089.42578125, + "y": -519.6875, + "name": "crater-cliff", + "orientation": "south-to-east" + }, + { + "x": 4099.32421875, + "y": -519.6875, + "name": "crater-cliff", + "orientation": "west-to-south" + }, + { + "x": 4066, + "y": -517.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 4070, + "y": -517.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4087.375, + "y": -516.1875, + "name": "crater-cliff", + "orientation": "south-to-north" + }, + { + "x": 4101.375, + "y": -516.1875, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": 4042, + "y": -513.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4046, + "y": -513.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 4089.42578125, + "y": -512.69140625, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": 4099.32421875, + "y": -512.69140625, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": 4094.375, + "y": -511.23828125, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": 4038, + "y": -509.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4042, + "y": -509.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4102, + "y": -509.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 4106, + "y": -509.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 4122, + "y": -509.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 4034, + "y": -505.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4038, + "y": -505.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4046, + "y": -505.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 4106, + "y": -505.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 4110, + "y": -505.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 4122, + "y": -505.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 4030, + "y": -501.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4034, + "y": -501.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4042, + "y": -501.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4046, + "y": -501.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4110, + "y": -501.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 4114, + "y": -501.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 4122, + "y": -501.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 4018, + "y": -497.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4022, + "y": -497.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4026, + "y": -497.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4030, + "y": -497.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4038, + "y": -497.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4042, + "y": -497.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4114, + "y": -497.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 4122, + "y": -497.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 4010, + "y": -493.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4014, + "y": -493.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4018, + "y": -493.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4038, + "y": -493.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4042, + "y": -493.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4114, + "y": -493.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 4122, + "y": -493.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 4126, + "y": -493.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 4002, + "y": -489.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4006, + "y": -489.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4010, + "y": -489.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4042, + "y": -489.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4110, + "y": -489.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4114, + "y": -489.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4126, + "y": -489.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 4130, + "y": -489.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4134, + "y": -489.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 4014, + "y": -485.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4018, + "y": -485.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 4042, + "y": -485.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 4110, + "y": -485.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 4134, + "y": -485.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 4138, + "y": -485.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4142, + "y": -485.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 4014, + "y": -481.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4018, + "y": -481.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4110, + "y": -481.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 4014, + "y": -477.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4018, + "y": -477.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 4110, + "y": -477.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 4006, + "y": -473.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4010, + "y": -473.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4014, + "y": -473.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4018, + "y": -473.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 4022, + "y": -473.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4026, + "y": -473.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 4114, + "y": -473.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 4118, + "y": -473.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4122, + "y": -473.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 4006, + "y": -469.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4006, + "y": -465.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4002, + "y": -461.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4006, + "y": -461.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4002, + "y": -457.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4018, + "y": -429.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4022, + "y": -429.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4026, + "y": -429.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4030, + "y": -429.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4034, + "y": -429.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4038, + "y": -429.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4042, + "y": -429.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4046, + "y": -429.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4050, + "y": -429.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4082, + "y": -429.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 4014, + "y": -425.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4018, + "y": -425.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4050, + "y": -425.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 4074, + "y": -425.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4078, + "y": -425.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4082, + "y": -425.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4010, + "y": -421.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4014, + "y": -421.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4058, + "y": -421.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 4070, + "y": -421.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4074, + "y": -421.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4090, + "y": -421.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 4010, + "y": -417.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 4014, + "y": -417.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 4054, + "y": -417.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4058, + "y": -417.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4070, + "y": -417.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 4074, + "y": -417.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 4090, + "y": -417.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 4014, + "y": -413.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 4054, + "y": -413.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4074, + "y": -413.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 4078, + "y": -413.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 4090, + "y": -413.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 4094, + "y": -413.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 4014, + "y": -409.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 4050, + "y": -409.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4054, + "y": -409.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4078, + "y": -409.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 4082, + "y": -409.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 4094, + "y": -409.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 4098, + "y": -409.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4102, + "y": -409.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 4038, + "y": -405.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 4042, + "y": -405.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4046, + "y": -405.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4050, + "y": -405.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4082, + "y": -405.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 4086, + "y": -405.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 4086, + "y": -401.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 4090, + "y": -401.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4094, + "y": -401.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 4094, + "y": -397.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 4098, + "y": -397.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 4106, + "y": -397.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 4110, + "y": -397.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4114, + "y": -397.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 4046, + "y": -393.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4050, + "y": -393.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4098, + "y": -393.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 4102, + "y": -393.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 4114, + "y": -393.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 4130, + "y": -393.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 4134, + "y": -393.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4138, + "y": -393.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 4038, + "y": -389.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4042, + "y": -389.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4046, + "y": -389.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4050, + "y": -389.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4102, + "y": -389.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 4106, + "y": -389.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4110, + "y": -389.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4114, + "y": -389.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 4130, + "y": -389.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 4138, + "y": -389.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 4142, + "y": -389.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4146, + "y": -389.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 4038, + "y": -385.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 4050, + "y": -385.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4054, + "y": -385.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4058, + "y": -385.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4062, + "y": -385.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4130, + "y": -385.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 4134, + "y": -385.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4138, + "y": -385.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 4146, + "y": -385.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 4150, + "y": -385.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4154, + "y": -385.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 4038, + "y": -381.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 4042, + "y": -381.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 4058, + "y": -381.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4062, + "y": -381.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4138, + "y": -381.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 4154, + "y": -381.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 4158, + "y": -381.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4162, + "y": -381.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 4186, + "y": -381.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 4190, + "y": -381.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4194, + "y": -381.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4198, + "y": -381.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4202, + "y": -381.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4206, + "y": -381.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4210, + "y": -381.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4214, + "y": -381.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 4006, + "y": -377.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 4042, + "y": -377.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 4054, + "y": -377.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4058, + "y": -377.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4070, + "y": -377.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4074, + "y": -377.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4078, + "y": -377.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 4090, + "y": -377.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 4094, + "y": -377.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4098, + "y": -377.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4102, + "y": -377.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4106, + "y": -377.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4110, + "y": -377.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4114, + "y": -377.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4118, + "y": -377.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4122, + "y": -377.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4130, + "y": -377.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4134, + "y": -377.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4138, + "y": -377.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4214, + "y": -377.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 4218, + "y": -377.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 4006, + "y": -373.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4010, + "y": -373.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4042, + "y": -373.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 4046, + "y": -373.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 4050, + "y": -373.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4054, + "y": -373.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4066, + "y": -373.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4070, + "y": -373.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4122, + "y": -373.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4126, + "y": -373.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4130, + "y": -373.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4182, + "y": -373.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 4186, + "y": -373.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 4190, + "y": -373.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4194, + "y": -373.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4198, + "y": -373.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 4218, + "y": -373.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 4010, + "y": -369.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4046, + "y": -369.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 4050, + "y": -369.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4066, + "y": -369.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 4142, + "y": -369.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4146, + "y": -369.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 4158, + "y": -369.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 4162, + "y": -369.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4166, + "y": -369.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4170, + "y": -369.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 4186, + "y": -369.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 4190, + "y": -369.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4198, + "y": -369.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 4202, + "y": -369.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4206, + "y": -369.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 4210, + "y": -369.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 4218, + "y": -369.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 4010, + "y": -365.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4014, + "y": -365.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4066, + "y": -365.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 4082, + "y": -365.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4086, + "y": -365.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4090, + "y": -365.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4094, + "y": -365.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4098, + "y": -365.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4102, + "y": -365.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4106, + "y": -365.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4110, + "y": -365.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4114, + "y": -365.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4142, + "y": -365.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4146, + "y": -365.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4154, + "y": -365.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 4158, + "y": -365.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 4210, + "y": -365.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 4218, + "y": -365.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 4014, + "y": -361.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4018, + "y": -361.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4062, + "y": -361.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4066, + "y": -361.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4078, + "y": -361.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4082, + "y": -361.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4114, + "y": -361.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4118, + "y": -361.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4122, + "y": -361.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4126, + "y": -361.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4130, + "y": -361.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4134, + "y": -361.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 4210, + "y": -361.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 4218, + "y": -361.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 4018, + "y": -357.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4054, + "y": -357.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4058, + "y": -357.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4062, + "y": -357.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4074, + "y": -357.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4078, + "y": -357.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4086, + "y": -357.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4090, + "y": -357.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4094, + "y": -357.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4098, + "y": -357.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4102, + "y": -357.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4106, + "y": -357.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4210, + "y": -357.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 4218, + "y": -357.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 4018, + "y": -353.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4022, + "y": -353.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4054, + "y": -353.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 4070, + "y": -353.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4074, + "y": -353.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4078, + "y": -353.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 4082, + "y": -353.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4086, + "y": -353.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4106, + "y": -353.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4110, + "y": -353.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4114, + "y": -353.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4118, + "y": -353.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4122, + "y": -353.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4126, + "y": -353.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4130, + "y": -353.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 4174, + "y": -353.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4178, + "y": -353.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4182, + "y": -353.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4206, + "y": -353.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4210, + "y": -353.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4218, + "y": -353.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 4022, + "y": -349.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4066, + "y": -349.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 4070, + "y": -349.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4106, + "y": -349.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4110, + "y": -349.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4114, + "y": -349.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4154, + "y": -349.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 4158, + "y": -349.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 4162, + "y": -349.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4166, + "y": -349.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4170, + "y": -349.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4174, + "y": -349.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4182, + "y": -349.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4186, + "y": -349.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4190, + "y": -349.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4194, + "y": -349.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4198, + "y": -349.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4202, + "y": -349.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4206, + "y": -349.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 4210, + "y": -349.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 4218, + "y": -349.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 4222, + "y": -349.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 4022, + "y": -345.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4026, + "y": -345.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4030, + "y": -345.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4034, + "y": -345.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 4094, + "y": -345.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4098, + "y": -345.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4102, + "y": -345.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4106, + "y": -345.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4114, + "y": -345.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4118, + "y": -345.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4122, + "y": -345.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4126, + "y": -345.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4150, + "y": -345.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 4154, + "y": -345.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4158, + "y": -345.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 4162, + "y": -345.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 4166, + "y": -345.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4170, + "y": -345.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4174, + "y": -345.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 4178, + "y": -345.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 4202, + "y": -345.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 4210, + "y": -345.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 4222, + "y": -345.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 4226, + "y": -345.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 4030, + "y": -341.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4034, + "y": -341.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4126, + "y": -341.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4150, + "y": -341.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4162, + "y": -341.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 4178, + "y": -341.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 4210, + "y": -341.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 4226, + "y": -341.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + } + ] + }, + { + "region": { + "x0": -2800, + "y0": 400, + "x1": -2544, + "y1": 656 + }, + "cliffs": [ + { + "x": -2722, + "y": 398.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2694, + "y": 398.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2570, + "y": 398.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2722, + "y": 402.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2698, + "y": 402.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2694, + "y": 402.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2570, + "y": 402.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2702, + "y": 406.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2698, + "y": 406.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2694, + "y": 406.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2602, + "y": 406.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2598, + "y": 406.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2702, + "y": 410.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2694, + "y": 410.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2598, + "y": 410.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2594, + "y": 410.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2714, + "y": 414.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2710, + "y": 414.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2706, + "y": 414.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2702, + "y": 414.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2698, + "y": 414.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2758, + "y": 418.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2754, + "y": 418.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2742, + "y": 418.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2698, + "y": 418.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2802, + "y": 422.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2798, + "y": 422.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2762, + "y": 422.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2758, + "y": 422.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2742, + "y": 422.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2798, + "y": 426.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2794, + "y": 426.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2790, + "y": 426.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2766, + "y": 426.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2762, + "y": 426.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2790, + "y": 430.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2770, + "y": 430.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2766, + "y": 430.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2602, + "y": 430.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2786, + "y": 434.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2770, + "y": 434.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2602, + "y": 434.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2598, + "y": 434.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2594, + "y": 434.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2786, + "y": 438.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2770, + "y": 438.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2786, + "y": 442.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2774, + "y": 442.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2770, + "y": 442.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2630, + "y": 442.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2626, + "y": 442.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2786, + "y": 446.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2774, + "y": 446.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2626, + "y": 446.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2786, + "y": 450.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2774, + "y": 450.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2666, + "y": 450.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2626, + "y": 450.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2786, + "y": 454.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2774, + "y": 454.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2666, + "y": 454.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2662, + "y": 454.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2658, + "y": 454.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2654, + "y": 454.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2650, + "y": 454.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2646, + "y": 454.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2626, + "y": 454.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2622, + "y": 454.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2786, + "y": 458.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2774, + "y": 458.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2658, + "y": 458.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2654, + "y": 458.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2622, + "y": 458.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2575.48828125, + "y": 460.0625, + "name": "crater-cliff", + "orientation": "west-to-south" + }, + { + "x": -2786, + "y": 462.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2782, + "y": 462.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2774, + "y": 462.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2622, + "y": 462.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2587.4375, + "y": 463.5625, + "name": "crater-cliff", + "orientation": "south-to-north" + }, + { + "x": -2573.4375, + "y": 463.5625, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": -2786, + "y": 466.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2782, + "y": 466.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2774, + "y": 466.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2622, + "y": 466.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2585.38671875, + "y": 467.05859375, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": -2575.48828125, + "y": 467.05859375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": -2580.4375, + "y": 468.51171875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": -2802, + "y": 470.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2798, + "y": 470.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2794, + "y": 470.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2790, + "y": 470.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2786, + "y": 470.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2778, + "y": 470.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2774, + "y": 470.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2682, + "y": 470.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2622, + "y": 470.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2778, + "y": 474.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2682, + "y": 474.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2678, + "y": 474.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2662, + "y": 474.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2658, + "y": 474.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2654, + "y": 474.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2630, + "y": 474.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2626, + "y": 474.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2682, + "y": 478.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2678, + "y": 478.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2662, + "y": 478.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2654, + "y": 478.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2634, + "y": 478.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2630, + "y": 478.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2786, + "y": 482.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2682, + "y": 482.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2662, + "y": 482.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2658, + "y": 482.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2654, + "y": 482.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2634, + "y": 482.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2794, + "y": 486.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2790, + "y": 486.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2786, + "y": 486.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2682, + "y": 486.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2678, + "y": 486.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2642, + "y": 486.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2638, + "y": 486.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2634, + "y": 486.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2794, + "y": 490.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2678, + "y": 490.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2642, + "y": 490.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2678, + "y": 494.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2674, + "y": 494.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2646, + "y": 494.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2642, + "y": 494.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2674, + "y": 498.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2670, + "y": 498.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2650, + "y": 498.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2646, + "y": 498.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2670, + "y": 502.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2666, + "y": 502.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2662, + "y": 502.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2658, + "y": 502.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2654, + "y": 502.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2650, + "y": 502.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2786, + "y": 518.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2790, + "y": 522.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2786, + "y": 522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2782, + "y": 522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2778, + "y": 522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2774, + "y": 522.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2762, + "y": 522.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2754, + "y": 522.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2546, + "y": 522.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2542, + "y": 522.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2790, + "y": 526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2786, + "y": 526.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2774, + "y": 526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2770, + "y": 526.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2766, + "y": 526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2762, + "y": 526.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2754, + "y": 526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2750, + "y": 526.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2746, + "y": 526.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2546, + "y": 526.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2786, + "y": 530.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2546, + "y": 530.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2542, + "y": 530.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2802, + "y": 534.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2798, + "y": 534.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2786, + "y": 534.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2782, + "y": 534.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2798, + "y": 538.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2794, + "y": 538.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2782, + "y": 538.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2794, + "y": 542.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2790, + "y": 542.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2786, + "y": 542.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2782, + "y": 542.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2794, + "y": 546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2790, + "y": 546.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2786, + "y": 546.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2782, + "y": 546.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2794, + "y": 550.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2790, + "y": 550.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2786, + "y": 550.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2782, + "y": 550.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2774, + "y": 550.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2770, + "y": 550.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2802, + "y": 554.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2798, + "y": 554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2786, + "y": 554.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2782, + "y": 554.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2770, + "y": 554.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2662, + "y": 554.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2658, + "y": 554.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2798, + "y": 558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2794, + "y": 558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2790, + "y": 558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2786, + "y": 558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2782, + "y": 558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2778, + "y": 558.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2666, + "y": 558.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2662, + "y": 558.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2658, + "y": 558.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2782, + "y": 562.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2778, + "y": 562.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2670, + "y": 562.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2658, + "y": 562.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2654, + "y": 562.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2790, + "y": 566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2786, + "y": 566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2782, + "y": 566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2758, + "y": 566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": -2754, + "y": 566.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2670, + "y": 566.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2654, + "y": 566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2650, + "y": 566.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2646, + "y": 566.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2798, + "y": 570.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2794, + "y": 570.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2790, + "y": 570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2750, + "y": 570.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": -2670, + "y": 570.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2646, + "y": 570.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2798, + "y": 574.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2754, + "y": 574.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2750, + "y": 574.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2746, + "y": 574.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2798, + "y": 578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2794, + "y": 578.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2754, + "y": 578.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2746, + "y": 578.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2754, + "y": 582.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": -2746, + "y": 582.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2750, + "y": 586.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2746, + "y": 586.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2750, + "y": 590.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": -2662, + "y": 590.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": -2658, + "y": 590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2654, + "y": 590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2650, + "y": 590.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2794, + "y": 598.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2790, + "y": 598.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2786, + "y": 598.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": -2798, + "y": 602.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2794, + "y": 602.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2546, + "y": 602.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2542, + "y": 602.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2798, + "y": 606.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2794, + "y": 606.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2546, + "y": 606.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2542, + "y": 606.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2798, + "y": 610.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": -2798, + "y": 614.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": -2802, + "y": 618.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2798, + "y": 618.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": -2802, + "y": 634.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": -2798, + "y": 634.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": -2798, + "y": 638.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2794, + "y": 638.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2790, + "y": 638.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2786, + "y": 638.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2782, + "y": 638.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": -2778, + "y": 638.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": -2802, + "y": 642.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2798, + "y": 642.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2794, + "y": 642.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2790, + "y": 642.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2786, + "y": 642.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2782, + "y": 642.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2782, + "y": 646.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2778, + "y": 646.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2774, + "y": 646.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2774, + "y": 650.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2770, + "y": 650.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2802, + "y": 654.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": -2798, + "y": 654.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": -2794, + "y": 654.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2786, + "y": 654.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": -2782, + "y": 654.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": -2770, + "y": 654.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": -2794, + "y": 658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": -2786, + "y": 658.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": -2782, + "y": 658.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + } + ] + }, + { + "region": { + "x0": 1400, + "y0": -3200, + "x1": 1656, + "y1": -2944 + }, + "cliffs": [ + { + "x": 1554, + "y": -3197.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1554, + "y": -3193.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1582, + "y": -3193.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1586, + "y": -3193.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1582, + "y": -3189.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1586, + "y": -3189.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1562, + "y": -3185.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1578, + "y": -3185.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1582, + "y": -3185.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1586, + "y": -3185.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1590, + "y": -3185.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1606, + "y": -3185.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1562, + "y": -3181.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1566, + "y": -3181.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1578, + "y": -3181.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1582, + "y": -3181.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1586, + "y": -3181.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1590, + "y": -3181.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1606, + "y": -3181.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1566, + "y": -3177.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1602, + "y": -3177.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1606, + "y": -3177.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1566, + "y": -3173.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1570, + "y": -3173.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1574, + "y": -3173.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1602, + "y": -3173.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1574, + "y": -3169.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1602, + "y": -3169.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1602, + "y": -3165.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1606, + "y": -3165.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1626, + "y": -3165.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1630, + "y": -3165.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1634, + "y": -3165.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1606, + "y": -3161.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1622, + "y": -3161.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1626, + "y": -3161.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1634, + "y": -3161.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1638, + "y": -3161.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1642, + "y": -3161.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1586, + "y": -3157.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1590, + "y": -3157.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1606, + "y": -3157.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1610, + "y": -3157.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1618, + "y": -3157.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1622, + "y": -3157.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1642, + "y": -3157.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1646, + "y": -3157.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1650, + "y": -3157.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1590, + "y": -3153.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1610, + "y": -3153.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1614, + "y": -3153.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1618, + "y": -3153.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1650, + "y": -3153.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1590, + "y": -3149.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1610, + "y": -3149.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1614, + "y": -3149.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1618, + "y": -3149.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1650, + "y": -3149.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1590, + "y": -3145.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1594, + "y": -3145.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1606, + "y": -3145.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1610, + "y": -3145.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1618, + "y": -3145.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1646, + "y": -3145.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1594, + "y": -3141.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1598, + "y": -3141.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1602, + "y": -3141.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1606, + "y": -3141.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1618, + "y": -3141.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1642, + "y": -3141.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1646, + "y": -3141.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1618, + "y": -3137.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1622, + "y": -3137.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1626, + "y": -3137.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1630, + "y": -3137.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1634, + "y": -3137.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1638, + "y": -3137.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1642, + "y": -3137.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1626, + "y": -3133.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1630, + "y": -3133.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1510, + "y": -3109.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1514, + "y": -3109.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1478, + "y": -3101.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1478, + "y": -3097.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1478, + "y": -3093.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1534, + "y": -3093.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1534, + "y": -3089.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1514, + "y": -3085.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1518, + "y": -3085.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1522, + "y": -3085.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1526, + "y": -3085.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1530, + "y": -3085.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1534, + "y": -3085.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1538, + "y": -3085.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1502, + "y": -3081.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1510, + "y": -3081.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1514, + "y": -3081.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1518, + "y": -3081.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1522, + "y": -3081.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1526, + "y": -3081.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1530, + "y": -3081.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1534, + "y": -3081.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1538, + "y": -3081.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1550, + "y": -3081.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1554, + "y": -3081.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1458, + "y": -3077.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1462, + "y": -3077.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1466, + "y": -3077.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1502, + "y": -3077.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1506, + "y": -3077.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1510, + "y": -3077.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1518, + "y": -3077.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1522, + "y": -3077.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1526, + "y": -3077.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1530, + "y": -3077.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1534, + "y": -3077.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1538, + "y": -3077.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1542, + "y": -3077.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1550, + "y": -3077.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1454, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1458, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1474, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1498, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1502, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1506, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1514, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1518, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1530, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1534, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1538, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1542, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1546, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1550, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1554, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1558, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1562, + "y": -3073.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1454, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1458, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1462, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1466, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1470, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1474, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1482, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1498, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1502, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1506, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1510, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1514, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1518, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1522, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1526, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1546, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1550, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1554, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1558, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1562, + "y": -3069.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1454, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1458, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1466, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1470, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1474, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1478, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1482, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1486, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1542, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1546, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1550, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1554, + "y": -3065.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1462, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1466, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1470, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1474, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1478, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1486, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1518, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1522, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1546, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1550, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1554, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1558, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1562, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1566, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1570, + "y": -3061.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1458, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1462, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1466, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1470, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1474, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1478, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1482, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1486, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1498, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1502, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1506, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1510, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1514, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1518, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1546, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1558, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1562, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1566, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1570, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1574, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1590, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1594, + "y": -3057.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1434, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1438, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1454, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1458, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1462, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1466, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1470, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1494, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1498, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1546, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1550, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1554, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1558, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1586, + "y": -3053.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1430, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1434, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1438, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1446, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1450, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1454, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1458, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1462, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1466, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1470, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1494, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1514, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1518, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1522, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1526, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1550, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1554, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1586, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1590, + "y": -3049.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1430, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1438, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1446, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1450, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1454, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1458, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1462, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1466, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1490, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1494, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1506, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1510, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1514, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1538, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1542, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1590, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1594, + "y": -3045.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1430, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1434, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1438, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1442, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1446, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1450, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1454, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1458, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1490, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1498, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1502, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1506, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1534, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1538, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1542, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1590, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1594, + "y": -3041.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1430, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1434, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1438, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1442, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1446, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1450, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1454, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1458, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1466, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1470, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1474, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1478, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1482, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1494, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1498, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1534, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1538, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1542, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1546, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1550, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1554, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1590, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1622, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1626, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1630, + "y": -3037.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1414, + "y": -3033.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1418, + "y": -3033.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1422, + "y": -3033.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1426, + "y": -3033.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1430, + "y": -3033.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1434, + "y": -3033.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1438, + "y": -3033.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1462, + "y": -3033.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1466, + "y": -3033.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1514, + "y": -3033.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1518, + "y": -3033.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1522, + "y": -3033.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1526, + "y": -3033.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1534, + "y": -3033.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1538, + "y": -3033.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1554, + "y": -3033.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1558, + "y": -3033.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1590, + "y": -3033.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1594, + "y": -3033.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1622, + "y": -3033.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1626, + "y": -3033.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1630, + "y": -3033.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1414, + "y": -3029.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1422, + "y": -3029.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1426, + "y": -3029.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1430, + "y": -3029.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1434, + "y": -3029.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1450, + "y": -3029.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1454, + "y": -3029.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1458, + "y": -3029.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1462, + "y": -3029.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1470, + "y": -3029.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1474, + "y": -3029.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1478, + "y": -3029.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1482, + "y": -3029.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1510, + "y": -3029.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1514, + "y": -3029.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1526, + "y": -3029.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1530, + "y": -3029.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1594, + "y": -3029.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1622, + "y": -3029.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1626, + "y": -3029.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1630, + "y": -3029.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1414, + "y": -3025.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1418, + "y": -3025.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1422, + "y": -3025.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1426, + "y": -3025.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1430, + "y": -3025.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1434, + "y": -3025.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1438, + "y": -3025.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1442, + "y": -3025.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1446, + "y": -3025.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1450, + "y": -3025.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1466, + "y": -3025.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1470, + "y": -3025.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1530, + "y": -3025.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1622, + "y": -3025.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1626, + "y": -3025.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1630, + "y": -3025.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1406, + "y": -3021.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1410, + "y": -3021.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1414, + "y": -3021.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1418, + "y": -3021.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1422, + "y": -3021.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1434, + "y": -3021.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1438, + "y": -3021.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1466, + "y": -3021.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1470, + "y": -3021.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1498, + "y": -3021.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1502, + "y": -3021.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1506, + "y": -3021.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1530, + "y": -3021.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1614, + "y": -3021.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1618, + "y": -3021.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1402, + "y": -3017.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1406, + "y": -3017.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1410, + "y": -3017.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1414, + "y": -3017.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1418, + "y": -3017.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1422, + "y": -3017.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1438, + "y": -3017.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1450, + "y": -3017.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1454, + "y": -3017.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1458, + "y": -3017.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1462, + "y": -3017.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1466, + "y": -3017.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1470, + "y": -3017.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1474, + "y": -3017.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1490, + "y": -3017.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1494, + "y": -3017.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1498, + "y": -3017.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1502, + "y": -3017.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1506, + "y": -3017.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": -3017.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1534, + "y": -3017.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1618, + "y": -3017.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1622, + "y": -3017.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1402, + "y": -3013.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1406, + "y": -3013.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1410, + "y": -3013.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1414, + "y": -3013.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1422, + "y": -3013.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1426, + "y": -3013.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1430, + "y": -3013.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1438, + "y": -3013.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1446, + "y": -3013.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1450, + "y": -3013.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1466, + "y": -3013.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1474, + "y": -3013.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1478, + "y": -3013.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1486, + "y": -3013.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1490, + "y": -3013.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1502, + "y": -3013.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1506, + "y": -3013.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1534, + "y": -3013.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1538, + "y": -3013.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1570, + "y": -3013.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1622, + "y": -3013.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1626, + "y": -3013.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1402, + "y": -3009.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1418, + "y": -3009.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1422, + "y": -3009.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1430, + "y": -3009.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1434, + "y": -3009.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1438, + "y": -3009.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1442, + "y": -3009.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1446, + "y": -3009.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1450, + "y": -3009.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1466, + "y": -3009.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1478, + "y": -3009.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1486, + "y": -3009.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1490, + "y": -3009.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1570, + "y": -3009.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1614, + "y": -3009.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1618, + "y": -3009.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1626, + "y": -3009.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1402, + "y": -3005.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1418, + "y": -3005.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1434, + "y": -3005.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1438, + "y": -3005.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1442, + "y": -3005.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1450, + "y": -3005.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1466, + "y": -3005.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1470, + "y": -3005.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1474, + "y": -3005.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1478, + "y": -3005.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1482, + "y": -3005.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1486, + "y": -3005.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1490, + "y": -3005.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1570, + "y": -3005.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1574, + "y": -3005.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1614, + "y": -3005.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1618, + "y": -3005.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1626, + "y": -3005.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1402, + "y": -3001.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1414, + "y": -3001.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1418, + "y": -3001.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1446, + "y": -3001.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1450, + "y": -3001.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1474, + "y": -3001.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1478, + "y": -3001.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1482, + "y": -3001.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1486, + "y": -3001.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1490, + "y": -3001.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1494, + "y": -3001.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1554, + "y": -3001.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1558, + "y": -3001.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1574, + "y": -3001.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1578, + "y": -3001.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1610, + "y": -3001.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1614, + "y": -3001.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1618, + "y": -3001.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1626, + "y": -3001.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1634, + "y": -3001.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1402, + "y": -2997.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1414, + "y": -2997.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1446, + "y": -2997.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1558, + "y": -2997.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1578, + "y": -2997.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1610, + "y": -2997.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1618, + "y": -2997.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1626, + "y": -2997.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1630, + "y": -2997.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1634, + "y": -2997.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1414, + "y": -2993.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1422, + "y": -2993.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1426, + "y": -2993.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1430, + "y": -2993.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1434, + "y": -2993.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1558, + "y": -2993.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1578, + "y": -2993.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1582, + "y": -2993.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1610, + "y": -2993.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1618, + "y": -2993.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1630, + "y": -2993.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1634, + "y": -2993.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1638, + "y": -2993.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1410, + "y": -2989.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1414, + "y": -2989.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1422, + "y": -2989.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1482, + "y": -2989.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1486, + "y": -2989.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1490, + "y": -2989.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1558, + "y": -2989.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1582, + "y": -2989.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1586, + "y": -2989.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1590, + "y": -2989.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1606, + "y": -2989.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1610, + "y": -2989.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1618, + "y": -2989.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1634, + "y": -2989.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1638, + "y": -2989.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1645.07421875, + "y": -2989.625, + "name": "crater-cliff", + "orientation": "west-to-south" + }, + { + "x": 1647.125, + "y": -2986.125, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": 1410, + "y": -2985.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1422, + "y": -2985.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1478, + "y": -2985.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1482, + "y": -2985.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1486, + "y": -2985.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1490, + "y": -2985.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1534, + "y": -2985.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1546, + "y": -2985.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1558, + "y": -2985.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1566, + "y": -2985.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1570, + "y": -2985.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1590, + "y": -2985.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1594, + "y": -2985.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1602, + "y": -2985.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1606, + "y": -2985.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1618, + "y": -2985.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1634, + "y": -2985.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1638, + "y": -2985.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1645.07421875, + "y": -2982.62890625, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": 1410, + "y": -2981.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1422, + "y": -2981.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1438, + "y": -2981.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1482, + "y": -2981.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1486, + "y": -2981.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1490, + "y": -2981.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1534, + "y": -2981.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1546, + "y": -2981.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1554, + "y": -2981.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1558, + "y": -2981.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1566, + "y": -2981.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1570, + "y": -2981.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1574, + "y": -2981.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1578, + "y": -2981.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1594, + "y": -2981.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1598, + "y": -2981.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1602, + "y": -2981.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1618, + "y": -2981.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1634, + "y": -2981.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1638, + "y": -2981.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1410, + "y": -2977.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1422, + "y": -2977.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1434, + "y": -2977.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1438, + "y": -2977.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1482, + "y": -2977.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1486, + "y": -2977.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1490, + "y": -2977.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1562, + "y": -2977.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1566, + "y": -2977.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1578, + "y": -2977.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1582, + "y": -2977.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1586, + "y": -2977.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1594, + "y": -2977.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1598, + "y": -2977.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1602, + "y": -2977.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1606, + "y": -2977.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1610, + "y": -2977.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1614, + "y": -2977.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1618, + "y": -2977.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1410, + "y": -2973.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1422, + "y": -2973.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1434, + "y": -2973.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1478, + "y": -2973.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1482, + "y": -2973.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1582, + "y": -2973.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1586, + "y": -2973.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1594, + "y": -2973.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1598, + "y": -2973.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1406, + "y": -2969.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1410, + "y": -2969.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1422, + "y": -2969.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1430, + "y": -2969.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1434, + "y": -2969.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1534, + "y": -2969.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1538, + "y": -2969.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1558, + "y": -2969.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1562, + "y": -2969.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1582, + "y": -2969.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1598, + "y": -2969.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1418, + "y": -2965.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1422, + "y": -2965.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1430, + "y": -2965.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1534, + "y": -2965.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1538, + "y": -2965.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1542, + "y": -2965.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1562, + "y": -2965.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1578, + "y": -2965.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1582, + "y": -2965.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1598, + "y": -2965.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1602, + "y": -2965.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1418, + "y": -2961.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1430, + "y": -2961.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1526, + "y": -2961.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1530, + "y": -2961.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1534, + "y": -2961.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1542, + "y": -2961.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1546, + "y": -2961.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1570, + "y": -2961.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 1574, + "y": -2961.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1578, + "y": -2961.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1602, + "y": -2961.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1618, + "y": -2961.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1622, + "y": -2961.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 1418, + "y": -2957.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1530, + "y": -2957.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1534, + "y": -2957.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1546, + "y": -2957.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1570, + "y": -2957.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 1602, + "y": -2957.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1618, + "y": -2957.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 1418, + "y": -2953.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 1546, + "y": -2953.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1566, + "y": -2953.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 1570, + "y": -2953.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1574, + "y": -2953.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1598, + "y": -2953.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1602, + "y": -2953.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 1478, + "y": -2949.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1482, + "y": -2949.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1546, + "y": -2949.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1566, + "y": -2949.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1574, + "y": -2949.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1598, + "y": -2949.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1606, + "y": -2949.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1610, + "y": -2949.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1446, + "y": -2945.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 1450, + "y": -2945.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 1482, + "y": -2945.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1486, + "y": -2945.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1546, + "y": -2945.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 1550, + "y": -2945.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 1554, + "y": -2945.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 1562, + "y": -2945.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 1566, + "y": -2945.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 1574, + "y": -2945.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 1578, + "y": -2945.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1582, + "y": -2945.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 1586, + "y": -2945.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 1598, + "y": -2945.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 1606, + "y": -2945.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 1634, + "y": -2945.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 1638, + "y": -2945.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + } + ] + }, + { + "region": { + "x0": 2600, + "y0": 800, + "x1": 2856, + "y1": 1056 + }, + "cliffs": [ + { + "x": 2642, + "y": 802.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2646, + "y": 802.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2650, + "y": 802.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2654, + "y": 802.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2658, + "y": 802.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2662, + "y": 802.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2666, + "y": 802.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2682, + "y": 802.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2686, + "y": 802.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2698, + "y": 802.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2702, + "y": 802.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2706, + "y": 802.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2598, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2602, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2646, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2650, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2654, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2658, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2662, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2666, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2670, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2674, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2678, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2682, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2686, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2690, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2694, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2698, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2750, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2754, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2758, + "y": 806.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2602, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2630, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2638, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2642, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2654, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2658, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2662, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2666, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2670, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2674, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2678, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2682, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2686, + "y": 810.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2602, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2622, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2626, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2630, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2638, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2642, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2650, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2654, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2658, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2662, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2666, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2670, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2674, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2678, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2686, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2690, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2694, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2698, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2702, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2706, + "y": 814.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2602, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2622, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2626, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2630, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2634, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2638, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2642, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2646, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2650, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2654, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2678, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2722, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2726, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2730, + "y": 818.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2686.1875, + "y": 820.23828125, + "name": "crater-cliff", + "orientation": "west-to-east" + }, + { + "x": 2691.13671875, + "y": 821.6875, + "name": "crater-cliff", + "orientation": "west-to-south" + }, + { + "x": 2602, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2634, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2646, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2654, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2678, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2714, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2718, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2722, + "y": 822.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2693.1875, + "y": 825.1875, + "name": "crater-cliff", + "orientation": "north-to-south" + }, + { + "x": 2614, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2634, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2646, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2714, + "y": 826.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2681.23828125, + "y": 828.68359375, + "name": "crater-cliff", + "orientation": "east-to-north" + }, + { + "x": 2691.13671875, + "y": 828.68359375, + "name": "crater-cliff", + "orientation": "north-to-west" + }, + { + "x": 2614, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2618, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2634, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2638, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2642, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2646, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2674, + "y": 830.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2686.1875, + "y": 830.13671875, + "name": "crater-cliff", + "orientation": "east-to-west" + }, + { + "x": 2618, + "y": 834.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2666, + "y": 834.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2670, + "y": 834.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2674, + "y": 834.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2714, + "y": 834.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2730, + "y": 834.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2618, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2654, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2658, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2714, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2718, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2722, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2726, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2730, + "y": 838.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2614, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2650, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2654, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2658, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2682, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2686, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2690, + "y": 842.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2614, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2646, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2650, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2658, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2670, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2674, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2678, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2682, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2690, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2694, + "y": 846.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2614, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2646, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2650, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2654, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2666, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2670, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2694, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2698, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2702, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2706, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2746, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2750, + "y": 850.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2614, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2662, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2666, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2706, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2710, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2714, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2742, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2746, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2750, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2754, + "y": 854.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2614, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2618, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2658, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2662, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2714, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2718, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2722, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2738, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2742, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2754, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2758, + "y": 858.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2618, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2658, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2722, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2738, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2758, + "y": 862.5, + "name": "cliff-vulcanus", + "orientation": "north-to-none" + }, + { + "x": 2618, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2622, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2626, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2630, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2722, + "y": 866.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2722, + "y": 870.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2734, + "y": 878.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2734, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2738, + "y": 882.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2722, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "east-to-none" + }, + { + "x": 2726, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2738, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2742, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2746, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2750, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2754, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2758, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2762, + "y": 886.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2726, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2730, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2762, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2766, + "y": 890.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2730, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2842, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2846, + "y": 894.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2738, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2770, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2842, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2846, + "y": 898.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2738, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2742, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2746, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "none-to-west" + }, + { + "x": 2770, + "y": 902.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2770, + "y": 906.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2766, + "y": 910.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2770, + "y": 910.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2754, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2766, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2770, + "y": 914.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2750, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2754, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2770, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2774, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2778, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2782, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2786, + "y": 918.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2750, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2786, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2790, + "y": 922.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2718, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2786, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2790, + "y": 926.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2714, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2718, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2766, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2770, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2774, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2786, + "y": 930.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2710, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2714, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2766, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2774, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2778, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2782, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2786, + "y": 934.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2706, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2710, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2730, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2766, + "y": 938.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2706, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2718, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2722, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2726, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2730, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2762, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2766, + "y": 942.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2714, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2718, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2762, + "y": 946.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2702, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2706, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2710, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2714, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2758, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2762, + "y": 950.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2702, + "y": 954.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2758, + "y": 954.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2682, + "y": 958.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2686, + "y": 958.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2758, + "y": 958.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2674, + "y": 962.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2678, + "y": 962.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2682, + "y": 962.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2694, + "y": 962.5, + "name": "cliff-vulcanus", + "orientation": "south-to-none" + }, + { + "x": 2750, + "y": 962.5, + "name": "cliff-vulcanus", + "orientation": "none-to-south" + }, + { + "x": 2754, + "y": 962.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2758, + "y": 962.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2674, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2694, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "none-to-north" + }, + { + "x": 2750, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2754, + "y": 966.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2674, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2678, + "y": 970.5, + "name": "cliff-vulcanus", + "orientation": "west-to-none" + }, + { + "x": 2670, + "y": 974.5, + "name": "cliff-vulcanus", + "orientation": "none-to-east" + }, + { + "x": 2674, + "y": 974.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2670, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2674, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2678, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2682, + "y": 986.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2666, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2670, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2682, + "y": 990.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2666, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2678, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2682, + "y": 994.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2666, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2674, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2678, + "y": 998.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2666, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2670, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "west-to-south" + }, + { + "x": 2674, + "y": 1002.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2670, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2674, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2702, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2706, + "y": 1006.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2702, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2706, + "y": 1010.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2694, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2698, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2702, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2706, + "y": 1014.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2686, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2690, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2694, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "north-to-west" + }, + { + "x": 2706, + "y": 1018.5, + "name": "cliff-vulcanus", + "orientation": "south-to-north" + }, + { + "x": 2622, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "east-to-south" + }, + { + "x": 2626, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2686, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2698, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2702, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "west-to-east" + }, + { + "x": 2706, + "y": 1022.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2622, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2626, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2686, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2694, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2698, + "y": 1026.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2686, + "y": 1030.5, + "name": "cliff-vulcanus", + "orientation": "north-to-south" + }, + { + "x": 2690, + "y": 1030.5, + "name": "cliff-vulcanus", + "orientation": "south-to-east" + }, + { + "x": 2694, + "y": 1030.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2686, + "y": 1034.5, + "name": "cliff-vulcanus", + "orientation": "north-to-east" + }, + { + "x": 2690, + "y": 1034.5, + "name": "cliff-vulcanus", + "orientation": "west-to-north" + }, + { + "x": 2598, + "y": 1050.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2602, + "y": 1050.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2606, + "y": 1050.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2610, + "y": 1050.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2614, + "y": 1050.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2618, + "y": 1050.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2622, + "y": 1050.5, + "name": "cliff-vulcanus", + "orientation": "east-to-west" + }, + { + "x": 2626, + "y": 1050.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + }, + { + "x": 2626, + "y": 1054.5, + "name": "cliff-vulcanus", + "orientation": "east-to-north" + }, + { + "x": 2630, + "y": 1054.5, + "name": "cliff-vulcanus", + "orientation": "south-to-west" + } + ] + } + ] + } + ] +} diff --git a/test/fixtures/oracle-vulcanus-cliff-volcanism-sweep.seed123456.json b/test/fixtures/oracle-vulcanus-cliff-volcanism-sweep.seed123456.json index 6c7136d..7f370ea 100644 --- a/test/fixtures/oracle-vulcanus-cliff-volcanism-sweep.seed123456.json +++ b/test/fixtures/oracle-vulcanus-cliff-volcanism-sweep.seed123456.json @@ -1,5 +1,5 @@ { - "_comment": "Ground truth from Factorio 2.1.17 via factorio-oracle. Every cliff entity (find_entities_filtered{type='cliff'}) the game placed in the three regions of oracle-vulcanus-cliff-entities.seed123456.json, once per ARM of the vulcanus_volcanism autoplace control (#84). Each arm records the control the SURFACE reported back, so an override that failed to apply cannot pass as a setting that does not matter. Positions are cliff cell centres on the 4-tile grid; each entry carries LuaEntity.cliff_orientation. Sampled on a create_surface() surface whose seed is FORCED to `seed`, like every other Vulcanus cliff fixture. R1 [0,0] is inside the starting area and is the CONTROL: it must not move between arms. The default arm is a re-capture of the 2.1.12 fixture at this version. Graded by crates/fmw-noise/src/fixtures.rs. Regenerate: node --experimental-strip-types scripts/probes/vulcanus-cliff-volcanism/capture.ts", + "_comment": "Ground truth from Factorio 2.1.17 via factorio-oracle. Every cliff entity (find_entities_filtered{type='cliff'}) the game placed in the three regions of oracle-vulcanus-cliff-entities.seed123456.json, once per ARM of the vulcanus_volcanism autoplace control (#84). R1 [0,0] is inside the starting area and is the CONTROL: it must not move between arms. The default arm is a re-capture of the 2.1.12 fixture at this version. Each arm records the control the SURFACE reported back, so an override that failed to apply cannot pass as a setting that does not matter. Positions are cliff cell centres on the 4-tile grid; each entry carries LuaEntity.cliff_orientation. Sampled on a create_surface() surface whose seed is FORCED to `seed`, like every other Vulcanus cliff fixture. Graded by crates/fmw-noise/src/fixtures.rs. Regenerate: node --experimental-strip-types scripts/probes/vulcanus-cliff-volcanism/capture.ts sweep", "_factorioVersion": "2.1.17", "seed": 123456, "arms": [